@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
package/es/input/Input.js CHANGED
@@ -3,43 +3,48 @@ import VarIcon from '../icon';
3
3
  import { defineComponent, getCurrentInstance, ref, computed, nextTick } from 'vue';
4
4
  import { props } from './props';
5
5
  import { isEmpty } from '../utils/shared';
6
- import { useValidation } from '../utils/components';
6
+ import { useValidation, createNamespace, call } from '../utils/components';
7
7
  import { useForm } from '../form/provide';
8
+ var {
9
+ n,
10
+ classes
11
+ } = createNamespace('input');
8
12
  import { renderSlot as _renderSlot, normalizeClass as _normalizeClass, createElementVNode as _createElementVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, normalizeStyle as _normalizeStyle, toDisplayString as _toDisplayString, resolveComponent as _resolveComponent, createBlock as _createBlock, createVNode as _createVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
9
13
 
10
14
  var _withScopeId = n => (_pushScopeId(""), n = n(), _popScopeId(), n);
11
15
 
12
- var _hoisted_1 = {
13
- key: 0,
14
- class: "var-input__autocomplete"
15
- };
16
- var _hoisted_2 = ["id", "disabled", "type", "value", "maxlength", "rows"];
17
- var _hoisted_3 = ["id", "disabled", "type", "value", "maxlength"];
18
- var _hoisted_4 = ["for"];
16
+ var _hoisted_1 = ["id", "disabled", "type", "value", "maxlength", "rows"];
17
+ var _hoisted_2 = ["id", "disabled", "type", "value", "maxlength"];
18
+ var _hoisted_3 = ["for"];
19
19
  export function render(_ctx, _cache) {
20
20
  var _component_var_icon = _resolveComponent("var-icon");
21
21
 
22
22
  var _component_var_form_details = _resolveComponent("var-form-details");
23
23
 
24
24
  return _openBlock(), _createElementBlock("div", {
25
- class: _normalizeClass(["var-input var--box", [_ctx.disabled ? 'var-input--disabled' : null]]),
25
+ class: _normalizeClass(_ctx.classes(_ctx.n(), 'var--box', [_ctx.disabled, _ctx.n('--disabled')])),
26
26
  onClick: _cache[8] || (_cache[8] = function () {
27
27
  return _ctx.handleClick && _ctx.handleClick(...arguments);
28
28
  })
29
29
  }, [_createElementVNode("div", {
30
- class: _normalizeClass(["var-input__controller", [_ctx.isFocus ? 'var-input--focus' : null, _ctx.errorMessage ? 'var-input--error' : null, _ctx.formDisabled || _ctx.disabled ? 'var-input--disabled' : null]]),
30
+ class: _normalizeClass(_ctx.classes(_ctx.n('controller'), [_ctx.isFocus, _ctx.n('--focus')], [_ctx.errorMessage, _ctx.n('--error')], [_ctx.formDisabled || _ctx.disabled, _ctx.n('--disabled')])),
31
31
  style: _normalizeStyle({
32
32
  color: !_ctx.errorMessage ? _ctx.isFocus ? _ctx.focusColor : _ctx.blurColor : undefined
33
33
  })
34
34
  }, [_createElementVNode("div", {
35
- class: _normalizeClass(["var-input__icon", [!_ctx.hint ? 'var-input--non-hint' : null]])
35
+ class: _normalizeClass(_ctx.classes(_ctx.n('icon'), [!_ctx.hint, _ctx.n('--non-hint')]))
36
36
  }, [_renderSlot(_ctx.$slots, "prepend-icon")], 2
37
37
  /* CLASS */
38
38
  ), _createElementVNode("div", {
39
- class: _normalizeClass(["var-input__wrap", [!_ctx.hint ? 'var-input--non-hint' : null]])
40
- }, [_ctx.type === 'password' ? (_openBlock(), _createElementBlock("input", _hoisted_1)) : _createCommentVNode("v-if", true), _ctx.textarea ? (_openBlock(), _createElementBlock("textarea", {
39
+ class: _normalizeClass(_ctx.classes(_ctx.n('wrap'), [!_ctx.hint, _ctx.n('--non-hint')]))
40
+ }, [_ctx.type === 'password' ? (_openBlock(), _createElementBlock("input", {
41
+ key: 0,
42
+ class: _normalizeClass(_ctx.n('autocomplete'))
43
+ }, null, 2
44
+ /* CLASS */
45
+ )) : _createCommentVNode("v-if", true), _ctx.textarea ? (_openBlock(), _createElementBlock("textarea", {
41
46
  key: 1,
42
- class: _normalizeClass(["var-input__input var-input--textarea", [_ctx.formDisabled || _ctx.disabled ? 'var-input--disabled' : null, _ctx.errorMessage ? 'var-input--caret-error' : null]]),
47
+ class: _normalizeClass(_ctx.classes(_ctx.n('input'), _ctx.n('--textarea'), [_ctx.formDisabled || _ctx.disabled, _ctx.n('--disabled')], [_ctx.errorMessage, _ctx.n('--caret-error')])),
43
48
  ref: "el",
44
49
  autocomplete: "new-password",
45
50
  id: _ctx.id,
@@ -50,7 +55,7 @@ export function render(_ctx, _cache) {
50
55
  rows: _ctx.rows,
51
56
  style: _normalizeStyle({
52
57
  color: _ctx.textColor,
53
- caretColor: !_ctx.errorMessage ? _ctx.focusColor : null,
58
+ caretColor: !_ctx.errorMessage ? _ctx.focusColor : undefined,
54
59
  resize: _ctx.resize ? 'vertical' : 'none'
55
60
  }),
56
61
  onFocus: _cache[0] || (_cache[0] = function () {
@@ -67,9 +72,9 @@ export function render(_ctx, _cache) {
67
72
  })
68
73
  }, "\n ", 46
69
74
  /* CLASS, STYLE, PROPS, HYDRATE_EVENTS */
70
- , _hoisted_2)) : (_openBlock(), _createElementBlock("input", {
75
+ , _hoisted_1)) : (_openBlock(), _createElementBlock("input", {
71
76
  key: 2,
72
- class: _normalizeClass(["var-input__input", [_ctx.formDisabled || _ctx.disabled ? 'var-input--disabled' : null, _ctx.errorMessage ? 'var-input--caret-error' : null]]),
77
+ class: _normalizeClass(_ctx.classes(_ctx.n('input'), [_ctx.formDisabled || _ctx.disabled, _ctx.n('--disabled')], [_ctx.errorMessage, _ctx.n('--caret-error')])),
73
78
  ref: "el",
74
79
  autocomplete: "new-password",
75
80
  id: _ctx.id,
@@ -79,7 +84,7 @@ export function render(_ctx, _cache) {
79
84
  maxlength: _ctx.maxlength,
80
85
  style: _normalizeStyle({
81
86
  color: _ctx.textColor,
82
- caretColor: !_ctx.errorMessage ? _ctx.focusColor : null
87
+ caretColor: !_ctx.errorMessage ? _ctx.focusColor : undefined
83
88
  }),
84
89
  onFocus: _cache[4] || (_cache[4] = function () {
85
90
  return _ctx.handleFocus && _ctx.handleFocus(...arguments);
@@ -95,39 +100,39 @@ export function render(_ctx, _cache) {
95
100
  })
96
101
  }, null, 46
97
102
  /* CLASS, STYLE, PROPS, HYDRATE_EVENTS */
98
- , _hoisted_3)), _createElementVNode("label", {
99
- class: _normalizeClass(["var--ellipsis", [_ctx.isFocus ? 'var-input--focus' : null, _ctx.errorMessage ? 'var-input--error' : null, _ctx.textarea ? 'var-input__textarea-placeholder' : 'var-input__placeholder', _ctx.computePlaceholderState(), !_ctx.hint ? 'var-input--placeholder-non-hint' : null]]),
103
+ , _hoisted_2)), _createElementVNode("label", {
104
+ class: _normalizeClass(_ctx.classes('var--ellipsis', [_ctx.isFocus, _ctx.n('--focus')], [_ctx.errorMessage, _ctx.n('--error')], [_ctx.textarea, _ctx.n('textarea-placeholder'), _ctx.n('placeholder')], _ctx.computePlaceholderState(), [!_ctx.hint, _ctx.n('--placeholder-non-hint')])),
100
105
  style: _normalizeStyle({
101
106
  color: !_ctx.errorMessage ? _ctx.isFocus ? _ctx.focusColor : _ctx.blurColor : undefined
102
107
  }),
103
108
  for: _ctx.id
104
109
  }, _toDisplayString(_ctx.placeholder), 15
105
110
  /* TEXT, CLASS, STYLE, PROPS */
106
- , _hoisted_4)], 2
111
+ , _hoisted_3)], 2
107
112
  /* CLASS */
108
113
  ), _createElementVNode("div", {
109
- class: _normalizeClass(["var-input__icon", [!_ctx.hint ? 'var-input--non-hint' : null]])
114
+ class: _normalizeClass(_ctx.classes(_ctx.n('icon'), [!_ctx.hint, _ctx.n('--non-hint')]))
110
115
  }, [_renderSlot(_ctx.$slots, "append-icon", {}, () => [_ctx.clearable && !_ctx.isEmpty(_ctx.modelValue) ? (_openBlock(), _createBlock(_component_var_icon, {
111
116
  key: 0,
112
- class: "var-input__clear-icon",
117
+ class: _normalizeClass(_ctx.n('clear-icon')),
113
118
  "var-input-cover": "",
114
119
  name: "close-circle",
115
120
  size: "14px",
116
121
  onClick: _ctx.handleClear
117
122
  }, null, 8
118
123
  /* PROPS */
119
- , ["onClick"])) : _createCommentVNode("v-if", true)])], 2
124
+ , ["class", "onClick"])) : _createCommentVNode("v-if", true)])], 2
120
125
  /* CLASS */
121
126
  )], 6
122
127
  /* CLASS, STYLE */
123
128
  ), _ctx.line ? (_openBlock(), _createElementBlock("div", {
124
129
  key: 0,
125
- class: _normalizeClass(["var-input__line", [_ctx.formDisabled || _ctx.disabled ? 'var-input--line-disabled' : null, _ctx.errorMessage ? 'var-input--line-error' : null]]),
130
+ class: _normalizeClass(_ctx.classes(_ctx.n('line'), [_ctx.formDisabled || _ctx.disabled, _ctx.n('--line-disabled')], [_ctx.errorMessage, _ctx.n('--line-error')])),
126
131
  style: _normalizeStyle({
127
132
  background: !_ctx.errorMessage ? _ctx.blurColor : undefined
128
133
  })
129
134
  }, [_createElementVNode("div", {
130
- class: _normalizeClass(["var-input__dot", [_ctx.isFocus ? 'var-input--spread' : null, _ctx.formDisabled || _ctx.disabled ? 'var-input--line-disabled' : null, _ctx.errorMessage ? 'var-input--line-error' : null]]),
135
+ class: _normalizeClass(_ctx.classes(_ctx.n('dot'), [_ctx.isFocus, _ctx.n('--spread')], [_ctx.formDisabled || _ctx.disabled, _ctx.n('--line-disabled')], [_ctx.errorMessage, _ctx.n('--line-error')])),
131
136
  style: _normalizeStyle({
132
137
  background: !_ctx.errorMessage ? _ctx.focusColor : undefined
133
138
  })
@@ -203,34 +208,32 @@ export default defineComponent({
203
208
  } = props;
204
209
 
205
210
  if (!hint && !isEmpty(modelValue)) {
206
- return 'var-input--placeholder-hidden';
211
+ return n('--placeholder-hidden');
207
212
  }
208
213
 
209
214
  if (hint && (!isEmpty(modelValue) || isFocus.value)) {
210
- return 'var-input--placeholder-hint';
215
+ return n('--placeholder-hint');
211
216
  }
212
217
  };
213
218
 
214
219
  var handleFocus = e => {
215
220
  isFocus.value = true;
216
- props.onFocus == null ? void 0 : props.onFocus(e);
221
+ call(props.onFocus, e);
217
222
  validateWithTrigger('onFocus');
218
223
  };
219
224
 
220
225
  var handleBlur = e => {
221
226
  isFocus.value = false;
222
- props.onBlur == null ? void 0 : props.onBlur(e);
227
+ call(props.onBlur, e);
223
228
  validateWithTrigger('onBlur');
224
229
  };
225
230
 
226
231
  var handleInput = e => {
227
- var _props$onUpdateModel;
228
-
229
232
  var {
230
233
  value
231
234
  } = e.target;
232
- (_props$onUpdateModel = props['onUpdate:modelValue']) == null ? void 0 : _props$onUpdateModel.call(props, value);
233
- props.onInput == null ? void 0 : props.onInput(value, e);
235
+ call(props['onUpdate:modelValue'], value);
236
+ call(props.onInput, value, e);
234
237
  validateWithTrigger('onInput');
235
238
  };
236
239
 
@@ -238,13 +241,11 @@ export default defineComponent({
238
241
  var {
239
242
  value
240
243
  } = e.target;
241
- props.onChange == null ? void 0 : props.onChange(value, e);
244
+ call(props.onChange, value, e);
242
245
  validateWithTrigger('onChange');
243
246
  };
244
247
 
245
248
  var handleClear = () => {
246
- var _props$onUpdateModel2;
247
-
248
249
  var {
249
250
  disabled,
250
251
  readonly,
@@ -256,8 +257,8 @@ export default defineComponent({
256
257
  return;
257
258
  }
258
259
 
259
- (_props$onUpdateModel2 = props['onUpdate:modelValue']) == null ? void 0 : _props$onUpdateModel2.call(props, '');
260
- onClear == null ? void 0 : onClear('');
260
+ call(props['onUpdate:modelValue'], '');
261
+ call(onClear, '');
261
262
  validateWithTrigger('onClear');
262
263
  };
263
264
 
@@ -271,15 +272,13 @@ export default defineComponent({
271
272
  return;
272
273
  }
273
274
 
274
- onClick == null ? void 0 : onClick(e);
275
+ call(onClick, e);
275
276
  validateWithTrigger('onClick');
276
277
  }; // expose
277
278
 
278
279
 
279
280
  var reset = () => {
280
- var _props$onUpdateModel3;
281
-
282
- (_props$onUpdateModel3 = props['onUpdate:modelValue']) == null ? void 0 : _props$onUpdateModel3.call(props, '');
281
+ call(props['onUpdate:modelValue'], '');
283
282
  resetValidation();
284
283
  }; // expose
285
284
 
@@ -303,7 +302,7 @@ export default defineComponent({
303
302
  validate,
304
303
  resetValidation
305
304
  };
306
- bindForm == null ? void 0 : bindForm(inputProvider);
305
+ call(bindForm, inputProvider);
307
306
  return {
308
307
  el,
309
308
  id,
@@ -312,6 +311,8 @@ export default defineComponent({
312
311
  maxlengthText,
313
312
  formDisabled: form == null ? void 0 : form.disabled,
314
313
  formReadonly: form == null ? void 0 : form.readonly,
314
+ n,
315
+ classes,
315
316
  isEmpty,
316
317
  computePlaceholderState,
317
318
  handleFocus,
package/es/lazy/index.js CHANGED
@@ -6,6 +6,7 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
6
6
 
7
7
  import { getAllParentScroller, inViewport } from '../utils/elements';
8
8
  import { createCache, removeItem, throttle } from '../utils/shared';
9
+ import { call } from '../utils/components';
9
10
  var BACKGROUND_IMAGE_ARG_NAME = 'background-image';
10
11
  var LAZY_LOADING = 'lazy-loading';
11
12
  var LAZY_ERROR = 'lazy-error';
@@ -93,7 +94,7 @@ function createLazy(el, binding) {
93
94
  attemptLock: false
94
95
  }, lazyOptions);
95
96
  setSRC(el, PIXEL);
96
- defaultLazyOptions.filter == null ? void 0 : defaultLazyOptions.filter(el._lazy);
97
+ call(defaultLazyOptions.filter, el._lazy);
97
98
  }
98
99
 
99
100
  function createImage(el, attemptSRC) {
package/es/less.js CHANGED
@@ -2,6 +2,8 @@ import './action-sheet/style/less'
2
2
  import './app-bar/style/less'
3
3
  import './back-top/style/less'
4
4
  import './badge/style/less'
5
+ import './bottom-navigation/style/less'
6
+ import './bottom-navigation-item/style/less'
5
7
  import './button/style/less'
6
8
  import './card/style/less'
7
9
  import './cell/style/less'
package/es/list/List.js CHANGED
@@ -8,57 +8,58 @@ import { defineComponent, onMounted, onUnmounted, ref, nextTick } from 'vue';
8
8
  import { getParentScroller, toPxNum } from '../utils/elements';
9
9
  import { props } from './props';
10
10
  import { isNumber, dt } from '../utils/shared';
11
+ import { createNamespace, call } from '../utils/components';
11
12
  import { pack } from '../locale';
12
- import { renderSlot as _renderSlot, toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, resolveComponent as _resolveComponent, createVNode as _createVNode, createCommentVNode as _createCommentVNode, createTextVNode as _createTextVNode, resolveDirective as _resolveDirective, openBlock as _openBlock, createElementBlock as _createElementBlock, withDirectives as _withDirectives, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
13
-
14
- var _withScopeId = n => (_pushScopeId(""), n = n(), _popScopeId(), n);
15
-
16
- var _hoisted_1 = {
17
- class: "var-list var--box",
18
- ref: "listEl"
19
- };
20
- var _hoisted_2 = {
21
- class: "var-list__loading"
22
- };
23
- var _hoisted_3 = {
24
- class: "var-list__loading-text"
25
- };
26
- var _hoisted_4 = {
27
- class: "var-list__finished"
28
- };
29
- var _hoisted_5 = {
30
- class: "var-list__detector",
31
- ref: "detectorEl"
32
- };
13
+ var {
14
+ n,
15
+ classes
16
+ } = createNamespace('list');
17
+ import { renderSlot as _renderSlot, toDisplayString as _toDisplayString, normalizeClass as _normalizeClass, createElementVNode as _createElementVNode, resolveComponent as _resolveComponent, createVNode as _createVNode, createCommentVNode as _createCommentVNode, createTextVNode as _createTextVNode, resolveDirective as _resolveDirective, openBlock as _openBlock, createElementBlock as _createElementBlock, withDirectives as _withDirectives } from "vue";
33
18
  export function render(_ctx, _cache) {
34
19
  var _component_var_loading = _resolveComponent("var-loading");
35
20
 
36
21
  var _directive_ripple = _resolveDirective("ripple");
37
22
 
38
- return _openBlock(), _createElementBlock("div", _hoisted_1, [_renderSlot(_ctx.$slots, "default"), _ctx.loading ? _renderSlot(_ctx.$slots, "loading", {
23
+ return _openBlock(), _createElementBlock("div", {
24
+ class: _normalizeClass(_ctx.classes(_ctx.n(), 'var--box')),
25
+ ref: "listEl"
26
+ }, [_renderSlot(_ctx.$slots, "default"), _ctx.loading ? _renderSlot(_ctx.$slots, "loading", {
39
27
  key: 0
40
- }, () => [_createElementVNode("div", _hoisted_2, [_createElementVNode("div", _hoisted_3, _toDisplayString(_ctx.dt(_ctx.loadingText, _ctx.pack.listLoadingText)), 1
41
- /* TEXT */
28
+ }, () => [_createElementVNode("div", {
29
+ class: _normalizeClass(_ctx.n('loading'))
30
+ }, [_createElementVNode("div", {
31
+ class: _normalizeClass(_ctx.n('loading-text'))
32
+ }, _toDisplayString(_ctx.dt(_ctx.loadingText, _ctx.pack.listLoadingText)), 3
33
+ /* TEXT, CLASS */
42
34
  ), _createVNode(_component_var_loading, {
43
35
  size: "mini",
44
36
  radius: 10
45
- })])]) : _createCommentVNode("v-if", true), _ctx.finished ? _renderSlot(_ctx.$slots, "finished", {
37
+ })], 2
38
+ /* CLASS */
39
+ )]) : _createCommentVNode("v-if", true), _ctx.finished ? _renderSlot(_ctx.$slots, "finished", {
46
40
  key: 1
47
- }, () => [_createElementVNode("div", _hoisted_4, _toDisplayString(_ctx.dt(_ctx.finishedText, _ctx.pack.listFinishedText)), 1
48
- /* TEXT */
41
+ }, () => [_createElementVNode("div", {
42
+ class: _normalizeClass(_ctx.n('finished'))
43
+ }, _toDisplayString(_ctx.dt(_ctx.finishedText, _ctx.pack.listFinishedText)), 3
44
+ /* TEXT, CLASS */
49
45
  )]) : _createCommentVNode("v-if", true), _ctx.error ? _renderSlot(_ctx.$slots, "error", {
50
46
  key: 2
51
47
  }, () => [_withDirectives((_openBlock(), _createElementBlock("div", {
52
- class: "var-list__error",
48
+ class: _normalizeClass(_ctx.n('error')),
53
49
  onClick: _cache[0] || (_cache[0] = function () {
54
50
  return _ctx.load && _ctx.load(...arguments);
55
51
  })
56
52
  }, [_createTextVNode(_toDisplayString(_ctx.dt(_ctx.errorText, _ctx.pack.listErrorText)), 1
57
53
  /* TEXT */
58
- )])), [[_directive_ripple]])]) : _createCommentVNode("v-if", true), _createElementVNode("div", _hoisted_5, null, 512
59
- /* NEED_PATCH */
60
- )], 512
61
- /* NEED_PATCH */
54
+ )], 2
55
+ /* CLASS */
56
+ )), [[_directive_ripple]])]) : _createCommentVNode("v-if", true), _createElementVNode("div", {
57
+ class: _normalizeClass(_ctx.n('detector')),
58
+ ref: "detectorEl"
59
+ }, null, 2
60
+ /* CLASS */
61
+ )], 2
62
+ /* CLASS */
62
63
  );
63
64
  }
64
65
  export default defineComponent({
@@ -78,11 +79,9 @@ export default defineComponent({
78
79
  var scroller;
79
80
 
80
81
  var load = () => {
81
- var _props$onUpdateError, _props$onUpdateLoadi;
82
-
83
- (_props$onUpdateError = props['onUpdate:error']) == null ? void 0 : _props$onUpdateError.call(props, false);
84
- (_props$onUpdateLoadi = props['onUpdate:loading']) == null ? void 0 : _props$onUpdateLoadi.call(props, true);
85
- props.onLoad == null ? void 0 : props.onLoad();
82
+ call(props['onUpdate:error'], false);
83
+ call(props['onUpdate:loading'], true);
84
+ call(props.onLoad);
86
85
  };
87
86
 
88
87
  var isReachBottom = () => {
@@ -130,7 +129,9 @@ export default defineComponent({
130
129
  dt,
131
130
  isNumber,
132
131
  load,
133
- check
132
+ check,
133
+ n,
134
+ classes
134
135
  };
135
136
  }
136
137
 
@@ -1,19 +1,16 @@
1
1
  import { computed, defineComponent } from 'vue';
2
2
  import { props } from './props';
3
3
  import { toNumber } from '../utils/shared';
4
+ import { createNamespace, call } from '../utils/components';
5
+ var {
6
+ n,
7
+ classes
8
+ } = createNamespace('loading');
4
9
  import { renderSlot as _renderSlot, normalizeClass as _normalizeClass, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle, renderList as _renderList, Fragment as _Fragment, 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-loading"
10
- };
11
- var _hoisted_2 = {
12
- key: 0,
13
- class: "var-loading__circle"
14
- };
15
-
16
- var _hoisted_3 = /*#__PURE__*/_withScopeId(() => /*#__PURE__*/_createElementVNode("svg", {
13
+ var _hoisted_1 = /*#__PURE__*/_withScopeId(() => /*#__PURE__*/_createElementVNode("svg", {
17
14
  viewBox: "25 25 50 50"
18
15
  }, [/*#__PURE__*/_createElementVNode("circle", {
19
16
  cx: "50",
@@ -24,38 +21,45 @@ var _hoisted_3 = /*#__PURE__*/_withScopeId(() => /*#__PURE__*/_createElementVNod
24
21
  /* HOISTED */
25
22
  ));
26
23
 
27
- var _hoisted_4 = [_hoisted_3];
24
+ var _hoisted_2 = [_hoisted_1];
28
25
  export function render(_ctx, _cache) {
29
- return _openBlock(), _createElementBlock("div", _hoisted_1, [_ctx.$slots.default ? (_openBlock(), _createElementBlock("div", {
26
+ return _openBlock(), _createElementBlock("div", {
27
+ class: _normalizeClass(_ctx.n())
28
+ }, [_ctx.$slots.default ? (_openBlock(), _createElementBlock("div", {
30
29
  key: 0,
31
- class: _normalizeClass(["var-loading__content", [_ctx.loading ? 'var-loading__content--active' : null]])
30
+ class: _normalizeClass(_ctx.classes(_ctx.n('content'), [_ctx.loading, _ctx.n('content--active')]))
32
31
  }, [_renderSlot(_ctx.$slots, "default")], 2
33
32
  /* CLASS */
34
33
  )) : _createCommentVNode("v-if", true), _ctx.isShow ? (_openBlock(), _createElementBlock("div", {
35
34
  key: 1,
36
- class: _normalizeClass(["var--box var-loading__body", [_ctx.$slots.default ? 'var-loading__inside' : null]])
37
- }, [_ctx.type === 'circle' ? (_openBlock(), _createElementBlock("div", _hoisted_2, [_createElementVNode("span", {
38
- class: "var-loading__circle-block",
35
+ class: _normalizeClass(_ctx.classes('var--box', _ctx.n('body'), [_ctx.$slots.default, _ctx.n('inside')]))
36
+ }, [_ctx.type === 'circle' ? (_openBlock(), _createElementBlock("div", {
37
+ key: 0,
38
+ class: _normalizeClass(_ctx.n('circle'))
39
+ }, [_createElementVNode("span", {
40
+ class: _normalizeClass(_ctx.n('circle-block')),
39
41
  style: _normalizeStyle({
40
42
  width: _ctx.getRadius * 2 + 'px',
41
43
  height: _ctx.getRadius * 2 + 'px',
42
44
  color: _ctx.color
43
45
  })
44
- }, _hoisted_4, 4
45
- /* STYLE */
46
- )])) : _createCommentVNode("v-if", true), (_openBlock(true), _createElementBlock(_Fragment, null, _renderList(_ctx.loadingTypeDict, (nums, key) => {
46
+ }, _hoisted_2, 6
47
+ /* CLASS, STYLE */
48
+ )], 2
49
+ /* CLASS */
50
+ )) : _createCommentVNode("v-if", true), (_openBlock(true), _createElementBlock(_Fragment, null, _renderList(_ctx.loadingTypeDict, (nums, key) => {
47
51
  return _openBlock(), _createElementBlock(_Fragment, {
48
52
  key: key
49
53
  }, [_ctx.type === key ? (_openBlock(), _createElementBlock("div", {
50
54
  key: 0,
51
- class: _normalizeClass("var-loading__" + key + " var-loading__" + key + "-" + _ctx.size)
55
+ class: _normalizeClass(_ctx.classes(_ctx.n(key), _ctx.n(key + "--" + _ctx.size)))
52
56
  }, [(_openBlock(true), _createElementBlock(_Fragment, null, _renderList(nums, num => {
53
57
  return _openBlock(), _createElementBlock("div", {
54
58
  key: num + key,
55
59
  style: _normalizeStyle({
56
60
  backgroundColor: _ctx.color
57
61
  }),
58
- class: _normalizeClass("var-loading__" + key + "-item var-loading__" + key + "-item-" + _ctx.size)
62
+ class: _normalizeClass(_ctx.classes(_ctx.n(key + "-item"), _ctx.n(key + "-item--" + _ctx.size)))
59
63
  }, null, 6
60
64
  /* CLASS, STYLE */
61
65
  );
@@ -70,7 +74,7 @@ export function render(_ctx, _cache) {
70
74
  /* KEYED_FRAGMENT */
71
75
  )), _ctx.$slots.description || _ctx.description ? (_openBlock(), _createElementBlock("div", {
72
76
  key: 1,
73
- class: _normalizeClass(["var-loading__description", "var-loading__description--" + _ctx.size]),
77
+ class: _normalizeClass(_ctx.classes(_ctx.n('description'), _ctx.n("description--" + _ctx.size))),
74
78
  style: _normalizeStyle({
75
79
  color: _ctx.color
76
80
  })
@@ -80,7 +84,9 @@ export function render(_ctx, _cache) {
80
84
  /* CLASS, STYLE */
81
85
  )) : _createCommentVNode("v-if", true)], 2
82
86
  /* CLASS */
83
- )) : _createCommentVNode("v-if", true)]);
87
+ )) : _createCommentVNode("v-if", true)], 2
88
+ /* CLASS */
89
+ );
84
90
  }
85
91
  export default defineComponent({
86
92
  render,
@@ -107,10 +113,12 @@ export default defineComponent({
107
113
  return props.radius ? toNumber(props.radius) : sizeDict[props.size];
108
114
  });
109
115
  var isShow = computed(() => {
110
- if (!(slots.default != null && slots.default())) return true;
116
+ if (!call(slots.default)) return true;
111
117
  return props.loading;
112
118
  });
113
119
  return {
120
+ n,
121
+ classes,
114
122
  loadingTypeDict,
115
123
  getRadius,
116
124
  isShow
@@ -1 +1 @@
1
- :root { --loading-opacity: 0.38; --loading-desc-margin: 8px 0 0;}.var-loading { position: relative;}.var-loading__content { transition: opacity 0.3s; opacity: 1;}.var-loading__content--active { opacity: var(--loading-opacity); user-select: none;}.var-loading__body { display: flex; justify-content: center; align-items: center; height: 100%; flex-direction: column;}.var-loading__inside { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 1;}.var-loading__description { color: currentColor; margin: var(--loading-desc-margin);}.var-loading__description--large { font-size: 16px;}.var-loading__description--normal { font-size: 14px;}.var-loading__description--small { font-size: 12px;}.var-loading__description--mini { font-size: 10px;}.var-loading__circle { display: flex;}.var-loading__circle-block { display: inline-block; animation: circle 1.8s linear infinite;}.var-loading__circle-block svg { display: block; width: 100%; height: 100%;}.var-loading__circle-block svg circle { animation: circular 1.5s ease-in-out infinite; stroke: currentColor; stroke-width: 3; stroke-linecap: round;}@keyframes circle { from { transform: rotate(0deg); } to { transform: rotate(360deg); }}@keyframes circular { 0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; } 50% { stroke-dasharray: 90, 150; stroke-dashoffset: -40; } 100% { stroke-dasharray: 90, 150; stroke-dashoffset: -120; }}.var-loading__wave { display: flex; align-items: center; justify-content: center;}.var-loading__wave-large { width: 64px; height: 18px;}.var-loading__wave-normal { width: 50px; height: 16px;}.var-loading__wave-small { width: 36px; height: 14px;}.var-loading__wave-mini { width: 22px; height: 12px;}.var-loading__wave-item { height: 100%; display: inline-block; animation: 1.2s ease-in-out infinite wave;}.var-loading__wave-item:nth-child(1) { animation-delay: -1.2s; margin-left: 0;}.var-loading__wave-item:nth-child(2) { animation-delay: -1.1s;}.var-loading__wave-item:nth-child(3) { animation-delay: -1s;}.var-loading__wave-item:nth-child(4) { animation-delay: -0.9s;}.var-loading__wave-item:nth-child(5) { animation-delay: -0.8s;}.var-loading__wave-item-large { width: 5px; margin-left: 5px;}.var-loading__wave-item-normal { width: 4px; margin-left: 4px;}.var-loading__wave-item-small { width: 3px; margin-left: 3px;}.var-loading__wave-item-mini { width: 2px; margin-left: 2px;}@keyframes wave { 0%, 40%, 100% { transform: scaleY(0.4); } 20% { transform: scaleY(1); }}.var-loading__cube { display: flex; align-items: center;}.var-loading__cube-large { width: 64px; height: 18px;}.var-loading__cube-normal { width: 50px; height: 16px;}.var-loading__cube-small { width: 36px; height: 14px;}.var-loading__cube-mini { width: 22px; height: 12px;}.var-loading__cube-item { display: inline-block; transform-origin: right bottom; animation: 1.5s ease infinite cube;}.var-loading__cube-item:nth-child(1) { animation-delay: 0.2s; margin-left: 0;}.var-loading__cube-item:nth-child(2) { animation-delay: 0.4s;}.var-loading__cube-item:nth-child(3) { animation-delay: 0.6s;}.var-loading__cube-item:nth-child(4) { animation-delay: 0.8s;}.var-loading__cube-item-large { height: 10px; width: 10px; margin-left: 5px;}.var-loading__cube-item-normal { height: 8px; width: 8px; margin-left: 4px;}.var-loading__cube-item-small { height: 6px; width: 6px; margin-left: 3px;}.var-loading__cube-item-mini { height: 4px; width: 4px; margin-left: 2px;}@keyframes cube { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: rotate(90deg) scale(0.3); }}.var-loading__rect { display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;}.var-loading__rect-large { width: 64px; height: 18px;}.var-loading__rect-normal { width: 50px; height: 16px;}.var-loading__rect-small { width: 36px; height: 14px;}.var-loading__rect-mini { width: 22px; height: 12px;}.var-loading__rect-item { animation: 2s ease-in-out infinite rect;}.var-loading__rect-item:nth-child(1) { animation-delay: 1.75s;}.var-loading__rect-item:nth-child(2) { animation-delay: 1.5s;}.var-loading__rect-item:nth-child(3) { animation-delay: 1.25s;}.var-loading__rect-item:nth-child(4) { animation-delay: 1s;}.var-loading__rect-item:nth-child(5) { animation-delay: 0.75s;}.var-loading__rect-item:nth-child(6) { animation-delay: 0.5s;}.var-loading__rect-item:nth-child(7) { animation-delay: 0.25s;}.var-loading__rect-item:nth-child(8) { animation-delay: 0s;}.var-loading__rect-item-large { height: 100%; width: 8px;}.var-loading__rect-item-normal { height: 90%; width: 6.4px;}.var-loading__rect-item-small { height: 80%; width: 4.8px;}.var-loading__rect-item-mini { height: 70%; width: 3.2px;}@keyframes rect { 0% { opacity: 0.3; } 25% { opacity: 1; } 50% { opacity: 0.3; } 65% { opacity: 1; } 100% { opacity: 0.3; }}.var-loading__disappear { display: flex; justify-content: space-around; align-items: center; flex-flow: nowrap;}.var-loading__disappear-large { width: 64px; height: 18px;}.var-loading__disappear-normal { width: 50px; height: 16px;}.var-loading__disappear-small { width: 36px; height: 14px;}.var-loading__disappear-mini { width: 22px; height: 12px;}.var-loading__disappear-item { border-radius: 50%; animation: 0.5s ease-in-out infinite alternate disappear;}.var-loading__disappear-item:nth-child(1) { animation-delay: -0.4s;}.var-loading__disappear-item:nth-child(2) { animation-delay: -0.2s;}.var-loading__disappear-item:nth-child(3) { animation-delay: 0s;}.var-loading__disappear-item-large { height: 15px; width: 15px;}.var-loading__disappear-item-normal { height: 12px; width: 12px;}.var-loading__disappear-item-small { height: 9px; width: 9px;}.var-loading__disappear-item-mini { height: 6px; width: 6px;}@keyframes disappear { 0% { opacity: 1; } 100% { opacity: 0; }}
1
+ :root { --loading-opacity: 0.38; --loading-desc-margin: 8px 0 0;}.var-loading { position: relative;}.var-loading__content { transition: opacity 0.3s; opacity: 1;}.var-loading__content--active { opacity: var(--loading-opacity); user-select: none;}.var-loading__body { display: flex; justify-content: center; align-items: center; height: 100%; flex-direction: column;}.var-loading__inside { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 1;}.var-loading__description { color: currentColor; margin: var(--loading-desc-margin);}.var-loading__description--large { font-size: 16px;}.var-loading__description--normal { font-size: 14px;}.var-loading__description--small { font-size: 12px;}.var-loading__description--mini { font-size: 10px;}.var-loading__circle { display: flex;}.var-loading__circle-block { display: inline-block; animation: circle 1.8s linear infinite;}.var-loading__circle-block svg { display: block; width: 100%; height: 100%;}.var-loading__circle-block svg circle { animation: circular 1.5s ease-in-out infinite; stroke: currentColor; stroke-width: 3; stroke-linecap: round;}@keyframes circle { from { transform: rotate(0deg); } to { transform: rotate(360deg); }}@keyframes circular { 0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; } 50% { stroke-dasharray: 90, 150; stroke-dashoffset: -40; } 100% { stroke-dasharray: 90, 150; stroke-dashoffset: -120; }}.var-loading__wave { display: flex; align-items: center; justify-content: center;}.var-loading__wave--large { width: 64px; height: 18px;}.var-loading__wave--normal { width: 50px; height: 16px;}.var-loading__wave--small { width: 36px; height: 14px;}.var-loading__wave--mini { width: 22px; height: 12px;}.var-loading__wave-item { height: 100%; display: inline-block; animation: 1.2s ease-in-out infinite wave;}.var-loading__wave-item:nth-child(1) { animation-delay: -1.2s; margin-left: 0;}.var-loading__wave-item:nth-child(2) { animation-delay: -1.1s;}.var-loading__wave-item:nth-child(3) { animation-delay: -1s;}.var-loading__wave-item:nth-child(4) { animation-delay: -0.9s;}.var-loading__wave-item:nth-child(5) { animation-delay: -0.8s;}.var-loading__wave-item--large { width: 5px; margin-left: 5px;}.var-loading__wave-item--normal { width: 4px; margin-left: 4px;}.var-loading__wave-item--small { width: 3px; margin-left: 3px;}.var-loading__wave-item--mini { width: 2px; margin-left: 2px;}@keyframes wave { 0%, 40%, 100% { transform: scaleY(0.4); } 20% { transform: scaleY(1); }}.var-loading__cube { display: flex; align-items: center;}.var-loading__cube--large { width: 64px; height: 18px;}.var-loading__cube--normal { width: 50px; height: 16px;}.var-loading__cube--small { width: 36px; height: 14px;}.var-loading__cube--mini { width: 22px; height: 12px;}.var-loading__cube-item { display: inline-block; transform-origin: right bottom; animation: 1.5s ease infinite cube;}.var-loading__cube-item:nth-child(1) { animation-delay: 0.2s; margin-left: 0;}.var-loading__cube-item:nth-child(2) { animation-delay: 0.4s;}.var-loading__cube-item:nth-child(3) { animation-delay: 0.6s;}.var-loading__cube-item:nth-child(4) { animation-delay: 0.8s;}.var-loading__cube-item--large { height: 10px; width: 10px; margin-left: 5px;}.var-loading__cube-item--normal { height: 8px; width: 8px; margin-left: 4px;}.var-loading__cube-item--small { height: 6px; width: 6px; margin-left: 3px;}.var-loading__cube-item--mini { height: 4px; width: 4px; margin-left: 2px;}@keyframes cube { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: rotate(90deg) scale(0.3); }}.var-loading__rect { display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;}.var-loading__rect--large { width: 64px; height: 18px;}.var-loading__rect--normal { width: 50px; height: 16px;}.var-loading__rect--small { width: 36px; height: 14px;}.var-loading__rect--mini { width: 22px; height: 12px;}.var-loading__rect-item { animation: 2s ease-in-out infinite rect;}.var-loading__rect-item:nth-child(1) { animation-delay: 1.75s;}.var-loading__rect-item:nth-child(2) { animation-delay: 1.5s;}.var-loading__rect-item:nth-child(3) { animation-delay: 1.25s;}.var-loading__rect-item:nth-child(4) { animation-delay: 1s;}.var-loading__rect-item:nth-child(5) { animation-delay: 0.75s;}.var-loading__rect-item:nth-child(6) { animation-delay: 0.5s;}.var-loading__rect-item:nth-child(7) { animation-delay: 0.25s;}.var-loading__rect-item:nth-child(8) { animation-delay: 0s;}.var-loading__rect-item--large { height: 100%; width: 8px;}.var-loading__rect-item--normal { height: 90%; width: 6.4px;}.var-loading__rect-item--small { height: 80%; width: 4.8px;}.var-loading__rect-item--mini { height: 70%; width: 3.2px;}@keyframes rect { 0% { opacity: 0.3; } 25% { opacity: 1; } 50% { opacity: 0.3; } 65% { opacity: 1; } 100% { opacity: 0.3; }}.var-loading__disappear { display: flex; justify-content: space-around; align-items: center; flex-flow: nowrap;}.var-loading__disappear--large { width: 64px; height: 18px;}.var-loading__disappear--normal { width: 50px; height: 16px;}.var-loading__disappear--small { width: 36px; height: 14px;}.var-loading__disappear--mini { width: 22px; height: 12px;}.var-loading__disappear-item { border-radius: 50%; animation: 0.5s ease-in-out infinite alternate disappear;}.var-loading__disappear-item:nth-child(1) { animation-delay: -0.4s;}.var-loading__disappear-item:nth-child(2) { animation-delay: -0.2s;}.var-loading__disappear-item:nth-child(3) { animation-delay: 0s;}.var-loading__disappear-item--large { height: 15px; width: 15px;}.var-loading__disappear-item--normal { height: 12px; width: 12px;}.var-loading__disappear-item--small { height: 9px; width: 9px;}.var-loading__disappear-item--mini { height: 6px; width: 6px;}@keyframes disappear { 0% { opacity: 1; } 100% { opacity: 0; }}