@cloudbase/weda-ui 0.2.15 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -169
- package/package.json +28 -15
- package/src/configs/components/calendar.json +78 -0
- package/src/configs/components/carousel.json +273 -0
- package/src/configs/components/chart/bar.json +724 -0
- package/src/configs/components/chart/line.json +679 -0
- package/src/configs/components/chart/pie.json +497 -0
- package/src/configs/components/chart/statisticsCard.json +379 -0
- package/src/configs/components/container.json +7 -2
- package/src/configs/components/dataView.json +154 -0
- package/src/configs/components/form/checkbox.json +97 -5
- package/src/configs/components/form/location.json +152 -0
- package/src/configs/components/form/radio.json +96 -4
- package/src/configs/components/form/select.json +245 -11
- package/src/configs/components/form/uploaderFile.json +2 -1
- package/src/configs/components/graphicCard.json +410 -0
- package/src/configs/components/image.json +7 -2
- package/src/configs/components/link.json +20 -4
- package/src/configs/components/listView.json +277 -0
- package/src/configs/components/modal.json +37 -5
- package/src/configs/components/navLayout.json +362 -0
- package/src/configs/components/navigationBar.json +59 -0
- package/src/configs/components/richtextview.json +4 -1
- package/src/configs/components/scrollVeiw.json +74 -22
- package/src/configs/components/swiper.json +6 -3
- package/src/configs/components/tabs.json +51 -8
- package/src/configs/components/text.json +33 -25
- package/src/configs/components/wxOpenApi/phone.json +141 -0
- package/src/configs/components/wxOpenApi/phoneCode.json +121 -0
- package/src/configs/components/wxOpenApi/share.json +167 -0
- package/src/configs/components/wxOpenApi/userInfo.json +174 -0
- package/src/configs/index.js +34 -0
- package/src/mp/components/button/index.js +12 -13
- package/src/mp/components/button/index.wxml +1 -1
- package/src/mp/components/calendar/arrowright--line.svg +11 -0
- package/src/mp/components/calendar/index.js +238 -0
- package/src/mp/components/calendar/index.json +4 -0
- package/src/mp/components/calendar/index.wxml +37 -0
- package/src/mp/components/calendar/index.wxss +178 -0
- package/src/mp/components/carousel/index.js +88 -0
- package/src/mp/components/carousel/index.json +7 -0
- package/src/mp/components/carousel/index.wxml +6 -0
- package/src/mp/components/chart/bar/index.js +258 -0
- package/src/mp/components/chart/bar/index.json +6 -0
- package/src/mp/components/chart/bar/index.wxml +3 -0
- package/src/mp/components/chart/bar/index.wxss +9 -0
- package/src/mp/components/chart/common/config/bar.js +50 -0
- package/src/mp/components/chart/common/config/global.js +16 -0
- package/src/mp/components/chart/common/config/line.js +48 -0
- package/src/mp/components/chart/common/config/pie.js +36 -0
- package/src/mp/components/chart/common/core/eChartBar.js +263 -0
- package/src/mp/components/chart/common/core/eChartBase.js +375 -0
- package/src/mp/components/chart/common/core/eChartLine.js +229 -0
- package/src/mp/components/chart/common/core/eChartPie.js +166 -0
- package/src/mp/components/chart/common/lib/echarts.min.js +18 -0
- package/src/mp/components/chart/ec-canvas/ec-canvas.js +277 -0
- package/src/mp/components/chart/ec-canvas/ec-canvas.json +4 -0
- package/src/mp/components/chart/ec-canvas/ec-canvas.wxml +4 -0
- package/src/mp/components/chart/ec-canvas/ec-canvas.wxss +4 -0
- package/src/mp/components/chart/ec-canvas/wx-canvas.js +107 -0
- package/src/mp/components/chart/line/index.js +247 -0
- package/src/mp/components/chart/line/index.json +6 -0
- package/src/mp/components/chart/line/index.wxml +3 -0
- package/src/mp/components/chart/line/index.wxss +9 -0
- package/src/mp/components/chart/pie/index.js +182 -0
- package/src/mp/components/chart/pie/index.json +6 -0
- package/src/mp/components/chart/pie/index.wxml +4 -0
- package/src/mp/components/chart/pie/index.wxss +9 -0
- package/src/mp/components/chart/statisticsCard/index.js +253 -0
- package/src/mp/components/chart/statisticsCard/index.json +4 -0
- package/src/mp/components/chart/statisticsCard/index.wxml +9 -0
- package/src/mp/components/chart/statisticsCard/index.wxss +45 -0
- package/src/mp/components/dataView/index.js +34 -0
- package/src/mp/components/dataView/index.json +7 -0
- package/src/mp/components/dataView/index.wxml +15 -0
- package/src/mp/components/dataView/index.wxss +0 -0
- package/src/mp/components/form/checkbox/index.js +41 -2
- package/src/mp/components/form/checkbox/index.wxml +1 -1
- package/src/mp/components/form/input/index.js +1 -1
- package/src/mp/components/form/location/components/mapChoose/index.js +201 -0
- package/src/mp/components/form/location/components/mapChoose/index.json +4 -0
- package/src/mp/components/form/location/components/mapChoose/index.wxml +42 -0
- package/src/mp/components/form/location/components/mapChoose/index.wxss +188 -0
- package/src/mp/components/form/location/index.js +382 -0
- package/src/mp/components/form/location/index.json +6 -0
- package/src/mp/components/form/location/index.wxml +25 -0
- package/src/mp/components/form/location/index.wxss +91 -0
- package/src/mp/components/form/radio/index.js +38 -0
- package/src/mp/components/form/select/index.js +360 -40
- package/src/mp/components/form/select/index.wxml +21 -6
- package/src/mp/components/form/select/region/index.js +98 -0
- package/src/mp/components/form/textarea/index.wxml +6 -5
- package/src/mp/components/form/uploader/index.js +84 -48
- package/src/mp/components/form/uploader/index.wxml +15 -3
- package/src/mp/components/form/uploaderFile/index.js +106 -27
- package/src/mp/components/graphicCard/chevron-right.svg +3 -0
- package/src/mp/components/graphicCard/index.js +203 -0
- package/src/mp/components/graphicCard/index.json +4 -0
- package/src/mp/components/graphicCard/index.wxml +29 -0
- package/src/mp/components/graphicCard/index.wxss +157 -0
- package/src/mp/components/image/index.js +0 -1
- package/src/mp/components/listView/arrow-right-line.svg +3 -0
- package/src/mp/components/listView/index.js +285 -0
- package/src/mp/components/listView/index.json +4 -0
- package/src/mp/components/listView/index.wxml +40 -0
- package/src/mp/components/listView/index.wxss +155 -0
- package/src/mp/components/listView/more-line.svg +3 -0
- package/src/mp/components/navLayout/index.js +123 -0
- package/src/mp/components/navLayout/index.json +7 -0
- package/src/mp/components/navLayout/index.wxml +25 -0
- package/src/mp/components/navLayout/index.wxss +1193 -0
- package/src/mp/components/navigationBar/index.js +193 -0
- package/src/mp/components/navigationBar/index.json +6 -0
- package/src/mp/components/navigationBar/index.wxml +88 -0
- package/src/mp/components/navigationBar/index.wxss +1257 -0
- package/src/mp/components/swiper/index.wxml +2 -0
- package/src/mp/components/tabs/index.js +7 -2
- package/src/mp/components/tabs/index.wxml +2 -1
- package/src/mp/components/text/index.js +0 -25
- package/src/mp/components/text/index.wxml +3 -3
- package/src/mp/components/wxOpenApi/phone/index.js +117 -0
- package/src/mp/components/wxOpenApi/phone/index.json +4 -0
- package/src/mp/components/wxOpenApi/phone/index.wxml +15 -0
- package/src/mp/components/wxOpenApi/phone/index.wxss +22 -0
- package/src/mp/components/wxOpenApi/phoneCode/index.js +89 -0
- package/src/mp/components/wxOpenApi/phoneCode/index.json +4 -0
- package/src/mp/components/wxOpenApi/phoneCode/index.wxml +15 -0
- package/src/mp/components/wxOpenApi/phoneCode/index.wxss +22 -0
- package/src/mp/components/wxOpenApi/share/index.js +117 -0
- package/src/mp/components/wxOpenApi/share/index.json +4 -0
- package/src/mp/components/wxOpenApi/share/index.wxml +15 -0
- package/src/mp/components/wxOpenApi/share/index.wxss +22 -0
- package/src/mp/components/wxOpenApi/userInfo/index.js +88 -0
- package/src/mp/components/wxOpenApi/userInfo/index.json +4 -0
- package/src/mp/components/wxOpenApi/userInfo/index.wxml +14 -0
- package/src/mp/components/wxOpenApi/userInfo/index.wxss +22 -0
- package/src/mp/index.json +18 -2
- package/src/mp/style/weda-ui.wxss +2 -0
- package/src/mp/utils/debounce.js +133 -0
- package/src/mp/utils/destr.js +48 -0
- package/src/mp/utils/dr_square_point.js +25 -0
- package/src/mp/utils/platform.js +25 -0
- package/src/mp/utils/qqmap-wx-jssdk1.2/qqmap-wx-jssdk.js +1336 -0
- package/src/mp/utils/spark-md5.js +776 -0
- package/src/mp/utils/tcb.js +62 -0
- package/src/setupTests.js +2 -1
- package/src/web/components/button/index.css +8 -1
- package/src/web/components/button/index.tsx +3 -2
- package/src/web/components/calendar/index.css +382 -0
- package/src/web/components/calendar/index.jsx +312 -0
- package/src/web/components/calendar/util.js +90 -0
- package/src/web/components/carousel/index.css +119 -0
- package/src/web/components/carousel/index.tsx +417 -0
- package/src/web/components/chart/bar/index.tsx +140 -0
- package/src/web/components/chart/common/config/bar.js +49 -0
- package/src/web/components/chart/common/config/global.js +16 -0
- package/src/web/components/chart/common/config/line.js +50 -0
- package/src/web/components/chart/common/config/pie.js +37 -0
- package/src/web/components/chart/common/core/eChartBar.js +265 -0
- package/src/web/components/chart/common/core/eChartBase.ts +383 -0
- package/src/web/components/chart/common/core/eChartLine.js +231 -0
- package/src/web/components/chart/common/core/eChartPie.js +170 -0
- package/src/web/components/chart/common/core/type.ts +34 -0
- package/src/web/components/chart/common/echart.css +106 -0
- package/src/web/components/chart/common/echarts.ts +33 -0
- package/src/web/components/chart/common/useChart.tsx +69 -0
- package/src/web/components/chart/line/index.tsx +136 -0
- package/src/web/components/chart/pie/index.tsx +99 -0
- package/src/web/components/chart/statisticsCard/index.css +62 -0
- package/src/web/components/chart/statisticsCard/index.tsx +307 -0
- package/src/web/components/chart/statisticsCard/interface.ts +14 -0
- package/src/web/components/dataView/index.tsx +20 -0
- package/src/web/components/dataView/interface.ts +6 -0
- package/src/web/components/form/checkbox/index.tsx +55 -23
- package/src/web/components/form/location/common/mapChoose.css +178 -0
- package/src/web/components/form/location/common/mapChoose.jsx +343 -0
- package/src/web/components/form/location/common/mapView.jsx +190 -0
- package/src/web/components/form/location/common/propsConfig.js +54 -0
- package/src/web/components/form/location/common/selectModal.css +44 -0
- package/src/web/components/form/location/common/selectModal.jsx +82 -0
- package/src/web/components/form/location/common/useLocationInfo.js +100 -0
- package/src/web/components/form/location/components/LocationH5/index.css +243 -0
- package/src/web/components/form/location/components/LocationH5/location.h5.jsx +403 -0
- package/src/web/components/form/location/components/LocationPC/Header.jsx +109 -0
- package/src/web/components/form/location/components/LocationPC/index.css +44 -0
- package/src/web/components/form/location/components/LocationPC/location.PC.jsx +323 -0
- package/src/web/components/form/location/constants.js +4 -0
- package/src/web/components/form/location/index.css +0 -0
- package/src/web/components/form/location/index.jsx +25 -0
- package/src/web/components/form/radio/index.tsx +84 -53
- package/src/web/components/form/select/h5.tsx +389 -71
- package/src/web/components/form/select/index.css +10 -0
- package/src/web/components/form/select/index.tsx +404 -144
- package/src/web/components/form/select/region/index.ts +122 -31
- package/src/web/components/form/select/time.jsx +90 -0
- package/src/web/components/form/select/year.tsx +170 -0
- package/src/web/components/form/uploader/uploader.h5.tsx +19 -4
- package/src/web/components/form/uploader/uploader.pc.tsx +8 -7
- package/src/web/components/form/uploaderFile/uploadFile.h5.tsx +132 -113
- package/src/web/components/form/uploaderFile/uploadFile.pc.tsx +16 -11
- package/src/web/components/graphicCard/index.css +159 -0
- package/src/web/components/graphicCard/index.tsx +310 -0
- package/src/web/components/image/image.tsx +1 -2
- package/src/web/components/image/index.tsx +1 -1
- package/src/web/components/index.js +24 -2
- package/src/web/components/link/index.tsx +6 -3
- package/src/web/components/listView/arrow-right-line.svg +3 -0
- package/src/web/components/listView/index.css +143 -0
- package/src/web/components/listView/index.tsx +359 -0
- package/src/web/components/listView/interface.ts +98 -0
- package/src/web/components/modal/index.tsx +3 -1
- package/src/web/components/navLayout/index.css +332 -0
- package/src/web/components/navLayout/index.tsx +247 -0
- package/src/web/components/navigationBar/chevron-right--double.svg +3 -0
- package/src/web/components/navigationBar/common.tsx +198 -0
- package/src/web/components/navigationBar/h5Menu.tsx +179 -0
- package/src/web/components/navigationBar/horizontalMenu.tsx +200 -0
- package/src/web/components/navigationBar/index.css +762 -0
- package/src/web/components/navigationBar/index.tsx +231 -0
- package/src/web/components/navigationBar/type.d.ts +111 -0
- package/src/web/components/navigationBar/verticalMenu.tsx +81 -0
- package/src/web/components/phone/index.css +0 -0
- package/src/web/components/phone/index.tsx +22 -0
- package/src/web/components/phoneCode/index.css +0 -0
- package/src/web/components/phoneCode/index.tsx +22 -0
- package/src/web/components/richTextView/index.tsx +3 -5
- package/src/web/components/share/index.css +0 -0
- package/src/web/components/share/index.tsx +38 -0
- package/src/web/components/tabs/index.tsx +4 -2
- package/src/web/components/tabs/tabs.h5.tsx +50 -37
- package/src/web/components/tabs/tabs.pc.tsx +23 -10
- package/src/web/components/text/index.tsx +6 -14
- package/src/web/components/uploaderFileView/index.css +9 -9
- package/src/web/components/uploaderFileView/index.jsx +32 -23
- package/src/web/components/userInfo/index.css +0 -0
- package/src/web/components/userInfo/index.tsx +30 -0
- package/src/web/types.d.ts +15 -14
- package/src/web/utils/debounce.js +98 -0
- package/src/web/utils/platform.js +40 -0
- package/src/web/utils/tcb.js +49 -0
- package/src/web/utils/tmap.js +4 -0
- package/src/web/weda-ui.css +2 -0
- package/CHANGELOG.md +0 -240
- package/src/.DS_Store +0 -0
- package/src/configs/.DS_Store +0 -0
- package/src/mp/.gitignore +0 -10
- package/src/web/.DS_Store +0 -0
- package/src/web/components/form/select/region/cities.ts +0 -2410
- package/src/web/components/form/select/region/provinces.ts +0 -240
- package/src/web/components/form/select/region/regions.ts +0 -20645
package/CHANGELOG.md
DELETED
|
@@ -1,240 +0,0 @@
|
|
|
1
|
-
> 为了更好的区分组件类型,仅在更新日志中进行如下约定:低码组件使用大驼峰命名,源码组件使用小驼峰命名。
|
|
2
|
-
|
|
3
|
-
## [1.2] - 2021-08-24
|
|
4
|
-
|
|
5
|
-
### Changed
|
|
6
|
-
|
|
7
|
-
- swiper 轮播
|
|
8
|
-
|
|
9
|
-
- 添加示例图片
|
|
10
|
-
|
|
11
|
-
## [1.1] - 2021-08-09
|
|
12
|
-
|
|
13
|
-
### Added
|
|
14
|
-
|
|
15
|
-
- text 文本
|
|
16
|
-
|
|
17
|
-
- 新增事件 `tap`
|
|
18
|
-
|
|
19
|
-
- modal 模态弹窗
|
|
20
|
-
|
|
21
|
-
- 新增组件 `modal`, web 使用 tea 样式用于 PC 样式响应式。
|
|
22
|
-
|
|
23
|
-
- showModal 显示弹窗
|
|
24
|
-
|
|
25
|
-
- 新增动作 `showModal`,用于平台方法的 PC 大屏响应式版本,小程序对齐 wx.showModal api。
|
|
26
|
-
|
|
27
|
-
- FormTextarea 表单多行输入
|
|
28
|
-
|
|
29
|
-
- 新增组件 `FormTextarea`, 用以替代被移除的 `Textarea` 组件
|
|
30
|
-
|
|
31
|
-
- link 链接
|
|
32
|
-
|
|
33
|
-
- 新增组件 `link`,可通过插槽来配置自定义内容
|
|
34
|
-
|
|
35
|
-
### Changed
|
|
36
|
-
|
|
37
|
-
- button 按钮
|
|
38
|
-
|
|
39
|
-
- 添加响应式样式,屏幕宽度大于 **1024px** 时显示为方角
|
|
40
|
-
|
|
41
|
-
- swiper 轮播
|
|
42
|
-
|
|
43
|
-
- 添加响应式样式,屏幕宽度大于 1024px 时显示为方角
|
|
44
|
-
|
|
45
|
-
- FormRadio 表单单选
|
|
46
|
-
|
|
47
|
-
- 修复多个单选组件并存导致的选中问题
|
|
48
|
-
|
|
49
|
-
- FormCheckbox 表单复选
|
|
50
|
-
|
|
51
|
-
- 修复多个复选组件并存导致的选中问题
|
|
52
|
-
|
|
53
|
-
- 所有组件:
|
|
54
|
-
- 表单组件的默认背景色,统一配置为透明
|
|
55
|
-
- 组件最外层容器统一添加 `weda-ui` 类名,组件库级别重置样式及公共样式都限制在 `weda-ui` 类名下,防止污染
|
|
56
|
-
- 规范了组件事件的触发方式
|
|
57
|
-
|
|
58
|
-
## [1.0] - 2021-06-10
|
|
59
|
-
|
|
60
|
-
### Added
|
|
61
|
-
|
|
62
|
-
- text 文本:
|
|
63
|
-
|
|
64
|
-
- 新增属性 `maxLines` 最大显示行数
|
|
65
|
-
|
|
66
|
-
- FormRegion 表单区域选择:
|
|
67
|
-
|
|
68
|
-
- 新增组件 `FormRegion`, 用以替代被移除的 `RegionPicker` 组件
|
|
69
|
-
|
|
70
|
-
### Removed
|
|
71
|
-
|
|
72
|
-
- swiper 轮播:
|
|
73
|
-
|
|
74
|
-
- 移除属性 `displayMultipleItems`, `nextMargin`, `previousMargin`, `updated`
|
|
75
|
-
- 移除 `transition` 和 `animationfinished` 事件
|
|
76
|
-
|
|
77
|
-
- text 文本:
|
|
78
|
-
|
|
79
|
-
- 移除属性 `decode` 是否解码
|
|
80
|
-
- 移除 `tap` 事件
|
|
81
|
-
|
|
82
|
-
- image 图片:
|
|
83
|
-
|
|
84
|
-
- 移除属性 `webp` 能否解析 webp 格式
|
|
85
|
-
|
|
86
|
-
- button 按钮:
|
|
87
|
-
|
|
88
|
-
- 移除属性 `plain` 镂空
|
|
89
|
-
- 移除属性 `openType` 微信开放能力的 `获取用户信息` 选项
|
|
90
|
-
|
|
91
|
-
- FormInput 表单输入:
|
|
92
|
-
|
|
93
|
-
- 移除属性 `requiredFlag` 是否需要必填星号
|
|
94
|
-
- 移除属性 `underline` 是否需要底部下划线
|
|
95
|
-
|
|
96
|
-
- FormRadio 表单单选:
|
|
97
|
-
|
|
98
|
-
- 移除属性 `validateTrigger` 字段触发校验类型
|
|
99
|
-
- 移除属性 `validateStatus` 校验状态
|
|
100
|
-
- 移除属性 `requiredFlag` 是否需要必填星号
|
|
101
|
-
- 移除属性 `underline` 是否需要底部下划线
|
|
102
|
-
|
|
103
|
-
- FormCheckbox 表单复选:
|
|
104
|
-
|
|
105
|
-
- 移除属性 `validateTrigger` 字段触发校验类型
|
|
106
|
-
- 移除属性 `validateStatus` 校验状态
|
|
107
|
-
- 移除属性 `requiredFlag` 是否需要必填星号
|
|
108
|
-
- 移除属性 `underline` 是否需要底部下划线
|
|
109
|
-
|
|
110
|
-
- FormSwitch 表单开关:
|
|
111
|
-
|
|
112
|
-
- 移除属性 `type` 显示类型
|
|
113
|
-
- 移除属性 `checkedIcon` 选中图标
|
|
114
|
-
- 移除属性 `uncheckedIcon` 非选中图标
|
|
115
|
-
- 移除属性 `requiredFlag` 是否需要必填星号
|
|
116
|
-
- 移除属性 `underline` 是否需要底部下划线
|
|
117
|
-
|
|
118
|
-
- FormDate 表单日期:
|
|
119
|
-
|
|
120
|
-
- 移除属性 `suffixType` 操作尾部样式类型
|
|
121
|
-
- 移除属性 `suffixText` 操作尾部文案
|
|
122
|
-
- 移除属性 `requiredFlag` 是否需要必填星号
|
|
123
|
-
- 移除属性 `underline` 是否需要底部下划线
|
|
124
|
-
|
|
125
|
-
- FormTime 表单时间:
|
|
126
|
-
|
|
127
|
-
- 移除属性 `suffixType` 操作尾部样式类型
|
|
128
|
-
- 移除属性 `suffixText` 操作尾部文案
|
|
129
|
-
- 移除属性 `requiredFlag` 是否需要必填星号
|
|
130
|
-
- 移除属性 `underline` 是否需要底部下划线
|
|
131
|
-
|
|
132
|
-
- FormSelect 表单选择:
|
|
133
|
-
|
|
134
|
-
- 移除属性 `suffixType` 操作尾部样式类型
|
|
135
|
-
- 移除属性 `suffixText` 操作尾部文案
|
|
136
|
-
- 移除属性 `validateTrigger` 字段触发校验类型
|
|
137
|
-
- 移除属性 `validateStatus` 校验状态
|
|
138
|
-
- 移除属性 `rules` 校验规则
|
|
139
|
-
- 移除属性 `requiredFlag` 是否需要必填星号
|
|
140
|
-
- 移除属性 `underline` 是否需要底部下划线
|
|
141
|
-
|
|
142
|
-
- FormPhone 表单手机号码:
|
|
143
|
-
|
|
144
|
-
- 移除属性 `maxLength` 最大输入长度
|
|
145
|
-
- 移除属性 `rules` 校验规则
|
|
146
|
-
- 移除属性 `requiredFlag` 是否需要必填星号
|
|
147
|
-
- 移除属性 `underline` 是否需要底部下划线
|
|
148
|
-
|
|
149
|
-
- FormEmail 表单邮件地址:
|
|
150
|
-
|
|
151
|
-
- 移除属性 `rules` 校验规则
|
|
152
|
-
- 移除属性 `requiredFlag` 是否需要必填星号
|
|
153
|
-
- 移除属性 `underline` 是否需要底部下划线
|
|
154
|
-
|
|
155
|
-
- FormUrl 表单邮件地址:
|
|
156
|
-
|
|
157
|
-
- 移除属性 `rules` 校验规则
|
|
158
|
-
- 移除属性 `requiredFlag` 是否需要必填星号
|
|
159
|
-
- 移除属性 `underline` 是否需要底部下划线
|
|
160
|
-
|
|
161
|
-
- FormItem 表单元素:
|
|
162
|
-
|
|
163
|
-
- 移除组件
|
|
164
|
-
|
|
165
|
-
- FormCell 表单表格:
|
|
166
|
-
|
|
167
|
-
- 移除组件
|
|
168
|
-
|
|
169
|
-
- RegionPicker 地域选择:
|
|
170
|
-
|
|
171
|
-
- 移除组件
|
|
172
|
-
|
|
173
|
-
- Textarea 多行输入:
|
|
174
|
-
|
|
175
|
-
- 移除组件, 待优化后重新上架
|
|
176
|
-
|
|
177
|
-
### Changed
|
|
178
|
-
|
|
179
|
-
- image 图片:
|
|
180
|
-
|
|
181
|
-
- 默认大小由 320\*240 rpx 调整为 240\*240 rpx
|
|
182
|
-
|
|
183
|
-
- text 文本:
|
|
184
|
-
|
|
185
|
-
- 跟随小程序定义,`selectabble` 变更为 `userSelect`
|
|
186
|
-
- 样式调整:默认布局模式从 `inline` 编程 `block`
|
|
187
|
-
|
|
188
|
-
- button 按钮:
|
|
189
|
-
|
|
190
|
-
- 样式调整:从默认宽度 `100%` 调整为默认 `184px`
|
|
191
|
-
|
|
192
|
-
- Form 表单容器:
|
|
193
|
-
|
|
194
|
-
- 样式优化
|
|
195
|
-
|
|
196
|
-
- FormInput 表单输入:
|
|
197
|
-
|
|
198
|
-
- 样式优化
|
|
199
|
-
|
|
200
|
-
- FormRadio 表单单选:
|
|
201
|
-
|
|
202
|
-
- 属性 `name` 表单字段名称,默认值由 `thisIsRadioKey` 改为 `formRadio`
|
|
203
|
-
- 样式优化
|
|
204
|
-
|
|
205
|
-
- FormCheckbox 表单复选:
|
|
206
|
-
|
|
207
|
-
- 属性 `name` 表单字段名称,默认值由 `thisIsCheckboxKey` 改为 `formCheckbox`
|
|
208
|
-
- 样式优化
|
|
209
|
-
|
|
210
|
-
- FormSwitch 表单开关:
|
|
211
|
-
|
|
212
|
-
- 属性 `name` 表单字段名称,默认值由 `thisIsSelectKey` 改为 `formSwitch`
|
|
213
|
-
- 样式优化
|
|
214
|
-
|
|
215
|
-
- FormDate 表单日期:
|
|
216
|
-
|
|
217
|
-
- 属性 `name` 表单字段名称,默认值由 `thisIsDateKey` 改为 `formDate`
|
|
218
|
-
- 样式优化
|
|
219
|
-
|
|
220
|
-
- FormTime 表单时间:
|
|
221
|
-
|
|
222
|
-
- 属性 `name` 表单字段名称,默认值由 `thisIsTimeKey` 改为 `formTime`
|
|
223
|
-
- 样式优化
|
|
224
|
-
|
|
225
|
-
- FormSelect 表单选择:
|
|
226
|
-
|
|
227
|
-
- 属性 `name` 表单字段名称,默认值由 `thisIsSelectKey` 改为 `formSelect`
|
|
228
|
-
- 样式优化
|
|
229
|
-
|
|
230
|
-
- FormPhone 表单手机号码:
|
|
231
|
-
|
|
232
|
-
- 样式优化
|
|
233
|
-
|
|
234
|
-
- FormEmail 表单邮件地址:
|
|
235
|
-
|
|
236
|
-
- 样式优化
|
|
237
|
-
|
|
238
|
-
- FormUrl 表单邮件地址:
|
|
239
|
-
|
|
240
|
-
- 样式优化
|
package/src/.DS_Store
DELETED
|
Binary file
|
package/src/configs/.DS_Store
DELETED
|
Binary file
|
package/src/mp/.gitignore
DELETED
package/src/web/.DS_Store
DELETED
|
Binary file
|