update docs

master
yutent 2023-03-15 15:40:54 +08:00
parent bcda5e6b8d
commit 7581c746b2
2 changed files with 28 additions and 1 deletions

View File

@ -17,6 +17,6 @@
"author": "yutent", "author": "yutent",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@bd/wcui-cli": "^1.0.1" "@bd/wcui-cli": "^1.0.2"
} }
} }

27
开发规范.md Normal file
View File

@ -0,0 +1,27 @@
### 开发规范
1. 主题(light, dark)
> 主题功能, 暂时由根样式定义来实现, 所以, 组件内的样式, 尽可能避免过多的私有配色。
2. 组件几种配色样式, 暂时同大多数组件一致
- `type=primary` 青色
- `type=secondary` 暗色
- `type=info` 蓝色
- `type=success` 绿色
- `type=warning` 橙色
- `type=error` 红色
- `type=help` 灰色
3. 尺寸, 主要指 高度
> 需要注意的是, 这里的高度, 仅为组件本身应该占的高度, 而非"可视内容"的真实高度, 比如 开头按钮, 实际上就可以不需要那么大。
- `size=s` 小号, 20px
- `size=m` 中号, 24px
- `size=l` 大号, 32px (默认值)
- `size=xl` 加大号, 36px
- `size=xxl` 加加大号, 44px
- `size=xxxl` 加加加加大号, 52px
- `size=xxxxl` 特大号, 64px
4. 自带点击事件的组件, 统一增加"节流/防抖"逻辑
> 统一为增加 `lazy="1000"` 属性实现