@nutui/nutui 3.1.3 → 3.1.6

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/CHANGELOG.md CHANGED
@@ -1,4 +1,39 @@
1
1
 
2
+ ## v3.1.4
3
+
4
+ `2021-09-01`
5
+ * :zap: feat: 新增 numberkeyboard 数字键盘组件 (#610) @Drjingfubo
6
+ * :zap: feat: 新增 countdown 倒计时组件 (#611) @yangxiaolu3
7
+ * :zap: feat: 新增 noticebar 公告通知栏组件 @yangxiaolu3
8
+ * :zap: feat: 新增 elevator 电梯组件 @szg2008
9
+ * :zap: feat: 新增 video 视频播放器组件添加 @zy19940510
10
+ * :zap: feat(cell): add icon slot #605 @richard1015
11
+ * :zap: feat(address): add address type 多样式切换 @szg2008
12
+ * :zap: feat(checkbox & radio): 选中状态主题定制优化 @szg2008
13
+ * :zap: feat(textarea): blur event add value @richard1015
14
+ * :zap: style(swipe): transition 滑动动画优化 @richard1015
15
+ * :bug: fix(tabbar): 自定义icon不显示 (#612) @Drjingfubo
16
+ * :bug: fix(tab): 兼容taro中tab组件 (#609) @zhenyulei
17
+ * :zap: docs(toast): 文档及demo优化 (#616) @Drjingfubo
18
+ * :zap: docs: 官网新增 cat 入口 @richard1015
19
+
20
+ ## v3.1.3
21
+
22
+ `2021-08-15`
23
+
24
+ * :zap: feat: 新增 CircleProgress 环形进度条组件 (#569) @Drjingfubo
25
+ * :zap: feat: 新增 Progress 条形进度条组件 (#569) @Drjingfubo
26
+ * :zap: feat: 新增 FixedNav 悬浮导航组件 @richar1015
27
+ * :zap: feat: 新增 CountUp 数字滚动组件适配 (#568) @Ymm0008
28
+ * :zap: feat: 新增 Barrage 弹幕组件 @Ymm0008
29
+ * :bug: fix(avatar): 设置圆角无效修复 (#571) @Drjingfubo
30
+ * :bug: fix(address): modify transform data (#534) @szg2008
31
+ * :bug: fix(swipe): 列表滚动场景滑动体验优化 @richard1015
32
+ * :zap: docs: 新增主题定制样式引用说明 @richard1015
33
+ * :zap: docs: 3.0 支持环境说明修改 @szg2008
34
+ * :zap: docs: 官网新增 加入我们模块 @richard1015
35
+
36
+
2
37
  ## v3.1.2
3
38
 
4
39
  `2021-07-31`
package/dist/nutui.d.ts CHANGED
@@ -5,51 +5,69 @@ declare class UIComponent {
5
5
  declare class Avatar extends UIComponent {}
6
6
  declare class Button extends UIComponent {}
7
7
  declare class Cell extends UIComponent {}
8
+ declare class CellGroup extends UIComponent {}
8
9
  declare class Icon extends UIComponent {}
9
10
  declare class Price extends UIComponent {}
10
11
  declare class OverLay extends UIComponent {}
12
+ declare class Divider extends UIComponent {}
11
13
  declare class Layout extends UIComponent {}
14
+ declare class Col extends UIComponent {}
15
+ declare class Row extends UIComponent {}
12
16
  declare class Swipe extends UIComponent {}
13
17
  declare class ActionSheet extends UIComponent {}
14
18
  declare class BackTop extends UIComponent {}
15
19
  declare class Collapse extends UIComponent {}
20
+ declare class CollapseItem extends UIComponent {}
16
21
  declare class Drag extends UIComponent {}
17
22
  declare class Dialog extends UIComponent {}
18
23
  declare class InfiniteLoading extends UIComponent {}
19
24
  declare class Notify extends UIComponent {}
20
25
  declare class Range extends UIComponent {}
26
+ declare class Video extends UIComponent {}
21
27
  declare class Popup extends UIComponent {}
22
28
  declare class Steps extends UIComponent {}
29
+ declare class Step extends UIComponent {}
23
30
  declare class Swiper extends UIComponent {}
31
+ declare class SwiperItem extends UIComponent {}
24
32
  declare class Switch extends UIComponent {}
25
33
  declare class Toast extends UIComponent {}
26
34
  declare class Progress extends UIComponent {}
27
35
  declare class CircleProgress extends UIComponent {}
36
+ declare class NoticeBar extends UIComponent {}
28
37
  declare class Navbar extends UIComponent {}
29
38
  declare class FixedNav extends UIComponent {}
30
39
  declare class Tab extends UIComponent {}
40
+ declare class TabPanel extends UIComponent {}
41
+ declare class MenuItem extends UIComponent {}
31
42
  declare class Tabbar extends UIComponent {}
43
+ declare class TabbarItem extends UIComponent {}
44
+ declare class Elevator extends UIComponent {}
32
45
  declare class Calendar extends UIComponent {}
33
46
  declare class Checkbox extends UIComponent {}
47
+ declare class CheckboxGroup extends UIComponent {}
34
48
  declare class DatePicker extends UIComponent {}
35
49
  declare class InputNumber extends UIComponent {}
36
50
  declare class Input extends UIComponent {}
37
51
  declare class Radio extends UIComponent {}
52
+ declare class RadioGroup extends UIComponent {}
38
53
  declare class Rate extends UIComponent {}
39
54
  declare class Picker extends UIComponent {}
40
55
  declare class ShortPassword extends UIComponent {}
41
56
  declare class TextArea extends UIComponent {}
42
57
  declare class Uploader extends UIComponent {}
43
58
  declare class CountUp extends UIComponent {}
59
+ declare class NumberKeyboard extends UIComponent {}
60
+ declare class CountDown extends UIComponent {}
44
61
  declare class Address extends UIComponent {}
45
62
  declare class Barrage extends UIComponent {}
63
+ declare class Signature extends UIComponent {}
46
64
 
47
65
  export interface InstallationOptions {
48
66
  locale?: any;
49
67
  lang?: any;
50
68
  }
51
69
  declare function install(app: App, options?: InstallationOptions): void;
52
- export { Avatar,Button,Cell,Icon,Price,OverLay,Layout,Swipe,ActionSheet,BackTop,Collapse,Drag,Dialog,InfiniteLoading,Notify,Range,Popup,Steps,Swiper,Switch,Toast,Progress,CircleProgress,Navbar,FixedNav,Tab,Tabbar,Calendar,Checkbox,DatePicker,InputNumber,Input,Radio,Rate,Picker,ShortPassword,TextArea,Uploader,CountUp,Address,Barrage,install };
70
+ export { Avatar,Button,Cell,CellGroup,Icon,Price,OverLay,Divider,Layout,Col,Row,Swipe,ActionSheet,BackTop,Collapse,CollapseItem,Drag,Dialog,InfiniteLoading,Notify,Range,Video,Popup,Steps,Step,Swiper,SwiperItem,Switch,Toast,Progress,CircleProgress,NoticeBar,Navbar,FixedNav,Tab,TabPanel,MenuItem,Tabbar,TabbarItem,Elevator,Calendar,Checkbox,CheckboxGroup,DatePicker,InputNumber,Input,Radio,RadioGroup,Rate,Picker,ShortPassword,TextArea,Uploader,CountUp,NumberKeyboard,CountDown,Address,Barrage,Signature,install };
53
71
  declare const _default: {
54
72
  install: typeof install;
55
73
  version: string;