@varlet/ui 2.9.6 → 2.10.0-alpha.1682067841655

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 (45) hide show
  1. package/es/fab/Fab.mjs +3 -5
  2. package/es/field-decorator/FieldDecorator.mjs +196 -0
  3. package/es/field-decorator/FieldDecoratorSfc.css +0 -0
  4. package/es/field-decorator/fieldDecorator.css +1 -0
  5. package/es/field-decorator/props.mjs +81 -0
  6. package/es/field-decorator/style/index.mjs +4 -0
  7. package/es/icon/icon.css +1 -1
  8. package/es/index.bundle.mjs +1 -1
  9. package/es/index.mjs +1 -1
  10. package/es/input/Input.mjs +173 -161
  11. package/es/input/input.css +1 -1
  12. package/es/input/props.mjs +7 -33
  13. package/es/input/style/index.mjs +2 -1
  14. package/es/menu/usePopover.mjs +2 -2
  15. package/es/option/Option.mjs +0 -3
  16. package/es/option/option.css +1 -1
  17. package/es/select/Select.mjs +104 -145
  18. package/es/select/props.mjs +7 -33
  19. package/es/select/select.css +1 -1
  20. package/es/select/style/index.mjs +1 -0
  21. package/es/snackbar/Snackbar.mjs +1 -0
  22. package/es/snackbar/core.mjs +4 -0
  23. package/es/snackbar/index.mjs +18 -3
  24. package/es/snackbar/props.mjs +1 -1
  25. package/es/snackbar/style/index.mjs +1 -1
  26. package/es/sticky/Sticky.mjs +2 -2
  27. package/es/style.css +1 -1
  28. package/es/swipe/Swipe.mjs +1 -1
  29. package/es/tabs/Tabs.mjs +1 -1
  30. package/es/themes/dark/fieldDecorator.mjs +4 -0
  31. package/es/themes/dark/index.mjs +2 -2
  32. package/es/themes/dark/select.mjs +0 -2
  33. package/es/utils/components.mjs +42 -9
  34. package/es/varlet.esm.js +6876 -6683
  35. package/highlight/web-types.en-US.json +23 -1
  36. package/highlight/web-types.zh-CN.json +41 -1
  37. package/lib/style.css +1 -1
  38. package/lib/varlet.cjs.js +1200 -979
  39. package/package.json +6 -6
  40. package/types/input.d.ts +5 -1
  41. package/types/select.d.ts +5 -1
  42. package/types/snackbar.d.ts +6 -1
  43. package/types/varComponent.d.ts +2 -0
  44. package/umd/varlet.js +5 -5
  45. package/es/themes/dark/input.mjs +0 -4
package/lib/varlet.cjs.js CHANGED
@@ -424,11 +424,14 @@ function useEventListener(target, type, listener, options = {}) {
424
424
  const { passive: passive2 = false, capture = false } = options;
425
425
  let listening = false;
426
426
  let cleaned = false;
427
+ const getElement = (target2) => {
428
+ return isFunction(target2) ? target2() : vue.unref(target2);
429
+ };
427
430
  const add2 = (target2) => {
428
431
  if (listening || cleaned) {
429
432
  return;
430
433
  }
431
- const element = vue.unref(target2);
434
+ const element = getElement(target2);
432
435
  if (element) {
433
436
  element.addEventListener(type, listener, {
434
437
  passive: passive2,
@@ -441,7 +444,7 @@ function useEventListener(target, type, listener, options = {}) {
441
444
  if (!listening || cleaned) {
442
445
  return;
443
446
  }
444
- const element = vue.unref(target2);
447
+ const element = getElement(target2);
445
448
  if (element) {
446
449
  element.removeEventListener(type, listener, {
447
450
  capture
@@ -582,30 +585,6 @@ function useChildren(key) {
582
585
  bindChildren
583
586
  };
584
587
  }
585
- function useVModel(props2, key, options = {}) {
586
- const vm = vue.getCurrentInstance();
587
- const { passive: passive2 = true, eventName, defaultValue, emit = vm === null || vm === void 0 ? void 0 : vm.emit } = options;
588
- const event = eventName !== null && eventName !== void 0 ? eventName : `update:${key.toString()}`;
589
- const getValue = () => props2[key] != null ? props2[key] : defaultValue;
590
- if (!passive2) {
591
- return vue.computed({
592
- get() {
593
- return getValue();
594
- },
595
- set(value) {
596
- emit(event, value);
597
- }
598
- });
599
- }
600
- const proxy = vue.ref(getValue());
601
- vue.watch(() => props2[key], () => {
602
- proxy.value = getValue();
603
- });
604
- vue.watch(() => proxy.value, (newValue) => {
605
- emit(event, newValue);
606
- });
607
- return proxy;
608
- }
609
588
  function asyncGeneratorStep$d(gen, resolve, reject, _next, _throw, key, arg) {
610
589
  try {
611
590
  var info = gen[key](arg);
@@ -635,8 +614,8 @@ function _asyncToGenerator$d(fn2) {
635
614
  });
636
615
  };
637
616
  }
638
- function _extends$n() {
639
- _extends$n = Object.assign ? Object.assign.bind() : function(target) {
617
+ function _extends$p() {
618
+ _extends$p = Object.assign ? Object.assign.bind() : function(target) {
640
619
  for (var i = 1; i < arguments.length; i++) {
641
620
  var source = arguments[i];
642
621
  for (var key in source) {
@@ -647,7 +626,7 @@ function _extends$n() {
647
626
  }
648
627
  return target;
649
628
  };
650
- return _extends$n.apply(this, arguments);
629
+ return _extends$p.apply(this, arguments);
651
630
  }
652
631
  function pickProps(props2, propsKey) {
653
632
  return Array.isArray(propsKey) ? propsKey.reduce((pickedProps, key) => {
@@ -676,7 +655,7 @@ function mountInstance(component, props2, eventListener) {
676
655
  }
677
656
  var Host = {
678
657
  setup() {
679
- return () => vue.h(component, _extends$n({}, props2, eventListener));
658
+ return () => vue.h(component, _extends$p({}, props2, eventListener));
680
659
  }
681
660
  };
682
661
  var {
@@ -742,12 +721,9 @@ function useValidation() {
742
721
  validateWithTrigger
743
722
  };
744
723
  }
745
- function useRouteListener(cb) {
746
- if (!inBrowser()) {
747
- return;
748
- }
749
- useEventListener(window, "hashchange", cb);
750
- useEventListener(window, "popstate", cb);
724
+ function useRouteListener(listener) {
725
+ useEventListener(() => window, "hashchange", listener);
726
+ useEventListener(() => window, "popstate", listener);
751
727
  }
752
728
  function useTeleport() {
753
729
  var disabled = vue.ref(false);
@@ -815,8 +791,39 @@ function formatElevation(elevation2, defaultLevel) {
815
791
  }
816
792
  return "var-elevation--" + elevation2;
817
793
  }
818
- function _extends$m() {
819
- _extends$m = Object.assign ? Object.assign.bind() : function(target) {
794
+ function useVModel(props2, key, options) {
795
+ if (options === void 0) {
796
+ options = {};
797
+ }
798
+ var {
799
+ passive: passive2 = true,
800
+ eventName,
801
+ defaultValue,
802
+ emit
803
+ } = options;
804
+ var event = eventName != null ? eventName : "onUpdate:" + key.toString();
805
+ var getValue = () => props2[key] != null ? props2[key] : defaultValue;
806
+ if (!passive2) {
807
+ return vue.computed({
808
+ get() {
809
+ return getValue();
810
+ },
811
+ set(value) {
812
+ emit ? emit(event, value) : call(props2[event], value);
813
+ }
814
+ });
815
+ }
816
+ var proxy = vue.ref(getValue());
817
+ vue.watch(() => props2[key], () => {
818
+ proxy.value = getValue();
819
+ });
820
+ vue.watch(() => proxy.value, (newValue) => {
821
+ emit ? emit(event, newValue) : call(props2[event], newValue);
822
+ });
823
+ return proxy;
824
+ }
825
+ function _extends$o() {
826
+ _extends$o = Object.assign ? Object.assign.bind() : function(target) {
820
827
  for (var i = 1; i < arguments.length; i++) {
821
828
  var source = arguments[i];
822
829
  for (var key in source) {
@@ -827,10 +834,10 @@ function _extends$m() {
827
834
  }
828
835
  return target;
829
836
  };
830
- return _extends$m.apply(this, arguments);
837
+ return _extends$o.apply(this, arguments);
831
838
  }
832
839
  var {
833
- n: n$1h
840
+ n: n$1i
834
841
  } = createNamespace("ripple");
835
842
  var ANIMATION_DURATION$1 = 250;
836
843
  function setStyles(element) {
@@ -885,7 +892,7 @@ function createRipple(event) {
885
892
  size
886
893
  } = computeRippleStyles(this, event);
887
894
  var ripple2 = document.createElement("div");
888
- ripple2.classList.add(n$1h());
895
+ ripple2.classList.add(n$1i());
889
896
  ripple2.style.opacity = "0";
890
897
  ripple2.style.transform = "translate(" + x + "px, " + y + "px) scale3d(.3, .3, .3)";
891
898
  ripple2.style.width = size + "px";
@@ -904,7 +911,7 @@ function createRipple(event) {
904
911
  function removeRipple() {
905
912
  var _ripple = this._ripple;
906
913
  var task = () => {
907
- var ripples = this.querySelectorAll("." + n$1h());
914
+ var ripples = this.querySelectorAll("." + n$1i());
908
915
  if (!ripples.length) {
909
916
  return;
910
917
  }
@@ -930,7 +937,7 @@ function forbidRippleTask() {
930
937
  }
931
938
  function mounted$2(el, binding) {
932
939
  var _binding$value;
933
- el._ripple = _extends$m({
940
+ el._ripple = _extends$o({
934
941
  tasker: null
935
942
  }, (_binding$value = binding.value) != null ? _binding$value : {}, {
936
943
  removeRipple: removeRipple.bind(el)
@@ -967,7 +974,7 @@ function updated$2(el, binding) {
967
974
  var diff2 = newBinding.color !== ((_el$_ripple = el._ripple) == null ? void 0 : _el$_ripple.color) || newBinding.disabled !== ((_el$_ripple2 = el._ripple) == null ? void 0 : _el$_ripple2.disabled);
968
975
  if (diff2) {
969
976
  var _el$_ripple3, _el$_ripple4;
970
- el._ripple = _extends$m({
977
+ el._ripple = _extends$o({
971
978
  tasker: newBinding.disabled ? null : (_el$_ripple3 = el._ripple) == null ? void 0 : _el$_ripple3.tasker,
972
979
  removeRipple: (_el$_ripple4 = el._ripple) == null ? void 0 : _el$_ripple4.removeRipple
973
980
  }, newBinding);
@@ -986,7 +993,7 @@ const Ripple$1 = Ripple;
986
993
  function positionValidator$4(position) {
987
994
  return ["top", "bottom", "right", "left", "center"].includes(position);
988
995
  }
989
- var props$19 = {
996
+ var props$1a = {
990
997
  show: {
991
998
  type: Boolean,
992
999
  default: false
@@ -1115,8 +1122,8 @@ function useZIndex(source, count) {
1115
1122
  zIndex
1116
1123
  };
1117
1124
  }
1118
- function _extends$l() {
1119
- _extends$l = Object.assign ? Object.assign.bind() : function(target) {
1125
+ function _extends$n() {
1126
+ _extends$n = Object.assign ? Object.assign.bind() : function(target) {
1120
1127
  for (var i = 1; i < arguments.length; i++) {
1121
1128
  var source = arguments[i];
1122
1129
  for (var key in source) {
@@ -1127,19 +1134,19 @@ function _extends$l() {
1127
1134
  }
1128
1135
  return target;
1129
1136
  };
1130
- return _extends$l.apply(this, arguments);
1137
+ return _extends$n.apply(this, arguments);
1131
1138
  }
1132
1139
  function _isSlot$3(s) {
1133
1140
  return typeof s === "function" || Object.prototype.toString.call(s) === "[object Object]" && !vue.isVNode(s);
1134
1141
  }
1135
1142
  var {
1136
- n: n$1g,
1137
- classes: classes$13
1143
+ n: n$1h,
1144
+ classes: classes$14
1138
1145
  } = createNamespace("popup");
1139
1146
  const Popup = vue.defineComponent({
1140
1147
  name: "VarPopup",
1141
1148
  inheritAttrs: false,
1142
- props: props$19,
1149
+ props: props$1a,
1143
1150
  setup(props2, _ref) {
1144
1151
  var {
1145
1152
  slots,
@@ -1173,8 +1180,8 @@ const Popup = vue.defineComponent({
1173
1180
  overlayStyle
1174
1181
  } = props2;
1175
1182
  return vue.createVNode("div", {
1176
- "class": classes$13(n$1g("overlay"), overlayClass),
1177
- "style": _extends$l({
1183
+ "class": classes$14(n$1h("overlay"), overlayClass),
1184
+ "style": _extends$n({
1178
1185
  zIndex: zIndex.value - 1
1179
1186
  }, overlayStyle),
1180
1187
  "onClick": hidePopup
@@ -1182,7 +1189,7 @@ const Popup = vue.defineComponent({
1182
1189
  };
1183
1190
  var renderContent = () => {
1184
1191
  return vue.createVNode("div", vue.mergeProps({
1185
- "class": classes$13(n$1g("content"), n$1g("--" + props2.position), [props2.defaultStyle, n$1g("--content-background-color")], [props2.defaultStyle, n$1g("$-elevation--3")]),
1192
+ "class": classes$14(n$1h("content"), n$1h("--" + props2.position), [props2.defaultStyle, n$1h("--content-background-color")], [props2.defaultStyle, n$1h("$-elevation--3")]),
1186
1193
  "style": {
1187
1194
  zIndex: zIndex.value
1188
1195
  }
@@ -1198,17 +1205,17 @@ const Popup = vue.defineComponent({
1198
1205
  position
1199
1206
  } = props2;
1200
1207
  return vue.createVNode(vue.Transition, {
1201
- "name": n$1g("$-fade"),
1208
+ "name": n$1h("$-fade"),
1202
1209
  "onAfterEnter": onOpened,
1203
1210
  "onAfterLeave": onClosed
1204
1211
  }, {
1205
1212
  default: () => [vue.withDirectives(vue.createVNode("div", {
1206
- "class": classes$13(n$1g("$--box"), n$1g()),
1213
+ "class": classes$14(n$1h("$--box"), n$1h()),
1207
1214
  "style": {
1208
1215
  zIndex: zIndex.value - 2
1209
1216
  }
1210
1217
  }, [overlay2 && renderOverlay(), vue.createVNode(vue.Transition, {
1211
- "name": transition || n$1g("$-pop-" + position)
1218
+ "name": transition || n$1h("$-pop-" + position)
1212
1219
  }, {
1213
1220
  default: () => [show && renderContent()]
1214
1221
  })]), [[vue.vShow, show]])]
@@ -1235,7 +1242,7 @@ Popup.install = function(app) {
1235
1242
  app.component(Popup.name, Popup);
1236
1243
  };
1237
1244
  var _PopupComponent = Popup;
1238
- var props$18 = {
1245
+ var props$19 = {
1239
1246
  name: {
1240
1247
  type: String
1241
1248
  },
@@ -1288,10 +1295,10 @@ function _asyncToGenerator$c(fn2) {
1288
1295
  };
1289
1296
  }
1290
1297
  var {
1291
- n: n$1f,
1292
- classes: classes$12
1298
+ n: n$1g,
1299
+ classes: classes$13
1293
1300
  } = createNamespace("icon");
1294
- function __render__$1f(_ctx, _cache) {
1301
+ function __render__$1g(_ctx, _cache) {
1295
1302
  return vue.openBlock(), vue.createBlock(
1296
1303
  vue.resolveDynamicComponent(_ctx.isURL(_ctx.name) ? "img" : "i"),
1297
1304
  {
@@ -1311,9 +1318,9 @@ function __render__$1f(_ctx, _cache) {
1311
1318
  ["class", "style", "src", "onClick"]
1312
1319
  );
1313
1320
  }
1314
- var __sfc__$1g = vue.defineComponent({
1321
+ var __sfc__$1h = vue.defineComponent({
1315
1322
  name: "VarIcon",
1316
- props: props$18,
1323
+ props: props$19,
1317
1324
  setup(props2) {
1318
1325
  var nextName = vue.ref("");
1319
1326
  var animateInProgress = vue.ref(false);
@@ -1343,8 +1350,8 @@ var __sfc__$1g = vue.defineComponent({
1343
1350
  immediate: true
1344
1351
  });
1345
1352
  return {
1346
- n: n$1f,
1347
- classes: classes$12,
1353
+ n: n$1g,
1354
+ classes: classes$13,
1348
1355
  nextName,
1349
1356
  animateInProgress,
1350
1357
  isURL,
@@ -1353,14 +1360,14 @@ var __sfc__$1g = vue.defineComponent({
1353
1360
  };
1354
1361
  }
1355
1362
  });
1356
- __sfc__$1g.render = __render__$1f;
1357
- const Icon = __sfc__$1g;
1363
+ __sfc__$1h.render = __render__$1g;
1364
+ const Icon = __sfc__$1h;
1358
1365
  Icon.install = function(app) {
1359
1366
  app.component(Icon.name, Icon);
1360
1367
  };
1361
1368
  var _IconComponent = Icon;
1362
- function _extends$k() {
1363
- _extends$k = Object.assign ? Object.assign.bind() : function(target) {
1369
+ function _extends$m() {
1370
+ _extends$m = Object.assign ? Object.assign.bind() : function(target) {
1364
1371
  for (var i = 1; i < arguments.length; i++) {
1365
1372
  var source = arguments[i];
1366
1373
  for (var key in source) {
@@ -1371,9 +1378,9 @@ function _extends$k() {
1371
1378
  }
1372
1379
  return target;
1373
1380
  };
1374
- return _extends$k.apply(this, arguments);
1381
+ return _extends$m.apply(this, arguments);
1375
1382
  }
1376
- var props$17 = _extends$k({
1383
+ var props$18 = _extends$m({
1377
1384
  show: {
1378
1385
  type: Boolean,
1379
1386
  default: false
@@ -1391,7 +1398,7 @@ var props$17 = _extends$k({
1391
1398
  },
1392
1399
  onSelect: defineListenerProp(),
1393
1400
  "onUpdate:show": defineListenerProp()
1394
- }, pickProps(props$19, [
1401
+ }, pickProps(props$1a, [
1395
1402
  "overlay",
1396
1403
  "overlayClass",
1397
1404
  "overlayStyle",
@@ -1610,8 +1617,8 @@ const enUS = {
1610
1617
  paginationPage: "page",
1611
1618
  paginationJump: "Go to"
1612
1619
  };
1613
- function _extends$j() {
1614
- _extends$j = Object.assign ? Object.assign.bind() : function(target) {
1620
+ function _extends$l() {
1621
+ _extends$l = Object.assign ? Object.assign.bind() : function(target) {
1615
1622
  for (var i = 1; i < arguments.length; i++) {
1616
1623
  var source = arguments[i];
1617
1624
  for (var key in source) {
@@ -1622,7 +1629,7 @@ function _extends$j() {
1622
1629
  }
1623
1630
  return target;
1624
1631
  };
1625
- return _extends$j.apply(this, arguments);
1632
+ return _extends$l.apply(this, arguments);
1626
1633
  }
1627
1634
  function useLocale() {
1628
1635
  var packs2 = {};
@@ -1643,7 +1650,7 @@ function useLocale() {
1643
1650
  console.warn("The " + lang + " does not exist. You can mount a language package using the add method");
1644
1651
  return;
1645
1652
  }
1646
- packs2[lang] = _extends$j({}, packs2[lang], pack3);
1653
+ packs2[lang] = _extends$l({}, packs2[lang], pack3);
1647
1654
  use2(lang);
1648
1655
  };
1649
1656
  return {
@@ -1684,11 +1691,11 @@ const Locale = {
1684
1691
  useLocale
1685
1692
  };
1686
1693
  var {
1687
- n: n$1e,
1688
- classes: classes$11
1694
+ n: n$1f,
1695
+ classes: classes$12
1689
1696
  } = createNamespace("action-sheet");
1690
- var _hoisted_1$r = ["onClick"];
1691
- function __render__$1e(_ctx, _cache) {
1697
+ var _hoisted_1$s = ["onClick"];
1698
+ function __render__$1f(_ctx, _cache) {
1692
1699
  var _component_var_icon = vue.resolveComponent("var-icon");
1693
1700
  var _component_var_popup = vue.resolveComponent("var-popup");
1694
1701
  var _directive_ripple = vue.resolveDirective("ripple");
@@ -1763,7 +1770,7 @@ function __render__$1e(_ctx, _cache) {
1763
1770
  /* TEXT, CLASS */
1764
1771
  )],
1765
1772
  14,
1766
- _hoisted_1$r
1773
+ _hoisted_1$s
1767
1774
  )), [[_directive_ripple, {
1768
1775
  disabled: action.disabled
1769
1776
  }]]);
@@ -1781,7 +1788,7 @@ function __render__$1e(_ctx, _cache) {
1781
1788
  ["class", "overlay", "overlay-class", "overlay-style", "lock-scroll", "close-on-click-overlay", "teleport", "show", "onOpen", "onClose", "onClosed", "onOpened", "onRouteChange"]
1782
1789
  );
1783
1790
  }
1784
- var __sfc__$1f = vue.defineComponent({
1791
+ var __sfc__$1g = vue.defineComponent({
1785
1792
  name: "VarActionSheet",
1786
1793
  directives: {
1787
1794
  Ripple: Ripple$1
@@ -1791,7 +1798,7 @@ var __sfc__$1f = vue.defineComponent({
1791
1798
  VarIcon: Icon
1792
1799
  },
1793
1800
  inheritAttrs: false,
1794
- props: props$17,
1801
+ props: props$18,
1795
1802
  setup(props2) {
1796
1803
  var popupShow = vue.ref(false);
1797
1804
  var handleSelect = (action) => {
@@ -1812,8 +1819,8 @@ var __sfc__$1f = vue.defineComponent({
1812
1819
  immediate: true
1813
1820
  });
1814
1821
  return {
1815
- n: n$1e,
1816
- classes: classes$11,
1822
+ n: n$1f,
1823
+ classes: classes$12,
1817
1824
  handlePopupUpdateShow,
1818
1825
  popupShow,
1819
1826
  pack,
@@ -1822,10 +1829,10 @@ var __sfc__$1f = vue.defineComponent({
1822
1829
  };
1823
1830
  }
1824
1831
  });
1825
- __sfc__$1f.render = __render__$1e;
1826
- const VarActionSheet = __sfc__$1f;
1827
- function _extends$i() {
1828
- _extends$i = Object.assign ? Object.assign.bind() : function(target) {
1832
+ __sfc__$1g.render = __render__$1f;
1833
+ const VarActionSheet = __sfc__$1g;
1834
+ function _extends$k() {
1835
+ _extends$k = Object.assign ? Object.assign.bind() : function(target) {
1829
1836
  for (var i = 1; i < arguments.length; i++) {
1830
1837
  var source = arguments[i];
1831
1838
  for (var key in source) {
@@ -1836,7 +1843,7 @@ function _extends$i() {
1836
1843
  }
1837
1844
  return target;
1838
1845
  };
1839
- return _extends$i.apply(this, arguments);
1846
+ return _extends$k.apply(this, arguments);
1840
1847
  }
1841
1848
  var singletonOptions$3;
1842
1849
  var defaultOptions$3 = {};
@@ -1844,7 +1851,7 @@ function normalizeOptions$3(options) {
1844
1851
  if (options === void 0) {
1845
1852
  options = {};
1846
1853
  }
1847
- return _extends$i({}, defaultOptions$3, options);
1854
+ return _extends$k({}, defaultOptions$3, options);
1848
1855
  }
1849
1856
  function ActionSheet(options) {
1850
1857
  if (!inBrowser()) {
@@ -1909,7 +1916,7 @@ function positionValidator$3(position) {
1909
1916
  var validPositions = ["left", "center", "right"];
1910
1917
  return validPositions.includes(position);
1911
1918
  }
1912
- var props$16 = {
1919
+ var props$17 = {
1913
1920
  color: {
1914
1921
  type: String
1915
1922
  },
@@ -1944,10 +1951,10 @@ var props$16 = {
1944
1951
  }
1945
1952
  };
1946
1953
  var {
1947
- n: n$1d,
1948
- classes: classes$10
1954
+ n: n$1e,
1955
+ classes: classes$11
1949
1956
  } = createNamespace("app-bar");
1950
- function __render__$1d(_ctx, _cache) {
1957
+ function __render__$1e(_ctx, _cache) {
1951
1958
  return vue.openBlock(), vue.createElementBlock(
1952
1959
  "div",
1953
1960
  {
@@ -2028,9 +2035,9 @@ function __render__$1d(_ctx, _cache) {
2028
2035
  /* CLASS, STYLE */
2029
2036
  );
2030
2037
  }
2031
- var __sfc__$1e = vue.defineComponent({
2038
+ var __sfc__$1f = vue.defineComponent({
2032
2039
  name: "VarAppBar",
2033
- props: props$16,
2040
+ props: props$17,
2034
2041
  setup(props2, _ref) {
2035
2042
  var {
2036
2043
  slots
@@ -2064,8 +2071,8 @@ var __sfc__$1e = vue.defineComponent({
2064
2071
  useMounted(computePadding);
2065
2072
  vue.onUpdated(computePadding);
2066
2073
  return {
2067
- n: n$1d,
2068
- classes: classes$10,
2074
+ n: n$1e,
2075
+ classes: classes$11,
2069
2076
  formatElevation,
2070
2077
  rootStyles,
2071
2078
  paddingLeft,
@@ -2073,8 +2080,8 @@ var __sfc__$1e = vue.defineComponent({
2073
2080
  };
2074
2081
  }
2075
2082
  });
2076
- __sfc__$1e.render = __render__$1d;
2077
- const AppBar = __sfc__$1e;
2083
+ __sfc__$1f.render = __render__$1e;
2084
+ const AppBar = __sfc__$1f;
2078
2085
  AppBar.install = function(app) {
2079
2086
  app.component(AppBar.name, AppBar);
2080
2087
  };
@@ -2108,8 +2115,8 @@ function _asyncToGenerator$b(fn2) {
2108
2115
  });
2109
2116
  };
2110
2117
  }
2111
- function _extends$h() {
2112
- _extends$h = Object.assign ? Object.assign.bind() : function(target) {
2118
+ function _extends$j() {
2119
+ _extends$j = Object.assign ? Object.assign.bind() : function(target) {
2113
2120
  for (var i = 1; i < arguments.length; i++) {
2114
2121
  var source = arguments[i];
2115
2122
  for (var key in source) {
@@ -2120,7 +2127,7 @@ function _extends$h() {
2120
2127
  }
2121
2128
  return target;
2122
2129
  };
2123
- return _extends$h.apply(this, arguments);
2130
+ return _extends$j.apply(this, arguments);
2124
2131
  }
2125
2132
  var BACKGROUND_IMAGE_ARG_NAME = "background-image";
2126
2133
  var LAZY_LOADING = "lazy-loading";
@@ -2190,7 +2197,7 @@ function createLazy(el, binding) {
2190
2197
  error: (_el$getAttribute2 = el.getAttribute(LAZY_ERROR)) != null ? _el$getAttribute2 : defaultLazyOptions.error,
2191
2198
  attempt: el.getAttribute(LAZY_ATTEMPT) ? Number(el.getAttribute(LAZY_ATTEMPT)) : defaultLazyOptions.attempt
2192
2199
  };
2193
- el._lazy = _extends$h({
2200
+ el._lazy = _extends$j({
2194
2201
  src: binding.value,
2195
2202
  arg: binding.arg,
2196
2203
  currentAttempt: 0,
@@ -2323,17 +2330,17 @@ function fitValidator$2(fit) {
2323
2330
  return ["fill", "contain", "cover", "none", "scale-down"].includes(fit);
2324
2331
  }
2325
2332
  var internalSizeValidator$1 = (size) => ["mini", "small", "normal", "large"].includes(size);
2326
- function sizeValidator$5(size) {
2333
+ function sizeValidator$6(size) {
2327
2334
  return internalSizeValidator$1(size) || isNumber(size) || isString(size);
2328
2335
  }
2329
- var props$15 = {
2336
+ var props$16 = {
2330
2337
  round: {
2331
2338
  type: Boolean,
2332
2339
  default: true
2333
2340
  },
2334
2341
  size: {
2335
2342
  type: [String, Number],
2336
- validator: sizeValidator$5,
2343
+ validator: sizeValidator$6,
2337
2344
  default: "normal"
2338
2345
  },
2339
2346
  color: {
@@ -2369,12 +2376,12 @@ var props$15 = {
2369
2376
  onError: defineListenerProp()
2370
2377
  };
2371
2378
  var {
2372
- n: n$1c,
2373
- classes: classes$$
2379
+ n: n$1d,
2380
+ classes: classes$10
2374
2381
  } = createNamespace("avatar");
2375
- var _hoisted_1$q = ["src", "lazy-loading", "lazy-error"];
2382
+ var _hoisted_1$r = ["src", "lazy-loading", "lazy-error"];
2376
2383
  var _hoisted_2$d = ["src"];
2377
- function __render__$1c(_ctx, _cache) {
2384
+ function __render__$1d(_ctx, _cache) {
2378
2385
  var _directive_lazy = vue.resolveDirective("lazy");
2379
2386
  return vue.openBlock(), vue.createElementBlock(
2380
2387
  "div",
@@ -2413,7 +2420,7 @@ function __render__$1c(_ctx, _cache) {
2413
2420
  },
2414
2421
  null,
2415
2422
  46,
2416
- _hoisted_1$q
2423
+ _hoisted_1$r
2417
2424
  )), [[_directive_lazy, _ctx.src]]) : (vue.openBlock(), vue.createElementBlock(
2418
2425
  "img",
2419
2426
  {
@@ -2454,12 +2461,12 @@ function __render__$1c(_ctx, _cache) {
2454
2461
  /* CLASS, STYLE */
2455
2462
  );
2456
2463
  }
2457
- var __sfc__$1d = vue.defineComponent({
2464
+ var __sfc__$1e = vue.defineComponent({
2458
2465
  name: "VarAvatar",
2459
2466
  directives: {
2460
2467
  Lazy: Lazy$1
2461
2468
  },
2462
- props: props$15,
2469
+ props: props$16,
2463
2470
  setup(props2) {
2464
2471
  var avatarElement = vue.ref(null);
2465
2472
  var textElement = vue.ref(null);
@@ -2501,10 +2508,10 @@ var __sfc__$1d = vue.defineComponent({
2501
2508
  vue.onUpdated(getScale);
2502
2509
  return {
2503
2510
  internalSizeValidator: internalSizeValidator$1,
2504
- sizeValidator: sizeValidator$5,
2511
+ sizeValidator: sizeValidator$6,
2505
2512
  toSizeUnit,
2506
- n: n$1c,
2507
- classes: classes$$,
2513
+ n: n$1d,
2514
+ classes: classes$10,
2508
2515
  avatarElement,
2509
2516
  textElement,
2510
2517
  scale,
@@ -2514,13 +2521,13 @@ var __sfc__$1d = vue.defineComponent({
2514
2521
  };
2515
2522
  }
2516
2523
  });
2517
- __sfc__$1d.render = __render__$1c;
2518
- const Avatar = __sfc__$1d;
2524
+ __sfc__$1e.render = __render__$1d;
2525
+ const Avatar = __sfc__$1e;
2519
2526
  Avatar.install = function(app) {
2520
2527
  app.component(Avatar.name, Avatar);
2521
2528
  };
2522
2529
  var _AvatarComponent = Avatar;
2523
- var props$14 = {
2530
+ var props$15 = {
2524
2531
  offset: {
2525
2532
  type: [Number, String]
2526
2533
  },
@@ -2530,10 +2537,10 @@ var props$14 = {
2530
2537
  }
2531
2538
  };
2532
2539
  var {
2533
- n: n$1b,
2534
- classes: classes$_
2540
+ n: n$1c,
2541
+ classes: classes$$
2535
2542
  } = createNamespace("avatar-group");
2536
- function __render__$1b(_ctx, _cache) {
2543
+ function __render__$1c(_ctx, _cache) {
2537
2544
  return vue.openBlock(), vue.createElementBlock(
2538
2545
  "div",
2539
2546
  {
@@ -2545,9 +2552,9 @@ function __render__$1b(_ctx, _cache) {
2545
2552
  /* CLASS, STYLE */
2546
2553
  );
2547
2554
  }
2548
- var __sfc__$1c = vue.defineComponent({
2555
+ var __sfc__$1d = vue.defineComponent({
2549
2556
  name: "VarAvatarGroup",
2550
- props: props$14,
2557
+ props: props$15,
2551
2558
  setup(props2) {
2552
2559
  var rootStyles = vue.computed(() => {
2553
2560
  if (props2.offset == null) {
@@ -2558,15 +2565,15 @@ var __sfc__$1c = vue.defineComponent({
2558
2565
  };
2559
2566
  });
2560
2567
  return {
2561
- n: n$1b,
2562
- classes: classes$_,
2568
+ n: n$1c,
2569
+ classes: classes$$,
2563
2570
  toSizeUnit,
2564
2571
  rootStyles
2565
2572
  };
2566
2573
  }
2567
2574
  });
2568
- __sfc__$1c.render = __render__$1b;
2569
- const AvatarGroup = __sfc__$1c;
2575
+ __sfc__$1d.render = __render__$1c;
2576
+ const AvatarGroup = __sfc__$1d;
2570
2577
  AvatarGroup.install = function(app) {
2571
2578
  app.component(AvatarGroup.name, AvatarGroup);
2572
2579
  };
@@ -2574,10 +2581,10 @@ var _AvatarGroupComponent = AvatarGroup;
2574
2581
  function typeValidator$a(type) {
2575
2582
  return ["circle", "wave", "cube", "rect", "disappear"].includes(type);
2576
2583
  }
2577
- function sizeValidator$4(size) {
2584
+ function sizeValidator$5(size) {
2578
2585
  return ["normal", "mini", "small", "large"].includes(size);
2579
2586
  }
2580
- var props$13 = {
2587
+ var props$14 = {
2581
2588
  type: {
2582
2589
  type: String,
2583
2590
  default: "circle",
@@ -2589,7 +2596,7 @@ var props$13 = {
2589
2596
  size: {
2590
2597
  type: String,
2591
2598
  default: "normal",
2592
- validator: sizeValidator$4
2599
+ validator: sizeValidator$5
2593
2600
  },
2594
2601
  color: {
2595
2602
  type: String
@@ -2603,11 +2610,11 @@ var props$13 = {
2603
2610
  }
2604
2611
  };
2605
2612
  var {
2606
- n: n$1a,
2607
- classes: classes$Z
2613
+ n: n$1b,
2614
+ classes: classes$_
2608
2615
  } = createNamespace("loading");
2609
2616
  var _withScopeId$6 = (n2) => (vue.pushScopeId(""), n2 = n2(), vue.popScopeId(), n2);
2610
- var _hoisted_1$p = /* @__PURE__ */ _withScopeId$6(() => /* @__PURE__ */ vue.createElementVNode(
2617
+ var _hoisted_1$q = /* @__PURE__ */ _withScopeId$6(() => /* @__PURE__ */ vue.createElementVNode(
2611
2618
  "svg",
2612
2619
  {
2613
2620
  viewBox: "25 25 50 50"
@@ -2621,8 +2628,8 @@ var _hoisted_1$p = /* @__PURE__ */ _withScopeId$6(() => /* @__PURE__ */ vue.crea
2621
2628
  -1
2622
2629
  /* HOISTED */
2623
2630
  ));
2624
- var _hoisted_2$c = [_hoisted_1$p];
2625
- function __render__$1a(_ctx, _cache) {
2631
+ var _hoisted_2$c = [_hoisted_1$q];
2632
+ function __render__$1b(_ctx, _cache) {
2626
2633
  return vue.openBlock(), vue.createElementBlock(
2627
2634
  "div",
2628
2635
  {
@@ -2743,9 +2750,9 @@ function __render__$1a(_ctx, _cache) {
2743
2750
  /* CLASS */
2744
2751
  );
2745
2752
  }
2746
- var __sfc__$1b = vue.defineComponent({
2753
+ var __sfc__$1c = vue.defineComponent({
2747
2754
  name: "VarLoading",
2748
- props: props$13,
2755
+ props: props$14,
2749
2756
  setup(props2, _ref) {
2750
2757
  var {
2751
2758
  slots
@@ -2762,31 +2769,31 @@ var __sfc__$1b = vue.defineComponent({
2762
2769
  return props2.loading;
2763
2770
  });
2764
2771
  return {
2765
- n: n$1a,
2766
- classes: classes$Z,
2772
+ n: n$1b,
2773
+ classes: classes$_,
2767
2774
  multiplySizeUnit,
2768
2775
  loadingTypeDict,
2769
2776
  isShow
2770
2777
  };
2771
2778
  }
2772
2779
  });
2773
- __sfc__$1b.render = __render__$1a;
2774
- const Loading = __sfc__$1b;
2780
+ __sfc__$1c.render = __render__$1b;
2781
+ const Loading = __sfc__$1c;
2775
2782
  Loading.install = function(app) {
2776
2783
  app.component(Loading.name, Loading);
2777
2784
  };
2778
2785
  var _LoadingComponent = Loading;
2779
- var props$12 = {
2786
+ var props$13 = {
2780
2787
  hovering: {
2781
2788
  type: Boolean,
2782
2789
  default: true
2783
2790
  }
2784
2791
  };
2785
2792
  var {
2786
- n: n$19,
2787
- classes: classes$Y
2793
+ n: n$1a,
2794
+ classes: classes$Z
2788
2795
  } = createNamespace("hover-overlay");
2789
- function __render__$19(_ctx, _cache) {
2796
+ function __render__$1a(_ctx, _cache) {
2790
2797
  return vue.openBlock(), vue.createElementBlock(
2791
2798
  "div",
2792
2799
  {
@@ -2797,18 +2804,18 @@ function __render__$19(_ctx, _cache) {
2797
2804
  /* CLASS */
2798
2805
  );
2799
2806
  }
2800
- var __sfc__$1a = vue.defineComponent({
2807
+ var __sfc__$1b = vue.defineComponent({
2801
2808
  name: "VarHoverOverlay",
2802
- props: props$12,
2809
+ props: props$13,
2803
2810
  setup() {
2804
2811
  return {
2805
- n: n$19,
2806
- classes: classes$Y
2812
+ n: n$1a,
2813
+ classes: classes$Z
2807
2814
  };
2808
2815
  }
2809
2816
  });
2810
- __sfc__$1a.render = __render__$19;
2811
- const HoverOverlay = __sfc__$1a;
2817
+ __sfc__$1b.render = __render__$1a;
2818
+ const HoverOverlay = __sfc__$1b;
2812
2819
  HoverOverlay.install = function(app) {
2813
2820
  app.component(HoverOverlay.name, HoverOverlay);
2814
2821
  };
@@ -2950,8 +2957,8 @@ var Hover = {
2950
2957
  };
2951
2958
  var _HoverComponent = Hover;
2952
2959
  const Hover$1 = Hover;
2953
- function _extends$g() {
2954
- _extends$g = Object.assign ? Object.assign.bind() : function(target) {
2960
+ function _extends$i() {
2961
+ _extends$i = Object.assign ? Object.assign.bind() : function(target) {
2955
2962
  for (var i = 1; i < arguments.length; i++) {
2956
2963
  var source = arguments[i];
2957
2964
  for (var key in source) {
@@ -2962,18 +2969,18 @@ function _extends$g() {
2962
2969
  }
2963
2970
  return target;
2964
2971
  };
2965
- return _extends$g.apply(this, arguments);
2972
+ return _extends$i.apply(this, arguments);
2966
2973
  }
2967
2974
  function typeValidator$9(type) {
2968
2975
  return ["default", "primary", "info", "success", "warning", "danger"].includes(type);
2969
2976
  }
2970
- function sizeValidator$3(size) {
2977
+ function sizeValidator$4(size) {
2971
2978
  return ["normal", "mini", "small", "large"].includes(size);
2972
2979
  }
2973
2980
  function nativeTypeValidator(nativeType) {
2974
2981
  return ["button", "reset", "submit"].includes(nativeType);
2975
2982
  }
2976
- var props$11 = {
2983
+ var props$12 = {
2977
2984
  type: {
2978
2985
  type: String,
2979
2986
  validator: typeValidator$9
@@ -2985,7 +2992,7 @@ var props$11 = {
2985
2992
  },
2986
2993
  size: {
2987
2994
  type: String,
2988
- validator: sizeValidator$3
2995
+ validator: sizeValidator$4
2989
2996
  },
2990
2997
  loading: {
2991
2998
  type: Boolean,
@@ -3032,9 +3039,9 @@ var props$11 = {
3032
3039
  loadingRadius: {
3033
3040
  type: [Number, String]
3034
3041
  },
3035
- loadingType: pickProps(props$13, "type"),
3036
- loadingSize: pickProps(props$13, "size"),
3037
- loadingColor: _extends$g({}, pickProps(props$13, "color"), {
3042
+ loadingType: pickProps(props$14, "type"),
3043
+ loadingSize: pickProps(props$14, "size"),
3044
+ loadingColor: _extends$i({}, pickProps(props$14, "color"), {
3038
3045
  default: "currentColor"
3039
3046
  }),
3040
3047
  onClick: defineListenerProp(),
@@ -3066,11 +3073,11 @@ function useButtonGroup() {
3066
3073
  };
3067
3074
  }
3068
3075
  var {
3069
- n: n$18,
3070
- classes: classes$X
3076
+ n: n$19,
3077
+ classes: classes$Y
3071
3078
  } = createNamespace("button");
3072
- var _hoisted_1$o = ["type", "disabled"];
3073
- function __render__$18(_ctx, _cache) {
3079
+ var _hoisted_1$p = ["type", "disabled"];
3080
+ function __render__$19(_ctx, _cache) {
3074
3081
  var _component_var_loading = vue.resolveComponent("var-loading");
3075
3082
  var _component_var_hover_overlay = vue.resolveComponent("var-hover-overlay");
3076
3083
  var _directive_ripple = vue.resolveDirective("ripple");
@@ -3124,12 +3131,12 @@ function __render__$18(_ctx, _cache) {
3124
3131
  ["hovering"]
3125
3132
  )],
3126
3133
  46,
3127
- _hoisted_1$o
3134
+ _hoisted_1$p
3128
3135
  )), [[_directive_ripple, {
3129
3136
  disabled: _ctx.disabled || !_ctx.ripple
3130
3137
  }], [_directive_hover, _ctx.handleHovering, "desktop"]]);
3131
3138
  }
3132
- var __sfc__$19 = vue.defineComponent({
3139
+ var __sfc__$1a = vue.defineComponent({
3133
3140
  name: "VarButton",
3134
3141
  components: {
3135
3142
  VarLoading: Loading,
@@ -3139,7 +3146,7 @@ var __sfc__$19 = vue.defineComponent({
3139
3146
  Ripple: Ripple$1,
3140
3147
  Hover: Hover$1
3141
3148
  },
3142
- props: props$11,
3149
+ props: props$12,
3143
3150
  setup(props2) {
3144
3151
  var pending = vue.ref(false);
3145
3152
  var {
@@ -3212,8 +3219,8 @@ var __sfc__$19 = vue.defineComponent({
3212
3219
  attemptAutoLoading(call(onTouchstart, e));
3213
3220
  };
3214
3221
  return {
3215
- n: n$18,
3216
- classes: classes$X,
3222
+ n: n$19,
3223
+ classes: classes$Y,
3217
3224
  pending,
3218
3225
  states,
3219
3226
  hovering,
@@ -3223,13 +3230,13 @@ var __sfc__$19 = vue.defineComponent({
3223
3230
  };
3224
3231
  }
3225
3232
  });
3226
- __sfc__$19.render = __render__$18;
3227
- const Button = __sfc__$19;
3233
+ __sfc__$1a.render = __render__$19;
3234
+ const Button = __sfc__$1a;
3228
3235
  Button.install = function(app) {
3229
3236
  app.component(Button.name, Button);
3230
3237
  };
3231
3238
  var _ButtonComponent = Button;
3232
- var props$10 = {
3239
+ var props$11 = {
3233
3240
  visibilityHeight: {
3234
3241
  type: [Number, String],
3235
3242
  default: 200
@@ -3254,10 +3261,10 @@ var props$10 = {
3254
3261
  onClick: defineListenerProp()
3255
3262
  };
3256
3263
  var {
3257
- n: n$17,
3258
- classes: classes$W
3264
+ n: n$18,
3265
+ classes: classes$X
3259
3266
  } = createNamespace("back-top");
3260
- function __render__$17(_ctx, _cache) {
3267
+ function __render__$18(_ctx, _cache) {
3261
3268
  var _component_var_icon = vue.resolveComponent("var-icon");
3262
3269
  var _component_var_button = vue.resolveComponent("var-button");
3263
3270
  return vue.openBlock(), vue.createBlock(
@@ -3305,14 +3312,14 @@ function __render__$17(_ctx, _cache) {
3305
3312
  ["disabled"]
3306
3313
  );
3307
3314
  }
3308
- var __sfc__$18 = vue.defineComponent({
3315
+ var __sfc__$19 = vue.defineComponent({
3309
3316
  name: "VarBackTop",
3310
3317
  components: {
3311
3318
  VarButton: Button,
3312
3319
  VarIcon: Icon
3313
3320
  },
3314
3321
  inheritAttrs: false,
3315
- props: props$10,
3322
+ props: props$11,
3316
3323
  setup(props2) {
3317
3324
  var show = vue.ref(false);
3318
3325
  var backTopEl = vue.ref(null);
@@ -3352,14 +3359,14 @@ var __sfc__$18 = vue.defineComponent({
3352
3359
  show,
3353
3360
  backTopEl,
3354
3361
  toSizeUnit,
3355
- n: n$17,
3356
- classes: classes$W,
3362
+ n: n$18,
3363
+ classes: classes$X,
3357
3364
  handleClick
3358
3365
  };
3359
3366
  }
3360
3367
  });
3361
- __sfc__$18.render = __render__$17;
3362
- const BackTop = __sfc__$18;
3368
+ __sfc__$19.render = __render__$18;
3369
+ const BackTop = __sfc__$19;
3363
3370
  BackTop.install = function(app) {
3364
3371
  app.component(BackTop.name, BackTop);
3365
3372
  };
@@ -3370,7 +3377,7 @@ function typeValidator$8(type) {
3370
3377
  function positionValidator$2(position) {
3371
3378
  return ["right-top", "right-bottom", "left-top", "left-bottom"].includes(position);
3372
3379
  }
3373
- var props$$ = {
3380
+ var props$10 = {
3374
3381
  type: {
3375
3382
  type: String,
3376
3383
  default: "default",
@@ -3404,10 +3411,10 @@ var props$$ = {
3404
3411
  }
3405
3412
  };
3406
3413
  var {
3407
- n: n$16,
3408
- classes: classes$V
3414
+ n: n$17,
3415
+ classes: classes$W
3409
3416
  } = createNamespace("badge");
3410
- function __render__$16(_ctx, _cache) {
3417
+ function __render__$17(_ctx, _cache) {
3411
3418
  var _component_var_icon = vue.resolveComponent("var-icon");
3412
3419
  return vue.openBlock(), vue.createElementBlock(
3413
3420
  "div",
@@ -3462,13 +3469,13 @@ function __render__$16(_ctx, _cache) {
3462
3469
  /* CLASS */
3463
3470
  );
3464
3471
  }
3465
- var __sfc__$17 = vue.defineComponent({
3472
+ var __sfc__$18 = vue.defineComponent({
3466
3473
  name: "VarBadge",
3467
3474
  components: {
3468
3475
  VarIcon: Icon
3469
3476
  },
3470
3477
  inheritAttrs: false,
3471
- props: props$$,
3478
+ props: props$10,
3472
3479
  setup(props2) {
3473
3480
  var value = vue.computed(() => {
3474
3481
  var {
@@ -3478,19 +3485,19 @@ var __sfc__$17 = vue.defineComponent({
3478
3485
  return value2 != null && maxValue != null && toNumber(value2) > toNumber(maxValue) ? maxValue + "+" : value2;
3479
3486
  });
3480
3487
  return {
3481
- n: n$16,
3482
- classes: classes$V,
3488
+ n: n$17,
3489
+ classes: classes$W,
3483
3490
  value
3484
3491
  };
3485
3492
  }
3486
3493
  });
3487
- __sfc__$17.render = __render__$16;
3488
- const Badge = __sfc__$17;
3494
+ __sfc__$18.render = __render__$17;
3495
+ const Badge = __sfc__$18;
3489
3496
  Badge.install = function(app) {
3490
3497
  app.component(Badge.name, Badge);
3491
3498
  };
3492
3499
  var _BadgeComponent = Badge;
3493
- var props$_ = {
3500
+ var props$$ = {
3494
3501
  active: {
3495
3502
  type: [Number, String],
3496
3503
  default: 0
@@ -3538,8 +3545,8 @@ function useBottomNavigationItems() {
3538
3545
  bindBottomNavigationItem: bindChildren
3539
3546
  };
3540
3547
  }
3541
- function _extends$f() {
3542
- _extends$f = Object.assign ? Object.assign.bind() : function(target) {
3548
+ function _extends$h() {
3549
+ _extends$h = Object.assign ? Object.assign.bind() : function(target) {
3543
3550
  for (var i = 1; i < arguments.length; i++) {
3544
3551
  var source = arguments[i];
3545
3552
  for (var key in source) {
@@ -3550,11 +3557,11 @@ function _extends$f() {
3550
3557
  }
3551
3558
  return target;
3552
3559
  };
3553
- return _extends$f.apply(this, arguments);
3560
+ return _extends$h.apply(this, arguments);
3554
3561
  }
3555
3562
  var {
3556
- n: n$15,
3557
- classes: classes$U
3563
+ n: n$16,
3564
+ classes: classes$V
3558
3565
  } = createNamespace("bottom-navigation");
3559
3566
  var {
3560
3567
  n: nItem
@@ -3565,7 +3572,7 @@ var RIGHT_SPACE_CLASS = nItem("--right-space");
3565
3572
  var defaultFabProps = {
3566
3573
  type: "primary"
3567
3574
  };
3568
- function __render__$15(_ctx, _cache) {
3575
+ function __render__$16(_ctx, _cache) {
3569
3576
  var _component_var_button = vue.resolveComponent("var-button");
3570
3577
  return vue.openBlock(), vue.createElementBlock(
3571
3578
  "div",
@@ -3596,12 +3603,12 @@ function __render__$15(_ctx, _cache) {
3596
3603
  /* CLASS, STYLE */
3597
3604
  );
3598
3605
  }
3599
- var __sfc__$16 = vue.defineComponent({
3606
+ var __sfc__$17 = vue.defineComponent({
3600
3607
  name: "VarBottomNavigation",
3601
3608
  components: {
3602
3609
  VarButton: Button
3603
3610
  },
3604
- props: props$_,
3611
+ props: props$$,
3605
3612
  setup(props2, _ref) {
3606
3613
  var {
3607
3614
  slots
@@ -3710,7 +3717,7 @@ var __sfc__$16 = vue.defineComponent({
3710
3717
  bindBottomNavigationItem(bottomNavigationProvider);
3711
3718
  vue.watch(() => length.value, matchBoundary);
3712
3719
  vue.watch(() => props2.fabProps, (newValue) => {
3713
- fabProps.value = _extends$f({}, defaultFabProps, newValue);
3720
+ fabProps.value = _extends$h({}, defaultFabProps, newValue);
3714
3721
  }, {
3715
3722
  immediate: true,
3716
3723
  deep: true
@@ -3729,8 +3736,8 @@ var __sfc__$16 = vue.defineComponent({
3729
3736
  addMarginClass(length.value);
3730
3737
  });
3731
3738
  return {
3732
- n: n$15,
3733
- classes: classes$U,
3739
+ n: n$16,
3740
+ classes: classes$V,
3734
3741
  length,
3735
3742
  bottomNavigationDom,
3736
3743
  handleFabClick,
@@ -3738,13 +3745,13 @@ var __sfc__$16 = vue.defineComponent({
3738
3745
  };
3739
3746
  }
3740
3747
  });
3741
- __sfc__$16.render = __render__$15;
3742
- const BottomNavigation = __sfc__$16;
3748
+ __sfc__$17.render = __render__$16;
3749
+ const BottomNavigation = __sfc__$17;
3743
3750
  BottomNavigation.install = function(app) {
3744
3751
  app.component(BottomNavigation.name, BottomNavigation);
3745
3752
  };
3746
3753
  var _BottomNavigationComponent = BottomNavigation;
3747
- var props$Z = {
3754
+ var props$_ = {
3748
3755
  name: {
3749
3756
  type: String
3750
3757
  },
@@ -3780,14 +3787,14 @@ function useBottomNavigation() {
3780
3787
  };
3781
3788
  }
3782
3789
  var {
3783
- n: n$14,
3784
- classes: classes$T
3790
+ n: n$15,
3791
+ classes: classes$U
3785
3792
  } = createNamespace("bottom-navigation-item");
3786
3793
  var defaultBadgeProps = {
3787
3794
  type: "danger",
3788
3795
  dot: true
3789
3796
  };
3790
- function __render__$14(_ctx, _cache) {
3797
+ function __render__$15(_ctx, _cache) {
3791
3798
  var _component_var_icon = vue.resolveComponent("var-icon");
3792
3799
  var _component_var_badge = vue.resolveComponent("var-badge");
3793
3800
  var _directive_ripple = vue.resolveDirective("ripple");
@@ -3852,7 +3859,7 @@ function __render__$14(_ctx, _cache) {
3852
3859
  /* CLASS, STYLE */
3853
3860
  )), [[_directive_ripple]]);
3854
3861
  }
3855
- var __sfc__$15 = vue.defineComponent({
3862
+ var __sfc__$16 = vue.defineComponent({
3856
3863
  name: "VarBottomNavigationItem",
3857
3864
  components: {
3858
3865
  VarBadge: Badge,
@@ -3861,7 +3868,7 @@ var __sfc__$15 = vue.defineComponent({
3861
3868
  directives: {
3862
3869
  Ripple: Ripple$1
3863
3870
  },
3864
- props: props$Z,
3871
+ props: props$_,
3865
3872
  setup(props2) {
3866
3873
  var name = vue.computed(() => props2.name);
3867
3874
  var badge2 = vue.computed(() => props2.badge);
@@ -3896,8 +3903,8 @@ var __sfc__$15 = vue.defineComponent({
3896
3903
  immediate: true
3897
3904
  });
3898
3905
  return {
3899
- n: n$14,
3900
- classes: classes$T,
3906
+ n: n$15,
3907
+ classes: classes$U,
3901
3908
  index,
3902
3909
  active,
3903
3910
  badge: badge2,
@@ -3907,13 +3914,13 @@ var __sfc__$15 = vue.defineComponent({
3907
3914
  };
3908
3915
  }
3909
3916
  });
3910
- __sfc__$15.render = __render__$14;
3911
- const BottomNavigationItem = __sfc__$15;
3917
+ __sfc__$16.render = __render__$15;
3918
+ const BottomNavigationItem = __sfc__$16;
3912
3919
  BottomNavigationItem.install = function(app) {
3913
3920
  app.component(BottomNavigationItem.name, BottomNavigationItem);
3914
3921
  };
3915
3922
  var _BottomNavigationItemComponent = BottomNavigationItem;
3916
- var props$Y = {
3923
+ var props$Z = {
3917
3924
  separator: {
3918
3925
  type: String
3919
3926
  },
@@ -3948,10 +3955,10 @@ function useBreadcrumb() {
3948
3955
  };
3949
3956
  }
3950
3957
  var {
3951
- n: n$13,
3952
- classes: classes$S
3958
+ n: n$14,
3959
+ classes: classes$T
3953
3960
  } = createNamespace("breadcrumb");
3954
- function __render__$13(_ctx, _cache) {
3961
+ function __render__$14(_ctx, _cache) {
3955
3962
  return vue.openBlock(), vue.createElementBlock(
3956
3963
  "div",
3957
3964
  {
@@ -3986,9 +3993,9 @@ function __render__$13(_ctx, _cache) {
3986
3993
  /* CLASS */
3987
3994
  );
3988
3995
  }
3989
- var __sfc__$14 = vue.defineComponent({
3996
+ var __sfc__$15 = vue.defineComponent({
3990
3997
  name: "VarBreadcrumb",
3991
- props: props$Y,
3998
+ props: props$Z,
3992
3999
  setup(props2) {
3993
4000
  var {
3994
4001
  index,
@@ -4005,30 +4012,30 @@ var __sfc__$14 = vue.defineComponent({
4005
4012
  };
4006
4013
  bindBreadcrumb(null);
4007
4014
  return {
4008
- n: n$13,
4009
- classes: classes$S,
4015
+ n: n$14,
4016
+ classes: classes$T,
4010
4017
  isLast,
4011
4018
  parentSeparator,
4012
4019
  handleClick
4013
4020
  };
4014
4021
  }
4015
4022
  });
4016
- __sfc__$14.render = __render__$13;
4017
- const Breadcrumb = __sfc__$14;
4023
+ __sfc__$15.render = __render__$14;
4024
+ const Breadcrumb = __sfc__$15;
4018
4025
  Breadcrumb.install = function(app) {
4019
4026
  app.component(Breadcrumb.name, Breadcrumb);
4020
4027
  };
4021
4028
  var _BreadcrumbComponent = Breadcrumb;
4022
- var props$X = {
4029
+ var props$Y = {
4023
4030
  separator: {
4024
4031
  type: String,
4025
4032
  default: "/"
4026
4033
  }
4027
4034
  };
4028
4035
  var {
4029
- n: n$12
4036
+ n: n$13
4030
4037
  } = createNamespace("breadcrumbs");
4031
- function __render__$12(_ctx, _cache) {
4038
+ function __render__$13(_ctx, _cache) {
4032
4039
  return vue.openBlock(), vue.createElementBlock(
4033
4040
  "div",
4034
4041
  {
@@ -4039,9 +4046,9 @@ function __render__$12(_ctx, _cache) {
4039
4046
  /* CLASS */
4040
4047
  );
4041
4048
  }
4042
- var __sfc__$13 = vue.defineComponent({
4049
+ var __sfc__$14 = vue.defineComponent({
4043
4050
  name: "VarBreadcrumbs",
4044
- props: props$X,
4051
+ props: props$Y,
4045
4052
  setup(props2) {
4046
4053
  var separator = vue.computed(() => props2.separator);
4047
4054
  var {
@@ -4054,12 +4061,12 @@ var __sfc__$13 = vue.defineComponent({
4054
4061
  };
4055
4062
  bindBreadcrumbList(breadcrumbsProvider);
4056
4063
  return {
4057
- n: n$12
4064
+ n: n$13
4058
4065
  };
4059
4066
  }
4060
4067
  });
4061
- __sfc__$13.render = __render__$12;
4062
- const Breadcrumbs = __sfc__$13;
4068
+ __sfc__$14.render = __render__$13;
4069
+ const Breadcrumbs = __sfc__$14;
4063
4070
  Breadcrumbs.install = function(app) {
4064
4071
  app.component(Breadcrumbs.name, Breadcrumbs);
4065
4072
  };
@@ -4067,13 +4074,13 @@ var _BreadcrumbsComponent = Breadcrumbs;
4067
4074
  function typeValidator$7(type) {
4068
4075
  return ["default", "primary", "info", "success", "warning", "danger"].includes(type);
4069
4076
  }
4070
- function sizeValidator$2(size) {
4077
+ function sizeValidator$3(size) {
4071
4078
  return ["normal", "mini", "small", "large"].includes(size);
4072
4079
  }
4073
4080
  function modeValidator$1(mode) {
4074
4081
  return ["normal", "text", "outline"].includes(mode);
4075
4082
  }
4076
- var props$W = {
4083
+ var props$X = {
4077
4084
  type: {
4078
4085
  type: String,
4079
4086
  default: "default",
@@ -4082,7 +4089,7 @@ var props$W = {
4082
4089
  size: {
4083
4090
  type: String,
4084
4091
  default: "normal",
4085
- validator: sizeValidator$2
4092
+ validator: sizeValidator$3
4086
4093
  },
4087
4094
  color: {
4088
4095
  type: String
@@ -4105,10 +4112,10 @@ var props$W = {
4105
4112
  }
4106
4113
  };
4107
4114
  var {
4108
- n: n$11,
4109
- classes: classes$R
4115
+ n: n$12,
4116
+ classes: classes$S
4110
4117
  } = createNamespace("button-group");
4111
- function __render__$11(_ctx, _cache) {
4118
+ function __render__$12(_ctx, _cache) {
4112
4119
  return vue.openBlock(), vue.createElementBlock(
4113
4120
  "div",
4114
4121
  {
@@ -4119,9 +4126,9 @@ function __render__$11(_ctx, _cache) {
4119
4126
  /* CLASS */
4120
4127
  );
4121
4128
  }
4122
- var __sfc__$12 = vue.defineComponent({
4129
+ var __sfc__$13 = vue.defineComponent({
4123
4130
  name: "VarButtonGroup",
4124
- props: props$W,
4131
+ props: props$X,
4125
4132
  setup(props2) {
4126
4133
  var {
4127
4134
  bindButtons
@@ -4136,14 +4143,14 @@ var __sfc__$12 = vue.defineComponent({
4136
4143
  };
4137
4144
  bindButtons(buttonGroupProvider);
4138
4145
  return {
4139
- n: n$11,
4140
- classes: classes$R,
4146
+ n: n$12,
4147
+ classes: classes$S,
4141
4148
  formatElevation
4142
4149
  };
4143
4150
  }
4144
4151
  });
4145
- __sfc__$12.render = __render__$11;
4146
- const ButtonGroup = __sfc__$12;
4152
+ __sfc__$13.render = __render__$12;
4153
+ const ButtonGroup = __sfc__$13;
4147
4154
  ButtonGroup.install = function(app) {
4148
4155
  app.component(ButtonGroup.name, ButtonGroup);
4149
4156
  };
@@ -4151,7 +4158,7 @@ var _ButtonGroupComponent = ButtonGroup;
4151
4158
  function fitValidator$1(fit) {
4152
4159
  return ["fill", "contain", "cover", "none", "scale-down"].includes(fit);
4153
4160
  }
4154
- var props$V = {
4161
+ var props$W = {
4155
4162
  src: {
4156
4163
  type: String
4157
4164
  },
@@ -4235,12 +4242,12 @@ function _asyncToGenerator$a(fn2) {
4235
4242
  };
4236
4243
  }
4237
4244
  var {
4238
- n: n$10,
4239
- classes: classes$Q
4245
+ n: n$11,
4246
+ classes: classes$R
4240
4247
  } = createNamespace("card");
4241
4248
  var RIPPLE_DELAY = 500;
4242
- var _hoisted_1$n = ["src", "alt"];
4243
- function __render__$10(_ctx, _cache) {
4249
+ var _hoisted_1$o = ["src", "alt"];
4250
+ function __render__$11(_ctx, _cache) {
4244
4251
  var _component_var_icon = vue.resolveComponent("var-icon");
4245
4252
  var _component_var_button = vue.resolveComponent("var-button");
4246
4253
  var _directive_ripple = vue.resolveDirective("ripple");
@@ -4286,7 +4293,7 @@ function __render__$10(_ctx, _cache) {
4286
4293
  },
4287
4294
  null,
4288
4295
  14,
4289
- _hoisted_1$n
4296
+ _hoisted_1$o
4290
4297
  )) : vue.createCommentVNode("v-if", true)]), vue.createElementVNode(
4291
4298
  "div",
4292
4299
  {
@@ -4406,7 +4413,7 @@ function __render__$10(_ctx, _cache) {
4406
4413
  disabled: !_ctx.ripple || _ctx.floater
4407
4414
  }]]);
4408
4415
  }
4409
- var __sfc__$11 = vue.defineComponent({
4416
+ var __sfc__$12 = vue.defineComponent({
4410
4417
  name: "VarCard",
4411
4418
  directives: {
4412
4419
  Ripple: Ripple$1
@@ -4415,7 +4422,7 @@ var __sfc__$11 = vue.defineComponent({
4415
4422
  VarIcon: Icon,
4416
4423
  VarButton: Button
4417
4424
  },
4418
- props: props$V,
4425
+ props: props$W,
4419
4426
  setup(props2) {
4420
4427
  var card2 = vue.ref(null);
4421
4428
  var cardFloater = vue.ref(null);
@@ -4518,8 +4525,8 @@ var __sfc__$11 = vue.defineComponent({
4518
4525
  immediate: true
4519
4526
  });
4520
4527
  return {
4521
- n: n$10,
4522
- classes: classes$Q,
4528
+ n: n$11,
4529
+ classes: classes$R,
4523
4530
  toSizeUnit,
4524
4531
  card: card2,
4525
4532
  cardFloater,
@@ -4544,13 +4551,13 @@ var __sfc__$11 = vue.defineComponent({
4544
4551
  };
4545
4552
  }
4546
4553
  });
4547
- __sfc__$11.render = __render__$10;
4548
- const Card = __sfc__$11;
4554
+ __sfc__$12.render = __render__$11;
4555
+ const Card = __sfc__$12;
4549
4556
  Card.install = function(app) {
4550
4557
  app.component(Card.name, Card);
4551
4558
  };
4552
4559
  var _CardComponent = Card;
4553
- var props$U = {
4560
+ var props$V = {
4554
4561
  title: {
4555
4562
  type: [Number, String]
4556
4563
  },
@@ -4586,10 +4593,10 @@ var props$U = {
4586
4593
  onClick: defineListenerProp()
4587
4594
  };
4588
4595
  var {
4589
- n: n$$,
4590
- classes: classes$P
4596
+ n: n$10,
4597
+ classes: classes$Q
4591
4598
  } = createNamespace("cell");
4592
- function __render__$$(_ctx, _cache) {
4599
+ function __render__$10(_ctx, _cache) {
4593
4600
  var _component_var_icon = vue.resolveComponent("var-icon");
4594
4601
  var _directive_ripple = vue.resolveDirective("ripple");
4595
4602
  return vue.withDirectives((vue.openBlock(), vue.createElementBlock(
@@ -4660,7 +4667,7 @@ function __render__$$(_ctx, _cache) {
4660
4667
  disabled: !_ctx.ripple
4661
4668
  }]]);
4662
4669
  }
4663
- var __sfc__$10 = vue.defineComponent({
4670
+ var __sfc__$11 = vue.defineComponent({
4664
4671
  name: "VarCell",
4665
4672
  components: {
4666
4673
  VarIcon: Icon
@@ -4668,7 +4675,7 @@ var __sfc__$10 = vue.defineComponent({
4668
4675
  directives: {
4669
4676
  Ripple: Ripple$1
4670
4677
  },
4671
- props: props$U,
4678
+ props: props$V,
4672
4679
  setup(props2) {
4673
4680
  var borderOffsetStyles = vue.computed(() => {
4674
4681
  if (props2.borderOffset == null) {
@@ -4683,21 +4690,21 @@ var __sfc__$10 = vue.defineComponent({
4683
4690
  call(props2.onClick, e);
4684
4691
  };
4685
4692
  return {
4686
- n: n$$,
4687
- classes: classes$P,
4693
+ n: n$10,
4694
+ classes: classes$Q,
4688
4695
  toSizeUnit,
4689
4696
  borderOffsetStyles,
4690
4697
  handleClick
4691
4698
  };
4692
4699
  }
4693
4700
  });
4694
- __sfc__$10.render = __render__$$;
4695
- const Cell = __sfc__$10;
4701
+ __sfc__$11.render = __render__$10;
4702
+ const Cell = __sfc__$11;
4696
4703
  Cell.install = function(app) {
4697
4704
  app.component(Cell.name, Cell);
4698
4705
  };
4699
4706
  var _CellComponent = Cell;
4700
- var props$T = {
4707
+ var props$U = {
4701
4708
  errorMessage: {
4702
4709
  type: String,
4703
4710
  default: ""
@@ -4708,15 +4715,15 @@ var props$T = {
4708
4715
  }
4709
4716
  };
4710
4717
  var {
4711
- n: n$_
4718
+ n: n$$
4712
4719
  } = createNamespace("form-details");
4713
- var _hoisted_1$m = {
4720
+ var _hoisted_1$n = {
4714
4721
  key: 0
4715
4722
  };
4716
4723
  var _hoisted_2$b = {
4717
4724
  key: 0
4718
4725
  };
4719
- function __render__$_(_ctx, _cache) {
4726
+ function __render__$$(_ctx, _cache) {
4720
4727
  return vue.openBlock(), vue.createBlock(
4721
4728
  vue.Transition,
4722
4729
  {
@@ -4742,7 +4749,7 @@ function __render__$_(_ctx, _cache) {
4742
4749
  {
4743
4750
  default: vue.withCtx(() => [_ctx.errorMessage ? (vue.openBlock(), vue.createElementBlock(
4744
4751
  "div",
4745
- _hoisted_1$m,
4752
+ _hoisted_1$n,
4746
4753
  vue.toDisplayString(_ctx.errorMessage),
4747
4754
  1
4748
4755
  /* TEXT */
@@ -4792,20 +4799,20 @@ function __render__$_(_ctx, _cache) {
4792
4799
  ["name"]
4793
4800
  );
4794
4801
  }
4795
- var __sfc__$$ = vue.defineComponent({
4802
+ var __sfc__$10 = vue.defineComponent({
4796
4803
  name: "VarFormDetails",
4797
- props: props$T,
4804
+ props: props$U,
4798
4805
  setup: () => ({
4799
- n: n$_
4806
+ n: n$$
4800
4807
  })
4801
4808
  });
4802
- __sfc__$$.render = __render__$_;
4803
- const FormDetails = __sfc__$$;
4809
+ __sfc__$10.render = __render__$$;
4810
+ const FormDetails = __sfc__$10;
4804
4811
  FormDetails.install = function(app) {
4805
4812
  app.component(FormDetails.name, FormDetails);
4806
4813
  };
4807
4814
  var _FormDetailsComponent = FormDetails;
4808
- var props$S = {
4815
+ var props$T = {
4809
4816
  modelValue: {
4810
4817
  type: [String, Number, Boolean, Object, Array],
4811
4818
  default: false
@@ -4875,8 +4882,8 @@ function useCheckboxGroup() {
4875
4882
  bindCheckboxGroup: bindParent
4876
4883
  };
4877
4884
  }
4878
- function _extends$e() {
4879
- _extends$e = Object.assign ? Object.assign.bind() : function(target) {
4885
+ function _extends$g() {
4886
+ _extends$g = Object.assign ? Object.assign.bind() : function(target) {
4880
4887
  for (var i = 1; i < arguments.length; i++) {
4881
4888
  var source = arguments[i];
4882
4889
  for (var key in source) {
@@ -4887,7 +4894,7 @@ function _extends$e() {
4887
4894
  }
4888
4895
  return target;
4889
4896
  };
4890
- return _extends$e.apply(this, arguments);
4897
+ return _extends$g.apply(this, arguments);
4891
4898
  }
4892
4899
  var FORM_BIND_FORM_ITEM_KEY = Symbol("FORM_BIND_FORM_ITEM_KEY");
4893
4900
  function useForm() {
@@ -4898,7 +4905,7 @@ function useForm() {
4898
4905
  } = useParent(FORM_BIND_FORM_ITEM_KEY);
4899
4906
  var instance = vue.getCurrentInstance();
4900
4907
  var bindForm = bindParent ? (formItemProvider) => {
4901
- bindParent(_extends$e({}, formItemProvider, {
4908
+ bindParent(_extends$g({}, formItemProvider, {
4902
4909
  instance
4903
4910
  }));
4904
4911
  } : null;
@@ -4921,10 +4928,10 @@ function useFormItems() {
4921
4928
  };
4922
4929
  }
4923
4930
  var {
4924
- n: n$Z,
4925
- classes: classes$O
4931
+ n: n$_,
4932
+ classes: classes$P
4926
4933
  } = createNamespace("checkbox");
4927
- function __render__$Z(_ctx, _cache) {
4934
+ function __render__$_(_ctx, _cache) {
4928
4935
  var _component_var_icon = vue.resolveComponent("var-icon");
4929
4936
  var _component_var_hover_overlay = vue.resolveComponent("var-hover-overlay");
4930
4937
  var _component_var_form_details = vue.resolveComponent("var-form-details");
@@ -5014,7 +5021,7 @@ function __render__$Z(_ctx, _cache) {
5014
5021
  /* CLASS */
5015
5022
  );
5016
5023
  }
5017
- var __sfc__$_ = vue.defineComponent({
5024
+ var __sfc__$$ = vue.defineComponent({
5018
5025
  name: "VarCheckbox",
5019
5026
  directives: {
5020
5027
  Ripple: Ripple$1,
@@ -5025,7 +5032,7 @@ var __sfc__$_ = vue.defineComponent({
5025
5032
  VarFormDetails: FormDetails,
5026
5033
  VarHoverOverlay: HoverOverlay
5027
5034
  },
5028
- props: props$S,
5035
+ props: props$T,
5029
5036
  setup(props2) {
5030
5037
  var value = vue.ref(false);
5031
5038
  var checked = vue.computed(() => value.value === props2.checkedValue);
@@ -5144,8 +5151,8 @@ var __sfc__$_ = vue.defineComponent({
5144
5151
  formReadonly: form == null ? void 0 : form.readonly,
5145
5152
  hovering,
5146
5153
  handleHovering,
5147
- n: n$Z,
5148
- classes: classes$O,
5154
+ n: n$_,
5155
+ classes: classes$P,
5149
5156
  handleClick,
5150
5157
  toggle,
5151
5158
  reset,
@@ -5154,8 +5161,8 @@ var __sfc__$_ = vue.defineComponent({
5154
5161
  };
5155
5162
  }
5156
5163
  });
5157
- __sfc__$_.render = __render__$Z;
5158
- const Checkbox = __sfc__$_;
5164
+ __sfc__$$.render = __render__$_;
5165
+ const Checkbox = __sfc__$$;
5159
5166
  Checkbox.install = function(app) {
5160
5167
  app.component(Checkbox.name, Checkbox);
5161
5168
  };
@@ -5163,7 +5170,7 @@ var _CheckboxComponent = Checkbox;
5163
5170
  function directionValidator$5(direction) {
5164
5171
  return ["horizontal", "vertical"].includes(direction);
5165
5172
  }
5166
- var props$R = {
5173
+ var props$S = {
5167
5174
  modelValue: {
5168
5175
  type: Array,
5169
5176
  default: () => []
@@ -5187,10 +5194,10 @@ var props$R = {
5187
5194
  "onUpdate:modelValue": defineListenerProp()
5188
5195
  };
5189
5196
  var {
5190
- n: n$Y,
5191
- classes: classes$N
5197
+ n: n$Z,
5198
+ classes: classes$O
5192
5199
  } = createNamespace("checkbox-group");
5193
- function __render__$Y(_ctx, _cache) {
5200
+ function __render__$Z(_ctx, _cache) {
5194
5201
  var _component_var_form_details = vue.resolveComponent("var-form-details");
5195
5202
  return vue.openBlock(), vue.createElementBlock(
5196
5203
  "div",
@@ -5218,12 +5225,12 @@ function __render__$Y(_ctx, _cache) {
5218
5225
  /* CLASS */
5219
5226
  );
5220
5227
  }
5221
- var __sfc__$Z = vue.defineComponent({
5228
+ var __sfc__$_ = vue.defineComponent({
5222
5229
  name: "VarCheckboxGroup",
5223
5230
  components: {
5224
5231
  VarFormDetails: FormDetails
5225
5232
  },
5226
- props: props$R,
5233
+ props: props$S,
5227
5234
  setup(props2) {
5228
5235
  var max2 = vue.computed(() => props2.max);
5229
5236
  var checkedCount = vue.computed(() => props2.modelValue.length);
@@ -5336,8 +5343,8 @@ var __sfc__$Z = vue.defineComponent({
5336
5343
  call(bindForm, checkboxGroupProvider);
5337
5344
  return {
5338
5345
  errorMessage,
5339
- n: n$Y,
5340
- classes: classes$N,
5346
+ n: n$Z,
5347
+ classes: classes$O,
5341
5348
  checkAll: checkAll2,
5342
5349
  inverseAll,
5343
5350
  reset,
@@ -5346,8 +5353,8 @@ var __sfc__$Z = vue.defineComponent({
5346
5353
  };
5347
5354
  }
5348
5355
  });
5349
- __sfc__$Z.render = __render__$Y;
5350
- const CheckboxGroup = __sfc__$Z;
5356
+ __sfc__$_.render = __render__$Z;
5357
+ const CheckboxGroup = __sfc__$_;
5351
5358
  CheckboxGroup.install = function(app) {
5352
5359
  app.component(CheckboxGroup.name, CheckboxGroup);
5353
5360
  };
@@ -5355,10 +5362,10 @@ var _CheckboxGroupComponent = CheckboxGroup;
5355
5362
  function typeValidator$6(type) {
5356
5363
  return ["default", "primary", "info", "success", "warning", "danger"].includes(type);
5357
5364
  }
5358
- function sizeValidator$1(size) {
5365
+ function sizeValidator$2(size) {
5359
5366
  return ["normal", "mini", "small", "large"].includes(size);
5360
5367
  }
5361
- var props$Q = {
5368
+ var props$R = {
5362
5369
  type: {
5363
5370
  type: String,
5364
5371
  default: "default",
@@ -5367,7 +5374,7 @@ var props$Q = {
5367
5374
  size: {
5368
5375
  type: String,
5369
5376
  default: "normal",
5370
- validator: sizeValidator$1
5377
+ validator: sizeValidator$2
5371
5378
  },
5372
5379
  color: {
5373
5380
  type: String
@@ -5375,7 +5382,7 @@ var props$Q = {
5375
5382
  textColor: {
5376
5383
  type: String
5377
5384
  },
5378
- iconName: pickProps(props$18, "name"),
5385
+ iconName: pickProps(props$19, "name"),
5379
5386
  plain: {
5380
5387
  type: Boolean,
5381
5388
  default: false
@@ -5395,10 +5402,10 @@ var props$Q = {
5395
5402
  onClose: defineListenerProp()
5396
5403
  };
5397
5404
  var {
5398
- n: n$X,
5399
- classes: classes$M
5405
+ n: n$Y,
5406
+ classes: classes$N
5400
5407
  } = createNamespace("chip");
5401
- function __render__$X(_ctx, _cache) {
5408
+ function __render__$Y(_ctx, _cache) {
5402
5409
  var _component_var_icon = vue.resolveComponent("var-icon");
5403
5410
  return vue.openBlock(), vue.createBlock(
5404
5411
  vue.Transition,
@@ -5451,13 +5458,13 @@ function __render__$X(_ctx, _cache) {
5451
5458
  ["name"]
5452
5459
  );
5453
5460
  }
5454
- var __sfc__$Y = vue.defineComponent({
5461
+ var __sfc__$Z = vue.defineComponent({
5455
5462
  name: "VarChip",
5456
5463
  components: {
5457
5464
  VarIcon: Icon
5458
5465
  },
5459
5466
  inheritAttrs: false,
5460
- props: props$Q,
5467
+ props: props$R,
5461
5468
  setup(props2) {
5462
5469
  var chipStyles = vue.computed(() => {
5463
5470
  var {
@@ -5484,25 +5491,25 @@ var __sfc__$Y = vue.defineComponent({
5484
5491
  plain,
5485
5492
  round: round2
5486
5493
  } = props2;
5487
- var blockClass = block ? n$X("$--flex") : n$X("$--inline-flex");
5488
- var plainTypeClass = plain ? n$X("plain") + " " + n$X("plain-" + type) : n$X("--" + type);
5489
- var roundClass = round2 ? n$X("--round") : null;
5490
- return [n$X("--" + size), blockClass, plainTypeClass, roundClass];
5494
+ var blockClass = block ? n$Y("$--flex") : n$Y("$--inline-flex");
5495
+ var plainTypeClass = plain ? n$Y("plain") + " " + n$Y("plain-" + type) : n$Y("--" + type);
5496
+ var roundClass = round2 ? n$Y("--round") : null;
5497
+ return [n$Y("--" + size), blockClass, plainTypeClass, roundClass];
5491
5498
  });
5492
5499
  var handleClose = (e) => {
5493
5500
  call(props2.onClose, e);
5494
5501
  };
5495
5502
  return {
5496
- n: n$X,
5497
- classes: classes$M,
5503
+ n: n$Y,
5504
+ classes: classes$N,
5498
5505
  chipStyles,
5499
5506
  contentClass,
5500
5507
  handleClose
5501
5508
  };
5502
5509
  }
5503
5510
  });
5504
- __sfc__$Y.render = __render__$X;
5505
- const Chip = __sfc__$Y;
5511
+ __sfc__$Z.render = __render__$Y;
5512
+ const Chip = __sfc__$Z;
5506
5513
  Chip.install = function(app) {
5507
5514
  app.component(Chip.name, Chip);
5508
5515
  };
@@ -5516,7 +5523,7 @@ function justifyValidator$2(justify) {
5516
5523
  function alignValidator$2(align) {
5517
5524
  return ["stretch", "center", "start", "end", "baseline", "initial", "inherit", "flex-start", "flex-end"].includes(align);
5518
5525
  }
5519
- var props$P = {
5526
+ var props$Q = {
5520
5527
  span: {
5521
5528
  type: [String, Number],
5522
5529
  default: 24
@@ -5581,10 +5588,10 @@ function useRow() {
5581
5588
  };
5582
5589
  }
5583
5590
  var {
5584
- n: n$W,
5585
- classes: classes$L
5591
+ n: n$X,
5592
+ classes: classes$M
5586
5593
  } = createNamespace("col");
5587
- function __render__$W(_ctx, _cache) {
5594
+ function __render__$X(_ctx, _cache) {
5588
5595
  return vue.openBlock(), vue.createElementBlock(
5589
5596
  "div",
5590
5597
  {
@@ -5605,9 +5612,9 @@ function __render__$W(_ctx, _cache) {
5605
5612
  /* CLASS, STYLE */
5606
5613
  );
5607
5614
  }
5608
- var __sfc__$X = vue.defineComponent({
5615
+ var __sfc__$Y = vue.defineComponent({
5609
5616
  name: "VarCol",
5610
- props: props$P,
5617
+ props: props$Q,
5611
5618
  setup(props2) {
5612
5619
  var padding = vue.ref({
5613
5620
  left: 0,
@@ -5634,10 +5641,10 @@ var __sfc__$X = vue.defineComponent({
5634
5641
  offset: _offset,
5635
5642
  span: _span
5636
5643
  } = size;
5637
- Number(_span) >= 0 && classes2.push(n$W("--span-" + mode + "-" + _span));
5638
- _offset && classes2.push(n$W("--offset-" + mode + "-" + _offset));
5644
+ Number(_span) >= 0 && classes2.push(n$X("--span-" + mode + "-" + _span));
5645
+ _offset && classes2.push(n$X("--offset-" + mode + "-" + _offset));
5639
5646
  } else {
5640
- Number(size) >= 0 && classes2.push(n$W("--span-" + mode + "-" + size));
5647
+ Number(size) >= 0 && classes2.push(n$X("--span-" + mode + "-" + size));
5641
5648
  }
5642
5649
  return classes2;
5643
5650
  };
@@ -5649,8 +5656,8 @@ var __sfc__$X = vue.defineComponent({
5649
5656
  });
5650
5657
  call(bindRow, colProvider);
5651
5658
  return {
5652
- n: n$W,
5653
- classes: classes$L,
5659
+ n: n$X,
5660
+ classes: classes$M,
5654
5661
  padding,
5655
5662
  toNumber,
5656
5663
  toSizeUnit,
@@ -5662,8 +5669,8 @@ var __sfc__$X = vue.defineComponent({
5662
5669
  };
5663
5670
  }
5664
5671
  });
5665
- __sfc__$X.render = __render__$W;
5666
- const Col = __sfc__$X;
5672
+ __sfc__$Y.render = __render__$X;
5673
+ const Col = __sfc__$Y;
5667
5674
  Col.install = function(app) {
5668
5675
  app.component(Col.name, Col);
5669
5676
  };
@@ -5681,7 +5688,7 @@ function useCollapseItem() {
5681
5688
  bindCollapseItem: bindChildren
5682
5689
  };
5683
5690
  }
5684
- var props$O = {
5691
+ var props$P = {
5685
5692
  modelValue: {
5686
5693
  type: [Array, String, Number]
5687
5694
  },
@@ -5705,9 +5712,9 @@ var props$O = {
5705
5712
  "onUpdate:modelValue": defineListenerProp()
5706
5713
  };
5707
5714
  var {
5708
- n: n$V
5715
+ n: n$W
5709
5716
  } = createNamespace("collapse");
5710
- function __render__$V(_ctx, _cache) {
5717
+ function __render__$W(_ctx, _cache) {
5711
5718
  return vue.openBlock(), vue.createElementBlock(
5712
5719
  "div",
5713
5720
  {
@@ -5718,9 +5725,9 @@ function __render__$V(_ctx, _cache) {
5718
5725
  /* CLASS */
5719
5726
  );
5720
5727
  }
5721
- var __sfc__$W = vue.defineComponent({
5728
+ var __sfc__$X = vue.defineComponent({
5722
5729
  name: "VarCollapse",
5723
- props: props$O,
5730
+ props: props$P,
5724
5731
  setup(props2) {
5725
5732
  var {
5726
5733
  length,
@@ -5817,13 +5824,13 @@ var __sfc__$W = vue.defineComponent({
5817
5824
  vue.watch(() => length.value, () => vue.nextTick().then(resize));
5818
5825
  vue.watch(() => props2.modelValue, () => vue.nextTick().then(resize));
5819
5826
  return {
5820
- n: n$V,
5827
+ n: n$W,
5821
5828
  divider: divider2
5822
5829
  };
5823
5830
  }
5824
5831
  });
5825
- __sfc__$W.render = __render__$V;
5826
- const Collapse = __sfc__$W;
5832
+ __sfc__$X.render = __render__$W;
5833
+ const Collapse = __sfc__$X;
5827
5834
  Collapse.install = function(app) {
5828
5835
  app.component(Collapse.name, Collapse);
5829
5836
  };
@@ -5843,7 +5850,7 @@ function useCollapse() {
5843
5850
  bindCollapse: bindParent
5844
5851
  };
5845
5852
  }
5846
- var props$N = {
5853
+ var props$O = {
5847
5854
  name: {
5848
5855
  type: [String, Number]
5849
5856
  },
@@ -5860,10 +5867,10 @@ var props$N = {
5860
5867
  }
5861
5868
  };
5862
5869
  var {
5863
- n: n$U,
5864
- classes: classes$K
5870
+ n: n$V,
5871
+ classes: classes$L
5865
5872
  } = createNamespace("collapse-item");
5866
- function __render__$U(_ctx, _cache) {
5873
+ function __render__$V(_ctx, _cache) {
5867
5874
  var _component_var_icon = vue.resolveComponent("var-icon");
5868
5875
  return vue.openBlock(), vue.createElementBlock(
5869
5876
  "div",
@@ -5946,12 +5953,12 @@ function __render__$U(_ctx, _cache) {
5946
5953
  /* CLASS, STYLE */
5947
5954
  );
5948
5955
  }
5949
- var __sfc__$V = vue.defineComponent({
5956
+ var __sfc__$W = vue.defineComponent({
5950
5957
  name: "VarCollapseItem",
5951
5958
  components: {
5952
5959
  VarIcon: Icon
5953
5960
  },
5954
- props: props$N,
5961
+ props: props$O,
5955
5962
  setup(props2) {
5956
5963
  var {
5957
5964
  index,
@@ -6037,9 +6044,9 @@ var __sfc__$V = vue.defineComponent({
6037
6044
  closePanel();
6038
6045
  });
6039
6046
  return {
6040
- n: n$U,
6047
+ n: n$V,
6041
6048
  start: start2,
6042
- classes: classes$K,
6049
+ classes: classes$L,
6043
6050
  showContent,
6044
6051
  isShow,
6045
6052
  offset: offset2,
@@ -6052,13 +6059,13 @@ var __sfc__$V = vue.defineComponent({
6052
6059
  };
6053
6060
  }
6054
6061
  });
6055
- __sfc__$V.render = __render__$U;
6056
- const CollapseItem = __sfc__$V;
6062
+ __sfc__$W.render = __render__$V;
6063
+ const CollapseItem = __sfc__$W;
6057
6064
  CollapseItem.install = function(app) {
6058
6065
  app.component(CollapseItem.name, CollapseItem);
6059
6066
  };
6060
6067
  var _CollapseItemComponent = CollapseItem;
6061
- var props$M = {
6068
+ var props$N = {
6062
6069
  time: {
6063
6070
  type: [String, Number],
6064
6071
  default: 0
@@ -6075,13 +6082,13 @@ var props$M = {
6075
6082
  onChange: defineListenerProp()
6076
6083
  };
6077
6084
  var {
6078
- n: n$T
6085
+ n: n$U
6079
6086
  } = createNamespace("countdown");
6080
6087
  var SECOND = 1e3;
6081
6088
  var MINUTE = 60 * SECOND;
6082
6089
  var HOUR = 60 * MINUTE;
6083
6090
  var DAY = 24 * HOUR;
6084
- function __render__$T(_ctx, _cache) {
6091
+ function __render__$U(_ctx, _cache) {
6085
6092
  return vue.openBlock(), vue.createElementBlock(
6086
6093
  "div",
6087
6094
  {
@@ -6096,9 +6103,9 @@ function __render__$T(_ctx, _cache) {
6096
6103
  /* CLASS */
6097
6104
  );
6098
6105
  }
6099
- var __sfc__$U = vue.defineComponent({
6106
+ var __sfc__$V = vue.defineComponent({
6100
6107
  name: "VarCountdown",
6101
- props: props$M,
6108
+ props: props$N,
6102
6109
  setup(props2) {
6103
6110
  var showTime = vue.ref("");
6104
6111
  var timeData = vue.ref({
@@ -6221,15 +6228,15 @@ var __sfc__$U = vue.defineComponent({
6221
6228
  return {
6222
6229
  showTime,
6223
6230
  timeData,
6224
- n: n$T,
6231
+ n: n$U,
6225
6232
  start: start2,
6226
6233
  pause,
6227
6234
  reset
6228
6235
  };
6229
6236
  }
6230
6237
  });
6231
- __sfc__$U.render = __render__$T;
6232
- const Countdown = __sfc__$U;
6238
+ __sfc__$V.render = __render__$U;
6239
+ const Countdown = __sfc__$V;
6233
6240
  Countdown.install = function(app) {
6234
6241
  app.component(Countdown.name, Countdown);
6235
6242
  };
@@ -8561,7 +8568,7 @@ P[Symbol.toStringTag] = "Decimal";
8561
8568
  var Decimal = P.constructor = clone(DEFAULTS);
8562
8569
  LN10 = new Decimal(LN10);
8563
8570
  PI = new Decimal(PI);
8564
- var props$L = {
8571
+ var props$M = {
8565
8572
  modelValue: {
8566
8573
  type: [String, Number],
8567
8574
  default: 0
@@ -8649,13 +8656,13 @@ var props$L = {
8649
8656
  "onUpdate:modelValue": defineListenerProp()
8650
8657
  };
8651
8658
  var {
8652
- n: n$S,
8653
- classes: classes$J
8659
+ n: n$T,
8660
+ classes: classes$K
8654
8661
  } = createNamespace("counter");
8655
8662
  var SPEED = 100;
8656
8663
  var DELAY = 600;
8657
- var _hoisted_1$l = ["inputmode", "readonly", "disabled"];
8658
- function __render__$S(_ctx, _cache) {
8664
+ var _hoisted_1$m = ["inputmode", "readonly", "disabled"];
8665
+ function __render__$T(_ctx, _cache) {
8659
8666
  var _component_var_icon = vue.resolveComponent("var-icon");
8660
8667
  var _component_var_button = vue.resolveComponent("var-button");
8661
8668
  var _component_var_form_details = vue.resolveComponent("var-form-details");
@@ -8715,7 +8722,7 @@ function __render__$S(_ctx, _cache) {
8715
8722
  },
8716
8723
  null,
8717
8724
  46,
8718
- _hoisted_1$l
8725
+ _hoisted_1$m
8719
8726
  ), [[vue.vModelText, _ctx.inputValue]]), vue.createVNode(
8720
8727
  _component_var_button,
8721
8728
  {
@@ -8757,7 +8764,7 @@ function __render__$S(_ctx, _cache) {
8757
8764
  /* CLASS */
8758
8765
  );
8759
8766
  }
8760
- var __sfc__$T = vue.defineComponent({
8767
+ var __sfc__$U = vue.defineComponent({
8761
8768
  name: "VarCounter",
8762
8769
  components: {
8763
8770
  VarButton: Button,
@@ -8768,7 +8775,7 @@ var __sfc__$T = vue.defineComponent({
8768
8775
  Ripple: Ripple$1
8769
8776
  },
8770
8777
  inheritAttrs: false,
8771
- props: props$L,
8778
+ props: props$M,
8772
8779
  setup(props2) {
8773
8780
  var inputValue = vue.ref("");
8774
8781
  var {
@@ -8976,8 +8983,8 @@ var __sfc__$T = vue.defineComponent({
8976
8983
  });
8977
8984
  setNormalizedValue(normalizeValue(String(props2.modelValue)));
8978
8985
  return {
8979
- n: n$S,
8980
- classes: classes$J,
8986
+ n: n$T,
8987
+ classes: classes$K,
8981
8988
  formatElevation,
8982
8989
  inputValue,
8983
8990
  errorMessage,
@@ -9000,8 +9007,8 @@ var __sfc__$T = vue.defineComponent({
9000
9007
  };
9001
9008
  }
9002
9009
  });
9003
- __sfc__$T.render = __render__$S;
9004
- const Counter = __sfc__$T;
9010
+ __sfc__$U.render = __render__$T;
9011
+ const Counter = __sfc__$U;
9005
9012
  Counter.install = function(app) {
9006
9013
  app.component(Counter.name, Counter);
9007
9014
  };
@@ -9473,7 +9480,7 @@ var WEEK_HEADER = [{
9473
9480
  }, {
9474
9481
  index: "6"
9475
9482
  }];
9476
- var props$K = {
9483
+ var props$L = {
9477
9484
  modelValue: {
9478
9485
  type: [String, Array]
9479
9486
  },
@@ -9534,9 +9541,9 @@ var props$K = {
9534
9541
  "onUpdate:modelValue": defineListenerProp()
9535
9542
  };
9536
9543
  var {
9537
- n: n$R
9544
+ n: n$S
9538
9545
  } = createNamespace("picker-header");
9539
- function __render__$R(_ctx, _cache) {
9546
+ function __render__$S(_ctx, _cache) {
9540
9547
  var _component_var_icon = vue.resolveComponent("var-icon");
9541
9548
  var _component_var_button = vue.resolveComponent("var-button");
9542
9549
  return vue.openBlock(), vue.createElementBlock(
@@ -9618,7 +9625,7 @@ function __render__$R(_ctx, _cache) {
9618
9625
  /* CLASS */
9619
9626
  );
9620
9627
  }
9621
- var __sfc__$S = vue.defineComponent({
9628
+ var __sfc__$T = vue.defineComponent({
9622
9629
  name: "PanelHeader",
9623
9630
  components: {
9624
9631
  VarButton: Button,
@@ -9671,17 +9678,17 @@ var __sfc__$S = vue.defineComponent({
9671
9678
  forwardOrBackNum.value = 0;
9672
9679
  });
9673
9680
  return {
9674
- n: n$R,
9681
+ n: n$S,
9675
9682
  reverse,
9676
9683
  showDate,
9677
9684
  checkDate
9678
9685
  };
9679
9686
  }
9680
9687
  });
9681
- __sfc__$S.render = __render__$R;
9682
- const PanelHeader = __sfc__$S;
9683
- function _extends$d() {
9684
- _extends$d = Object.assign ? Object.assign.bind() : function(target) {
9688
+ __sfc__$T.render = __render__$S;
9689
+ const PanelHeader = __sfc__$T;
9690
+ function _extends$f() {
9691
+ _extends$f = Object.assign ? Object.assign.bind() : function(target) {
9685
9692
  for (var i = 1; i < arguments.length; i++) {
9686
9693
  var source = arguments[i];
9687
9694
  for (var key in source) {
@@ -9692,18 +9699,18 @@ function _extends$d() {
9692
9699
  }
9693
9700
  return target;
9694
9701
  };
9695
- return _extends$d.apply(this, arguments);
9702
+ return _extends$f.apply(this, arguments);
9696
9703
  }
9697
9704
  dayjs.extend(isSameOrBefore);
9698
9705
  dayjs.extend(isSameOrAfter);
9699
9706
  var {
9700
- n: n$Q,
9701
- classes: classes$I
9707
+ n: n$R,
9708
+ classes: classes$J
9702
9709
  } = createNamespace("month-picker");
9703
9710
  var {
9704
9711
  n: nDate$1
9705
9712
  } = createNamespace("date-picker");
9706
- function __render__$Q(_ctx, _cache) {
9713
+ function __render__$R(_ctx, _cache) {
9707
9714
  var _component_panel_header = vue.resolveComponent("panel-header");
9708
9715
  var _component_var_button = vue.resolveComponent("var-button");
9709
9716
  return vue.openBlock(), vue.createElementBlock(
@@ -9750,7 +9757,7 @@ function __render__$Q(_ctx, _cache) {
9750
9757
  "var-month-picker-cover": "",
9751
9758
  ripple: false,
9752
9759
  elevation: _ctx.componentProps.buttonElevation
9753
- }, _extends$d({}, _ctx.buttonProps(month.index)), {
9760
+ }, _extends$f({}, _ctx.buttonProps(month.index)), {
9754
9761
  onClick: _cache[0] || (_cache[0] = (event) => chooseMonth(month, event))
9755
9762
  }),
9756
9763
  {
@@ -9782,7 +9789,7 @@ function __render__$Q(_ctx, _cache) {
9782
9789
  /* CLASS */
9783
9790
  );
9784
9791
  }
9785
- var __sfc__$R = vue.defineComponent({
9792
+ var __sfc__$S = vue.defineComponent({
9786
9793
  name: "MonthPickerPanel",
9787
9794
  components: {
9788
9795
  VarButton: Button,
@@ -9934,13 +9941,13 @@ var __sfc__$R = vue.defineComponent({
9934
9941
  color: !computeText() ? color : "",
9935
9942
  textColor: isCover ? "" : textColorOrCover(),
9936
9943
  [nDate$1() + "-color-cover"]: isCover,
9937
- class: classes$I(n$Q("button"), [disabled, n$Q("button--disabled")]),
9944
+ class: classes$J(n$R("button"), [disabled, n$R("button--disabled")]),
9938
9945
  disabled
9939
9946
  };
9940
9947
  };
9941
9948
  var chooseMonth2 = (month, event) => {
9942
9949
  var buttonEl = event.currentTarget;
9943
- if (buttonEl.classList.contains(n$Q("button--disabled")))
9950
+ if (buttonEl.classList.contains(n$R("button--disabled")))
9944
9951
  return;
9945
9952
  emit("choose-month", month);
9946
9953
  };
@@ -9967,7 +9974,7 @@ var __sfc__$R = vue.defineComponent({
9967
9974
  immediate: true
9968
9975
  });
9969
9976
  return {
9970
- n: n$Q,
9977
+ n: n$R,
9971
9978
  nDate: nDate$1,
9972
9979
  pack,
9973
9980
  MONTH_LIST,
@@ -9983,14 +9990,14 @@ var __sfc__$R = vue.defineComponent({
9983
9990
  };
9984
9991
  }
9985
9992
  });
9986
- __sfc__$R.render = __render__$Q;
9987
- const MonthPickerPanel = __sfc__$R;
9993
+ __sfc__$S.render = __render__$R;
9994
+ const MonthPickerPanel = __sfc__$S;
9988
9995
  var {
9989
- n: n$P,
9990
- classes: classes$H
9996
+ n: n$Q,
9997
+ classes: classes$I
9991
9998
  } = createNamespace("year-picker");
9992
- var _hoisted_1$k = ["onClick"];
9993
- function __render__$P(_ctx, _cache) {
9999
+ var _hoisted_1$l = ["onClick"];
10000
+ function __render__$Q(_ctx, _cache) {
9994
10001
  return vue.openBlock(), vue.createElementBlock(
9995
10002
  "ul",
9996
10003
  {
@@ -10012,7 +10019,7 @@ function __render__$P(_ctx, _cache) {
10012
10019
  },
10013
10020
  vue.toDisplayString(year),
10014
10021
  15,
10015
- _hoisted_1$k
10022
+ _hoisted_1$l
10016
10023
  );
10017
10024
  }),
10018
10025
  128
@@ -10022,7 +10029,7 @@ function __render__$P(_ctx, _cache) {
10022
10029
  /* CLASS */
10023
10030
  );
10024
10031
  }
10025
- var __sfc__$Q = vue.defineComponent({
10032
+ var __sfc__$R = vue.defineComponent({
10026
10033
  name: "YearPickerPanel",
10027
10034
  props: {
10028
10035
  preview: {
@@ -10075,24 +10082,24 @@ var __sfc__$Q = vue.defineComponent({
10075
10082
  emit("choose-year", year);
10076
10083
  };
10077
10084
  useMounted(() => {
10078
- var activeEl = document.querySelector("." + n$P("item--active"));
10085
+ var activeEl = document.querySelector("." + n$Q("item--active"));
10079
10086
  activeEl == null ? void 0 : activeEl.scrollIntoView({
10080
10087
  block: "center"
10081
10088
  });
10082
10089
  });
10083
10090
  return {
10084
- n: n$P,
10085
- classes: classes$H,
10091
+ n: n$Q,
10092
+ classes: classes$I,
10086
10093
  yearList,
10087
10094
  chooseYear,
10088
10095
  toNumber
10089
10096
  };
10090
10097
  }
10091
10098
  });
10092
- __sfc__$Q.render = __render__$P;
10093
- const YearPickerPanel = __sfc__$Q;
10094
- function _extends$c() {
10095
- _extends$c = Object.assign ? Object.assign.bind() : function(target) {
10099
+ __sfc__$R.render = __render__$Q;
10100
+ const YearPickerPanel = __sfc__$R;
10101
+ function _extends$e() {
10102
+ _extends$e = Object.assign ? Object.assign.bind() : function(target) {
10096
10103
  for (var i = 1; i < arguments.length; i++) {
10097
10104
  var source = arguments[i];
10098
10105
  for (var key in source) {
@@ -10103,18 +10110,18 @@ function _extends$c() {
10103
10110
  }
10104
10111
  return target;
10105
10112
  };
10106
- return _extends$c.apply(this, arguments);
10113
+ return _extends$e.apply(this, arguments);
10107
10114
  }
10108
10115
  dayjs.extend(isSameOrBefore);
10109
10116
  dayjs.extend(isSameOrAfter);
10110
10117
  var {
10111
- n: n$O,
10112
- classes: classes$G
10118
+ n: n$P,
10119
+ classes: classes$H
10113
10120
  } = createNamespace("day-picker");
10114
10121
  var {
10115
10122
  n: nDate
10116
10123
  } = createNamespace("date-picker");
10117
- function __render__$O(_ctx, _cache) {
10124
+ function __render__$P(_ctx, _cache) {
10118
10125
  var _component_panel_header = vue.resolveComponent("panel-header");
10119
10126
  var _component_var_button = vue.resolveComponent("var-button");
10120
10127
  return vue.openBlock(), vue.createElementBlock(
@@ -10191,7 +10198,7 @@ function __render__$O(_ctx, _cache) {
10191
10198
  round: "",
10192
10199
  ripple: false,
10193
10200
  elevation: _ctx.componentProps.buttonElevation
10194
- }, _extends$c({}, _ctx.buttonProps(day)), {
10201
+ }, _extends$e({}, _ctx.buttonProps(day)), {
10195
10202
  onClick: _cache[0] || (_cache[0] = (event) => chooseDay(day, event))
10196
10203
  }),
10197
10204
  {
@@ -10226,7 +10233,7 @@ function __render__$O(_ctx, _cache) {
10226
10233
  /* CLASS */
10227
10234
  );
10228
10235
  }
10229
- var __sfc__$P = vue.defineComponent({
10236
+ var __sfc__$Q = vue.defineComponent({
10230
10237
  name: "DayPickerPanel",
10231
10238
  components: {
10232
10239
  VarButton: Button,
@@ -10361,7 +10368,7 @@ var __sfc__$P = vue.defineComponent({
10361
10368
  text: true,
10362
10369
  outline: false,
10363
10370
  textColor: "",
10364
- class: n$O("button"),
10371
+ class: n$P("button"),
10365
10372
  disabled: true
10366
10373
  };
10367
10374
  }
@@ -10427,7 +10434,7 @@ var __sfc__$P = vue.defineComponent({
10427
10434
  outline: computeOutline(),
10428
10435
  textColor: isCover ? "" : textColorOrCover(),
10429
10436
  [nDate() + "-color-cover"]: isCover,
10430
- class: classes$G(n$O("button"), n$O("button--usable"), [disabled, n$O("button--disabled")]),
10437
+ class: classes$H(n$P("button"), n$P("button--usable"), [disabled, n$P("button--disabled")]),
10431
10438
  disabled
10432
10439
  };
10433
10440
  };
@@ -10438,7 +10445,7 @@ var __sfc__$P = vue.defineComponent({
10438
10445
  };
10439
10446
  var chooseDay2 = (day, event) => {
10440
10447
  var buttonEl = event.currentTarget;
10441
- if (buttonEl.classList.contains(n$O("button--disabled")))
10448
+ if (buttonEl.classList.contains(n$P("button--disabled")))
10442
10449
  return;
10443
10450
  emit("choose-day", day);
10444
10451
  };
@@ -10454,7 +10461,7 @@ var __sfc__$P = vue.defineComponent({
10454
10461
  initHeader();
10455
10462
  });
10456
10463
  return {
10457
- n: n$O,
10464
+ n: n$P,
10458
10465
  nDate,
10459
10466
  days,
10460
10467
  reverse,
@@ -10471,13 +10478,13 @@ var __sfc__$P = vue.defineComponent({
10471
10478
  };
10472
10479
  }
10473
10480
  });
10474
- __sfc__$P.render = __render__$O;
10475
- const DayPickerPanel = __sfc__$P;
10481
+ __sfc__$Q.render = __render__$P;
10482
+ const DayPickerPanel = __sfc__$Q;
10476
10483
  var {
10477
- n: n$N,
10478
- classes: classes$F
10484
+ n: n$O,
10485
+ classes: classes$G
10479
10486
  } = createNamespace("date-picker");
10480
- function __render__$N(_ctx, _cache) {
10487
+ function __render__$O(_ctx, _cache) {
10481
10488
  var _component_year_picker_panel = vue.resolveComponent("year-picker-panel");
10482
10489
  var _component_month_picker_panel = vue.resolveComponent("month-picker-panel");
10483
10490
  var _component_day_picker_panel = vue.resolveComponent("day-picker-panel");
@@ -10659,14 +10666,14 @@ function __render__$N(_ctx, _cache) {
10659
10666
  /* CLASS */
10660
10667
  );
10661
10668
  }
10662
- var __sfc__$O = vue.defineComponent({
10669
+ var __sfc__$P = vue.defineComponent({
10663
10670
  name: "VarDatePicker",
10664
10671
  components: {
10665
10672
  MonthPickerPanel,
10666
10673
  YearPickerPanel,
10667
10674
  DayPickerPanel
10668
10675
  },
10669
- props: props$K,
10676
+ props: props$L,
10670
10677
  setup(props2) {
10671
10678
  var startX = 0;
10672
10679
  var startY = 0;
@@ -11008,8 +11015,8 @@ var __sfc__$O = vue.defineComponent({
11008
11015
  });
11009
11016
  vue.watch(getPanelType, resetState);
11010
11017
  return {
11011
- n: n$N,
11012
- classes: classes$F,
11018
+ n: n$O,
11019
+ classes: classes$G,
11013
11020
  monthPanelEl,
11014
11021
  dayPanelEl,
11015
11022
  reverse,
@@ -11040,14 +11047,14 @@ var __sfc__$O = vue.defineComponent({
11040
11047
  };
11041
11048
  }
11042
11049
  });
11043
- __sfc__$O.render = __render__$N;
11044
- const DatePicker = __sfc__$O;
11050
+ __sfc__$P.render = __render__$O;
11051
+ const DatePicker = __sfc__$P;
11045
11052
  DatePicker.install = function(app) {
11046
11053
  app.component(DatePicker.name, DatePicker);
11047
11054
  };
11048
11055
  var _DatePickerComponent = DatePicker;
11049
- function _extends$b() {
11050
- _extends$b = Object.assign ? Object.assign.bind() : function(target) {
11056
+ function _extends$d() {
11057
+ _extends$d = Object.assign ? Object.assign.bind() : function(target) {
11051
11058
  for (var i = 1; i < arguments.length; i++) {
11052
11059
  var source = arguments[i];
11053
11060
  for (var key in source) {
@@ -11058,12 +11065,12 @@ function _extends$b() {
11058
11065
  }
11059
11066
  return target;
11060
11067
  };
11061
- return _extends$b.apply(this, arguments);
11068
+ return _extends$d.apply(this, arguments);
11062
11069
  }
11063
11070
  function messageAlignValidator(messageAlign) {
11064
11071
  return ["left", "center", "right"].includes(messageAlign);
11065
11072
  }
11066
- var props$J = _extends$b({
11073
+ var props$K = _extends$d({
11067
11074
  show: {
11068
11075
  type: Boolean,
11069
11076
  default: false
@@ -11118,7 +11125,7 @@ var props$J = _extends$b({
11118
11125
  onConfirm: defineListenerProp(),
11119
11126
  onCancel: defineListenerProp(),
11120
11127
  "onUpdate:show": defineListenerProp()
11121
- }, pickProps(props$19, [
11128
+ }, pickProps(props$1a, [
11122
11129
  "overlay",
11123
11130
  "overlayClass",
11124
11131
  "overlayStyle",
@@ -11133,8 +11140,8 @@ var props$J = _extends$b({
11133
11140
  // internal for function call closes the dialog
11134
11141
  "onRouteChange"
11135
11142
  ]));
11136
- function _extends$a() {
11137
- _extends$a = Object.assign ? Object.assign.bind() : function(target) {
11143
+ function _extends$c() {
11144
+ _extends$c = Object.assign ? Object.assign.bind() : function(target) {
11138
11145
  for (var i = 1; i < arguments.length; i++) {
11139
11146
  var source = arguments[i];
11140
11147
  for (var key in source) {
@@ -11145,13 +11152,13 @@ function _extends$a() {
11145
11152
  }
11146
11153
  return target;
11147
11154
  };
11148
- return _extends$a.apply(this, arguments);
11155
+ return _extends$c.apply(this, arguments);
11149
11156
  }
11150
11157
  var {
11151
- n: n$M,
11152
- classes: classes$E
11158
+ n: n$N,
11159
+ classes: classes$F
11153
11160
  } = createNamespace("dialog");
11154
- function __render__$M(_ctx, _cache) {
11161
+ function __render__$N(_ctx, _cache) {
11155
11162
  var _component_var_button = vue.resolveComponent("var-button");
11156
11163
  var _component_var_popup = vue.resolveComponent("var-popup");
11157
11164
  return vue.openBlock(), vue.createBlock(
@@ -11178,7 +11185,7 @@ function __render__$M(_ctx, _cache) {
11178
11185
  "div",
11179
11186
  vue.mergeProps({
11180
11187
  class: _ctx.classes(_ctx.n("$--box"), _ctx.n(), _ctx.dialogClass),
11181
- style: _extends$a({
11188
+ style: _extends$c({
11182
11189
  width: _ctx.toSizeUnit(_ctx.width)
11183
11190
  }, _ctx.dialogStyle)
11184
11191
  }, _ctx.$attrs),
@@ -11272,14 +11279,14 @@ function __render__$M(_ctx, _cache) {
11272
11279
  ["class", "show", "overlay", "overlay-class", "overlay-style", "lock-scroll", "close-on-click-overlay", "teleport", "onOpen", "onClose", "onClosed", "onOpened", "onRouteChange", "onClickOverlay"]
11273
11280
  );
11274
11281
  }
11275
- var __sfc__$N = vue.defineComponent({
11282
+ var __sfc__$O = vue.defineComponent({
11276
11283
  name: "VarDialog",
11277
11284
  components: {
11278
11285
  VarPopup: Popup,
11279
11286
  VarButton: Button
11280
11287
  },
11281
11288
  inheritAttrs: false,
11282
- props: props$J,
11289
+ props: props$K,
11283
11290
  setup(props2) {
11284
11291
  var popupShow = vue.ref(false);
11285
11292
  var popupCloseOnClickOverlay = vue.ref(false);
@@ -11339,8 +11346,8 @@ var __sfc__$N = vue.defineComponent({
11339
11346
  immediate: true
11340
11347
  });
11341
11348
  return {
11342
- n: n$M,
11343
- classes: classes$E,
11349
+ n: n$N,
11350
+ classes: classes$F,
11344
11351
  pack,
11345
11352
  dt,
11346
11353
  popupShow,
@@ -11352,10 +11359,10 @@ var __sfc__$N = vue.defineComponent({
11352
11359
  };
11353
11360
  }
11354
11361
  });
11355
- __sfc__$N.render = __render__$M;
11356
- const VarDialog = __sfc__$N;
11357
- function _extends$9() {
11358
- _extends$9 = Object.assign ? Object.assign.bind() : function(target) {
11362
+ __sfc__$O.render = __render__$N;
11363
+ const VarDialog = __sfc__$O;
11364
+ function _extends$b() {
11365
+ _extends$b = Object.assign ? Object.assign.bind() : function(target) {
11359
11366
  for (var i = 1; i < arguments.length; i++) {
11360
11367
  var source = arguments[i];
11361
11368
  for (var key in source) {
@@ -11366,7 +11373,7 @@ function _extends$9() {
11366
11373
  }
11367
11374
  return target;
11368
11375
  };
11369
- return _extends$9.apply(this, arguments);
11376
+ return _extends$b.apply(this, arguments);
11370
11377
  }
11371
11378
  var singletonOptions$2;
11372
11379
  var defaultOptions$2 = {};
@@ -11375,11 +11382,11 @@ function normalizeOptions$2(options) {
11375
11382
  options = {};
11376
11383
  }
11377
11384
  if (isString(options)) {
11378
- return _extends$9({}, defaultOptions$2, {
11385
+ return _extends$b({}, defaultOptions$2, {
11379
11386
  message: options
11380
11387
  });
11381
11388
  }
11382
- return _extends$9({}, defaultOptions$2, options);
11389
+ return _extends$b({}, defaultOptions$2, options);
11383
11390
  }
11384
11391
  function Dialog(options) {
11385
11392
  if (!inBrowser()) {
@@ -11445,7 +11452,7 @@ Dialog.install = function(app) {
11445
11452
  };
11446
11453
  Dialog.Component = VarDialog;
11447
11454
  var _DialogComponent = VarDialog;
11448
- var props$I = {
11455
+ var props$J = {
11449
11456
  inset: {
11450
11457
  type: [Boolean, Number, String],
11451
11458
  default: false
@@ -11469,8 +11476,8 @@ var props$I = {
11469
11476
  default: false
11470
11477
  }
11471
11478
  };
11472
- function _extends$8() {
11473
- _extends$8 = Object.assign ? Object.assign.bind() : function(target) {
11479
+ function _extends$a() {
11480
+ _extends$a = Object.assign ? Object.assign.bind() : function(target) {
11474
11481
  for (var i = 1; i < arguments.length; i++) {
11475
11482
  var source = arguments[i];
11476
11483
  for (var key in source) {
@@ -11481,13 +11488,13 @@ function _extends$8() {
11481
11488
  }
11482
11489
  return target;
11483
11490
  };
11484
- return _extends$8.apply(this, arguments);
11491
+ return _extends$a.apply(this, arguments);
11485
11492
  }
11486
11493
  var {
11487
- n: n$L,
11488
- classes: classes$D
11494
+ n: n$M,
11495
+ classes: classes$E
11489
11496
  } = createNamespace("divider");
11490
- function __render__$L(_ctx, _cache) {
11497
+ function __render__$M(_ctx, _cache) {
11491
11498
  return vue.openBlock(), vue.createElementBlock(
11492
11499
  "div",
11493
11500
  {
@@ -11508,9 +11515,9 @@ function __render__$L(_ctx, _cache) {
11508
11515
  /* CLASS, STYLE */
11509
11516
  );
11510
11517
  }
11511
- var __sfc__$M = vue.defineComponent({
11518
+ var __sfc__$N = vue.defineComponent({
11512
11519
  name: "VarDivider",
11513
- props: props$I,
11520
+ props: props$J,
11514
11521
  setup(props2, _ref) {
11515
11522
  var {
11516
11523
  slots
@@ -11531,13 +11538,13 @@ var __sfc__$M = vue.defineComponent({
11531
11538
  margin
11532
11539
  };
11533
11540
  if (isBoolean(inset) || inset === 0) {
11534
- return _extends$8({}, baseStyle);
11541
+ return _extends$a({}, baseStyle);
11535
11542
  }
11536
11543
  var _inset = toNumber(inset);
11537
11544
  var absInsetWithUnit = Math.abs(_inset) + (inset + "").replace(_inset + "", "");
11538
- return vertical ? _extends$8({}, baseStyle, {
11545
+ return vertical ? _extends$a({}, baseStyle, {
11539
11546
  height: "calc(80% - " + toSizeUnit(absInsetWithUnit) + ")"
11540
- }) : _extends$8({}, baseStyle, {
11547
+ }) : _extends$a({}, baseStyle, {
11541
11548
  width: "calc(100% - " + toSizeUnit(absInsetWithUnit) + ")",
11542
11549
  left: _inset > 0 ? toSizeUnit(absInsetWithUnit) : toSizeUnit(0)
11543
11550
  });
@@ -11551,17 +11558,17 @@ var __sfc__$M = vue.defineComponent({
11551
11558
  vue.onUpdated(() => {
11552
11559
  checkHasText();
11553
11560
  });
11554
- return _extends$8({
11555
- n: n$L,
11556
- classes: classes$D
11561
+ return _extends$a({
11562
+ n: n$M,
11563
+ classes: classes$E
11557
11564
  }, vue.toRefs(state), {
11558
11565
  style,
11559
11566
  isInset
11560
11567
  });
11561
11568
  }
11562
11569
  });
11563
- __sfc__$M.render = __render__$L;
11564
- const Divider = __sfc__$M;
11570
+ __sfc__$N.render = __render__$M;
11571
+ const Divider = __sfc__$N;
11565
11572
  Divider.install = function(app) {
11566
11573
  app.component(Divider.name, Divider);
11567
11574
  };
@@ -12832,8 +12839,8 @@ var defaultModifiers = [eventListeners, popperOffsets$1, computeStyles$1, applyS
12832
12839
  var createPopper = /* @__PURE__ */ popperGenerator({
12833
12840
  defaultModifiers
12834
12841
  });
12835
- function _extends$7() {
12836
- _extends$7 = Object.assign ? Object.assign.bind() : function(target) {
12842
+ function _extends$9() {
12843
+ _extends$9 = Object.assign ? Object.assign.bind() : function(target) {
12837
12844
  for (var i = 1; i < arguments.length; i++) {
12838
12845
  var source = arguments[i];
12839
12846
  for (var key in source) {
@@ -12844,7 +12851,7 @@ function _extends$7() {
12844
12851
  }
12845
12852
  return target;
12846
12853
  };
12847
- return _extends$7.apply(this, arguments);
12854
+ return _extends$9.apply(this, arguments);
12848
12855
  }
12849
12856
  function asyncGeneratorStep$9(gen, resolve, reject, _next, _throw, key, arg) {
12850
12857
  try {
@@ -13063,9 +13070,9 @@ function usePopover(options) {
13063
13070
  skidding,
13064
13071
  distance
13065
13072
  } = getPosition();
13066
- var modifiers = [_extends$7({}, flip$1, {
13073
+ var modifiers = [_extends$9({}, flip$1, {
13067
13074
  enabled: show.value
13068
- }), _extends$7({}, offset$1, {
13075
+ }), _extends$9({}, offset$1, {
13069
13076
  options: {
13070
13077
  offset: [skidding, distance]
13071
13078
  }
@@ -13131,7 +13138,7 @@ function placementValidator$1(alignment) {
13131
13138
  function typeValidator$4(type) {
13132
13139
  return ["default", "primary", "info", "success", "warning", "danger"].includes(type);
13133
13140
  }
13134
- var props$H = {
13141
+ var props$I = {
13135
13142
  type: {
13136
13143
  type: String,
13137
13144
  default: "default",
@@ -13187,10 +13194,10 @@ var props$H = {
13187
13194
  "onUpdate:show": defineListenerProp()
13188
13195
  };
13189
13196
  var {
13190
- n: n$K,
13191
- classes: classes$C
13197
+ n: n$L,
13198
+ classes: classes$D
13192
13199
  } = createNamespace("tooltip");
13193
- function __render__$K(_ctx, _cache) {
13200
+ function __render__$L(_ctx, _cache) {
13194
13201
  return vue.openBlock(), vue.createElementBlock(
13195
13202
  "div",
13196
13203
  {
@@ -13269,9 +13276,9 @@ function __render__$K(_ctx, _cache) {
13269
13276
  /* CLASS, HYDRATE_EVENTS */
13270
13277
  );
13271
13278
  }
13272
- var __sfc__$L = vue.defineComponent({
13279
+ var __sfc__$M = vue.defineComponent({
13273
13280
  name: "VarTooltip",
13274
- props: props$H,
13281
+ props: props$I,
13275
13282
  setup(props2) {
13276
13283
  var {
13277
13284
  popover,
@@ -13299,8 +13306,8 @@ var __sfc__$L = vue.defineComponent({
13299
13306
  hostSize,
13300
13307
  show,
13301
13308
  zIndex,
13302
- n: n$K,
13303
- classes: classes$C,
13309
+ n: n$L,
13310
+ classes: classes$D,
13304
13311
  handleHostClick,
13305
13312
  handlePopoverClose,
13306
13313
  handleHostMouseenter,
@@ -13313,8 +13320,8 @@ var __sfc__$L = vue.defineComponent({
13313
13320
  };
13314
13321
  }
13315
13322
  });
13316
- __sfc__$L.render = __render__$K;
13317
- const Tooltip = __sfc__$L;
13323
+ __sfc__$M.render = __render__$L;
13324
+ const Tooltip = __sfc__$M;
13318
13325
  Tooltip.install = function(app) {
13319
13326
  app.component(Tooltip.name, Tooltip);
13320
13327
  };
@@ -13322,7 +13329,7 @@ var _TooltipComponent = Tooltip;
13322
13329
  function expandTriggerValidator(expandTrigger) {
13323
13330
  return ["click"].includes(expandTrigger);
13324
13331
  }
13325
- var props$G = {
13332
+ var props$H = {
13326
13333
  expandTrigger: {
13327
13334
  type: String,
13328
13335
  validator: expandTriggerValidator
@@ -13335,8 +13342,8 @@ var props$G = {
13335
13342
  default: true
13336
13343
  }
13337
13344
  };
13338
- function _extends$6() {
13339
- _extends$6 = Object.assign ? Object.assign.bind() : function(target) {
13345
+ function _extends$8() {
13346
+ _extends$8 = Object.assign ? Object.assign.bind() : function(target) {
13340
13347
  for (var i = 1; i < arguments.length; i++) {
13341
13348
  var source = arguments[i];
13342
13349
  for (var key in source) {
@@ -13347,16 +13354,16 @@ function _extends$6() {
13347
13354
  }
13348
13355
  return target;
13349
13356
  };
13350
- return _extends$6.apply(this, arguments);
13357
+ return _extends$8.apply(this, arguments);
13351
13358
  }
13352
13359
  var {
13353
- n: n$J,
13354
- classes: classes$B
13360
+ n: n$K,
13361
+ classes: classes$C
13355
13362
  } = createNamespace("ellipsis");
13356
- var _hoisted_1$j = {
13363
+ var _hoisted_1$k = {
13357
13364
  key: 0
13358
13365
  };
13359
- function __render__$J(_ctx, _cache) {
13366
+ function __render__$K(_ctx, _cache) {
13360
13367
  var _component_var_tooltip = vue.resolveComponent("var-tooltip");
13361
13368
  return vue.openBlock(), vue.createBlock(
13362
13369
  _component_var_tooltip,
@@ -13366,7 +13373,7 @@ function __render__$J(_ctx, _cache) {
13366
13373
  var _ctx$tooltip;
13367
13374
  return [(_ctx$tooltip = _ctx.tooltip) != null && _ctx$tooltip.content ? (vue.openBlock(), vue.createElementBlock(
13368
13375
  "span",
13369
- _hoisted_1$j,
13376
+ _hoisted_1$k,
13370
13377
  vue.toDisplayString(_ctx.tooltip.content),
13371
13378
  1
13372
13379
  /* TEXT */
@@ -13394,12 +13401,12 @@ function __render__$J(_ctx, _cache) {
13394
13401
  /* FULL_PROPS */
13395
13402
  );
13396
13403
  }
13397
- var __sfc__$K = vue.defineComponent({
13404
+ var __sfc__$L = vue.defineComponent({
13398
13405
  name: "VarEllipsis",
13399
13406
  components: {
13400
13407
  VarTooltip: Tooltip
13401
13408
  },
13402
- props: props$G,
13409
+ props: props$H,
13403
13410
  setup(props2) {
13404
13411
  var expanding = vue.ref(false);
13405
13412
  var rootStyles = vue.computed(() => {
@@ -13421,7 +13428,7 @@ var __sfc__$K = vue.defineComponent({
13421
13428
  sameWidth: true
13422
13429
  };
13423
13430
  }
13424
- return _extends$6({
13431
+ return _extends$8({
13425
13432
  sameWidth: true
13426
13433
  }, props2.tooltip);
13427
13434
  });
@@ -13432,8 +13439,8 @@ var __sfc__$K = vue.defineComponent({
13432
13439
  expanding.value = !expanding.value;
13433
13440
  };
13434
13441
  return {
13435
- n: n$J,
13436
- classes: classes$B,
13442
+ n: n$K,
13443
+ classes: classes$C,
13437
13444
  tooltip: tooltip2,
13438
13445
  expanding,
13439
13446
  rootStyles,
@@ -13441,8 +13448,8 @@ var __sfc__$K = vue.defineComponent({
13441
13448
  };
13442
13449
  }
13443
13450
  });
13444
- __sfc__$K.render = __render__$J;
13445
- const Ellipsis = __sfc__$K;
13451
+ __sfc__$L.render = __render__$K;
13452
+ const Ellipsis = __sfc__$L;
13446
13453
  Ellipsis.install = function(app) {
13447
13454
  app.component(Ellipsis.name, Ellipsis);
13448
13455
  };
@@ -13456,7 +13463,7 @@ function directionValidator$3(direction) {
13456
13463
  function triggerValidator$1(trigger) {
13457
13464
  return ["click", "hover"].includes(trigger);
13458
13465
  }
13459
- var props$F = {
13466
+ var props$G = {
13460
13467
  active: {
13461
13468
  type: Boolean,
13462
13469
  default: false
@@ -13548,21 +13555,19 @@ function _isSlot$2(s) {
13548
13555
  return typeof s === "function" || Object.prototype.toString.call(s) === "[object Object]" && !vue.isVNode(s);
13549
13556
  }
13550
13557
  var {
13551
- classes: classes$A,
13552
- n: n$I
13558
+ classes: classes$B,
13559
+ n: n$J
13553
13560
  } = createNamespace("fab");
13554
13561
  const Fab = vue.defineComponent({
13555
13562
  name: "VarFab",
13556
13563
  inheritAttrs: false,
13557
- props: props$F,
13564
+ props: props$G,
13558
13565
  setup(props2, _ref) {
13559
13566
  var {
13560
13567
  slots,
13561
13568
  attrs
13562
13569
  } = _ref;
13563
- var isActive = useVModel(props2, "active", {
13564
- emit: (event, value) => call(props2["onUpdate:active"], value)
13565
- });
13570
+ var isActive = useVModel(props2, "active");
13566
13571
  var host = vue.ref(null);
13567
13572
  var {
13568
13573
  disabled
@@ -13604,7 +13609,7 @@ const Fab = vue.defineComponent({
13604
13609
  }
13605
13610
  return vue.withDirectives(vue.createVNode(Button, {
13606
13611
  "var-fab-cover": true,
13607
- "class": n$I("trigger"),
13612
+ "class": n$J("trigger"),
13608
13613
  "type": props2.type,
13609
13614
  "color": props2.color,
13610
13615
  "disabled": props2.disabled,
@@ -13613,11 +13618,11 @@ const Fab = vue.defineComponent({
13613
13618
  }, {
13614
13619
  default: () => [vue.createVNode(Icon, {
13615
13620
  "var-fab-cover": true,
13616
- "class": classes$A([isActive.value, n$I("trigger-active-icon"), n$I("trigger-inactive-icon")]),
13621
+ "class": classes$B([isActive.value, n$J("trigger-active-icon"), n$J("trigger-inactive-icon")]),
13617
13622
  "name": isActive.value ? props2.activeIcon : props2.inactiveIcon,
13618
13623
  "size": isActive.value ? props2.inactiveIconSize : props2.activeIconSize,
13619
13624
  "transition": 200,
13620
- "animationClass": n$I("--trigger-icon-animation")
13625
+ "animationClass": n$J("--trigger-icon-animation")
13621
13626
  }, null)]
13622
13627
  }), [[vue.vShow, props2.show]]);
13623
13628
  };
@@ -13626,7 +13631,7 @@ const Fab = vue.defineComponent({
13626
13631
  var _slots$default;
13627
13632
  var children = flatFragment((_slots$default = slots.default == null ? void 0 : slots.default()) != null ? _slots$default : []);
13628
13633
  return vue.createVNode("div", vue.mergeProps({
13629
- "class": classes$A(n$I(), n$I("--position-" + props2.position), n$I("--direction-" + props2.direction), [props2.fixed, n$I("--fixed"), n$I("--absolute")], [props2.safeArea, n$I("--safe-area")]),
13634
+ "class": classes$B(n$J(), n$J("--position-" + props2.position), n$J("--direction-" + props2.direction), [props2.fixed, n$J("--fixed"), n$J("--absolute")], [props2.safeArea, n$J("--safe-area")]),
13630
13635
  "style": {
13631
13636
  zIndex: toNumber(props2.zIndex),
13632
13637
  top: toSizeUnit(props2.top),
@@ -13639,20 +13644,20 @@ const Fab = vue.defineComponent({
13639
13644
  "onMouseleave": () => handleMouse(false, children.length),
13640
13645
  "onMouseenter": () => handleMouse(true, children.length)
13641
13646
  }, attrs), [vue.createVNode(vue.Transition, {
13642
- "name": n$I("--active-transition")
13647
+ "name": n$J("--active-transition")
13643
13648
  }, _isSlot$2(_slot = renderTrigger()) ? _slot : {
13644
13649
  default: () => [_slot]
13645
13650
  }), vue.createVNode(vue.Transition, {
13646
- "name": n$I("--actions-transition-" + props2.direction),
13651
+ "name": n$J("--actions-transition-" + props2.direction),
13647
13652
  "onAfterEnter": props2.onOpened,
13648
13653
  "onAfterLeave": props2.onClosed
13649
13654
  }, {
13650
13655
  default: () => [vue.withDirectives(vue.createVNode("div", {
13651
- "class": n$I("actions"),
13656
+ "class": n$J("actions"),
13652
13657
  "onClick": (e) => e.stopPropagation()
13653
13658
  }, [children.map((child) => {
13654
13659
  return vue.createVNode("div", {
13655
- "class": n$I("action")
13660
+ "class": n$J("action")
13656
13661
  }, [child]);
13657
13662
  })]), [[vue.vShow, props2.show && isActive.value && children.length]])]
13658
13663
  })]);
@@ -13688,7 +13693,7 @@ var _FabComponent = Fab;
13688
13693
  function scrollToErrorValidator(status) {
13689
13694
  return ["start", "end"].includes(status);
13690
13695
  }
13691
- var props$E = {
13696
+ var props$F = {
13692
13697
  disabled: {
13693
13698
  type: Boolean,
13694
13699
  default: false
@@ -13736,9 +13741,9 @@ function _asyncToGenerator$8(fn2) {
13736
13741
  };
13737
13742
  }
13738
13743
  var {
13739
- n: n$H
13744
+ n: n$I
13740
13745
  } = createNamespace("form");
13741
- function __render__$I(_ctx, _cache) {
13746
+ function __render__$J(_ctx, _cache) {
13742
13747
  return vue.openBlock(), vue.createElementBlock(
13743
13748
  "div",
13744
13749
  {
@@ -13749,9 +13754,9 @@ function __render__$I(_ctx, _cache) {
13749
13754
  /* CLASS */
13750
13755
  );
13751
13756
  }
13752
- var __sfc__$J = vue.defineComponent({
13757
+ var __sfc__$K = vue.defineComponent({
13753
13758
  name: "VarForm",
13754
- props: props$E,
13759
+ props: props$F,
13755
13760
  setup(props2) {
13756
13761
  var disabled = vue.computed(() => props2.disabled);
13757
13762
  var readonly = vue.computed(() => props2.readonly);
@@ -13812,15 +13817,15 @@ var __sfc__$J = vue.defineComponent({
13812
13817
  };
13813
13818
  bindFormItems(formProvider);
13814
13819
  return {
13815
- n: n$H,
13820
+ n: n$I,
13816
13821
  validate,
13817
13822
  reset,
13818
13823
  resetValidation
13819
13824
  };
13820
13825
  }
13821
13826
  });
13822
- __sfc__$J.render = __render__$I;
13823
- const Form = __sfc__$J;
13827
+ __sfc__$K.render = __render__$J;
13828
+ const Form = __sfc__$K;
13824
13829
  Form.install = function(app) {
13825
13830
  app.component(Form.name, Form);
13826
13831
  };
@@ -13830,7 +13835,7 @@ var _FormComponent = Form;
13830
13835
  function fitValidator(fit) {
13831
13836
  return ["fill", "contain", "cover", "none", "scale-down"].includes(fit);
13832
13837
  }
13833
- var props$D = {
13838
+ var props$E = {
13834
13839
  src: {
13835
13840
  type: String
13836
13841
  },
@@ -13878,12 +13883,12 @@ var props$D = {
13878
13883
  onError: defineListenerProp()
13879
13884
  };
13880
13885
  var {
13881
- n: n$G,
13882
- classes: classes$z
13886
+ n: n$H,
13887
+ classes: classes$A
13883
13888
  } = createNamespace("image");
13884
- var _hoisted_1$i = ["alt", "title", "lazy-error", "lazy-loading"];
13889
+ var _hoisted_1$j = ["alt", "title", "lazy-error", "lazy-loading"];
13885
13890
  var _hoisted_2$a = ["alt", "title", "src"];
13886
- function __render__$H(_ctx, _cache) {
13891
+ function __render__$I(_ctx, _cache) {
13887
13892
  var _directive_lazy = vue.resolveDirective("lazy");
13888
13893
  var _directive_ripple = vue.resolveDirective("ripple");
13889
13894
  return vue.withDirectives((vue.openBlock(), vue.createElementBlock(
@@ -13920,7 +13925,7 @@ function __render__$H(_ctx, _cache) {
13920
13925
  },
13921
13926
  null,
13922
13927
  46,
13923
- _hoisted_1$i
13928
+ _hoisted_1$j
13924
13929
  )), [[_directive_lazy, _ctx.src]]) : (vue.openBlock(), vue.createElementBlock(
13925
13930
  "img",
13926
13931
  {
@@ -13952,13 +13957,13 @@ function __render__$H(_ctx, _cache) {
13952
13957
  disabled: !_ctx.ripple
13953
13958
  }]]);
13954
13959
  }
13955
- var __sfc__$I = vue.defineComponent({
13960
+ var __sfc__$J = vue.defineComponent({
13956
13961
  name: "VarImage",
13957
13962
  directives: {
13958
13963
  Lazy: Lazy$1,
13959
13964
  Ripple: Ripple$1
13960
13965
  },
13961
- props: props$D,
13966
+ props: props$E,
13962
13967
  setup(props2) {
13963
13968
  var handleLoad = (e) => {
13964
13969
  var el = e.currentTarget;
@@ -13985,8 +13990,8 @@ var __sfc__$I = vue.defineComponent({
13985
13990
  call(props2.onClick, e);
13986
13991
  };
13987
13992
  return {
13988
- n: n$G,
13989
- classes: classes$z,
13993
+ n: n$H,
13994
+ classes: classes$A,
13990
13995
  toSizeUnit,
13991
13996
  handleLoad,
13992
13997
  handleError,
@@ -13994,8 +13999,8 @@ var __sfc__$I = vue.defineComponent({
13994
13999
  };
13995
14000
  }
13996
14001
  });
13997
- __sfc__$I.render = __render__$H;
13998
- const Image$1 = __sfc__$I;
14002
+ __sfc__$J.render = __render__$I;
14003
+ const Image$1 = __sfc__$J;
13999
14004
  Image$1.install = function(app) {
14000
14005
  app.component(Image$1.name, Image$1);
14001
14006
  };
@@ -14013,7 +14018,7 @@ function useSwipeItems() {
14013
14018
  bindSwipeItems: bindChildren
14014
14019
  };
14015
14020
  }
14016
- var props$C = {
14021
+ var props$D = {
14017
14022
  loop: {
14018
14023
  type: Boolean,
14019
14024
  default: true
@@ -14078,11 +14083,11 @@ function _asyncToGenerator$7(fn2) {
14078
14083
  var SWIPE_DELAY = 250;
14079
14084
  var SWIPE_DISTANCE = 20;
14080
14085
  var {
14081
- n: n$F,
14082
- classes: classes$y
14086
+ n: n$G,
14087
+ classes: classes$z
14083
14088
  } = createNamespace("swipe");
14084
- var _hoisted_1$h = ["onClick"];
14085
- function __render__$G(_ctx, _cache) {
14089
+ var _hoisted_1$i = ["onClick"];
14090
+ function __render__$H(_ctx, _cache) {
14086
14091
  return vue.openBlock(), vue.createElementBlock(
14087
14092
  "div",
14088
14093
  {
@@ -14137,7 +14142,7 @@ function __render__$G(_ctx, _cache) {
14137
14142
  },
14138
14143
  null,
14139
14144
  14,
14140
- _hoisted_1$h
14145
+ _hoisted_1$i
14141
14146
  );
14142
14147
  }),
14143
14148
  128
@@ -14150,9 +14155,9 @@ function __render__$G(_ctx, _cache) {
14150
14155
  /* CLASS */
14151
14156
  );
14152
14157
  }
14153
- var __sfc__$H = vue.defineComponent({
14158
+ var __sfc__$I = vue.defineComponent({
14154
14159
  name: "VarSwipe",
14155
- props: props$C,
14160
+ props: props$D,
14156
14161
  setup(props2) {
14157
14162
  var swipeEl = vue.ref(null);
14158
14163
  var size = vue.ref(0);
@@ -14433,10 +14438,10 @@ var __sfc__$H = vue.defineComponent({
14433
14438
  vue.onActivated(resize);
14434
14439
  vue.onDeactivated(stopAutoplay);
14435
14440
  vue.onUnmounted(stopAutoplay);
14436
- useEventListener(window, "resize", resize);
14441
+ useEventListener(() => window, "resize", resize);
14437
14442
  return {
14438
- n: n$F,
14439
- classes: classes$y,
14443
+ n: n$G,
14444
+ classes: classes$z,
14440
14445
  length,
14441
14446
  index,
14442
14447
  swipeEl,
@@ -14454,8 +14459,8 @@ var __sfc__$H = vue.defineComponent({
14454
14459
  };
14455
14460
  }
14456
14461
  });
14457
- __sfc__$H.render = __render__$G;
14458
- const Swipe = __sfc__$H;
14462
+ __sfc__$I.render = __render__$H;
14463
+ const Swipe = __sfc__$I;
14459
14464
  Swipe.install = function(app) {
14460
14465
  app.component(Swipe.name, Swipe);
14461
14466
  };
@@ -14476,9 +14481,9 @@ function useSwipe() {
14476
14481
  };
14477
14482
  }
14478
14483
  var {
14479
- n: n$E
14484
+ n: n$F
14480
14485
  } = createNamespace("swipe-item");
14481
- function __render__$F(_ctx, _cache) {
14486
+ function __render__$G(_ctx, _cache) {
14482
14487
  return vue.openBlock(), vue.createElementBlock(
14483
14488
  "div",
14484
14489
  {
@@ -14494,7 +14499,7 @@ function __render__$F(_ctx, _cache) {
14494
14499
  /* CLASS, STYLE */
14495
14500
  );
14496
14501
  }
14497
- var __sfc__$G = vue.defineComponent({
14502
+ var __sfc__$H = vue.defineComponent({
14498
14503
  name: "VarSwipeItem",
14499
14504
  setup() {
14500
14505
  var translate = vue.ref(0);
@@ -14516,21 +14521,21 @@ var __sfc__$G = vue.defineComponent({
14516
14521
  };
14517
14522
  bindSwipe(swipeItemProvider);
14518
14523
  return {
14519
- n: n$E,
14524
+ n: n$F,
14520
14525
  size,
14521
14526
  vertical,
14522
14527
  translate
14523
14528
  };
14524
14529
  }
14525
14530
  });
14526
- __sfc__$G.render = __render__$F;
14527
- const SwipeItem = __sfc__$G;
14531
+ __sfc__$H.render = __render__$G;
14532
+ const SwipeItem = __sfc__$H;
14528
14533
  SwipeItem.install = function(app) {
14529
14534
  app.component(SwipeItem.name, SwipeItem);
14530
14535
  };
14531
14536
  var _SwipeItemComponent = SwipeItem;
14532
- function _extends$5() {
14533
- _extends$5 = Object.assign ? Object.assign.bind() : function(target) {
14537
+ function _extends$7() {
14538
+ _extends$7 = Object.assign ? Object.assign.bind() : function(target) {
14534
14539
  for (var i = 1; i < arguments.length; i++) {
14535
14540
  var source = arguments[i];
14536
14541
  for (var key in source) {
@@ -14541,9 +14546,9 @@ function _extends$5() {
14541
14546
  }
14542
14547
  return target;
14543
14548
  };
14544
- return _extends$5.apply(this, arguments);
14549
+ return _extends$7.apply(this, arguments);
14545
14550
  }
14546
- var props$B = _extends$5({
14551
+ var props$C = _extends$7({
14547
14552
  show: {
14548
14553
  type: Boolean,
14549
14554
  default: false
@@ -14564,7 +14569,7 @@ var props$B = _extends$5({
14564
14569
  default: false
14565
14570
  },
14566
14571
  "onUpdate:show": defineListenerProp()
14567
- }, pickProps(props$C, ["loop", "indicator", "onChange"]), pickProps(props$19, [
14572
+ }, pickProps(props$D, ["loop", "indicator", "onChange"]), pickProps(props$1a, [
14568
14573
  "lockScroll",
14569
14574
  "teleport",
14570
14575
  "onOpen",
@@ -14575,15 +14580,15 @@ var props$B = _extends$5({
14575
14580
  "onRouteChange"
14576
14581
  ]));
14577
14582
  var {
14578
- n: n$D,
14579
- classes: classes$x
14583
+ n: n$E,
14584
+ classes: classes$y
14580
14585
  } = createNamespace("image-preview");
14581
14586
  var DISTANCE_OFFSET = 12;
14582
14587
  var EVENT_DELAY = 200;
14583
14588
  var TAP_DELAY = 350;
14584
14589
  var ANIMATION_DURATION = 200;
14585
- var _hoisted_1$g = ["src", "alt"];
14586
- function __render__$E(_ctx, _cache) {
14590
+ var _hoisted_1$h = ["src", "alt"];
14591
+ function __render__$F(_ctx, _cache) {
14587
14592
  var _component_var_swipe_item = vue.resolveComponent("var-swipe-item");
14588
14593
  var _component_var_swipe = vue.resolveComponent("var-swipe");
14589
14594
  var _component_var_icon = vue.resolveComponent("var-icon");
@@ -14658,7 +14663,7 @@ function __render__$E(_ctx, _cache) {
14658
14663
  },
14659
14664
  null,
14660
14665
  10,
14661
- _hoisted_1$g
14666
+ _hoisted_1$h
14662
14667
  )],
14663
14668
  38
14664
14669
  /* CLASS, STYLE, HYDRATE_EVENTS */
@@ -14725,7 +14730,7 @@ function __render__$E(_ctx, _cache) {
14725
14730
  ["class", "transition", "show", "lock-scroll", "teleport", "onOpen", "onClose", "onClosed", "onOpened", "onRouteChange"]
14726
14731
  );
14727
14732
  }
14728
- var __sfc__$F = vue.defineComponent({
14733
+ var __sfc__$G = vue.defineComponent({
14729
14734
  name: "VarImagePreview",
14730
14735
  components: {
14731
14736
  VarSwipe: Swipe,
@@ -14734,7 +14739,7 @@ var __sfc__$F = vue.defineComponent({
14734
14739
  VarIcon: Icon
14735
14740
  },
14736
14741
  inheritAttrs: false,
14737
- props: props$B,
14742
+ props: props$C,
14738
14743
  setup(props2) {
14739
14744
  var popupShow = vue.ref(false);
14740
14745
  var initialIndex = vue.computed(() => {
@@ -14828,7 +14833,7 @@ var __sfc__$F = vue.defineComponent({
14828
14833
  var {
14829
14834
  naturalWidth,
14830
14835
  naturalHeight
14831
- } = target.querySelector("." + n$D("image"));
14836
+ } = target.querySelector("." + n$E("image"));
14832
14837
  return {
14833
14838
  width: offsetWidth,
14834
14839
  height: offsetHeight,
@@ -14907,8 +14912,8 @@ var __sfc__$F = vue.defineComponent({
14907
14912
  immediate: true
14908
14913
  });
14909
14914
  return {
14910
- n: n$D,
14911
- classes: classes$x,
14915
+ n: n$E,
14916
+ classes: classes$y,
14912
14917
  initialIndex,
14913
14918
  popupShow,
14914
14919
  scale,
@@ -14924,10 +14929,10 @@ var __sfc__$F = vue.defineComponent({
14924
14929
  };
14925
14930
  }
14926
14931
  });
14927
- __sfc__$F.render = __render__$E;
14928
- const VarImagePreview = __sfc__$F;
14929
- function _extends$4() {
14930
- _extends$4 = Object.assign ? Object.assign.bind() : function(target) {
14932
+ __sfc__$G.render = __render__$F;
14933
+ const VarImagePreview = __sfc__$G;
14934
+ function _extends$6() {
14935
+ _extends$6 = Object.assign ? Object.assign.bind() : function(target) {
14931
14936
  for (var i = 1; i < arguments.length; i++) {
14932
14937
  var source = arguments[i];
14933
14938
  for (var key in source) {
@@ -14938,7 +14943,7 @@ function _extends$4() {
14938
14943
  }
14939
14944
  return target;
14940
14945
  };
14941
- return _extends$4.apply(this, arguments);
14946
+ return _extends$6.apply(this, arguments);
14942
14947
  }
14943
14948
  var singletonOptions$1;
14944
14949
  var defaultOptions$1 = {};
@@ -14947,16 +14952,16 @@ function normalizeOptions$1(options) {
14947
14952
  options = {};
14948
14953
  }
14949
14954
  if (isString(options)) {
14950
- return _extends$4({}, defaultOptions$1, {
14955
+ return _extends$6({}, defaultOptions$1, {
14951
14956
  images: [options]
14952
14957
  });
14953
14958
  }
14954
14959
  if (isArray(options)) {
14955
- return _extends$4({}, defaultOptions$1, {
14960
+ return _extends$6({}, defaultOptions$1, {
14956
14961
  images: options
14957
14962
  });
14958
14963
  }
14959
- return _extends$4({}, defaultOptions$1, options);
14964
+ return _extends$6({}, defaultOptions$1, options);
14960
14965
  }
14961
14966
  function ImagePreview(options) {
14962
14967
  if (!inBrowser()) {
@@ -15009,7 +15014,7 @@ ImagePreview.install = function(app) {
15009
15014
  };
15010
15015
  ImagePreview.Component = VarImagePreview;
15011
15016
  var _ImagePreviewComponent = VarImagePreview;
15012
- var props$A = {
15017
+ var props$B = {
15013
15018
  offsetTop: {
15014
15019
  type: [String, Number],
15015
15020
  default: 0
@@ -15058,10 +15063,10 @@ function _asyncToGenerator$6(fn2) {
15058
15063
  };
15059
15064
  }
15060
15065
  var {
15061
- n: n$C,
15062
- classes: classes$w
15066
+ n: n$D,
15067
+ classes: classes$x
15063
15068
  } = createNamespace("sticky");
15064
- function __render__$D(_ctx, _cache) {
15069
+ function __render__$E(_ctx, _cache) {
15065
15070
  return vue.openBlock(), vue.createElementBlock(
15066
15071
  "div",
15067
15072
  {
@@ -15096,9 +15101,9 @@ function __render__$D(_ctx, _cache) {
15096
15101
  /* CLASS, STYLE */
15097
15102
  );
15098
15103
  }
15099
- var __sfc__$E = vue.defineComponent({
15104
+ var __sfc__$F = vue.defineComponent({
15100
15105
  name: "VarSticky",
15101
- props: props$A,
15106
+ props: props$B,
15102
15107
  setup(props2) {
15103
15108
  var stickyEl = vue.ref(null);
15104
15109
  var wrapperEl = vue.ref(null);
@@ -15193,11 +15198,11 @@ var __sfc__$E = vue.defineComponent({
15193
15198
  useMounted(addScrollListener);
15194
15199
  vue.onUnmounted(removeScrollListener);
15195
15200
  vue.onDeactivated(removeScrollListener);
15196
- useEventListener(window, "scroll", handleScroll);
15197
- useEventListener(window, "resize", resize);
15201
+ useEventListener(() => window, "scroll", handleScroll);
15202
+ useEventListener(() => window, "resize", resize);
15198
15203
  return {
15199
- n: n$C,
15200
- classes: classes$w,
15204
+ n: n$D,
15205
+ classes: classes$x,
15201
15206
  resize,
15202
15207
  stickyEl,
15203
15208
  wrapperEl,
@@ -15215,8 +15220,8 @@ var __sfc__$E = vue.defineComponent({
15215
15220
  };
15216
15221
  }
15217
15222
  });
15218
- __sfc__$E.render = __render__$D;
15219
- const Sticky = __sfc__$E;
15223
+ __sfc__$F.render = __render__$E;
15224
+ const Sticky = __sfc__$F;
15220
15225
  Sticky.install = function(app) {
15221
15226
  app.component(Sticky.name, Sticky);
15222
15227
  };
@@ -15249,16 +15254,16 @@ function useIndexBar() {
15249
15254
  bindIndexBar: bindParent
15250
15255
  };
15251
15256
  }
15252
- var props$z = {
15257
+ var props$A = {
15253
15258
  index: {
15254
15259
  type: [Number, String]
15255
15260
  }
15256
15261
  };
15257
15262
  var {
15258
- n: n$B,
15259
- classes: classes$v
15263
+ n: n$C,
15264
+ classes: classes$w
15260
15265
  } = createNamespace("index-anchor");
15261
- function __render__$C(_ctx, _cache) {
15266
+ function __render__$D(_ctx, _cache) {
15262
15267
  return vue.openBlock(), vue.createBlock(
15263
15268
  vue.resolveDynamicComponent(_ctx.sticky ? _ctx.n("$-sticky") : _ctx.Transition),
15264
15269
  {
@@ -15289,13 +15294,13 @@ function __render__$C(_ctx, _cache) {
15289
15294
  ["offset-top", "z-index", "disabled", "css-mode"]
15290
15295
  );
15291
15296
  }
15292
- var __sfc__$D = vue.defineComponent({
15297
+ var __sfc__$E = vue.defineComponent({
15293
15298
  name: "VarIndexAnchor",
15294
15299
  components: {
15295
15300
  VarSticky: Sticky
15296
15301
  },
15297
15302
  inheritAttrs: false,
15298
- props: props$z,
15303
+ props: props$A,
15299
15304
  setup(props2) {
15300
15305
  var {
15301
15306
  index,
@@ -15330,8 +15335,8 @@ var __sfc__$D = vue.defineComponent({
15330
15335
  };
15331
15336
  bindIndexBar(indexAnchorProvider);
15332
15337
  return {
15333
- n: n$B,
15334
- classes: classes$v,
15338
+ n: n$C,
15339
+ classes: classes$w,
15335
15340
  name,
15336
15341
  anchorEl,
15337
15342
  active,
@@ -15344,13 +15349,13 @@ var __sfc__$D = vue.defineComponent({
15344
15349
  };
15345
15350
  }
15346
15351
  });
15347
- __sfc__$D.render = __render__$C;
15348
- const IndexAnchor = __sfc__$D;
15352
+ __sfc__$E.render = __render__$D;
15353
+ const IndexAnchor = __sfc__$E;
15349
15354
  IndexAnchor.install = function(app) {
15350
15355
  app.component(IndexAnchor.name, IndexAnchor);
15351
15356
  };
15352
15357
  var _IndexAnchorComponent = IndexAnchor;
15353
- var props$y = {
15358
+ var props$z = {
15354
15359
  sticky: {
15355
15360
  type: Boolean,
15356
15361
  default: true
@@ -15416,11 +15421,11 @@ function _asyncToGenerator$5(fn2) {
15416
15421
  };
15417
15422
  }
15418
15423
  var {
15419
- n: n$A,
15420
- classes: classes$u
15424
+ n: n$B,
15425
+ classes: classes$v
15421
15426
  } = createNamespace("index-bar");
15422
- var _hoisted_1$f = ["onClick"];
15423
- function __render__$B(_ctx, _cache) {
15427
+ var _hoisted_1$g = ["onClick"];
15428
+ function __render__$C(_ctx, _cache) {
15424
15429
  return vue.openBlock(), vue.createElementBlock(
15425
15430
  "div",
15426
15431
  {
@@ -15455,7 +15460,7 @@ function __render__$B(_ctx, _cache) {
15455
15460
  },
15456
15461
  vue.toDisplayString(anchorName),
15457
15462
  15,
15458
- _hoisted_1$f
15463
+ _hoisted_1$g
15459
15464
  );
15460
15465
  }),
15461
15466
  128
@@ -15468,9 +15473,9 @@ function __render__$B(_ctx, _cache) {
15468
15473
  /* CLASS */
15469
15474
  );
15470
15475
  }
15471
- var __sfc__$C = vue.defineComponent({
15476
+ var __sfc__$D = vue.defineComponent({
15472
15477
  name: "VarIndexBar",
15473
- props: props$y,
15478
+ props: props$z,
15474
15479
  setup(props2) {
15475
15480
  var {
15476
15481
  length,
@@ -15629,8 +15634,8 @@ var __sfc__$C = vue.defineComponent({
15629
15634
  isDeactivated = false;
15630
15635
  });
15631
15636
  return {
15632
- n: n$A,
15633
- classes: classes$u,
15637
+ n: n$B,
15638
+ classes: classes$v,
15634
15639
  barEl,
15635
15640
  active,
15636
15641
  zIndex,
@@ -15641,35 +15646,39 @@ var __sfc__$C = vue.defineComponent({
15641
15646
  };
15642
15647
  }
15643
15648
  });
15644
- __sfc__$C.render = __render__$B;
15645
- const IndexBar = __sfc__$C;
15649
+ __sfc__$D.render = __render__$C;
15650
+ const IndexBar = __sfc__$D;
15646
15651
  IndexBar.install = function(app) {
15647
15652
  app.component(IndexBar.name, IndexBar);
15648
15653
  };
15649
15654
  var _IndexBarComponent = IndexBar;
15650
- function typeValidator$3(type) {
15651
- return ["text", "password", "number"].includes(type);
15655
+ function sizeValidator$1(size) {
15656
+ return ["small", "normal"].includes(size);
15652
15657
  }
15653
- var props$x = {
15654
- modelValue: {
15655
- type: String
15656
- },
15657
- modelModifiers: {
15658
- type: Object,
15659
- default: () => ({})
15658
+ function variantValidator(variant) {
15659
+ return ["outlined", "standard"].includes(variant);
15660
+ }
15661
+ var props$y = {
15662
+ value: {
15663
+ type: null,
15664
+ required: true
15660
15665
  },
15661
- type: {
15666
+ id: {
15662
15667
  type: String,
15663
- default: "text",
15664
- validator: typeValidator$3
15668
+ default: ""
15665
15669
  },
15666
- textarea: {
15667
- type: Boolean,
15668
- default: false
15670
+ isFocus: {
15671
+ type: Boolean
15669
15672
  },
15670
- rows: {
15671
- type: [String, Number],
15672
- default: 8
15673
+ size: {
15674
+ type: String,
15675
+ default: "normal",
15676
+ validator: sizeValidator$1
15677
+ },
15678
+ variant: {
15679
+ type: String,
15680
+ default: "standard",
15681
+ validator: variantValidator
15673
15682
  },
15674
15683
  placeholder: {
15675
15684
  type: String
@@ -15691,14 +15700,13 @@ var props$x = {
15691
15700
  blurColor: {
15692
15701
  type: String
15693
15702
  },
15694
- maxlength: {
15695
- type: [String, Number]
15703
+ errorMessage: {
15704
+ type: String
15696
15705
  },
15697
- disabled: {
15698
- type: Boolean,
15699
- default: false
15706
+ formDisabled: {
15707
+ type: Boolean
15700
15708
  },
15701
- readonly: {
15709
+ disabled: {
15702
15710
  type: Boolean,
15703
15711
  default: false
15704
15712
  },
@@ -15706,44 +15714,36 @@ var props$x = {
15706
15714
  type: Boolean,
15707
15715
  default: false
15708
15716
  },
15709
- resize: {
15717
+ textarea: {
15710
15718
  type: Boolean,
15711
15719
  default: false
15712
15720
  },
15713
- autofocus: {
15721
+ cursor: {
15722
+ type: String
15723
+ },
15724
+ composing: {
15714
15725
  type: Boolean,
15715
15726
  default: false
15716
15727
  },
15717
- validateTrigger: {
15718
- type: Array,
15719
- default: () => ["onInput", "onClear"]
15720
- },
15721
- rules: {
15722
- type: Array
15728
+ alwaysCustomPlaceholder: {
15729
+ type: Boolean,
15730
+ default: true
15723
15731
  },
15724
- onFocus: defineListenerProp(),
15725
- onBlur: defineListenerProp(),
15726
15732
  onClick: defineListenerProp(),
15727
- onClear: defineListenerProp(),
15728
- onInput: defineListenerProp(),
15729
- onChange: defineListenerProp(),
15730
- "onUpdate:modelValue": defineListenerProp()
15733
+ onClear: defineListenerProp()
15731
15734
  };
15732
15735
  var {
15733
- n: n$z,
15734
- classes: classes$t
15735
- } = createNamespace("input");
15736
- var _hoisted_1$e = ["id", "disabled", "type", "value", "maxlength", "rows"];
15737
- var _hoisted_2$9 = ["id", "disabled", "type", "value", "maxlength"];
15738
- var _hoisted_3$7 = ["for"];
15739
- function __render__$A(_ctx, _cache) {
15736
+ n: n$A,
15737
+ classes: classes$u
15738
+ } = createNamespace("field-decorator");
15739
+ var _hoisted_1$f = ["for"];
15740
+ function __render__$B(_ctx, _cache) {
15740
15741
  var _component_var_icon = vue.resolveComponent("var-icon");
15741
- var _component_var_form_details = vue.resolveComponent("var-form-details");
15742
15742
  return vue.openBlock(), vue.createElementBlock(
15743
15743
  "div",
15744
15744
  {
15745
- class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n("$--box"), [_ctx.disabled, _ctx.n("--disabled")])),
15746
- onClick: _cache[14] || (_cache[14] = function() {
15745
+ class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n("$--box"), _ctx.n("--" + _ctx.variant), [_ctx.size === "small", _ctx.n("--small")], [_ctx.disabled, _ctx.n("--disabled")])),
15746
+ onClick: _cache[0] || (_cache[0] = function() {
15747
15747
  return _ctx.handleClick && _ctx.handleClick(...arguments);
15748
15748
  })
15749
15749
  },
@@ -15752,13 +15752,15 @@ function __render__$A(_ctx, _cache) {
15752
15752
  {
15753
15753
  class: vue.normalizeClass(_ctx.classes(_ctx.n("controller"), [_ctx.isFocus, _ctx.n("--focus")], [_ctx.errorMessage, _ctx.n("--error")], [_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")])),
15754
15754
  style: vue.normalizeStyle({
15755
- color: !_ctx.errorMessage ? _ctx.isFocus ? _ctx.focusColor : _ctx.blurColor : void 0
15755
+ color: _ctx.color,
15756
+ cursor: _ctx.cursor
15756
15757
  })
15757
15758
  },
15758
15759
  [vue.createElementVNode(
15759
15760
  "div",
15760
15761
  {
15761
- class: vue.normalizeClass(_ctx.classes(_ctx.n("icon"), [!_ctx.hint, _ctx.n("--non-hint")]))
15762
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("icon"), [!_ctx.hint, _ctx.n("--non-hint")])),
15763
+ ref: "prependIconEl"
15762
15764
  },
15763
15765
  [vue.renderSlot(_ctx.$slots, "prepend-icon")],
15764
15766
  2
@@ -15766,34 +15768,350 @@ function __render__$A(_ctx, _cache) {
15766
15768
  ), vue.createElementVNode(
15767
15769
  "div",
15768
15770
  {
15769
- class: vue.normalizeClass(_ctx.classes(_ctx.n("wrap"), [!_ctx.hint, _ctx.n("--non-hint")]))
15771
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("wrap"), [!_ctx.hint, _ctx.n("--wrap-non-hint")]))
15770
15772
  },
15771
- [_ctx.type === "password" ? (vue.openBlock(), vue.createElementBlock(
15773
+ [vue.renderSlot(_ctx.$slots, "default"), _ctx.hint || _ctx.alwaysCustomPlaceholder ? (vue.openBlock(), vue.createElementBlock(
15774
+ "label",
15775
+ {
15776
+ key: 0,
15777
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("placeholder"), _ctx.n("$--ellipsis"), [_ctx.textarea, _ctx.n("placeholder-textarea")], [_ctx.isFocus, _ctx.n("--focus")], [_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")], [_ctx.errorMessage, _ctx.n("--error")], [!_ctx.hint, _ctx.n("--placeholder-non-hint")], _ctx.computePlaceholderState())),
15778
+ style: vue.normalizeStyle({
15779
+ color: _ctx.color,
15780
+ transform: _ctx.placeholderTransform
15781
+ }),
15782
+ for: _ctx.id
15783
+ },
15784
+ vue.toDisplayString(_ctx.placeholder),
15785
+ 15,
15786
+ _hoisted_1$f
15787
+ )) : vue.createCommentVNode("v-if", true)],
15788
+ 2
15789
+ /* CLASS */
15790
+ ), vue.createElementVNode(
15791
+ "div",
15792
+ {
15793
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("icon"), [!_ctx.hint, _ctx.n("--non-hint")]))
15794
+ },
15795
+ [vue.renderSlot(_ctx.$slots, "append-icon", {}, () => [_ctx.clearable && !_ctx.isEmpty(_ctx.value) ? (vue.openBlock(), vue.createBlock(
15796
+ _component_var_icon,
15797
+ {
15798
+ key: 0,
15799
+ class: vue.normalizeClass(_ctx.n("clear-icon")),
15800
+ "var-field-decorator-cover": "",
15801
+ name: "close-circle",
15802
+ onClick: _ctx.handleClear
15803
+ },
15804
+ null,
15805
+ 8,
15806
+ ["class", "onClick"]
15807
+ )) : vue.createCommentVNode("v-if", true)])],
15808
+ 2
15809
+ /* CLASS */
15810
+ )],
15811
+ 6
15812
+ /* CLASS, STYLE */
15813
+ ), _ctx.line ? (vue.openBlock(), vue.createElementBlock(
15814
+ vue.Fragment,
15815
+ {
15816
+ key: 0
15817
+ },
15818
+ [_ctx.variant === "outlined" ? (vue.openBlock(), vue.createElementBlock(
15819
+ "div",
15820
+ {
15821
+ key: 0,
15822
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("line"), [_ctx.isFocus, _ctx.n("--line-focus")], [_ctx.formDisabled || _ctx.disabled, _ctx.n("--line-disabled")]))
15823
+ },
15824
+ [!(_ctx.formDisabled || _ctx.disabled) ? (vue.openBlock(), vue.createElementBlock(
15825
+ vue.Fragment,
15826
+ {
15827
+ key: 0
15828
+ },
15829
+ [vue.createElementVNode(
15830
+ "div",
15831
+ {
15832
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("line-start"), [_ctx.errorMessage, _ctx.n("--line-error")])),
15833
+ style: vue.normalizeStyle({
15834
+ borderColor: _ctx.color
15835
+ })
15836
+ },
15837
+ null,
15838
+ 6
15839
+ /* CLASS, STYLE */
15840
+ ), vue.createElementVNode(
15841
+ "div",
15842
+ {
15843
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("line-notch"), [_ctx.hint && (!_ctx.isEmpty(_ctx.value) || _ctx.isFocus), _ctx.n("line-notch--hint")], [_ctx.errorMessage, _ctx.n("--line-error")])),
15844
+ style: vue.normalizeStyle({
15845
+ borderColor: _ctx.color
15846
+ })
15847
+ },
15848
+ [vue.createElementVNode(
15849
+ "div",
15850
+ {
15851
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("line-placeholder"), _ctx.n("$--ellipsis")))
15852
+ },
15853
+ vue.toDisplayString(_ctx.placeholder),
15854
+ 3
15855
+ /* TEXT, CLASS */
15856
+ )],
15857
+ 6
15858
+ /* CLASS, STYLE */
15859
+ ), vue.createElementVNode(
15860
+ "div",
15861
+ {
15862
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("line-end"), [_ctx.errorMessage, _ctx.n("--line-error")])),
15863
+ style: vue.normalizeStyle({
15864
+ borderColor: _ctx.color
15865
+ })
15866
+ },
15867
+ null,
15868
+ 6
15869
+ /* CLASS, STYLE */
15870
+ )],
15871
+ 64
15872
+ /* STABLE_FRAGMENT */
15873
+ )) : vue.createCommentVNode("v-if", true)],
15874
+ 2
15875
+ /* CLASS */
15876
+ )) : (vue.openBlock(), vue.createElementBlock(
15877
+ "div",
15878
+ {
15879
+ key: 1,
15880
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("line"), [_ctx.formDisabled || _ctx.disabled, _ctx.n("--line-disabled")], [_ctx.errorMessage, _ctx.n("--line-error")])),
15881
+ style: vue.normalizeStyle({
15882
+ background: !_ctx.errorMessage ? _ctx.blurColor : void 0
15883
+ })
15884
+ },
15885
+ [vue.createElementVNode(
15886
+ "div",
15887
+ {
15888
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("dot"), [_ctx.isFocus, _ctx.n("--line-focus")], [_ctx.formDisabled || _ctx.disabled, _ctx.n("--line-disabled")], [_ctx.errorMessage, _ctx.n("--line-error")])),
15889
+ style: vue.normalizeStyle({
15890
+ background: !_ctx.errorMessage ? _ctx.focusColor : void 0
15891
+ })
15892
+ },
15893
+ null,
15894
+ 6
15895
+ /* CLASS, STYLE */
15896
+ )],
15897
+ 6
15898
+ /* CLASS, STYLE */
15899
+ ))],
15900
+ 2112
15901
+ /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
15902
+ )) : vue.createCommentVNode("v-if", true)],
15903
+ 2
15904
+ /* CLASS */
15905
+ );
15906
+ }
15907
+ var __sfc__$C = vue.defineComponent({
15908
+ name: "VarFieldDecorator",
15909
+ components: {
15910
+ VarIcon: Icon
15911
+ },
15912
+ props: props$y,
15913
+ setup(props2) {
15914
+ var prependIconEl = vue.ref(null);
15915
+ var placeholderTransform = vue.ref("");
15916
+ var color = vue.computed(() => !props2.errorMessage ? props2.isFocus ? props2.focusColor : props2.blurColor : void 0);
15917
+ var computePlaceholderState = () => {
15918
+ var {
15919
+ hint,
15920
+ value,
15921
+ isFocus,
15922
+ composing
15923
+ } = props2;
15924
+ if (!hint && (!isEmpty(value) || composing)) {
15925
+ return n$A("--placeholder-hidden");
15926
+ }
15927
+ if (hint && (!isEmpty(value) || isFocus)) {
15928
+ return n$A("--placeholder-hint");
15929
+ }
15930
+ };
15931
+ var handleClear = (e) => {
15932
+ call(props2.onClear, e);
15933
+ };
15934
+ var handleClick = (e) => {
15935
+ call(props2.onClick, e);
15936
+ };
15937
+ vue.watchEffect(() => {
15938
+ var {
15939
+ hint,
15940
+ value,
15941
+ isFocus,
15942
+ variant
15943
+ } = props2;
15944
+ if (!prependIconEl.value) {
15945
+ return;
15946
+ }
15947
+ if (hint && (!isEmpty(value) || isFocus)) {
15948
+ var _window$getComputedSt;
15949
+ var prependIconWidth = ((_window$getComputedSt = window.getComputedStyle(prependIconEl.value)) == null ? void 0 : _window$getComputedSt.width) || 0;
15950
+ placeholderTransform.value = "translate(-" + prependIconWidth + ", " + (variant === "outlined" ? "-50%" : 0) + ")";
15951
+ return;
15952
+ }
15953
+ placeholderTransform.value = "";
15954
+ });
15955
+ return {
15956
+ prependIconEl,
15957
+ placeholderTransform,
15958
+ color,
15959
+ computePlaceholderState,
15960
+ n: n$A,
15961
+ classes: classes$u,
15962
+ isEmpty,
15963
+ handleClear,
15964
+ handleClick
15965
+ };
15966
+ }
15967
+ });
15968
+ __sfc__$C.render = __render__$B;
15969
+ const VarFieldDecorator = __sfc__$C;
15970
+ function _extends$5() {
15971
+ _extends$5 = Object.assign ? Object.assign.bind() : function(target) {
15972
+ for (var i = 1; i < arguments.length; i++) {
15973
+ var source = arguments[i];
15974
+ for (var key in source) {
15975
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
15976
+ target[key] = source[key];
15977
+ }
15978
+ }
15979
+ }
15980
+ return target;
15981
+ };
15982
+ return _extends$5.apply(this, arguments);
15983
+ }
15984
+ function typeValidator$3(type) {
15985
+ return ["text", "password", "number"].includes(type);
15986
+ }
15987
+ var props$x = _extends$5({
15988
+ modelValue: {
15989
+ type: String
15990
+ },
15991
+ modelModifiers: {
15992
+ type: Object,
15993
+ default: () => ({})
15994
+ },
15995
+ type: {
15996
+ type: String,
15997
+ default: "text",
15998
+ validator: typeValidator$3
15999
+ },
16000
+ textarea: {
16001
+ type: Boolean,
16002
+ default: false
16003
+ },
16004
+ rows: {
16005
+ type: [String, Number],
16006
+ default: 8
16007
+ },
16008
+ maxlength: {
16009
+ type: [String, Number]
16010
+ },
16011
+ readonly: {
16012
+ type: Boolean,
16013
+ default: false
16014
+ },
16015
+ resize: {
16016
+ type: Boolean,
16017
+ default: false
16018
+ },
16019
+ autofocus: {
16020
+ type: Boolean,
16021
+ default: false
16022
+ },
16023
+ validateTrigger: {
16024
+ type: Array,
16025
+ default: () => ["onInput", "onClear"]
16026
+ },
16027
+ rules: {
16028
+ type: Array
16029
+ },
16030
+ onFocus: defineListenerProp(),
16031
+ onBlur: defineListenerProp(),
16032
+ onInput: defineListenerProp(),
16033
+ onChange: defineListenerProp(),
16034
+ onClear: defineListenerProp(),
16035
+ "onUpdate:modelValue": defineListenerProp()
16036
+ }, pickProps(props$y, ["size", "variant", "placeholder", "line", "hint", "textColor", "focusColor", "blurColor", "disabled", "clearable", "onClick"]));
16037
+ var {
16038
+ n: n$z,
16039
+ classes: classes$t
16040
+ } = createNamespace("input");
16041
+ var _hoisted_1$e = ["placeholder"];
16042
+ var _hoisted_2$9 = ["id", "disabled", "type", "value", "placeholder", "maxlength", "rows"];
16043
+ var _hoisted_3$7 = ["id", "disabled", "type", "value", "placeholder", "maxlength"];
16044
+ function __render__$A(_ctx, _cache) {
16045
+ var _component_var_field_decorator = vue.resolveComponent("var-field-decorator");
16046
+ var _component_var_form_details = vue.resolveComponent("var-form-details");
16047
+ return vue.openBlock(), vue.createElementBlock(
16048
+ "div",
16049
+ {
16050
+ class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n("$--box"))),
16051
+ onMousedown: _cache[15] || (_cache[15] = function() {
16052
+ return _ctx.handleMousedown && _ctx.handleMousedown(...arguments);
16053
+ })
16054
+ },
16055
+ [vue.createVNode(
16056
+ _component_var_field_decorator,
16057
+ vue.normalizeProps(vue.guardReactiveProps({
16058
+ value: _ctx.modelValue,
16059
+ id: _ctx.id,
16060
+ size: _ctx.size,
16061
+ variant: _ctx.variant,
16062
+ placeholder: _ctx.placeholder,
16063
+ line: _ctx.line,
16064
+ hint: _ctx.hint,
16065
+ textColor: _ctx.textColor,
16066
+ focusColor: _ctx.focusColor,
16067
+ blurColor: _ctx.blurColor,
16068
+ isFocus: _ctx.isFocus,
16069
+ errorMessage: _ctx.errorMessage,
16070
+ formDisabled: _ctx.formDisabled,
16071
+ disabled: _ctx.disabled,
16072
+ clearable: _ctx.clearable,
16073
+ textarea: _ctx.textarea,
16074
+ cursor: _ctx.cursor,
16075
+ composing: _ctx.isComposing,
16076
+ alwaysCustomPlaceholder: false,
16077
+ onClick: _ctx.handleClick,
16078
+ onClear: _ctx.handleClear
16079
+ })),
16080
+ {
16081
+ "prepend-icon": vue.withCtx(() => [vue.renderSlot(_ctx.$slots, "prepend-icon")]),
16082
+ "append-icon": vue.withCtx(() => [vue.renderSlot(_ctx.$slots, "append-icon")]),
16083
+ default: vue.withCtx(() => [_ctx.type === "password" ? (vue.openBlock(), vue.createElementBlock(
15772
16084
  "input",
15773
16085
  {
15774
16086
  key: 0,
15775
- class: vue.normalizeClass(_ctx.n("autocomplete"))
16087
+ class: vue.normalizeClass(_ctx.n("autocomplete")),
16088
+ placeholder: !_ctx.hint ? _ctx.placeholder : void 0,
16089
+ style: vue.normalizeStyle({
16090
+ "--input-placeholder-color": _ctx.placeholderColor
16091
+ })
15776
16092
  },
15777
16093
  null,
15778
- 2
15779
- /* CLASS */
16094
+ 14,
16095
+ _hoisted_1$e
15780
16096
  )) : vue.createCommentVNode("v-if", true), _ctx.textarea ? (vue.openBlock(), vue.createElementBlock(
15781
16097
  "textarea",
15782
16098
  {
15783
16099
  key: 1,
15784
- class: vue.normalizeClass(_ctx.classes(_ctx.n("input"), _ctx.n("--textarea"), [_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")], [_ctx.errorMessage, _ctx.n("--caret-error")])),
16100
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("input"), _ctx.n("--textarea"), [_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")], [_ctx.errorMessage, _ctx.n("--error")], [_ctx.errorMessage, _ctx.n("--caret-error")])),
15785
16101
  ref: "el",
15786
16102
  autocomplete: "new-password",
15787
16103
  id: _ctx.id,
15788
16104
  disabled: _ctx.formDisabled || _ctx.disabled || _ctx.formReadonly || _ctx.readonly,
15789
16105
  type: _ctx.type,
15790
16106
  value: _ctx.modelValue,
16107
+ placeholder: !_ctx.hint ? _ctx.placeholder : void 0,
15791
16108
  maxlength: _ctx.maxlength,
15792
16109
  rows: _ctx.rows,
15793
16110
  style: vue.normalizeStyle({
15794
- color: _ctx.textColor,
16111
+ color: !_ctx.errorMessage ? _ctx.textColor : void 0,
15795
16112
  caretColor: !_ctx.errorMessage ? _ctx.focusColor : void 0,
15796
- resize: _ctx.resize ? "vertical" : "none"
16113
+ resize: _ctx.resize ? "vertical" : "none",
16114
+ "--input-placeholder-color": _ctx.placeholderColor
15797
16115
  }),
15798
16116
  onFocus: _cache[0] || (_cache[0] = function() {
15799
16117
  return _ctx.handleFocus && _ctx.handleFocus(...arguments);
@@ -15817,24 +16135,26 @@ function __render__$A(_ctx, _cache) {
15817
16135
  return _ctx.handleCompositionEnd && _ctx.handleCompositionEnd(...arguments);
15818
16136
  })
15819
16137
  },
15820
- "\n ",
16138
+ "\n ",
15821
16139
  46,
15822
- _hoisted_1$e
16140
+ _hoisted_2$9
15823
16141
  )) : (vue.openBlock(), vue.createElementBlock(
15824
16142
  "input",
15825
16143
  {
15826
16144
  key: 2,
15827
- class: vue.normalizeClass(_ctx.classes(_ctx.n("input"), [_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")], [_ctx.errorMessage, _ctx.n("--caret-error")])),
16145
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("input"), [_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")], [_ctx.errorMessage, _ctx.n("--error")], [_ctx.errorMessage, _ctx.n("--caret-error")])),
15828
16146
  ref: "el",
15829
16147
  autocomplete: "new-password",
15830
16148
  id: _ctx.id,
15831
16149
  disabled: _ctx.formDisabled || _ctx.disabled || _ctx.formReadonly || _ctx.readonly,
15832
16150
  type: _ctx.type,
15833
16151
  value: _ctx.modelValue,
16152
+ placeholder: !_ctx.hint ? _ctx.placeholder : void 0,
15834
16153
  maxlength: _ctx.maxlength,
15835
16154
  style: vue.normalizeStyle({
15836
- color: _ctx.textColor,
15837
- caretColor: !_ctx.errorMessage ? _ctx.focusColor : void 0
16155
+ color: !_ctx.errorMessage ? _ctx.textColor : void 0,
16156
+ caretColor: !_ctx.errorMessage ? _ctx.focusColor : void 0,
16157
+ "--input-placeholder-color": _ctx.placeholderColor
15838
16158
  }),
15839
16159
  onFocus: _cache[7] || (_cache[7] = function() {
15840
16160
  return _ctx.handleFocus && _ctx.handleFocus(...arguments);
@@ -15854,93 +16174,40 @@ function __render__$A(_ctx, _cache) {
15854
16174
  onCompositionstart: _cache[12] || (_cache[12] = function() {
15855
16175
  return _ctx.handleCompositionStart && _ctx.handleCompositionStart(...arguments);
15856
16176
  }),
15857
- onCompositionend: _cache[13] || (_cache[13] = function() {
15858
- return _ctx.handleCompositionEnd && _ctx.handleCompositionEnd(...arguments);
15859
- })
15860
- },
15861
- null,
15862
- 46,
15863
- _hoisted_2$9
15864
- )), vue.createElementVNode(
15865
- "label",
15866
- {
15867
- class: vue.normalizeClass(_ctx.classes(_ctx.n("$--ellipsis"), [_ctx.isFocus, _ctx.n("--focus")], [_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")], [_ctx.errorMessage, _ctx.n("--error")], [_ctx.textarea, _ctx.n("textarea-placeholder"), _ctx.n("placeholder")], _ctx.computePlaceholderState(), [!_ctx.hint, _ctx.n("--placeholder-non-hint")])),
15868
- style: vue.normalizeStyle({
15869
- color: !_ctx.errorMessage ? _ctx.isFocus ? _ctx.focusColor : _ctx.blurColor : void 0
15870
- }),
15871
- for: _ctx.id
15872
- },
15873
- vue.toDisplayString(_ctx.placeholder),
15874
- 15,
15875
- _hoisted_3$7
15876
- )],
15877
- 2
15878
- /* CLASS */
15879
- ), vue.createElementVNode(
15880
- "div",
15881
- {
15882
- class: vue.normalizeClass(_ctx.classes(_ctx.n("icon"), [!_ctx.hint, _ctx.n("--non-hint")]))
15883
- },
15884
- [vue.renderSlot(_ctx.$slots, "append-icon", {}, () => [_ctx.clearable && !_ctx.isEmpty(_ctx.modelValue) ? (vue.openBlock(), vue.createBlock(
15885
- _component_var_icon,
15886
- {
15887
- key: 0,
15888
- class: vue.normalizeClass(_ctx.n("clear-icon")),
15889
- "var-input-cover": "",
15890
- name: "close-circle",
15891
- onClick: _ctx.handleClear
16177
+ onCompositionend: _cache[13] || (_cache[13] = function() {
16178
+ return _ctx.handleCompositionEnd && _ctx.handleCompositionEnd(...arguments);
16179
+ })
15892
16180
  },
15893
16181
  null,
15894
- 8,
15895
- ["class", "onClick"]
15896
- )) : vue.createCommentVNode("v-if", true)])],
15897
- 2
15898
- /* CLASS */
15899
- )],
15900
- 6
15901
- /* CLASS, STYLE */
15902
- ), _ctx.line ? (vue.openBlock(), vue.createElementBlock(
15903
- "div",
15904
- {
15905
- key: 0,
15906
- class: vue.normalizeClass(_ctx.classes(_ctx.n("line"), [_ctx.formDisabled || _ctx.disabled, _ctx.n("--line-disabled")], [_ctx.errorMessage, _ctx.n("--line-error")])),
15907
- style: vue.normalizeStyle({
15908
- background: !_ctx.errorMessage ? _ctx.blurColor : void 0
15909
- })
16182
+ 46,
16183
+ _hoisted_3$7
16184
+ ))]),
16185
+ _: 3
16186
+ /* FORWARDED */
15910
16187
  },
15911
- [vue.createElementVNode(
15912
- "div",
15913
- {
15914
- class: vue.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")])),
15915
- style: vue.normalizeStyle({
15916
- background: !_ctx.errorMessage ? _ctx.focusColor : void 0
15917
- })
15918
- },
15919
- null,
15920
- 6
15921
- /* CLASS, STYLE */
15922
- )],
15923
- 6
15924
- /* CLASS, STYLE */
15925
- )) : vue.createCommentVNode("v-if", true), vue.createVNode(
16188
+ 16
16189
+ /* FULL_PROPS */
16190
+ ), vue.createVNode(
15926
16191
  _component_var_form_details,
15927
16192
  {
15928
16193
  "error-message": _ctx.errorMessage,
15929
- "extra-message": _ctx.maxlengthText
16194
+ "extra-message": _ctx.maxlengthText,
16195
+ onMousedown: _cache[14] || (_cache[14] = vue.withModifiers(() => {
16196
+ }, ["stop"]))
15930
16197
  },
15931
16198
  null,
15932
16199
  8,
15933
16200
  ["error-message", "extra-message"]
15934
16201
  )],
15935
- 2
15936
- /* CLASS */
16202
+ 34
16203
+ /* CLASS, HYDRATE_EVENTS */
15937
16204
  );
15938
16205
  }
15939
16206
  var __sfc__$B = vue.defineComponent({
15940
16207
  name: "VarInput",
15941
16208
  components: {
15942
- VarIcon: Icon,
15943
- VarFormDetails: FormDetails
16209
+ VarFormDetails: FormDetails,
16210
+ VarFieldDecorator
15944
16211
  },
15945
16212
  props: props$x,
15946
16213
  setup(props2) {
@@ -15967,6 +16234,24 @@ var __sfc__$B = vue.defineComponent({
15967
16234
  }
15968
16235
  return String(modelValue).length + "/" + maxlength;
15969
16236
  });
16237
+ var cursor = vue.computed(() => props2.disabled || props2.readonly ? "" : "text");
16238
+ var placeholderColor = vue.computed(() => {
16239
+ var {
16240
+ hint,
16241
+ blurColor,
16242
+ focusColor
16243
+ } = props2;
16244
+ if (hint) {
16245
+ return void 0;
16246
+ }
16247
+ if (errorMessage.value) {
16248
+ return "var(--field-decorator-error-color)";
16249
+ }
16250
+ if (isFocus.value) {
16251
+ return focusColor || "var(--field-decorator-focus-color)";
16252
+ }
16253
+ return blurColor || "var(--field-decorator-blur-color)";
16254
+ });
15970
16255
  var {
15971
16256
  bindForm,
15972
16257
  form
@@ -15988,18 +16273,6 @@ var __sfc__$B = vue.defineComponent({
15988
16273
  vt(validateTrigger, trigger, rules, modelValue);
15989
16274
  });
15990
16275
  };
15991
- var computePlaceholderState = () => {
15992
- var {
15993
- hint,
15994
- modelValue
15995
- } = props2;
15996
- if (!hint && (!isEmpty(modelValue) || isComposing.value)) {
15997
- return n$z("--placeholder-hidden");
15998
- }
15999
- if (hint && (!isEmpty(modelValue) || isFocus.value)) {
16000
- return n$z("--placeholder-hint");
16001
- }
16002
- };
16003
16276
  var handleFocus = (e) => {
16004
16277
  isFocus.value = true;
16005
16278
  call(props2.onFocus, e);
@@ -16092,6 +16365,16 @@ var __sfc__$B = vue.defineComponent({
16092
16365
  }
16093
16366
  e.stopPropagation();
16094
16367
  };
16368
+ function handleMousedown(e) {
16369
+ var {
16370
+ disabled
16371
+ } = props2;
16372
+ if (form != null && form.disabled.value || disabled || e.target === el.value) {
16373
+ return;
16374
+ }
16375
+ focus();
16376
+ e.preventDefault();
16377
+ }
16095
16378
  var reset = () => {
16096
16379
  call(props2["onUpdate:modelValue"], "");
16097
16380
  resetValidation();
@@ -16121,14 +16404,15 @@ var __sfc__$B = vue.defineComponent({
16121
16404
  isFocus,
16122
16405
  isComposing,
16123
16406
  errorMessage,
16407
+ placeholderColor,
16124
16408
  type,
16409
+ cursor,
16125
16410
  maxlengthText,
16126
16411
  formDisabled: form == null ? void 0 : form.disabled,
16127
16412
  formReadonly: form == null ? void 0 : form.readonly,
16128
16413
  n: n$z,
16129
16414
  classes: classes$t,
16130
16415
  isEmpty,
16131
- computePlaceholderState,
16132
16416
  handleFocus,
16133
16417
  handleBlur,
16134
16418
  handleInput,
@@ -16138,6 +16422,7 @@ var __sfc__$B = vue.defineComponent({
16138
16422
  handleTouchstart,
16139
16423
  handleCompositionStart,
16140
16424
  handleCompositionEnd,
16425
+ handleMousedown,
16141
16426
  validate,
16142
16427
  resetValidation,
16143
16428
  reset,
@@ -16855,7 +17140,6 @@ function __render__$w(_ctx, _cache) {
16855
17140
  {
16856
17141
  class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n("$--box"), [_ctx.optionSelected, _ctx.n("--selected-color")])),
16857
17142
  style: vue.normalizeStyle({
16858
- width: _ctx.wrapWidth,
16859
17143
  color: _ctx.optionSelected ? _ctx.focusColor : void 0
16860
17144
  }),
16861
17145
  onClick: _cache[2] || (_cache[2] = function() {
@@ -16924,7 +17208,6 @@ var __sfc__$x = vue.defineComponent({
16924
17208
  bindSelect
16925
17209
  } = useSelect();
16926
17210
  var {
16927
- wrapWidth,
16928
17211
  multiple,
16929
17212
  focusColor,
16930
17213
  onSelect,
@@ -16950,7 +17233,6 @@ var __sfc__$x = vue.defineComponent({
16950
17233
  n: n$u,
16951
17234
  classes: classes$o,
16952
17235
  optionSelected,
16953
- wrapWidth,
16954
17236
  multiple,
16955
17237
  focusColor,
16956
17238
  handleClick,
@@ -17578,8 +17860,8 @@ Paper.install = function(app) {
17578
17860
  app.component(Paper.name, Paper);
17579
17861
  };
17580
17862
  var _PaperComponent = Paper;
17581
- function _extends$3() {
17582
- _extends$3 = Object.assign ? Object.assign.bind() : function(target) {
17863
+ function _extends$4() {
17864
+ _extends$4 = Object.assign ? Object.assign.bind() : function(target) {
17583
17865
  for (var i = 1; i < arguments.length; i++) {
17584
17866
  var source = arguments[i];
17585
17867
  for (var key in source) {
@@ -17590,9 +17872,9 @@ function _extends$3() {
17590
17872
  }
17591
17873
  return target;
17592
17874
  };
17593
- return _extends$3.apply(this, arguments);
17875
+ return _extends$4.apply(this, arguments);
17594
17876
  }
17595
- var props$n = _extends$3({
17877
+ var props$n = _extends$4({
17596
17878
  columns: {
17597
17879
  type: Array,
17598
17880
  default: () => []
@@ -17648,7 +17930,7 @@ var props$n = _extends$3({
17648
17930
  onChange: defineListenerProp(),
17649
17931
  onConfirm: defineListenerProp(),
17650
17932
  onCancel: defineListenerProp()
17651
- }, pickProps(props$19, ["show", "onUpdate:show", "closeOnClickOverlay", "teleport", "onOpen", "onClose", "onOpened", "onClosed", "onClickOverlay", "onRouteChange"]));
17933
+ }, pickProps(props$1a, ["show", "onUpdate:show", "closeOnClickOverlay", "teleport", "onOpen", "onClose", "onOpened", "onClosed", "onClickOverlay", "onRouteChange"]));
17652
17934
  var {
17653
17935
  n: n$q,
17654
17936
  classes: classes$l
@@ -19855,16 +20137,27 @@ Row.install = function(app) {
19855
20137
  app.component(Row.name, Row);
19856
20138
  };
19857
20139
  var _RowComponent = Row;
20140
+ function _extends$3() {
20141
+ _extends$3 = Object.assign ? Object.assign.bind() : function(target) {
20142
+ for (var i = 1; i < arguments.length; i++) {
20143
+ var source = arguments[i];
20144
+ for (var key in source) {
20145
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
20146
+ target[key] = source[key];
20147
+ }
20148
+ }
20149
+ }
20150
+ return target;
20151
+ };
20152
+ return _extends$3.apply(this, arguments);
20153
+ }
19858
20154
  function textAlignValidator(textAlign) {
19859
20155
  return ["left", "right", "center"].includes(textAlign);
19860
20156
  }
19861
- var props$f = {
20157
+ var props$f = _extends$3({
19862
20158
  modelValue: {
19863
20159
  default: void 0
19864
20160
  },
19865
- placeholder: {
19866
- type: String
19867
- },
19868
20161
  multiple: {
19869
20162
  type: Boolean,
19870
20163
  default: false
@@ -19877,35 +20170,10 @@ var props$f = {
19877
20170
  type: Boolean,
19878
20171
  default: false
19879
20172
  },
19880
- line: {
19881
- type: Boolean,
19882
- default: true
19883
- },
19884
- hint: {
19885
- type: Boolean,
19886
- default: true
19887
- },
19888
- textColor: {
19889
- type: String
19890
- },
19891
- focusColor: {
19892
- type: String
19893
- },
19894
- blurColor: {
19895
- type: String
19896
- },
19897
- disabled: {
19898
- type: Boolean,
19899
- default: false
19900
- },
19901
20173
  readonly: {
19902
20174
  type: Boolean,
19903
20175
  default: false
19904
20176
  },
19905
- clearable: {
19906
- type: Boolean,
19907
- default: false
19908
- },
19909
20177
  separator: {
19910
20178
  type: String,
19911
20179
  default: ","
@@ -19924,12 +20192,11 @@ var props$f = {
19924
20192
  },
19925
20193
  onFocus: defineListenerProp(),
19926
20194
  onBlur: defineListenerProp(),
19927
- onClick: defineListenerProp(),
19928
- onClear: defineListenerProp(),
19929
20195
  onClose: defineListenerProp(),
19930
20196
  onChange: defineListenerProp(),
20197
+ onClear: defineListenerProp(),
19931
20198
  "onUpdate:modelValue": defineListenerProp()
19932
- };
20199
+ }, pickProps(props$y, ["size", "variant", "placeholder", "line", "hint", "textColor", "focusColor", "blurColor", "disabled", "clearable", "onClick"]));
19933
20200
  var {
19934
20201
  n: n$h,
19935
20202
  classes: classes$d
@@ -19940,64 +20207,66 @@ var _hoisted_1$4 = {
19940
20207
  function __render__$f(_ctx, _cache) {
19941
20208
  var _component_var_chip = vue.resolveComponent("var-chip");
19942
20209
  var _component_var_icon = vue.resolveComponent("var-icon");
20210
+ var _component_var_field_decorator = vue.resolveComponent("var-field-decorator");
19943
20211
  var _component_var_menu = vue.resolveComponent("var-menu");
19944
20212
  var _component_var_form_details = vue.resolveComponent("var-form-details");
19945
20213
  return vue.openBlock(), vue.createElementBlock(
19946
20214
  "div",
19947
20215
  {
19948
- class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n("$--box"), [_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")])),
20216
+ class: vue.normalizeClass(_ctx.n()),
19949
20217
  onClick: _cache[3] || (_cache[3] = function() {
19950
- return _ctx.handleClick && _ctx.handleClick(...arguments);
20218
+ return _ctx.handleFocus && _ctx.handleFocus(...arguments);
19951
20219
  })
19952
20220
  },
19953
- [vue.createElementVNode(
19954
- "div",
20221
+ [vue.createVNode(
20222
+ _component_var_menu,
19955
20223
  {
19956
- class: vue.normalizeClass(_ctx.classes(_ctx.n("controller"), [_ctx.isFocus, _ctx.n("--focus")], [_ctx.errorMessage, _ctx.n("--error")], [_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")])),
19957
- style: vue.normalizeStyle({
19958
- color: !_ctx.errorMessage ? _ctx.isFocus ? _ctx.focusColor : _ctx.blurColor : void 0
19959
- })
20224
+ class: vue.normalizeClass(_ctx.n("menu")),
20225
+ "var-select-cover": "",
20226
+ "same-width": "",
20227
+ "offset-y": _ctx.offsetY,
20228
+ disabled: _ctx.formReadonly || _ctx.readonly || _ctx.formDisabled || _ctx.disabled,
20229
+ placement: _ctx.placement,
20230
+ "default-style": false,
20231
+ show: _ctx.isFocus,
20232
+ "onUpdate:show": _cache[1] || (_cache[1] = ($event) => _ctx.isFocus = $event),
20233
+ onClose: _ctx.handleBlur
19960
20234
  },
19961
- [vue.createElementVNode(
19962
- "div",
19963
- {
19964
- class: vue.normalizeClass(_ctx.classes(_ctx.n("icon"), [!_ctx.hint, _ctx.n("--non-hint")]))
19965
- },
19966
- [vue.renderSlot(_ctx.$slots, "prepend-icon")],
19967
- 2
19968
- /* CLASS */
19969
- ), vue.createElementVNode(
19970
- "div",
19971
- {
19972
- class: vue.normalizeClass(_ctx.classes(_ctx.n("wrap"), [!_ctx.hint, _ctx.n("--non-hint")])),
19973
- ref: "wrapEl",
19974
- onClick: _cache[2] || (_cache[2] = function() {
19975
- return _ctx.handleFocus && _ctx.handleFocus(...arguments);
19976
- })
19977
- },
19978
- [vue.createVNode(
19979
- _component_var_menu,
20235
+ {
20236
+ menu: vue.withCtx(() => [vue.createElementVNode(
20237
+ "div",
19980
20238
  {
19981
- "var-select-cover": "",
19982
- class: vue.normalizeClass(_ctx.classes(_ctx.n("menu"))),
19983
- "offset-y": _ctx.offsetY,
19984
- disabled: _ctx.formReadonly || _ctx.readonly || _ctx.formDisabled || _ctx.disabled,
19985
- "default-style": false,
19986
- show: _ctx.isFocus,
19987
- "onUpdate:show": _cache[1] || (_cache[1] = ($event) => _ctx.isFocus = $event),
19988
- onClose: _ctx.handleBlur
20239
+ ref: "menuEl",
20240
+ class: vue.normalizeClass(_ctx.classes(_ctx.n("scroller"), _ctx.n("scroller-" + _ctx.variant), [!_ctx.hint, _ctx.n("scroller-non-hint")], _ctx.n("$-elevation--3")))
19989
20241
  },
20242
+ [vue.renderSlot(_ctx.$slots, "default")],
20243
+ 2
20244
+ /* CLASS */
20245
+ )]),
20246
+ default: vue.withCtx(() => [vue.createVNode(
20247
+ _component_var_field_decorator,
20248
+ vue.normalizeProps(vue.guardReactiveProps({
20249
+ value: _ctx.modelValue,
20250
+ size: _ctx.size,
20251
+ variant: _ctx.variant,
20252
+ placeholder: _ctx.placeholder,
20253
+ line: _ctx.line,
20254
+ hint: _ctx.hint,
20255
+ textColor: _ctx.textColor,
20256
+ focusColor: _ctx.focusColor,
20257
+ blurColor: _ctx.blurColor,
20258
+ isFocus: _ctx.isFocus,
20259
+ errorMessage: _ctx.errorMessage,
20260
+ formDisabled: _ctx.formDisabled,
20261
+ disabled: _ctx.disabled,
20262
+ clearable: _ctx.clearable,
20263
+ cursor: _ctx.cursor,
20264
+ onClick: _ctx.handleClick,
20265
+ onClear: _ctx.handleClear
20266
+ })),
19990
20267
  {
19991
- menu: vue.withCtx(() => [vue.createElementVNode(
19992
- "div",
19993
- {
19994
- ref: "menuEl",
19995
- class: vue.normalizeClass(_ctx.classes(_ctx.n("scroller"), _ctx.n("$-elevation--3")))
19996
- },
19997
- [vue.renderSlot(_ctx.$slots, "default")],
19998
- 2
19999
- /* CLASS */
20000
- )]),
20268
+ "prepend-icon": vue.withCtx(() => [vue.renderSlot(_ctx.$slots, "prepend-icon")]),
20269
+ "append-icon": vue.withCtx(() => [vue.renderSlot(_ctx.$slots, "append-icon")]),
20001
20270
  default: vue.withCtx(() => [vue.createElementVNode(
20002
20271
  "div",
20003
20272
  {
@@ -20097,76 +20366,24 @@ function __render__$f(_ctx, _cache) {
20097
20366
  )])],
20098
20367
  6
20099
20368
  /* CLASS, STYLE */
20100
- ), vue.createElementVNode(
20101
- "label",
20102
- {
20103
- class: vue.normalizeClass(_ctx.classes(_ctx.n("placeholder"), _ctx.n("$--ellipsis"), [_ctx.isFocus, _ctx.n("--focus")], [_ctx.errorMessage, _ctx.n("--error")], [_ctx.formDisabled || _ctx.disabled, _ctx.n("--disabled")], _ctx.computePlaceholderState(), [!_ctx.hint, _ctx.n("--placeholder-non-hint")])),
20104
- style: vue.normalizeStyle({
20105
- color: !_ctx.errorMessage ? _ctx.isFocus ? _ctx.focusColor : _ctx.blurColor : void 0
20106
- })
20107
- },
20108
- vue.toDisplayString(_ctx.placeholder),
20109
- 7
20110
- /* TEXT, CLASS, STYLE */
20111
20369
  )]),
20112
20370
  _: 3
20113
20371
  /* FORWARDED */
20114
20372
  },
20115
- 8,
20116
- ["class", "offset-y", "disabled", "show", "onClose"]
20117
- )],
20118
- 2
20119
- /* CLASS */
20120
- ), vue.createElementVNode(
20121
- "div",
20122
- {
20123
- class: vue.normalizeClass(_ctx.classes(_ctx.n("icon"), [!_ctx.hint, _ctx.n("--non-hint")]))
20124
- },
20125
- [vue.renderSlot(_ctx.$slots, "append-icon", {}, () => [_ctx.clearable ? (vue.openBlock(), vue.createBlock(
20126
- _component_var_icon,
20127
- {
20128
- key: 0,
20129
- class: vue.normalizeClass(_ctx.n("clear-icon")),
20130
- name: "close-circle",
20131
- size: "14px",
20132
- onClick: _ctx.handleClear
20133
- },
20134
- null,
20135
- 8,
20136
- ["class", "onClick"]
20137
- )) : vue.createCommentVNode("v-if", true)])],
20138
- 2
20139
- /* CLASS */
20140
- )],
20141
- 6
20142
- /* CLASS, STYLE */
20143
- ), _ctx.line ? (vue.openBlock(), vue.createElementBlock(
20144
- "div",
20145
- {
20146
- key: 0,
20147
- class: vue.normalizeClass(_ctx.classes(_ctx.n("line"), [_ctx.formDisabled || _ctx.disabled, _ctx.n("--line-disabled")], [_ctx.errorMessage, _ctx.n("--line-error")])),
20148
- style: vue.normalizeStyle({
20149
- background: !_ctx.errorMessage ? _ctx.blurColor : void 0
20150
- })
20373
+ 16
20374
+ /* FULL_PROPS */
20375
+ )]),
20376
+ _: 3
20377
+ /* FORWARDED */
20151
20378
  },
20152
- [vue.createElementVNode(
20153
- "div",
20154
- {
20155
- class: vue.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")])),
20156
- style: vue.normalizeStyle({
20157
- background: !_ctx.errorMessage ? _ctx.focusColor : void 0
20158
- })
20159
- },
20160
- null,
20161
- 6
20162
- /* CLASS, STYLE */
20163
- )],
20164
- 6
20165
- /* CLASS, STYLE */
20166
- )) : vue.createCommentVNode("v-if", true), vue.createVNode(
20379
+ 8,
20380
+ ["class", "offset-y", "disabled", "placement", "show", "onClose"]
20381
+ ), vue.createVNode(
20167
20382
  _component_var_form_details,
20168
20383
  {
20169
- "error-message": _ctx.errorMessage
20384
+ "error-message": _ctx.errorMessage,
20385
+ onClick: _cache[2] || (_cache[2] = vue.withModifiers(() => {
20386
+ }, ["stop"]))
20170
20387
  },
20171
20388
  null,
20172
20389
  8,
@@ -20182,18 +20399,18 @@ var __sfc__$g = vue.defineComponent({
20182
20399
  VarIcon: Icon,
20183
20400
  VarMenu: Menu,
20184
20401
  VarChip: Chip,
20402
+ VarFieldDecorator,
20185
20403
  VarFormDetails: FormDetails
20186
20404
  },
20187
20405
  props: props$f,
20188
20406
  setup(props2) {
20189
- var wrapEl = vue.ref(null);
20190
20407
  var isFocus = vue.ref(false);
20191
20408
  var multiple = vue.computed(() => props2.multiple);
20192
20409
  var focusColor = vue.computed(() => props2.focusColor);
20193
20410
  var label = vue.ref("");
20194
20411
  var labels = vue.ref([]);
20195
20412
  var isEmptyModelValue = vue.computed(() => isEmpty(props2.modelValue));
20196
- var wrapWidth = vue.ref("0px");
20413
+ var cursor = vue.computed(() => props2.disabled || props2.readonly ? "" : "pointer");
20197
20414
  var offsetY = vue.ref(0);
20198
20415
  var {
20199
20416
  bindForm,
@@ -20212,6 +20429,7 @@ var __sfc__$g = vue.defineComponent({
20212
20429
  resetValidation
20213
20430
  } = useValidation();
20214
20431
  var menuEl = vue.ref(null);
20432
+ var placement = vue.computed(() => props2.variant === "outlined" ? "bottom-start" : "cover-top-start");
20215
20433
  var computeLabel = () => {
20216
20434
  var {
20217
20435
  multiple: multiple2,
@@ -20266,21 +20484,6 @@ var __sfc__$g = vue.defineComponent({
20266
20484
  }
20267
20485
  return (_option$label$value = (_option = option2) == null ? void 0 : _option.label.value) != null ? _option$label$value : "";
20268
20486
  };
20269
- var computePlaceholderState = () => {
20270
- var {
20271
- hint,
20272
- modelValue
20273
- } = props2;
20274
- if (!hint && !isEmpty(modelValue)) {
20275
- return n$h("--placeholder-hidden");
20276
- }
20277
- if (hint && (!isEmpty(modelValue) || isFocus.value)) {
20278
- return n$h("--placeholder-hint");
20279
- }
20280
- };
20281
- var getWrapWidth = () => {
20282
- return wrapEl.value && window.getComputedStyle(wrapEl.value).width || "0px";
20283
- };
20284
20487
  var handleFocus = () => {
20285
20488
  var {
20286
20489
  disabled,
@@ -20290,7 +20493,6 @@ var __sfc__$g = vue.defineComponent({
20290
20493
  if (form != null && form.disabled.value || form != null && form.readonly.value || disabled || readonly) {
20291
20494
  return;
20292
20495
  }
20293
- wrapWidth.value = getWrapWidth();
20294
20496
  offsetY.value = toPxNum(props2.offsetY);
20295
20497
  isFocus.value = true;
20296
20498
  call(onFocus);
@@ -20395,7 +20597,6 @@ var __sfc__$g = vue.defineComponent({
20395
20597
  computeLabel();
20396
20598
  };
20397
20599
  var focus = () => {
20398
- wrapWidth.value = getWrapWidth();
20399
20600
  offsetY.value = toPxNum(props2.offsetY);
20400
20601
  isFocus.value = true;
20401
20602
  };
@@ -20421,7 +20622,6 @@ var __sfc__$g = vue.defineComponent({
20421
20622
  });
20422
20623
  vue.watch(() => length.value, syncOptions);
20423
20624
  var selectProvider = {
20424
- wrapWidth: vue.computed(() => wrapWidth.value),
20425
20625
  multiple,
20426
20626
  focusColor,
20427
20627
  computeLabel,
@@ -20433,7 +20633,6 @@ var __sfc__$g = vue.defineComponent({
20433
20633
  bindOptions(selectProvider);
20434
20634
  call(bindForm, selectProvider);
20435
20635
  return {
20436
- wrapEl,
20437
20636
  offsetY,
20438
20637
  isFocus,
20439
20638
  errorMessage,
@@ -20443,9 +20642,10 @@ var __sfc__$g = vue.defineComponent({
20443
20642
  labels,
20444
20643
  isEmptyModelValue,
20445
20644
  menuEl,
20645
+ placement,
20646
+ cursor,
20446
20647
  n: n$h,
20447
20648
  classes: classes$d,
20448
- computePlaceholderState,
20449
20649
  handleFocus,
20450
20650
  handleBlur,
20451
20651
  handleClear,
@@ -21264,7 +21464,7 @@ var props$c = {
21264
21464
  },
21265
21465
  // content内容
21266
21466
  content: {
21267
- type: String
21467
+ type: [String, Function, Object]
21268
21468
  },
21269
21469
  // 为snackbar content添加自定义类名
21270
21470
  contentClass: {
@@ -21280,10 +21480,10 @@ var props$c = {
21280
21480
  type: Boolean,
21281
21481
  default: false
21282
21482
  },
21283
- loadingType: pickProps(props$13, "type"),
21284
- loadingSize: pickProps(props$13, "size"),
21285
- loadingRadius: pickProps(props$13, "radius"),
21286
- loadingColor: _extends$2({}, pickProps(props$13, "color"), {
21483
+ loadingType: pickProps(props$14, "type"),
21484
+ loadingSize: pickProps(props$14, "size"),
21485
+ loadingRadius: pickProps(props$14, "radius"),
21486
+ loadingColor: _extends$2({}, pickProps(props$14, "color"), {
21287
21487
  default: "currentColor"
21288
21488
  }),
21289
21489
  // 是否禁止滚动穿透
@@ -21362,6 +21562,14 @@ function __render__$c(_ctx, _cache) {
21362
21562
  )])],
21363
21563
  2
21364
21564
  /* CLASS */
21565
+ ), vue.createElementVNode(
21566
+ "div",
21567
+ {
21568
+ class: vue.normalizeClass([_ctx.n("icon")])
21569
+ },
21570
+ [vue.renderSlot(_ctx.$slots, "icon")],
21571
+ 2
21572
+ /* CLASS */
21365
21573
  ), vue.createElementVNode(
21366
21574
  "div",
21367
21575
  {
@@ -21479,6 +21687,7 @@ function __render__$b(_ctx, _cache) {
21479
21687
  class: _ctx.n("transition")
21480
21688
  }),
21481
21689
  {
21690
+ icon: vue.withCtx(() => [vue.renderSlot(_ctx.$slots, "icon")]),
21482
21691
  action: vue.withCtx(() => [vue.renderSlot(_ctx.$slots, "action")]),
21483
21692
  default: vue.withCtx(() => [vue.renderSlot(_ctx.$slots, "default", {}, () => [vue.createTextVNode(
21484
21693
  vue.toDisplayString(_ctx.content),
@@ -21544,6 +21753,8 @@ var isAllowMultiple = false;
21544
21753
  var defaultOptionsValue = {
21545
21754
  type: void 0,
21546
21755
  content: "",
21756
+ icon: "",
21757
+ action: "",
21547
21758
  position: "top",
21548
21759
  duration: 3e3,
21549
21760
  vertical: false,
@@ -21569,6 +21780,7 @@ var transitionGroupProps = {
21569
21780
  tag: "div",
21570
21781
  class: "var-transition-group"
21571
21782
  };
21783
+ var getSlotValue = (value) => () => isFunction(value) ? value() : value;
21572
21784
  var TransitionGroupHost = {
21573
21785
  setup() {
21574
21786
  return () => {
@@ -21590,6 +21802,16 @@ var TransitionGroupHost = {
21590
21802
  var style = _extends$1({
21591
21803
  position
21592
21804
  }, getTop(reactiveSnackOptions.position));
21805
+ var {
21806
+ content,
21807
+ icon: icon2,
21808
+ action
21809
+ } = reactiveSnackOptions;
21810
+ var slots = {
21811
+ default: getSlotValue(content),
21812
+ icon: getSlotValue(icon2),
21813
+ action: getSlotValue(action)
21814
+ };
21593
21815
  return vue.createVNode(VarSnackbarCore, vue.mergeProps(reactiveSnackOptions, {
21594
21816
  "key": id,
21595
21817
  "style": style,
@@ -21597,7 +21819,7 @@ var TransitionGroupHost = {
21597
21819
  "_update": _update,
21598
21820
  "show": reactiveSnackOptions.show,
21599
21821
  "onUpdate:show": ($event) => reactiveSnackOptions.show = $event
21600
- }), null);
21822
+ }), slots);
21601
21823
  });
21602
21824
  return vue.createVNode(vue.TransitionGroup, vue.mergeProps(transitionGroupProps, {
21603
21825
  "style": {
@@ -22837,9 +23059,9 @@ var props$3 = {
22837
23059
  type: Boolean,
22838
23060
  default: false
22839
23061
  },
22840
- stickyCssMode: pickProps(props$A, "cssMode"),
22841
- stickyZIndex: pickProps(props$A, "zIndex"),
22842
- offsetTop: pickProps(props$A, "offsetTop"),
23062
+ stickyCssMode: pickProps(props$B, "cssMode"),
23063
+ stickyZIndex: pickProps(props$B, "zIndex"),
23064
+ offsetTop: pickProps(props$B, "offsetTop"),
22843
23065
  onClick: defineListenerProp(),
22844
23066
  onChange: defineListenerProp(),
22845
23067
  "onUpdate:active": defineListenerProp()
@@ -23082,8 +23304,8 @@ var __sfc__$4 = vue.defineComponent({
23082
23304
  }));
23083
23305
  vue.watch(() => props2.active, resize);
23084
23306
  vue.watch(() => props2.scrollable, resize);
23085
- useEventListener(window, "resize", resize);
23086
23307
  vue.onActivated(resize);
23308
+ useEventListener(() => window, "resize", resize);
23087
23309
  return {
23088
23310
  stickyComponent,
23089
23311
  indicatorWidth,
@@ -23305,9 +23527,9 @@ const divider$1 = {
23305
23527
  "--divider-color": "rgba(255, 255, 255, 0.2)",
23306
23528
  "--divider-text-color": "#aaa"
23307
23529
  };
23308
- const input$1 = {
23309
- "--input-input-text-color": "#fff",
23310
- "--input-blur-color": "rgb(255, 255, 255, .7)"
23530
+ const fieldDecorator$1 = {
23531
+ "--field-decorator-text-color": "#fff",
23532
+ "--field-decorator-blur-color": "rgb(255, 255, 255, .7)"
23311
23533
  };
23312
23534
  const pagination$1 = {
23313
23535
  "--pagination-list-bg-color": "#303030",
@@ -23341,8 +23563,6 @@ const result$1 = {
23341
23563
  "--result-empty-border-color": "rgba(232,229,229,0.3)"
23342
23564
  };
23343
23565
  const select$1 = {
23344
- "--select-select-text-color": "#fff",
23345
- "--select-blur-color": "rgb(255, 255, 255, .7)",
23346
23566
  "--select-scroller-background": "#303030"
23347
23567
  };
23348
23568
  const skeleton$1 = {
@@ -23434,7 +23654,7 @@ const dark = _extends({
23434
23654
  "--color-danger": "#ef5350",
23435
23655
  "--color-disabled": "#404040",
23436
23656
  "--color-text-disabled": "#757575"
23437
- }, button$1, cell$1, card$1, timePicker$1, datePicker$1, skeleton$1, tabs$1, tab$1, popup$1, dialog$1, actionSheet$1, chip$1, badge$1, uploader$1, collapse, pullRefresh$1, switchThemes, steps, pagination$1, table$1, input$1, select$1, radio$1, checkbox$1, divider$1, picker$1, appBar$1, bottomNavigation$1, bottomNavigationItem$1, menu$1, result$1, breadcrumb$1, paper$1, avatar$1);
23657
+ }, button$1, cell$1, card$1, timePicker$1, datePicker$1, skeleton$1, tabs$1, tab$1, popup$1, dialog$1, actionSheet$1, chip$1, badge$1, uploader$1, collapse, pullRefresh$1, switchThemes, steps, pagination$1, table$1, fieldDecorator$1, select$1, radio$1, checkbox$1, divider$1, picker$1, appBar$1, bottomNavigation$1, bottomNavigationItem$1, menu$1, result$1, breadcrumb$1, paper$1, avatar$1);
23438
23658
  var Themes = {
23439
23659
  dark
23440
23660
  };
@@ -25028,6 +25248,7 @@ const sticky = "";
25028
25248
  const IndexAnchorSfc = "";
25029
25249
  const indexBar = "";
25030
25250
  const IndexBarSfc = "";
25251
+ const fieldDecorator = "";
25031
25252
  const input = "";
25032
25253
  const InputSfc = "";
25033
25254
  const link = "";
@@ -25067,9 +25288,9 @@ const skeleton = "";
25067
25288
  const SkeletonSfc = "";
25068
25289
  const slider = "";
25069
25290
  const SliderSfc = "";
25291
+ const SnackbarSfc = "";
25070
25292
  const snackbar = "";
25071
25293
  const coreSfc = "";
25072
- const SnackbarSfc = "";
25073
25294
  const space = "";
25074
25295
  const step = "";
25075
25296
  const StepSfc = "";
@@ -25094,7 +25315,7 @@ const TimePickerSfc = "";
25094
25315
  const TooltipSfc = "";
25095
25316
  const uploader = "";
25096
25317
  const UploaderSfc = "";
25097
- const version = "2.9.6";
25318
+ const version = "2.10.0-alpha.1682067841655";
25098
25319
  function install(app) {
25099
25320
  ActionSheet.install && app.use(ActionSheet);
25100
25321
  AppBar.install && app.use(AppBar);
@@ -25423,48 +25644,48 @@ exports._ThemesComponent = _ThemesComponent;
25423
25644
  exports._TimePickerComponent = _TimePickerComponent;
25424
25645
  exports._TooltipComponent = _TooltipComponent;
25425
25646
  exports._UploaderComponent = _UploaderComponent;
25426
- exports.actionSheetProps = props$17;
25647
+ exports.actionSheetProps = props$18;
25427
25648
  exports.add = add$2;
25428
- exports.appBarProps = props$16;
25429
- exports.avatarGroupProps = props$14;
25430
- exports.avatarProps = props$15;
25431
- exports.backTopProps = props$10;
25432
- exports.badgeProps = props$$;
25433
- exports.bottomNavigationItemProps = props$Z;
25434
- exports.bottomNavigationProps = props$_;
25435
- exports.breadcrumbProps = props$Y;
25436
- exports.breadcrumbsProps = props$X;
25437
- exports.buttonProps = props$11;
25438
- exports.cardProps = props$V;
25439
- exports.cellProps = props$U;
25440
- exports.checkboxGroupProps = props$R;
25441
- exports.checkboxProps = props$S;
25442
- exports.chipProps = props$Q;
25443
- exports.colProps = props$P;
25444
- exports.collapseItemProps = props$N;
25445
- exports.collapseProps = props$O;
25446
- exports.countdownProps = props$M;
25447
- exports.counterProps = props$L;
25448
- exports.datePickerProps = props$K;
25649
+ exports.appBarProps = props$17;
25650
+ exports.avatarGroupProps = props$15;
25651
+ exports.avatarProps = props$16;
25652
+ exports.backTopProps = props$11;
25653
+ exports.badgeProps = props$10;
25654
+ exports.bottomNavigationItemProps = props$_;
25655
+ exports.bottomNavigationProps = props$$;
25656
+ exports.breadcrumbProps = props$Z;
25657
+ exports.breadcrumbsProps = props$Y;
25658
+ exports.buttonProps = props$12;
25659
+ exports.cardProps = props$W;
25660
+ exports.cellProps = props$V;
25661
+ exports.checkboxGroupProps = props$S;
25662
+ exports.checkboxProps = props$T;
25663
+ exports.chipProps = props$R;
25664
+ exports.colProps = props$Q;
25665
+ exports.collapseItemProps = props$O;
25666
+ exports.collapseProps = props$P;
25667
+ exports.countdownProps = props$N;
25668
+ exports.counterProps = props$M;
25669
+ exports.datePickerProps = props$L;
25449
25670
  exports.default = index_bundle;
25450
25671
  exports.defaultLazyOptions = defaultLazyOptions;
25451
- exports.dialogProps = props$J;
25452
- exports.dividerProps = props$I;
25672
+ exports.dialogProps = props$K;
25673
+ exports.dividerProps = props$J;
25453
25674
  exports.enUS = enUS;
25454
- exports.formDetailsProps = props$T;
25455
- exports.formProps = props$E;
25456
- exports.iconProps = props$18;
25675
+ exports.formDetailsProps = props$U;
25676
+ exports.formProps = props$F;
25677
+ exports.iconProps = props$19;
25457
25678
  exports.imageCache = imageCache;
25458
- exports.imagePreviewProps = props$B;
25459
- exports.imageProps = props$D;
25460
- exports.indexAnchorProps = props$z;
25461
- exports.indexBarProps = props$y;
25679
+ exports.imagePreviewProps = props$C;
25680
+ exports.imageProps = props$E;
25681
+ exports.indexAnchorProps = props$A;
25682
+ exports.indexBarProps = props$z;
25462
25683
  exports.inputProps = props$x;
25463
25684
  exports.install = install;
25464
25685
  exports.linkProps = props$w;
25465
25686
  exports.listProps = props$v;
25466
25687
  exports.loadingBarProps = props$u;
25467
- exports.loadingProps = props$13;
25688
+ exports.loadingProps = props$14;
25468
25689
  exports.menuProps = props$s;
25469
25690
  exports.merge = merge;
25470
25691
  exports.optionProps = props$r;
@@ -25474,7 +25695,7 @@ exports.packs = packs;
25474
25695
  exports.paginationProps = props$p;
25475
25696
  exports.paperProps = props$o;
25476
25697
  exports.pickerProps = props$n;
25477
- exports.popupProps = props$19;
25698
+ exports.popupProps = props$1a;
25478
25699
  exports.progressProps = props$m;
25479
25700
  exports.pullRefreshProps = props$l;
25480
25701
  exports.radioGroupProps = props$j;
@@ -25489,9 +25710,9 @@ exports.snackbarProps = props$c;
25489
25710
  exports.spaceProps = props$b;
25490
25711
  exports.stepProps = props$a;
25491
25712
  exports.stepsProps = props$9;
25492
- exports.stickyProps = props$A;
25713
+ exports.stickyProps = props$B;
25493
25714
  exports.styleProviderProps = props$8;
25494
- exports.swipeProps = props$C;
25715
+ exports.swipeProps = props$D;
25495
25716
  exports.switchProps = props$7;
25496
25717
  exports.tabItemProps = props$5;
25497
25718
  exports.tabProps = props$6;
@@ -25499,7 +25720,7 @@ exports.tableProps = props$4;
25499
25720
  exports.tabsItemsProps = props$2;
25500
25721
  exports.tabsProps = props$3;
25501
25722
  exports.timePickerProps = props$1;
25502
- exports.tooltipProps = props$H;
25723
+ exports.tooltipProps = props$I;
25503
25724
  exports.uploaderProps = props;
25504
25725
  exports.use = use;
25505
25726
  exports.useHoverOverlay = useHoverOverlay;