@varlet/ui 1.26.8 → 1.27.0-alpha.1649242923701

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.
Files changed (245) hide show
  1. package/es/action-sheet/ActionSheet.js +29 -27
  2. package/es/app-bar/AppBar.js +32 -27
  3. package/es/back-top/BackTop.js +9 -2
  4. package/es/badge/Badge.js +22 -14
  5. package/es/bottom-navigation/BottomNavigation.js +167 -0
  6. package/es/bottom-navigation/BottomNavigationSfc.css +0 -0
  7. package/es/bottom-navigation/BottomNavigationSfc.less +0 -0
  8. package/es/bottom-navigation/bottomNavigation.css +1 -0
  9. package/es/bottom-navigation/bottomNavigation.less +49 -0
  10. package/es/bottom-navigation/index.js +8 -0
  11. package/es/bottom-navigation/props.js +40 -0
  12. package/es/bottom-navigation/provide.js +17 -0
  13. package/es/bottom-navigation/style/index.js +4 -0
  14. package/es/bottom-navigation/style/less.js +4 -0
  15. package/es/bottom-navigation-item/BottomNavigationItem.js +122 -0
  16. package/es/bottom-navigation-item/BottomNavigationItemSfc.css +0 -0
  17. package/es/bottom-navigation-item/BottomNavigationItemSfc.less +0 -0
  18. package/es/bottom-navigation-item/bottomNavigationItem.css +1 -0
  19. package/es/bottom-navigation-item/bottomNavigationItem.less +78 -0
  20. package/es/bottom-navigation-item/index.js +8 -0
  21. package/es/bottom-navigation-item/props.js +22 -0
  22. package/es/bottom-navigation-item/provide.js +21 -0
  23. package/es/bottom-navigation-item/style/index.js +6 -0
  24. package/es/bottom-navigation-item/style/less.js +6 -0
  25. package/es/button/Button.js +12 -5
  26. package/es/card/Card.js +33 -28
  27. package/es/cell/Cell.js +26 -15
  28. package/es/checkbox/Checkbox.js +28 -26
  29. package/es/checkbox-group/CheckboxGroup.js +21 -25
  30. package/es/chip/Chip.js +16 -7
  31. package/es/chip/chip.css +1 -1
  32. package/es/chip/chip.less +11 -11
  33. package/es/col/Col.js +12 -5
  34. package/es/collapse/Collapse.js +15 -12
  35. package/es/collapse-item/CollapseItem.js +31 -30
  36. package/es/collapse-item/collapseItem.css +1 -1
  37. package/es/collapse-item/collapseItem.less +16 -16
  38. package/es/countdown/Countdown.js +14 -11
  39. package/es/counter/Counter.js +30 -27
  40. package/es/date-picker/DatePicker.js +28 -23
  41. package/es/date-picker/date-picker.css +1 -1
  42. package/es/date-picker/date-picker.less +22 -20
  43. package/es/date-picker/src/day-picker-panel.js +41 -34
  44. package/es/date-picker/src/month-picker-panel.js +27 -21
  45. package/es/date-picker/src/panel-header.js +16 -11
  46. package/es/date-picker/src/year-picker-panel.js +17 -9
  47. package/es/dialog/Dialog.js +36 -40
  48. package/es/divider/Divider.js +16 -12
  49. package/es/form/Form.js +11 -8
  50. package/es/form-details/FormDetails.js +27 -22
  51. package/es/icon/Icon.js +8 -1
  52. package/es/icon/icon.css +1 -1
  53. package/es/image/Image.js +19 -12
  54. package/es/image-preview/ImagePreview.js +35 -34
  55. package/es/index-anchor/IndexAnchor.js +8 -1
  56. package/es/index-bar/IndexBar.js +22 -20
  57. package/es/index.js +10 -0
  58. package/es/input/Input.js +45 -44
  59. package/es/lazy/index.js +2 -1
  60. package/es/less.js +2 -0
  61. package/es/list/List.js +39 -38
  62. package/es/loading/Loading.js +31 -23
  63. package/es/loading/loading.css +1 -1
  64. package/es/loading/loading.less +32 -32
  65. package/es/menu/Menu.js +12 -10
  66. package/es/option/Option.js +16 -11
  67. package/es/pagination/Pagination.js +34 -44
  68. package/es/pagination/pagination.css +1 -1
  69. package/es/pagination/pagination.less +8 -8
  70. package/es/picker/Picker.js +51 -47
  71. package/es/popup/Popup.js +9 -5
  72. package/es/progress/Progress.js +44 -35
  73. package/es/progress/progress.css +1 -1
  74. package/es/progress/progress.less +12 -12
  75. package/es/pull-refresh/PullRefresh.js +13 -10
  76. package/es/radio/Radio.js +25 -25
  77. package/es/radio-group/RadioGroup.js +19 -19
  78. package/es/rate/Rate.js +27 -25
  79. package/es/ripple/index.js +6 -2
  80. package/es/row/Row.js +11 -4
  81. package/es/select/Select.js +53 -54
  82. package/es/skeleton/Skeleton.js +70 -81
  83. package/es/slider/Slider.js +44 -40
  84. package/es/slider/slider.css +1 -1
  85. package/es/slider/slider.less +5 -5
  86. package/es/snackbar/Snackbar.js +9 -5
  87. package/es/snackbar/core.js +20 -26
  88. package/es/snackbar/snackbar.css +1 -1
  89. package/es/snackbar/snackbar.less +66 -68
  90. package/es/space/Space.js +8 -3
  91. package/es/step/Step.js +25 -23
  92. package/es/step/step.css +1 -1
  93. package/es/step/step.less +10 -10
  94. package/es/steps/Steps.js +12 -5
  95. package/es/sticky/Sticky.js +14 -7
  96. package/es/style-provider/StyleProvider.js +6 -2
  97. package/es/style.css +1 -1
  98. package/es/style.js +2 -0
  99. package/es/swipe/Swipe.js +22 -16
  100. package/es/swipe-item/SwipeItem.js +9 -4
  101. package/es/switch/Switch.js +25 -23
  102. package/es/switch/switch.css +1 -1
  103. package/es/switch/switch.less +2 -2
  104. package/es/tab/Tab.js +8 -1
  105. package/es/tab-item/TabItem.js +8 -1
  106. package/es/table/Table.js +27 -20
  107. package/es/tabs/Tabs.js +16 -11
  108. package/es/tabs-items/TabsItems.js +10 -5
  109. package/es/themes/dark/bottomNavigation.js +4 -0
  110. package/es/themes/dark/bottomNavigationItem.js +3 -0
  111. package/es/themes/dark/index.js +3 -1
  112. package/es/time-picker/TimePicker.js +47 -38
  113. package/es/time-picker/clock.js +26 -22
  114. package/es/time-picker/timePicker.css +1 -1
  115. package/es/time-picker/timePicker.less +11 -11
  116. package/es/umdIndex.js +10 -0
  117. package/es/uploader/Uploader.js +62 -57
  118. package/es/utils/components.js +35 -0
  119. package/es/varlet.esm.js +2082 -1527
  120. package/highlight/attributes.json +48 -0
  121. package/highlight/tags.json +20 -0
  122. package/highlight/web-types.json +155 -1
  123. package/lib/action-sheet/ActionSheet.js +30 -26
  124. package/lib/app-bar/AppBar.js +31 -24
  125. package/lib/back-top/BackTop.js +11 -2
  126. package/lib/badge/Badge.js +23 -13
  127. package/lib/bottom-navigation/BottomNavigation.js +183 -0
  128. package/lib/bottom-navigation/BottomNavigationSfc.css +0 -0
  129. package/lib/bottom-navigation/BottomNavigationSfc.less +0 -0
  130. package/lib/bottom-navigation/bottomNavigation.css +1 -0
  131. package/lib/bottom-navigation/bottomNavigation.less +49 -0
  132. package/lib/bottom-navigation/index.js +17 -0
  133. package/lib/bottom-navigation/props.js +45 -0
  134. package/lib/bottom-navigation/provide.js +27 -0
  135. package/lib/bottom-navigation/style/index.js +4 -0
  136. package/lib/bottom-navigation/style/less.js +4 -0
  137. package/lib/bottom-navigation-item/BottomNavigationItem.js +140 -0
  138. package/lib/bottom-navigation-item/BottomNavigationItemSfc.css +0 -0
  139. package/lib/bottom-navigation-item/BottomNavigationItemSfc.less +0 -0
  140. package/lib/bottom-navigation-item/bottomNavigationItem.css +1 -0
  141. package/lib/bottom-navigation-item/bottomNavigationItem.less +78 -0
  142. package/lib/bottom-navigation-item/index.js +17 -0
  143. package/lib/bottom-navigation-item/props.js +27 -0
  144. package/lib/bottom-navigation-item/provide.js +28 -0
  145. package/lib/bottom-navigation-item/style/index.js +6 -0
  146. package/lib/bottom-navigation-item/style/less.js +6 -0
  147. package/lib/button/Button.js +13 -4
  148. package/lib/card/Card.js +34 -27
  149. package/lib/cell/Cell.js +26 -13
  150. package/lib/checkbox/Checkbox.js +26 -23
  151. package/lib/checkbox-group/CheckboxGroup.js +19 -22
  152. package/lib/chip/Chip.js +18 -7
  153. package/lib/chip/chip.css +1 -1
  154. package/lib/chip/chip.less +11 -11
  155. package/lib/col/Col.js +14 -5
  156. package/lib/collapse/Collapse.js +15 -10
  157. package/lib/collapse-item/CollapseItem.js +31 -28
  158. package/lib/collapse-item/collapseItem.css +1 -1
  159. package/lib/collapse-item/collapseItem.less +16 -16
  160. package/lib/countdown/Countdown.js +14 -10
  161. package/lib/counter/Counter.js +29 -26
  162. package/lib/date-picker/DatePicker.js +30 -23
  163. package/lib/date-picker/date-picker.css +1 -1
  164. package/lib/date-picker/date-picker.less +22 -20
  165. package/lib/date-picker/src/day-picker-panel.js +41 -32
  166. package/lib/date-picker/src/month-picker-panel.js +27 -19
  167. package/lib/date-picker/src/panel-header.js +16 -9
  168. package/lib/date-picker/src/year-picker-panel.js +19 -9
  169. package/lib/dialog/Dialog.js +36 -38
  170. package/lib/divider/Divider.js +16 -10
  171. package/lib/form/Form.js +11 -6
  172. package/lib/form-details/FormDetails.js +27 -20
  173. package/lib/icon/Icon.js +10 -1
  174. package/lib/icon/icon.css +1 -1
  175. package/lib/image/Image.js +20 -11
  176. package/lib/image-preview/ImagePreview.js +35 -33
  177. package/lib/index-anchor/IndexAnchor.js +10 -1
  178. package/lib/index-bar/IndexBar.js +24 -20
  179. package/lib/index.js +6 -0
  180. package/lib/input/Input.js +45 -43
  181. package/lib/lazy/index.js +3 -1
  182. package/lib/less.js +2 -0
  183. package/lib/list/List.js +39 -36
  184. package/lib/loading/Loading.js +33 -23
  185. package/lib/loading/loading.css +1 -1
  186. package/lib/loading/loading.less +32 -32
  187. package/lib/menu/Menu.js +12 -9
  188. package/lib/option/Option.js +16 -9
  189. package/lib/pagination/Pagination.js +36 -44
  190. package/lib/pagination/pagination.css +1 -1
  191. package/lib/pagination/pagination.less +8 -8
  192. package/lib/picker/Picker.js +51 -46
  193. package/lib/popup/Popup.js +9 -4
  194. package/lib/progress/Progress.js +45 -34
  195. package/lib/progress/progress.css +1 -1
  196. package/lib/progress/progress.less +12 -12
  197. package/lib/pull-refresh/PullRefresh.js +14 -10
  198. package/lib/radio/Radio.js +23 -22
  199. package/lib/radio-group/RadioGroup.js +17 -16
  200. package/lib/rate/Rate.js +27 -24
  201. package/lib/ripple/index.js +7 -2
  202. package/lib/row/Row.js +12 -3
  203. package/lib/select/Select.js +53 -53
  204. package/lib/skeleton/Skeleton.js +69 -78
  205. package/lib/slider/Slider.js +42 -38
  206. package/lib/slider/slider.css +1 -1
  207. package/lib/slider/slider.less +5 -5
  208. package/lib/snackbar/Snackbar.js +9 -4
  209. package/lib/snackbar/core.js +20 -25
  210. package/lib/snackbar/snackbar.css +1 -1
  211. package/lib/snackbar/snackbar.less +66 -68
  212. package/lib/space/Space.js +9 -3
  213. package/lib/step/Step.js +26 -22
  214. package/lib/step/step.css +1 -1
  215. package/lib/step/step.less +10 -10
  216. package/lib/steps/Steps.js +13 -4
  217. package/lib/sticky/Sticky.js +15 -6
  218. package/lib/style-provider/StyleProvider.js +8 -2
  219. package/lib/style.css +1 -1
  220. package/lib/style.js +2 -0
  221. package/lib/swipe/Swipe.js +23 -16
  222. package/lib/swipe-item/SwipeItem.js +10 -3
  223. package/lib/switch/Switch.js +23 -20
  224. package/lib/switch/switch.css +1 -1
  225. package/lib/switch/switch.less +2 -2
  226. package/lib/tab/Tab.js +10 -1
  227. package/lib/tab-item/TabItem.js +10 -1
  228. package/lib/table/Table.js +27 -18
  229. package/lib/tabs/Tabs.js +18 -11
  230. package/lib/tabs-items/TabsItems.js +11 -4
  231. package/lib/themes/dark/bottomNavigation.js +9 -0
  232. package/lib/themes/dark/bottomNavigationItem.js +8 -0
  233. package/lib/themes/dark/index.js +5 -1
  234. package/lib/time-picker/TimePicker.js +49 -38
  235. package/lib/time-picker/clock.js +26 -20
  236. package/lib/time-picker/timePicker.css +1 -1
  237. package/lib/time-picker/timePicker.less +11 -11
  238. package/lib/uploader/Uploader.js +60 -55
  239. package/lib/utils/components.js +39 -0
  240. package/package.json +4 -4
  241. package/types/bottomNavigation.d.ts +19 -0
  242. package/types/bottomNavigationItem.d.ts +16 -0
  243. package/types/global.d.ts +2 -0
  244. package/types/index.d.ts +2 -0
  245. package/umd/varlet.js +4 -4
@@ -5,24 +5,20 @@ import { props } from './props';
5
5
  import { isArray, dt } from '../utils/shared';
6
6
  import { toPxNum, getTranslate } from '../utils/elements';
7
7
  import { pack } from '../locale';
8
+ import { createNamespace, call } from '../utils/components';
9
+ var {
10
+ n,
11
+ classes
12
+ } = createNamespace('picker');
8
13
  var MOMENTUM_RECORD_TIME = 300;
9
14
  var MOMENTUM_ALLOW_DISTANCE = 15;
10
15
  var sid = 0;
11
- import { renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, resolveComponent as _resolveComponent, withCtx as _withCtx, createVNode as _createVNode, createElementVNode as _createElementVNode, renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, normalizeStyle as _normalizeStyle, withModifiers as _withModifiers, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
16
+ import { renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, resolveComponent as _resolveComponent, normalizeClass as _normalizeClass, withCtx as _withCtx, createVNode as _createVNode, createElementVNode as _createElementVNode, renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, normalizeStyle as _normalizeStyle, withModifiers as _withModifiers, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
12
17
 
13
18
  var _withScopeId = n => (_pushScopeId(""), n = n(), _popScopeId(), n);
14
19
 
15
- var _hoisted_1 = {
16
- class: "var-picker__toolbar"
17
- };
18
- var _hoisted_2 = {
19
- class: "var-picker__title"
20
- };
21
- var _hoisted_3 = ["onTouchstart", "onTouchmove", "onTouchend"];
22
- var _hoisted_4 = ["onTransitionend"];
23
- var _hoisted_5 = {
24
- class: "var-picker__text"
25
- };
20
+ var _hoisted_1 = ["onTouchstart", "onTouchmove", "onTouchend"];
21
+ var _hoisted_2 = ["onTransitionend"];
26
22
  export function render(_ctx, _cache) {
27
23
  var _component_var_button = _resolveComponent("var-button");
28
24
 
@@ -38,14 +34,16 @@ export function render(_ctx, _cache) {
38
34
  show: _ctx.show,
39
35
  'onUpdate:show': _ctx.handlePopupUpdateShow,
40
36
  position: 'bottom',
41
- class: 'var-picker__popup'
37
+ class: _ctx.n('popup')
42
38
  } : null, {
43
39
  "var-picker-cover": ""
44
40
  }), {
45
41
  default: _withCtx(() => [_createElementVNode("div", _mergeProps({
46
- class: "var-picker"
47
- }, _ctx.$attrs), [_createElementVNode("div", _hoisted_1, [_renderSlot(_ctx.$slots, "cancel", {}, () => [_createVNode(_component_var_button, {
48
- class: "var-picker__cancel-button",
42
+ class: _ctx.n()
43
+ }, _ctx.$attrs), [_createElementVNode("div", {
44
+ class: _normalizeClass(_ctx.n('toolbar'))
45
+ }, [_renderSlot(_ctx.$slots, "cancel", {}, () => [_createVNode(_component_var_button, {
46
+ class: _normalizeClass(_ctx.n('cancel-button')),
49
47
  "var-picker-cover": "",
50
48
  text: "",
51
49
  "text-color": _ctx.cancelButtonTextColor,
@@ -59,10 +57,12 @@ export function render(_ctx, _cache) {
59
57
 
60
58
  }, 8
61
59
  /* PROPS */
62
- , ["text-color", "onClick"])]), _renderSlot(_ctx.$slots, "title", {}, () => [_createElementVNode("div", _hoisted_2, _toDisplayString(_ctx.dt(_ctx.title, _ctx.pack.pickerTitle)), 1
63
- /* TEXT */
60
+ , ["class", "text-color", "onClick"])]), _renderSlot(_ctx.$slots, "title", {}, () => [_createElementVNode("div", {
61
+ class: _normalizeClass(_ctx.n('title'))
62
+ }, _toDisplayString(_ctx.dt(_ctx.title, _ctx.pack.pickerTitle)), 3
63
+ /* TEXT, CLASS */
64
64
  )]), _renderSlot(_ctx.$slots, "confirm", {}, () => [_createVNode(_component_var_button, {
65
- class: "var-picker__confirm-button",
65
+ class: _normalizeClass(_ctx.n('confirm-button')),
66
66
  text: "",
67
67
  "var-picker-cover": "",
68
68
  "text-color": _ctx.confirmButtonTextColor,
@@ -76,20 +76,22 @@ export function render(_ctx, _cache) {
76
76
 
77
77
  }, 8
78
78
  /* PROPS */
79
- , ["text-color", "onClick"])])]), _createElementVNode("div", {
80
- class: "var-picker__columns",
79
+ , ["class", "text-color", "onClick"])])], 2
80
+ /* CLASS */
81
+ ), _createElementVNode("div", {
82
+ class: _normalizeClass(_ctx.n('columns')),
81
83
  style: _normalizeStyle({
82
84
  height: _ctx.columnHeight + "px"
83
85
  })
84
86
  }, [(_openBlock(true), _createElementBlock(_Fragment, null, _renderList(_ctx.scrollColumns, c => {
85
87
  return _openBlock(), _createElementBlock("div", {
86
- class: "var-picker__column",
88
+ class: _normalizeClass(_ctx.n('column')),
87
89
  key: c.id,
88
90
  onTouchstart: $event => _ctx.handleTouchstart($event, c),
89
91
  onTouchmove: _withModifiers($event => _ctx.handleTouchmove($event, c), ["prevent"]),
90
92
  onTouchend: $event => _ctx.handleTouchend($event, c)
91
93
  }, [_createElementVNode("div", {
92
- class: "var-picker__scroller",
94
+ class: _normalizeClass(_ctx.n('scroller')),
93
95
  ref_for: true,
94
96
  ref: el => _ctx.getScrollEl(el, c),
95
97
  style: _normalizeStyle({
@@ -100,42 +102,44 @@ export function render(_ctx, _cache) {
100
102
  onTransitionend: $event => _ctx.handleTransitionend(c)
101
103
  }, [(_openBlock(true), _createElementBlock(_Fragment, null, _renderList(c.column.texts, t => {
102
104
  return _openBlock(), _createElementBlock("div", {
103
- class: "var-picker__option",
105
+ class: _normalizeClass(_ctx.n('option')),
104
106
  style: _normalizeStyle({
105
107
  height: _ctx.optionHeight + "px"
106
108
  }),
107
109
  key: t
108
- }, [_createElementVNode("div", _hoisted_5, _toDisplayString(t), 1
109
- /* TEXT */
110
- )], 4
111
- /* STYLE */
110
+ }, [_createElementVNode("div", {
111
+ class: _normalizeClass(_ctx.n('text'))
112
+ }, _toDisplayString(t), 3
113
+ /* TEXT, CLASS */
114
+ )], 6
115
+ /* CLASS, STYLE */
112
116
  );
113
117
  }), 128
114
118
  /* KEYED_FRAGMENT */
115
- ))], 44
116
- /* STYLE, PROPS, HYDRATE_EVENTS */
117
- , _hoisted_4)], 40
118
- /* PROPS, HYDRATE_EVENTS */
119
- , _hoisted_3);
119
+ ))], 46
120
+ /* CLASS, STYLE, PROPS, HYDRATE_EVENTS */
121
+ , _hoisted_2)], 42
122
+ /* CLASS, PROPS, HYDRATE_EVENTS */
123
+ , _hoisted_1);
120
124
  }), 128
121
125
  /* KEYED_FRAGMENT */
122
126
  )), _createElementVNode("div", {
123
- class: "var-picker__picked",
127
+ class: _normalizeClass(_ctx.n('picked')),
124
128
  style: _normalizeStyle({
125
129
  top: _ctx.center + "px",
126
130
  height: _ctx.optionHeight + "px"
127
131
  })
128
- }, null, 4
129
- /* STYLE */
132
+ }, null, 6
133
+ /* CLASS, STYLE */
130
134
  ), _createElementVNode("div", {
131
- class: "var-picker__mask",
135
+ class: _normalizeClass(_ctx.n('mask')),
132
136
  style: _normalizeStyle({
133
137
  backgroundSize: "100% " + (_ctx.columnHeight - _ctx.optionHeight) / 2 + "px"
134
138
  })
135
- }, null, 4
136
- /* STYLE */
137
- )], 4
138
- /* STYLE */
139
+ }, null, 6
140
+ /* CLASS, STYLE */
141
+ )], 6
142
+ /* CLASS, STYLE */
139
143
  )], 16
140
144
  /* FULL_PROPS */
141
145
  )]),
@@ -169,9 +173,7 @@ export default defineComponent({
169
173
  };
170
174
 
171
175
  var handlePopupUpdateShow = value => {
172
- var _props$onUpdateShow;
173
-
174
- (_props$onUpdateShow = props['onUpdate:show']) == null ? void 0 : _props$onUpdateShow.call(props, value);
176
+ call(props['onUpdate:show'], value);
175
177
  };
176
178
 
177
179
  var limitTranslate = scrollColumn => {
@@ -356,7 +358,7 @@ export default defineComponent({
356
358
  }
357
359
 
358
360
  prevIndexes = [...indexes];
359
- onChange == null ? void 0 : onChange(texts, indexes);
361
+ call(onChange, texts, indexes);
360
362
  };
361
363
 
362
364
  var stopScroll = () => {
@@ -387,7 +389,7 @@ export default defineComponent({
387
389
  indexes
388
390
  } = getPicked();
389
391
  prevIndexes = [...indexes];
390
- props.onConfirm == null ? void 0 : props.onConfirm(texts, indexes);
392
+ call(props.onConfirm, texts, indexes);
391
393
  }; // expose
392
394
 
393
395
 
@@ -398,7 +400,7 @@ export default defineComponent({
398
400
  indexes
399
401
  } = getPicked();
400
402
  prevIndexes = [...indexes];
401
- props.onCancel == null ? void 0 : props.onCancel(texts, indexes);
403
+ call(props.onCancel, texts, indexes);
402
404
  };
403
405
 
404
406
  watch(() => props.columns, newValue => {
@@ -411,6 +413,8 @@ export default defineComponent({
411
413
  immediate: true
412
414
  });
413
415
  return {
416
+ n,
417
+ classes,
414
418
  pack,
415
419
  optionHeight,
416
420
  optionCount,
package/es/popup/Popup.js CHANGED
@@ -6,7 +6,7 @@ import { defineComponent, watch, Transition, Teleport } from 'vue';
6
6
  import { props } from './props';
7
7
  import { useLock } from '../context/lock';
8
8
  import { useZIndex } from '../context/zIndex';
9
- import { addRouteListener, useTeleport } from '../utils/components';
9
+ import { addRouteListener, useTeleport, createNamespace } from '../utils/components';
10
10
 
11
11
 
12
12
 
@@ -14,6 +14,10 @@ function _isSlot(s) {
14
14
  return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !_isVNode(s);
15
15
  }
16
16
 
17
+ var {
18
+ n,
19
+ classes
20
+ } = createNamespace('popup');
17
21
  export default defineComponent({
18
22
  name: 'VarPopup',
19
23
  inheritAttrs: false,
@@ -60,11 +64,11 @@ export default defineComponent({
60
64
 
61
65
  var renderOverlay = () => {
62
66
  var {
63
- overlayClass,
67
+ overlayClass = '',
64
68
  overlayStyle
65
69
  } = props;
66
70
  return _createVNode("div", {
67
- "class": ['var-popup__overlay', overlayClass],
71
+ "class": classes(n('overlay'), overlayClass),
68
72
  "style": _extends({
69
73
  zIndex: zIndex.value - 1
70
74
  }, overlayStyle),
@@ -74,7 +78,7 @@ export default defineComponent({
74
78
 
75
79
  var renderContent = () => {
76
80
  return _createVNode("div", _mergeProps({
77
- "class": ['var-popup__content', 'var-elevation--3', "var-popup--" + props.position],
81
+ "class": classes(n('content'), 'var-elevation--3', n("--" + props.position)),
78
82
  "style": {
79
83
  zIndex: zIndex.value
80
84
  }
@@ -96,7 +100,7 @@ export default defineComponent({
96
100
  "onAfterLeave": onClosed
97
101
  }, {
98
102
  default: () => [_withDirectives(_createVNode("div", {
99
- "class": "var--box var-popup",
103
+ "class": classes('var--box', n()),
100
104
  "style": {
101
105
  zIndex: zIndex.value - 2
102
106
  }
@@ -1,36 +1,39 @@
1
1
  import { defineComponent, computed } from 'vue';
2
2
  import { props } from './props';
3
3
  import { toNumber } from '../utils/shared';
4
- import { normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, normalizeClass as _normalizeClass, createElementVNode as _createElementVNode, mergeProps as _mergeProps, renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
4
+ import { createNamespace } from '../utils/components';
5
+ var {
6
+ n,
7
+ classes
8
+ } = createNamespace('progress');
9
+ import { normalizeClass as _normalizeClass, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createElementVNode as _createElementVNode, mergeProps as _mergeProps, renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
5
10
 
6
11
  var _withScopeId = n => (_pushScopeId(""), n = n(), _popScopeId(), n);
7
12
 
8
- var _hoisted_1 = {
9
- class: "var-progress"
10
- };
11
- var _hoisted_2 = {
12
- key: 0,
13
- class: "var-progress-linear"
14
- };
15
- var _hoisted_3 = ["viewBox"];
16
- var _hoisted_4 = ["cx", "cy", "r", "stroke-width"];
17
- var _hoisted_5 = ["cx", "cy", "r", "stroke-width"];
13
+ var _hoisted_1 = ["viewBox"];
14
+ var _hoisted_2 = ["cx", "cy", "r", "stroke-width"];
15
+ var _hoisted_3 = ["cx", "cy", "r", "stroke-width"];
18
16
  export function render(_ctx, _cache) {
19
- return _openBlock(), _createElementBlock("div", _hoisted_1, [_ctx.mode === 'linear' ? (_openBlock(), _createElementBlock("div", _hoisted_2, [_createElementVNode("div", _mergeProps({
20
- class: "var-progress-linear__block",
17
+ return _openBlock(), _createElementBlock("div", {
18
+ class: _normalizeClass(_ctx.n())
19
+ }, [_ctx.mode === 'linear' ? (_openBlock(), _createElementBlock("div", {
20
+ key: 0,
21
+ class: _normalizeClass(_ctx.n('linear'))
22
+ }, [_createElementVNode("div", _mergeProps({
23
+ class: _ctx.n('linear-block'),
21
24
  style: {
22
25
  height: _ctx.lineWidth + "px"
23
26
  }
24
27
  }, _ctx.$attrs), [_ctx.track ? (_openBlock(), _createElementBlock("div", {
25
28
  key: 0,
26
- class: "var-progress-linear__background",
29
+ class: _normalizeClass(_ctx.n('linear-background')),
27
30
  style: _normalizeStyle({
28
31
  background: _ctx.trackColor
29
32
  })
30
- }, null, 4
31
- /* STYLE */
33
+ }, null, 6
34
+ /* CLASS, STYLE */
32
35
  )) : _createCommentVNode("v-if", true), _createElementVNode("div", {
33
- class: _normalizeClass("var-progress-linear__certain" + (_ctx.ripple ? ' var-progress-linear__ripple' : '')),
36
+ class: _normalizeClass(_ctx.classes(_ctx.n('linear-certain'), [_ctx.ripple, _ctx.n('linear-ripple')])),
34
37
  style: _normalizeStyle({
35
38
  background: _ctx.color,
36
39
  width: _ctx.linearProps.width
@@ -41,27 +44,29 @@ export function render(_ctx, _cache) {
41
44
  /* FULL_PROPS */
42
45
  ), _ctx.label ? (_openBlock(), _createElementBlock("div", _mergeProps({
43
46
  key: 0,
44
- class: "var-progress-linear__label"
47
+ class: _ctx.n('linear-label')
45
48
  }, _ctx.$attrs), [_renderSlot(_ctx.$slots, "default", {}, () => [_createTextVNode(_toDisplayString(_ctx.linearProps.roundValue), 1
46
49
  /* TEXT */
47
50
  )])], 16
48
51
  /* FULL_PROPS */
49
- )) : _createCommentVNode("v-if", true)])) : _createCommentVNode("v-if", true), _ctx.mode === 'circle' ? (_openBlock(), _createElementBlock("div", {
52
+ )) : _createCommentVNode("v-if", true)], 2
53
+ /* CLASS */
54
+ )) : _createCommentVNode("v-if", true), _ctx.mode === 'circle' ? (_openBlock(), _createElementBlock("div", {
50
55
  key: 1,
51
- class: "var-progress-circle",
56
+ class: _normalizeClass(_ctx.n('circle')),
52
57
  style: _normalizeStyle({
53
58
  width: _ctx.size + "px",
54
59
  height: _ctx.size + "px"
55
60
  })
56
61
  }, [(_openBlock(), _createElementBlock("svg", {
57
- class: "var-progress-circle__svg",
62
+ class: _normalizeClass(_ctx.n('circle-svg')),
58
63
  style: _normalizeStyle({
59
64
  transform: "rotate(" + (_ctx.rotate - 90) + "deg)"
60
65
  }),
61
66
  viewBox: _ctx.circleProps.viewBox
62
67
  }, [_ctx.track ? (_openBlock(), _createElementBlock("circle", {
63
68
  key: 0,
64
- class: "var-progress-circle__background",
69
+ class: _normalizeClass(_ctx.n('circle-background')),
65
70
  cx: _ctx.size / 2,
66
71
  cy: _ctx.size / 2,
67
72
  r: _ctx.circleProps.radius,
@@ -71,10 +76,10 @@ export function render(_ctx, _cache) {
71
76
  strokeDasharray: _ctx.circleProps.perimeter,
72
77
  stroke: _ctx.trackColor
73
78
  })
74
- }, null, 12
75
- /* STYLE, PROPS */
76
- , _hoisted_4)) : _createCommentVNode("v-if", true), _createElementVNode("circle", {
77
- class: "var-progress-circle__certain",
79
+ }, null, 14
80
+ /* CLASS, STYLE, PROPS */
81
+ , _hoisted_2)) : _createCommentVNode("v-if", true), _createElementVNode("circle", {
82
+ class: _normalizeClass(_ctx.n('circle-certain')),
78
83
  cx: _ctx.size / 2,
79
84
  cy: _ctx.size / 2,
80
85
  r: _ctx.circleProps.radius,
@@ -84,20 +89,22 @@ export function render(_ctx, _cache) {
84
89
  strokeDasharray: _ctx.circleProps.strokeDasharray,
85
90
  stroke: _ctx.color
86
91
  })
87
- }, null, 12
88
- /* STYLE, PROPS */
89
- , _hoisted_5)], 12
90
- /* STYLE, PROPS */
91
- , _hoisted_3)), _ctx.label ? (_openBlock(), _createElementBlock("div", _mergeProps({
92
+ }, null, 14
93
+ /* CLASS, STYLE, PROPS */
94
+ , _hoisted_3)], 14
95
+ /* CLASS, STYLE, PROPS */
96
+ , _hoisted_1)), _ctx.label ? (_openBlock(), _createElementBlock("div", _mergeProps({
92
97
  key: 0,
93
- class: "var-progress-circle__label"
98
+ class: _ctx.n('circle-label')
94
99
  }, _ctx.$attrs), [_renderSlot(_ctx.$slots, "default", {}, () => [_createTextVNode(_toDisplayString(_ctx.circleProps.roundValue), 1
95
100
  /* TEXT */
96
101
  )])], 16
97
102
  /* FULL_PROPS */
98
- )) : _createCommentVNode("v-if", true)], 4
99
- /* STYLE */
100
- )) : _createCommentVNode("v-if", true)]);
103
+ )) : _createCommentVNode("v-if", true)], 6
104
+ /* CLASS, STYLE */
105
+ )) : _createCommentVNode("v-if", true)], 2
106
+ /* CLASS */
107
+ );
101
108
  }
102
109
  export default defineComponent({
103
110
  render,
@@ -135,6 +142,8 @@ export default defineComponent({
135
142
  };
136
143
  });
137
144
  return {
145
+ n,
146
+ classes,
138
147
  linearProps,
139
148
  circleProps
140
149
  };
@@ -1 +1 @@
1
- :root { --progress-font-size: var(--font-size-sm); --progress-ripple-color: #fff; --progress-track-color: #d8d8d8; --progress-background: var(--color-primary);}.var-progress { position: relative; font-size: var(--progress-font-size);}.var-progress-linear { display: flex; align-items: center;}.var-progress-linear__block { flex: 1; position: relative; overflow: hidden;}.var-progress-linear__background,.var-progress-linear__certain { width: 100%; height: 100%;}.var-progress-linear__ripple::after { position: absolute; width: 0; background-color: var(--progress-ripple-color); height: 100%; opacity: 0; animation: ripple 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite; content: '';}.var-progress-linear__background { background-color: var(--progress-track-color);}.var-progress-linear__certain { position: absolute; background-color: var(--progress-background); top: 0; left: 0; transition: all 0.2s, background-color 0.8s;}.var-progress-linear__label { margin-left: 8px; flex: 0;}@keyframes ripple { 0% { width: 0; opacity: 0.1; } 20% { width: 0; opacity: 0.5; } 80% { width: 100%; opacity: 0; }}.var-progress-circle { position: relative;}.var-progress-circle__background { stroke: var(--progress-track-color);}.var-progress-circle__certain { transition: all 0.2s; stroke: var(--progress-background); position: absolute;}.var-progress-circle__label { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);}
1
+ :root { --progress-font-size: var(--font-size-sm); --progress-ripple-color: #fff; --progress-track-color: #d8d8d8; --progress-background: var(--color-primary);}.var-progress { position: relative; font-size: var(--progress-font-size);}.var-progress__linear { display: flex; align-items: center;}.var-progress__linear-block { flex: 1; position: relative; overflow: hidden;}.var-progress__linear-background,.var-progress__linear-certain { width: 100%; height: 100%;}.var-progress__linear-ripple::after { position: absolute; width: 0; background-color: var(--progress-ripple-color); height: 100%; opacity: 0; animation: ripple 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite; content: '';}.var-progress__linear-background { background-color: var(--progress-track-color);}.var-progress__linear-certain { position: absolute; background-color: var(--progress-background); top: 0; left: 0; transition: all 0.2s, background-color 0.8s;}.var-progress__linear-label { margin-left: 8px; flex: 0;}@keyframes ripple { 0% { width: 0; opacity: 0.1; } 20% { width: 0; opacity: 0.5; } 80% { width: 100%; opacity: 0; }}.var-progress__circle { position: relative;}.var-progress__circle-background { stroke: var(--progress-track-color);}.var-progress__circle-certain { transition: all 0.2s; stroke: var(--progress-background); position: absolute;}.var-progress__circle-label { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);}
@@ -14,23 +14,23 @@
14
14
  position: relative;
15
15
  font-size: var(--progress-font-size);
16
16
 
17
- &-linear {
17
+ &__linear {
18
18
  display: flex;
19
19
  align-items: center;
20
20
 
21
- &__block {
21
+ &-block {
22
22
  flex: 1;
23
23
  position: relative;
24
24
  overflow: hidden;
25
25
  }
26
26
 
27
- &__background,
28
- &__certain {
27
+ &-background,
28
+ &-certain {
29
29
  width: 100%;
30
30
  height: 100%;
31
31
  }
32
32
 
33
- &__ripple {
33
+ &-ripple {
34
34
  &::after {
35
35
  position: absolute;
36
36
  width: 0;
@@ -42,11 +42,11 @@
42
42
  }
43
43
  }
44
44
 
45
- &__background {
45
+ &-background {
46
46
  background-color: var(--progress-track-color);
47
47
  }
48
48
 
49
- &__certain {
49
+ &-certain {
50
50
  position: absolute;
51
51
  background-color: var(--progress-background);
52
52
  top: 0;
@@ -54,7 +54,7 @@
54
54
  transition: all 0.2s, background-color 0.8s;
55
55
  }
56
56
 
57
- &__label {
57
+ &-label {
58
58
  margin-left: 8px;
59
59
  flex: 0;
60
60
  }
@@ -75,20 +75,20 @@
75
75
  }
76
76
  }
77
77
 
78
- &-circle {
78
+ &__circle {
79
79
  position: relative;
80
80
 
81
- &__background {
81
+ &-background {
82
82
  stroke: var(--progress-track-color);
83
83
  }
84
84
 
85
- &__certain {
85
+ &-certain {
86
86
  transition: all 0.2s;
87
87
  stroke: var(--progress-background);
88
88
  position: absolute;
89
89
  }
90
90
 
91
- &__label {
91
+ &-label {
92
92
  position: absolute;
93
93
  left: 50%;
94
94
  top: 50%;
@@ -3,6 +3,11 @@ import { defineComponent, ref, computed, watch, onMounted } from 'vue';
3
3
  import { getParentScroller, getScrollTop } from '../utils/elements';
4
4
  import { props } from './props';
5
5
  import { toNumber } from '../utils/shared';
6
+ import { createNamespace } from '../utils/components';
7
+ var {
8
+ n,
9
+ classes
10
+ } = createNamespace('pull-refresh');
6
11
  var MAX_DISTANCE = 100;
7
12
  var CONTROL_POSITION = -50;
8
13
  var scroller;
@@ -12,7 +17,7 @@ export function render(_ctx, _cache) {
12
17
 
13
18
  return _openBlock(), _createElementBlock("div", {
14
19
  ref: "freshNode",
15
- class: "var-pull-refresh",
20
+ class: _normalizeClass(_ctx.n()),
16
21
  onTouchstart: _cache[0] || (_cache[0] = function () {
17
22
  return _ctx.touchStart && _ctx.touchStart(...arguments);
18
23
  }),
@@ -26,19 +31,19 @@ export function render(_ctx, _cache) {
26
31
  return _ctx.touchEnd && _ctx.touchEnd(...arguments);
27
32
  })
28
33
  }, [_createElementVNode("div", {
29
- class: _normalizeClass(["var-pull-refresh__control var-elevation--2", [_ctx.isSuccess ? 'var-pull-refresh__control-success' : null]]),
34
+ class: _normalizeClass(_ctx.classes(_ctx.n('control'), 'var-elevation--2', [_ctx.isSuccess, _ctx.n('control-success')])),
30
35
  style: _normalizeStyle(_ctx.controlStyle)
31
36
  }, [_createVNode(_component_var_icon, {
32
37
  name: _ctx.iconName,
33
38
  transition: 200,
34
- class: _normalizeClass(_ctx.iconClass),
39
+ class: _normalizeClass(_ctx.classes(_ctx.n('icon'), [_ctx.refreshStatus === 'loading', _ctx.n('animation')])),
35
40
  "var-pull-refresh-cover": ""
36
41
  }, null, 8
37
42
  /* PROPS */
38
43
  , ["name", "class"])], 6
39
44
  /* CLASS, STYLE */
40
- ), _renderSlot(_ctx.$slots, "default")], 544
41
- /* HYDRATE_EVENTS, NEED_PATCH */
45
+ ), _renderSlot(_ctx.$slots, "default")], 34
46
+ /* CLASS, HYDRATE_EVENTS */
42
47
  );
43
48
  }
44
49
  export default defineComponent({
@@ -57,10 +62,6 @@ export default defineComponent({
57
62
  var refreshStatus = ref('default');
58
63
  var isEnd = ref(false);
59
64
  var isTouchable = computed(() => refreshStatus.value !== 'loading' && refreshStatus.value !== 'success' && !props.disabled);
60
- var iconClass = computed(() => ({
61
- 'var-pull-refresh__icon': true,
62
- 'var-pull-refresh__animation': refreshStatus.value === 'loading'
63
- }));
64
65
  var controlStyle = computed(() => ({
65
66
  transform: "translate3d(0px, " + distance.value + "px, 0px) translate(-50%, 0)",
66
67
  transition: isEnd.value ? "transform " + props.animationDuration + "ms" : undefined,
@@ -128,12 +129,14 @@ export default defineComponent({
128
129
  scroller = getParentScroller(freshNode.value);
129
130
  });
130
131
  return {
132
+ n,
133
+ classes,
134
+ refreshStatus,
131
135
  freshNode,
132
136
  touchStart,
133
137
  touchMove,
134
138
  touchEnd,
135
139
  iconName,
136
- iconClass,
137
140
  controlStyle,
138
141
  isSuccess
139
142
  };