@varlet/ui 2.20.6 → 2.21.0-alpha.1704976407062

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/varlet.cjs.js CHANGED
@@ -7,7 +7,7 @@ const context = {
7
7
  enableRipple: true
8
8
  };
9
9
  const _ContextComponent = vue.reactive(context);
10
- var stdin_default$3w = vue.reactive(context);
10
+ var stdin_default$3y = vue.reactive(context);
11
11
  var __defProp$v = Object.defineProperty;
12
12
  var __defProps$a = Object.defineProperties;
13
13
  var __getOwnPropDescs$a = Object.getOwnPropertyDescriptors;
@@ -798,7 +798,7 @@ var __spreadValues$s = (a, b) => {
798
798
  return a;
799
799
  };
800
800
  var __spreadProps$8 = (a, b) => __defProps$8(a, __getOwnPropDescs$8(b));
801
- const { n: n$1n } = createNamespace("ripple");
801
+ const { n: n$1o } = createNamespace("ripple");
802
802
  const ANIMATION_DURATION$1 = 250;
803
803
  function setStyles(element) {
804
804
  const { zIndex, position } = getStyle$1(element);
@@ -824,14 +824,14 @@ function computeRippleStyles(element, event) {
824
824
  function createRipple(event) {
825
825
  const _ripple = this._ripple;
826
826
  _ripple.removeRipple();
827
- if (_ripple.disabled || _ripple.tasker || !stdin_default$3w.enableRipple) {
827
+ if (_ripple.disabled || _ripple.tasker || !stdin_default$3y.enableRipple) {
828
828
  return;
829
829
  }
830
830
  const task = () => {
831
831
  _ripple.tasker = null;
832
832
  const { x, y, centerX, centerY, size } = computeRippleStyles(this, event);
833
833
  const ripple = document.createElement("div");
834
- ripple.classList.add(n$1n());
834
+ ripple.classList.add(n$1o());
835
835
  ripple.style.opacity = `0`;
836
836
  ripple.style.transform = `translate(${x}px, ${y}px) scale3d(.3, .3, .3)`;
837
837
  ripple.style.width = `${size}px`;
@@ -850,7 +850,7 @@ function createRipple(event) {
850
850
  function removeRipple() {
851
851
  const _ripple = this._ripple;
852
852
  const task = () => {
853
- const ripples = this.querySelectorAll(`.${n$1n()}`);
853
+ const ripples = this.querySelectorAll(`.${n$1o()}`);
854
854
  if (!ripples.length) {
855
855
  return;
856
856
  }
@@ -867,7 +867,7 @@ function removeRipple() {
867
867
  _ripple.tasker ? window.setTimeout(task, 30) : task();
868
868
  }
869
869
  function forbidRippleTask() {
870
- if (!supportTouch() || !stdin_default$3w.enableRipple) {
870
+ if (!supportTouch() || !stdin_default$3y.enableRipple) {
871
871
  return;
872
872
  }
873
873
  const _ripple = this._ripple;
@@ -919,8 +919,8 @@ const Ripple = {
919
919
  }
920
920
  };
921
921
  const _RippleComponent = Ripple;
922
- var stdin_default$3v = Ripple;
923
- const props$1f = {
922
+ var stdin_default$3x = Ripple;
923
+ const props$1g = {
924
924
  show: Boolean,
925
925
  position: {
926
926
  type: String,
@@ -961,15 +961,15 @@ const props$1f = {
961
961
  onRouteChange: defineListenerProp()
962
962
  };
963
963
  function resolveLock() {
964
- const lockCounts = Object.keys(stdin_default$3w.locks).length;
964
+ const lockCounts = Object.keys(stdin_default$3y.locks).length;
965
965
  lockCounts <= 0 ? document.body.classList.remove("var--lock") : document.body.classList.add("var--lock");
966
966
  }
967
967
  function addLock(uid) {
968
- stdin_default$3w.locks[uid] = 1;
968
+ stdin_default$3y.locks[uid] = 1;
969
969
  resolveLock();
970
970
  }
971
971
  function releaseLock(uid) {
972
- delete stdin_default$3w.locks[uid];
972
+ delete stdin_default$3y.locks[uid];
973
973
  resolveLock();
974
974
  }
975
975
  function useLock(source, useSource) {
@@ -1027,13 +1027,13 @@ function useLock(source, useSource) {
1027
1027
  });
1028
1028
  }
1029
1029
  function useZIndex(source, count) {
1030
- const zIndex = vue.ref(stdin_default$3w.zIndex);
1030
+ const zIndex = vue.ref(stdin_default$3y.zIndex);
1031
1031
  vue.watch(
1032
1032
  source,
1033
1033
  (newValue) => {
1034
1034
  if (newValue) {
1035
- stdin_default$3w.zIndex += process.env.NODE_ENV === "test" ? 0 : count;
1036
- zIndex.value = stdin_default$3w.zIndex;
1035
+ stdin_default$3y.zIndex += process.env.NODE_ENV === "test" ? 0 : count;
1036
+ zIndex.value = stdin_default$3y.zIndex;
1037
1037
  }
1038
1038
  },
1039
1039
  { immediate: true }
@@ -1074,14 +1074,14 @@ var __spreadValues$r = (a, b) => {
1074
1074
  return a;
1075
1075
  };
1076
1076
  const {
1077
- name: name$1f,
1078
- n: n$1m,
1077
+ name: name$1g,
1078
+ n: n$1n,
1079
1079
  classes: classes$19
1080
1080
  } = createNamespace("popup");
1081
- var stdin_default$3u = vue.defineComponent({
1082
- name: name$1f,
1081
+ var stdin_default$3w = vue.defineComponent({
1082
+ name: name$1g,
1083
1083
  inheritAttrs: false,
1084
- props: props$1f,
1084
+ props: props$1g,
1085
1085
  setup(props2, {
1086
1086
  slots,
1087
1087
  attrs
@@ -1121,7 +1121,7 @@ var stdin_default$3u = vue.defineComponent({
1121
1121
  overlayStyle
1122
1122
  } = props2;
1123
1123
  return vue.createVNode("div", {
1124
- "class": classes$19(n$1m("overlay"), overlayClass),
1124
+ "class": classes$19(n$1n("overlay"), overlayClass),
1125
1125
  "style": __spreadValues$r({
1126
1126
  zIndex: zIndex.value - 1
1127
1127
  }, overlayStyle),
@@ -1130,7 +1130,7 @@ var stdin_default$3u = vue.defineComponent({
1130
1130
  }
1131
1131
  function renderContent() {
1132
1132
  return vue.withDirectives(vue.createVNode("div", vue.mergeProps({
1133
- "class": classes$19(n$1m("content"), n$1m(`--${props2.position}`), [props2.defaultStyle, n$1m("--content-background-color")], [props2.defaultStyle, n$1m("$-elevation--3")], [props2.safeArea, n$1m("--safe-area")], [props2.safeAreaTop, n$1m("--safe-area-top")]),
1133
+ "class": classes$19(n$1n("content"), n$1n(`--${props2.position}`), [props2.defaultStyle, n$1n("--content-background-color")], [props2.defaultStyle, n$1n("$-elevation--3")], [props2.safeArea, n$1n("--safe-area")], [props2.safeAreaTop, n$1n("--safe-area-top")]),
1134
1134
  "style": {
1135
1135
  zIndex: zIndex.value
1136
1136
  }
@@ -1138,17 +1138,17 @@ var stdin_default$3u = vue.defineComponent({
1138
1138
  }
1139
1139
  function renderPopup() {
1140
1140
  return vue.createVNode(vue.Transition, {
1141
- "name": n$1m("$-fade"),
1141
+ "name": n$1n("$-fade"),
1142
1142
  "onAfterEnter": props2.onOpened,
1143
1143
  "onAfterLeave": props2.onClosed
1144
1144
  }, {
1145
1145
  default: () => [vue.withDirectives(vue.createVNode("div", {
1146
- "class": classes$19(n$1m("$--box"), n$1m()),
1146
+ "class": classes$19(n$1n("$--box"), n$1n()),
1147
1147
  "style": {
1148
1148
  zIndex: zIndex.value - 2
1149
1149
  }
1150
1150
  }, [props2.overlay && renderOverlay(), vue.createVNode(vue.Transition, {
1151
- "name": props2.transition || n$1m(`$-pop-${props2.position}`)
1151
+ "name": props2.transition || n$1n(`$-pop-${props2.position}`)
1152
1152
  }, {
1153
1153
  default: () => [renderContent()]
1154
1154
  })]), [[vue.vShow, props2.show]])]
@@ -1170,11 +1170,11 @@ var stdin_default$3u = vue.defineComponent({
1170
1170
  };
1171
1171
  }
1172
1172
  });
1173
- withInstall(stdin_default$3u);
1174
- withPropsDefaultsSetter(stdin_default$3u, props$1f);
1175
- const _PopupComponent = stdin_default$3u;
1176
- var stdin_default$3t = stdin_default$3u;
1177
- const props$1e = {
1173
+ withInstall(stdin_default$3w);
1174
+ withPropsDefaultsSetter(stdin_default$3w, props$1g);
1175
+ const _PopupComponent = stdin_default$3w;
1176
+ var stdin_default$3v = stdin_default$3w;
1177
+ const props$1f = {
1178
1178
  name: String,
1179
1179
  size: [Number, String],
1180
1180
  color: String,
@@ -1361,8 +1361,8 @@ var __async$g = (__this, __arguments, generator) => {
1361
1361
  step((generator = generator.apply(__this, __arguments)).next());
1362
1362
  });
1363
1363
  };
1364
- const { name: name$1e, n: n$1l, classes: classes$18 } = createNamespace("icon");
1365
- function __render__$1l(_ctx, _cache) {
1364
+ const { name: name$1f, n: n$1m, classes: classes$18 } = createNamespace("icon");
1365
+ function __render__$1m(_ctx, _cache) {
1366
1366
  return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.isURL(_ctx.name) ? "img" : "i"), {
1367
1367
  class: vue.normalizeClass(
1368
1368
  _ctx.classes(
@@ -1384,9 +1384,9 @@ function __render__$1l(_ctx, _cache) {
1384
1384
  onClick: _ctx.onClick
1385
1385
  }, null, 8, ["class", "style", "src", "onClick"]);
1386
1386
  }
1387
- const __sfc__$1m = vue.defineComponent({
1388
- name: name$1e,
1389
- props: props$1e,
1387
+ const __sfc__$1n = vue.defineComponent({
1388
+ name: name$1f,
1389
+ props: props$1f,
1390
1390
  setup(props2) {
1391
1391
  const nextName = vue.ref("");
1392
1392
  const animateInProgress = vue.ref(false);
@@ -1411,7 +1411,7 @@ const __sfc__$1m = vue.defineComponent({
1411
1411
  return {
1412
1412
  nextName,
1413
1413
  animateInProgress,
1414
- n: n$1l,
1414
+ n: n$1m,
1415
1415
  classes: classes$18,
1416
1416
  isURL,
1417
1417
  toNumber,
@@ -1419,12 +1419,12 @@ const __sfc__$1m = vue.defineComponent({
1419
1419
  };
1420
1420
  }
1421
1421
  });
1422
- __sfc__$1m.render = __render__$1l;
1423
- var stdin_default$3s = __sfc__$1m;
1424
- withInstall(stdin_default$3s);
1425
- withPropsDefaultsSetter(stdin_default$3s, props$1e);
1426
- const _IconComponent = stdin_default$3s;
1427
- var stdin_default$3r = stdin_default$3s;
1422
+ __sfc__$1n.render = __render__$1m;
1423
+ var stdin_default$3u = __sfc__$1n;
1424
+ withInstall(stdin_default$3u);
1425
+ withPropsDefaultsSetter(stdin_default$3u, props$1f);
1426
+ const _IconComponent = stdin_default$3u;
1427
+ var stdin_default$3t = stdin_default$3u;
1428
1428
  var __defProp$q = Object.defineProperty;
1429
1429
  var __getOwnPropSymbols$q = Object.getOwnPropertySymbols;
1430
1430
  var __hasOwnProp$q = Object.prototype.hasOwnProperty;
@@ -1441,7 +1441,7 @@ var __spreadValues$q = (a, b) => {
1441
1441
  }
1442
1442
  return a;
1443
1443
  };
1444
- const props$1d = __spreadValues$q({
1444
+ const props$1e = __spreadValues$q({
1445
1445
  show: Boolean,
1446
1446
  title: String,
1447
1447
  actions: {
@@ -1454,7 +1454,7 @@ const props$1d = __spreadValues$q({
1454
1454
  },
1455
1455
  onSelect: defineListenerProp(),
1456
1456
  "onUpdate:show": defineListenerProp()
1457
- }, pickProps(props$1f, [
1457
+ }, pickProps(props$1g, [
1458
1458
  "overlay",
1459
1459
  "overlayClass",
1460
1460
  "overlayStyle",
@@ -1470,7 +1470,7 @@ const props$1d = __spreadValues$q({
1470
1470
  // internal for function call closes the dialog
1471
1471
  "onRouteChange"
1472
1472
  ]));
1473
- var stdin_default$3q = {
1473
+ var stdin_default$3s = {
1474
1474
  // Dialog
1475
1475
  dialogTitle: "提示",
1476
1476
  dialogConfirmButtonText: "确认",
@@ -1575,7 +1575,7 @@ var stdin_default$3q = {
1575
1575
  // time-picker
1576
1576
  timePickerHint: "选择时间"
1577
1577
  };
1578
- var stdin_default$3p = {
1578
+ var stdin_default$3r = {
1579
1579
  // Dialog
1580
1580
  dialogTitle: "Hint",
1581
1581
  dialogConfirmButtonText: "Confirm",
@@ -1680,7 +1680,7 @@ var stdin_default$3p = {
1680
1680
  // time-picker
1681
1681
  timePickerHint: "SELECT TIME"
1682
1682
  };
1683
- var stdin_default$3o = {
1683
+ var stdin_default$3q = {
1684
1684
  // Dialog
1685
1685
  dialogTitle: "提示",
1686
1686
  dialogConfirmButtonText: "確認",
@@ -1782,7 +1782,7 @@ var stdin_default$3o = {
1782
1782
  paginationPage: "頁",
1783
1783
  paginationJump: "前往"
1784
1784
  };
1785
- var stdin_default$3n = stdin_default$3o;
1785
+ var stdin_default$3p = stdin_default$3q;
1786
1786
  var __defProp$p = Object.defineProperty;
1787
1787
  var __getOwnPropSymbols$p = Object.getOwnPropertySymbols;
1788
1788
  var __hasOwnProp$p = Object.prototype.hasOwnProperty;
@@ -1830,14 +1830,14 @@ function useLocale() {
1830
1830
  };
1831
1831
  }
1832
1832
  const { packs, pack, add: add$2, use, merge } = useLocale();
1833
- add$2("zh-CN", stdin_default$3q);
1833
+ add$2("zh-CN", stdin_default$3s);
1834
1834
  use("zh-CN");
1835
- const _LocaleComponent = { zhCN: stdin_default$3q, enUS: stdin_default$3p, packs, pack, add: add$2, use, merge, useLocale };
1836
- var stdin_default$3m = {
1837
- zhCN: stdin_default$3q,
1838
- enUS: stdin_default$3p,
1839
- zhTW: stdin_default$3o,
1840
- zhHK: stdin_default$3n,
1835
+ const _LocaleComponent = { zhCN: stdin_default$3s, enUS: stdin_default$3r, packs, pack, add: add$2, use, merge, useLocale };
1836
+ var stdin_default$3o = {
1837
+ zhCN: stdin_default$3s,
1838
+ enUS: stdin_default$3r,
1839
+ zhTW: stdin_default$3q,
1840
+ zhHK: stdin_default$3p,
1841
1841
  packs,
1842
1842
  pack,
1843
1843
  add: add$2,
@@ -1845,9 +1845,9 @@ var stdin_default$3m = {
1845
1845
  merge,
1846
1846
  useLocale
1847
1847
  };
1848
- const { name: name$1d, n: n$1k, classes: classes$17 } = createNamespace("action-sheet");
1848
+ const { name: name$1e, n: n$1l, classes: classes$17 } = createNamespace("action-sheet");
1849
1849
  const _hoisted_1$u = ["onClick"];
1850
- function __render__$1k(_ctx, _cache) {
1850
+ function __render__$1l(_ctx, _cache) {
1851
1851
  const _component_var_icon = vue.resolveComponent("var-icon");
1852
1852
  const _component_var_popup = vue.resolveComponent("var-popup");
1853
1853
  const _directive_ripple = vue.resolveDirective("ripple");
@@ -1937,15 +1937,15 @@ function __render__$1k(_ctx, _cache) {
1937
1937
  /* FORWARDED */
1938
1938
  }, 16, ["class", "show", "overlay", "overlay-class", "overlay-style", "lock-scroll", "close-on-click-overlay", "teleport", "safe-area", "onOpen", "onClose", "onClosed", "onOpened", "onRouteChange"]);
1939
1939
  }
1940
- const __sfc__$1l = vue.defineComponent({
1941
- name: name$1d,
1942
- directives: { Ripple: stdin_default$3v },
1940
+ const __sfc__$1m = vue.defineComponent({
1941
+ name: name$1e,
1942
+ directives: { Ripple: stdin_default$3x },
1943
1943
  components: {
1944
- VarPopup: stdin_default$3t,
1945
- VarIcon: stdin_default$3r
1944
+ VarPopup: stdin_default$3v,
1945
+ VarIcon: stdin_default$3t
1946
1946
  },
1947
1947
  inheritAttrs: false,
1948
- props: props$1d,
1948
+ props: props$1e,
1949
1949
  setup(props2) {
1950
1950
  const popupShow = vue.ref(false);
1951
1951
  vue.watch(
@@ -1969,15 +1969,15 @@ const __sfc__$1l = vue.defineComponent({
1969
1969
  return {
1970
1970
  popupShow,
1971
1971
  pack,
1972
- n: n$1k,
1972
+ n: n$1l,
1973
1973
  classes: classes$17,
1974
1974
  handlePopupUpdateShow,
1975
1975
  handleSelect
1976
1976
  };
1977
1977
  }
1978
1978
  });
1979
- __sfc__$1l.render = __render__$1k;
1980
- var stdin_default$3l = __sfc__$1l;
1979
+ __sfc__$1m.render = __render__$1l;
1980
+ var stdin_default$3n = __sfc__$1m;
1981
1981
  var __defProp$o = Object.defineProperty;
1982
1982
  var __getOwnPropSymbols$o = Object.getOwnPropertySymbols;
1983
1983
  var __hasOwnProp$o = Object.prototype.hasOwnProperty;
@@ -2008,7 +2008,7 @@ function ActionSheet(options) {
2008
2008
  const reactiveActionSheetOptions = vue.reactive(normalizeOptions$3(options));
2009
2009
  reactiveActionSheetOptions.teleport = "body";
2010
2010
  singletonOptions$3 = reactiveActionSheetOptions;
2011
- const { unmountInstance } = mountInstance(stdin_default$3l, reactiveActionSheetOptions, {
2011
+ const { unmountInstance } = mountInstance(stdin_default$3n, reactiveActionSheetOptions, {
2012
2012
  onSelect: (action) => {
2013
2013
  call(reactiveActionSheetOptions.onSelect, action);
2014
2014
  resolve(action);
@@ -2048,13 +2048,13 @@ ActionSheet.close = function() {
2048
2048
  });
2049
2049
  }
2050
2050
  };
2051
- ActionSheet.Component = stdin_default$3l;
2052
- withInstall(stdin_default$3l);
2053
- withInstall(stdin_default$3l, ActionSheet);
2054
- withPropsDefaultsSetter(ActionSheet, props$1d);
2055
- const _ActionSheetComponent = stdin_default$3l;
2056
- var stdin_default$3k = ActionSheet;
2057
- const props$1c = {
2051
+ ActionSheet.Component = stdin_default$3n;
2052
+ withInstall(stdin_default$3n);
2053
+ withInstall(stdin_default$3n, ActionSheet);
2054
+ withPropsDefaultsSetter(ActionSheet, props$1e);
2055
+ const _ActionSheetComponent = stdin_default$3n;
2056
+ var stdin_default$3m = ActionSheet;
2057
+ const props$1d = {
2058
2058
  color: String,
2059
2059
  textColor: String,
2060
2060
  title: String,
@@ -2071,8 +2071,8 @@ const props$1c = {
2071
2071
  imageLinearGradient: String,
2072
2072
  safeAreaTop: Boolean
2073
2073
  };
2074
- const { name: name$1c, n: n$1j, classes: classes$16 } = createNamespace("app-bar");
2075
- function __render__$1j(_ctx, _cache) {
2074
+ const { name: name$1d, n: n$1k, classes: classes$16 } = createNamespace("app-bar");
2075
+ function __render__$1k(_ctx, _cache) {
2076
2076
  return vue.openBlock(), vue.createElementBlock(
2077
2077
  "div",
2078
2078
  {
@@ -2182,9 +2182,9 @@ function __render__$1j(_ctx, _cache) {
2182
2182
  /* CLASS, STYLE */
2183
2183
  );
2184
2184
  }
2185
- const __sfc__$1k = vue.defineComponent({
2186
- name: name$1c,
2187
- props: props$1c,
2185
+ const __sfc__$1l = vue.defineComponent({
2186
+ name: name$1d,
2187
+ props: props$1d,
2188
2188
  setup(props2, { slots }) {
2189
2189
  const paddingLeft = vue.ref();
2190
2190
  const paddingRight = vue.ref();
@@ -2213,18 +2213,18 @@ const __sfc__$1k = vue.defineComponent({
2213
2213
  rootStyles,
2214
2214
  paddingLeft,
2215
2215
  paddingRight,
2216
- n: n$1j,
2216
+ n: n$1k,
2217
2217
  classes: classes$16,
2218
2218
  formatElevation
2219
2219
  };
2220
2220
  }
2221
2221
  });
2222
- __sfc__$1k.render = __render__$1j;
2223
- var stdin_default$3j = __sfc__$1k;
2224
- withInstall(stdin_default$3j);
2225
- withPropsDefaultsSetter(stdin_default$3j, props$1c);
2226
- const _AppBarComponent = stdin_default$3j;
2227
- var stdin_default$3i = stdin_default$3j;
2222
+ __sfc__$1l.render = __render__$1k;
2223
+ var stdin_default$3l = __sfc__$1l;
2224
+ withInstall(stdin_default$3l);
2225
+ withPropsDefaultsSetter(stdin_default$3l, props$1d);
2226
+ const _AppBarComponent = stdin_default$3l;
2227
+ var stdin_default$3k = stdin_default$3l;
2228
2228
  const isHTMLSupportImage = (val) => {
2229
2229
  if (!isString(val)) {
2230
2230
  return false;
@@ -2471,8 +2471,8 @@ const Lazy = {
2471
2471
  }
2472
2472
  };
2473
2473
  const _LazyComponent = Lazy;
2474
- var stdin_default$3h = Lazy;
2475
- const props$1b = {
2474
+ var stdin_default$3j = Lazy;
2475
+ const props$1c = {
2476
2476
  round: {
2477
2477
  type: Boolean,
2478
2478
  default: true
@@ -2499,10 +2499,10 @@ const props$1b = {
2499
2499
  onError: defineListenerProp()
2500
2500
  };
2501
2501
  const isInternalSize$1 = (size) => ["mini", "small", "normal", "large"].includes(size);
2502
- const { name: name$1b, n: n$1i, classes: classes$15 } = createNamespace("avatar");
2502
+ const { name: name$1c, n: n$1j, classes: classes$15 } = createNamespace("avatar");
2503
2503
  const _hoisted_1$t = ["src", "alt", "lazy-loading", "lazy-error"];
2504
2504
  const _hoisted_2$g = ["src", "alt"];
2505
- function __render__$1i(_ctx, _cache) {
2505
+ function __render__$1j(_ctx, _cache) {
2506
2506
  const _directive_lazy = vue.resolveDirective("lazy");
2507
2507
  return vue.openBlock(), vue.createElementBlock(
2508
2508
  "div",
@@ -2573,10 +2573,10 @@ function __render__$1i(_ctx, _cache) {
2573
2573
  /* CLASS, STYLE */
2574
2574
  );
2575
2575
  }
2576
- const __sfc__$1j = vue.defineComponent({
2577
- name: name$1b,
2578
- directives: { Lazy: stdin_default$3h },
2579
- props: props$1b,
2576
+ const __sfc__$1k = vue.defineComponent({
2577
+ name: name$1c,
2578
+ directives: { Lazy: stdin_default$3j },
2579
+ props: props$1c,
2580
2580
  setup(props2) {
2581
2581
  const avatarElement = vue.ref(null);
2582
2582
  const textElement = vue.ref(null);
@@ -2616,7 +2616,7 @@ const __sfc__$1j = vue.defineComponent({
2616
2616
  avatarElement,
2617
2617
  textElement,
2618
2618
  scale,
2619
- n: n$1i,
2619
+ n: n$1j,
2620
2620
  classes: classes$15,
2621
2621
  isInternalSize: isInternalSize$1,
2622
2622
  toSizeUnit,
@@ -2626,18 +2626,18 @@ const __sfc__$1j = vue.defineComponent({
2626
2626
  };
2627
2627
  }
2628
2628
  });
2629
- __sfc__$1j.render = __render__$1i;
2630
- var stdin_default$3g = __sfc__$1j;
2631
- withInstall(stdin_default$3g);
2632
- withPropsDefaultsSetter(stdin_default$3g, props$1b);
2633
- const _AvatarComponent = stdin_default$3g;
2634
- var stdin_default$3f = stdin_default$3g;
2635
- const props$1a = {
2629
+ __sfc__$1k.render = __render__$1j;
2630
+ var stdin_default$3i = __sfc__$1k;
2631
+ withInstall(stdin_default$3i);
2632
+ withPropsDefaultsSetter(stdin_default$3i, props$1c);
2633
+ const _AvatarComponent = stdin_default$3i;
2634
+ var stdin_default$3h = stdin_default$3i;
2635
+ const props$1b = {
2636
2636
  offset: [Number, String],
2637
2637
  vertical: Boolean
2638
2638
  };
2639
- const { name: name$1a, n: n$1h, classes: classes$14 } = createNamespace("avatar-group");
2640
- function __render__$1h(_ctx, _cache) {
2639
+ const { name: name$1b, n: n$1i, classes: classes$14 } = createNamespace("avatar-group");
2640
+ function __render__$1i(_ctx, _cache) {
2641
2641
  return vue.openBlock(), vue.createElementBlock(
2642
2642
  "div",
2643
2643
  {
@@ -2651,9 +2651,9 @@ function __render__$1h(_ctx, _cache) {
2651
2651
  /* CLASS, STYLE */
2652
2652
  );
2653
2653
  }
2654
- const __sfc__$1i = vue.defineComponent({
2655
- name: name$1a,
2656
- props: props$1a,
2654
+ const __sfc__$1j = vue.defineComponent({
2655
+ name: name$1b,
2656
+ props: props$1b,
2657
2657
  setup(props2) {
2658
2658
  const rootStyles = vue.computed(() => {
2659
2659
  if (props2.offset == null) {
@@ -2665,19 +2665,19 @@ const __sfc__$1i = vue.defineComponent({
2665
2665
  });
2666
2666
  return {
2667
2667
  rootStyles,
2668
- n: n$1h,
2668
+ n: n$1i,
2669
2669
  classes: classes$14,
2670
2670
  toSizeUnit
2671
2671
  };
2672
2672
  }
2673
2673
  });
2674
- __sfc__$1i.render = __render__$1h;
2675
- var stdin_default$3e = __sfc__$1i;
2676
- withInstall(stdin_default$3e);
2677
- withPropsDefaultsSetter(stdin_default$3e, props$1a);
2678
- const _AvatarGroupComponent = stdin_default$3e;
2679
- var stdin_default$3d = stdin_default$3e;
2680
- const props$19 = {
2674
+ __sfc__$1j.render = __render__$1i;
2675
+ var stdin_default$3g = __sfc__$1j;
2676
+ withInstall(stdin_default$3g);
2677
+ withPropsDefaultsSetter(stdin_default$3g, props$1b);
2678
+ const _AvatarGroupComponent = stdin_default$3g;
2679
+ var stdin_default$3f = stdin_default$3g;
2680
+ const props$1a = {
2681
2681
  type: {
2682
2682
  type: String,
2683
2683
  default: "circle"
@@ -2691,7 +2691,7 @@ const props$19 = {
2691
2691
  description: String,
2692
2692
  loading: Boolean
2693
2693
  };
2694
- const { name: name$19, n: n$1g, classes: classes$13 } = createNamespace("loading");
2694
+ const { name: name$1a, n: n$1h, classes: classes$13 } = createNamespace("loading");
2695
2695
  const _withScopeId$7 = (n2) => (vue.pushScopeId(""), n2 = n2(), vue.popScopeId(), n2);
2696
2696
  const _hoisted_1$s = /* @__PURE__ */ _withScopeId$7(() => /* @__PURE__ */ vue.createElementVNode(
2697
2697
  "svg",
@@ -2710,7 +2710,7 @@ const _hoisted_1$s = /* @__PURE__ */ _withScopeId$7(() => /* @__PURE__ */ vue.cr
2710
2710
  const _hoisted_2$f = [
2711
2711
  _hoisted_1$s
2712
2712
  ];
2713
- function __render__$1g(_ctx, _cache) {
2713
+ function __render__$1h(_ctx, _cache) {
2714
2714
  return vue.openBlock(), vue.createElementBlock(
2715
2715
  "div",
2716
2716
  {
@@ -2845,9 +2845,9 @@ function __render__$1g(_ctx, _cache) {
2845
2845
  /* CLASS */
2846
2846
  );
2847
2847
  }
2848
- const __sfc__$1h = vue.defineComponent({
2849
- name: name$19,
2850
- props: props$19,
2848
+ const __sfc__$1i = vue.defineComponent({
2849
+ name: name$1a,
2850
+ props: props$1a,
2851
2851
  setup(props2, { slots }) {
2852
2852
  const isShow = vue.computed(() => {
2853
2853
  if (!call(slots.default)) {
@@ -2864,26 +2864,26 @@ const __sfc__$1h = vue.defineComponent({
2864
2864
  return {
2865
2865
  loadingTypeDict,
2866
2866
  isShow,
2867
- n: n$1g,
2867
+ n: n$1h,
2868
2868
  classes: classes$13,
2869
2869
  multiplySizeUnit
2870
2870
  };
2871
2871
  }
2872
2872
  });
2873
- __sfc__$1h.render = __render__$1g;
2874
- var stdin_default$3c = __sfc__$1h;
2875
- withInstall(stdin_default$3c);
2876
- withPropsDefaultsSetter(stdin_default$3c, props$19);
2877
- const _LoadingComponent = stdin_default$3c;
2878
- var stdin_default$3b = stdin_default$3c;
2879
- const props$18 = {
2873
+ __sfc__$1i.render = __render__$1h;
2874
+ var stdin_default$3e = __sfc__$1i;
2875
+ withInstall(stdin_default$3e);
2876
+ withPropsDefaultsSetter(stdin_default$3e, props$1a);
2877
+ const _LoadingComponent = stdin_default$3e;
2878
+ var stdin_default$3d = stdin_default$3e;
2879
+ const props$19 = {
2880
2880
  hovering: {
2881
2881
  type: Boolean,
2882
2882
  default: true
2883
2883
  }
2884
2884
  };
2885
- const { name: name$18, n: n$1f, classes: classes$12 } = createNamespace("hover-overlay");
2886
- function __render__$1f(_ctx, _cache) {
2885
+ const { name: name$19, n: n$1g, classes: classes$12 } = createNamespace("hover-overlay");
2886
+ function __render__$1g(_ctx, _cache) {
2887
2887
  return vue.openBlock(), vue.createElementBlock(
2888
2888
  "div",
2889
2889
  {
@@ -2894,18 +2894,18 @@ function __render__$1f(_ctx, _cache) {
2894
2894
  /* CLASS */
2895
2895
  );
2896
2896
  }
2897
- const __sfc__$1g = vue.defineComponent({
2898
- name: name$18,
2899
- props: props$18,
2897
+ const __sfc__$1h = vue.defineComponent({
2898
+ name: name$19,
2899
+ props: props$19,
2900
2900
  setup: () => ({
2901
- n: n$1f,
2901
+ n: n$1g,
2902
2902
  classes: classes$12
2903
2903
  })
2904
2904
  });
2905
- __sfc__$1g.render = __render__$1f;
2906
- var stdin_default$3a = __sfc__$1g;
2907
- withInstall(stdin_default$3a);
2908
- withPropsDefaultsSetter(stdin_default$3a, props$18);
2905
+ __sfc__$1h.render = __render__$1g;
2906
+ var stdin_default$3c = __sfc__$1h;
2907
+ withInstall(stdin_default$3c);
2908
+ withPropsDefaultsSetter(stdin_default$3c, props$19);
2909
2909
  function useHoverOverlay() {
2910
2910
  const hovering = vue.ref(false);
2911
2911
  const handleHovering = (value) => {
@@ -2916,8 +2916,8 @@ function useHoverOverlay() {
2916
2916
  handleHovering
2917
2917
  };
2918
2918
  }
2919
- const _HoverOverlayComponent = stdin_default$3a;
2920
- var stdin_default$39 = stdin_default$3a;
2919
+ const _HoverOverlayComponent = stdin_default$3c;
2920
+ var stdin_default$3b = stdin_default$3c;
2921
2921
  function shouldDisabled(arg) {
2922
2922
  if (!arg) {
2923
2923
  return false;
@@ -3037,7 +3037,7 @@ const Hover = {
3037
3037
  }
3038
3038
  };
3039
3039
  const _HoverComponent = Hover;
3040
- var stdin_default$38 = Hover;
3040
+ var stdin_default$3a = Hover;
3041
3041
  var __defProp$m = Object.defineProperty;
3042
3042
  var __defProps$7 = Object.defineProperties;
3043
3043
  var __getOwnPropDescs$7 = Object.getOwnPropertyDescriptors;
@@ -3057,7 +3057,7 @@ var __spreadValues$m = (a, b) => {
3057
3057
  return a;
3058
3058
  };
3059
3059
  var __spreadProps$7 = (a, b) => __defProps$7(a, __getOwnPropDescs$7(b));
3060
- const props$17 = {
3060
+ const props$18 = {
3061
3061
  type: String,
3062
3062
  nativeType: {
3063
3063
  type: String,
@@ -3082,9 +3082,9 @@ const props$17 = {
3082
3082
  default: true
3083
3083
  },
3084
3084
  loadingRadius: [Number, String],
3085
- loadingType: pickProps(props$19, "type"),
3086
- loadingSize: pickProps(props$19, "size"),
3087
- loadingColor: __spreadProps$7(__spreadValues$m({}, pickProps(props$19, "color")), {
3085
+ loadingType: pickProps(props$1a, "type"),
3086
+ loadingSize: pickProps(props$1a, "size"),
3087
+ loadingColor: __spreadProps$7(__spreadValues$m({}, pickProps(props$1a, "color")), {
3088
3088
  default: "currentColor"
3089
3089
  }),
3090
3090
  onClick: defineListenerProp(),
@@ -3107,9 +3107,9 @@ function useButtonGroup() {
3107
3107
  bindButtonGroup: bindParent
3108
3108
  };
3109
3109
  }
3110
- const { name: name$17, n: n$1e, classes: classes$11 } = createNamespace("button");
3110
+ const { name: name$18, n: n$1f, classes: classes$11 } = createNamespace("button");
3111
3111
  const _hoisted_1$r = ["type", "disabled"];
3112
- function __render__$1e(_ctx, _cache) {
3112
+ function __render__$1f(_ctx, _cache) {
3113
3113
  const _component_var_loading = vue.resolveComponent("var-loading");
3114
3114
  const _component_var_hover_overlay = vue.resolveComponent("var-hover-overlay");
3115
3115
  const _directive_ripple = vue.resolveDirective("ripple");
@@ -3166,14 +3166,14 @@ function __render__$1e(_ctx, _cache) {
3166
3166
  [_directive_hover, _ctx.handleHovering, "desktop"]
3167
3167
  ]);
3168
3168
  }
3169
- const __sfc__$1f = vue.defineComponent({
3170
- name: name$17,
3169
+ const __sfc__$1g = vue.defineComponent({
3170
+ name: name$18,
3171
3171
  components: {
3172
- VarLoading: stdin_default$3b,
3173
- VarHoverOverlay: stdin_default$39
3172
+ VarLoading: stdin_default$3d,
3173
+ VarHoverOverlay: stdin_default$3b
3174
3174
  },
3175
- directives: { Ripple: stdin_default$3v, Hover: stdin_default$38 },
3176
- props: props$17,
3175
+ directives: { Ripple: stdin_default$3x, Hover: stdin_default$3a },
3176
+ props: props$18,
3177
3177
  setup(props2) {
3178
3178
  const pending = vue.ref(false);
3179
3179
  const { buttonGroup } = useButtonGroup();
@@ -3230,7 +3230,7 @@ const __sfc__$1f = vue.defineComponent({
3230
3230
  pending,
3231
3231
  states,
3232
3232
  hovering,
3233
- n: n$1e,
3233
+ n: n$1f,
3234
3234
  classes: classes$11,
3235
3235
  handleHovering,
3236
3236
  handleClick,
@@ -3238,13 +3238,13 @@ const __sfc__$1f = vue.defineComponent({
3238
3238
  };
3239
3239
  }
3240
3240
  });
3241
- __sfc__$1f.render = __render__$1e;
3242
- var stdin_default$37 = __sfc__$1f;
3243
- withInstall(stdin_default$37);
3244
- withPropsDefaultsSetter(stdin_default$37, props$17);
3245
- const _ButtonComponent = stdin_default$37;
3246
- var stdin_default$36 = stdin_default$37;
3247
- const props$16 = {
3241
+ __sfc__$1g.render = __render__$1f;
3242
+ var stdin_default$39 = __sfc__$1g;
3243
+ withInstall(stdin_default$39);
3244
+ withPropsDefaultsSetter(stdin_default$39, props$18);
3245
+ const _ButtonComponent = stdin_default$39;
3246
+ var stdin_default$38 = stdin_default$39;
3247
+ const props$17 = {
3248
3248
  visibilityHeight: {
3249
3249
  type: [Number, String],
3250
3250
  default: 200
@@ -3262,8 +3262,8 @@ const props$16 = {
3262
3262
  target: [String, Object],
3263
3263
  onClick: defineListenerProp()
3264
3264
  };
3265
- const { name: name$16, n: n$1d, classes: classes$10 } = createNamespace("back-top");
3266
- function __render__$1d(_ctx, _cache) {
3265
+ const { name: name$17, n: n$1e, classes: classes$10 } = createNamespace("back-top");
3266
+ function __render__$1e(_ctx, _cache) {
3267
3267
  const _component_var_icon = vue.resolveComponent("var-icon");
3268
3268
  const _component_var_button = vue.resolveComponent("var-button");
3269
3269
  return vue.openBlock(), vue.createBlock(vue.Teleport, {
@@ -3303,14 +3303,14 @@ function __render__$1d(_ctx, _cache) {
3303
3303
  )
3304
3304
  ], 8, ["disabled"]);
3305
3305
  }
3306
- const __sfc__$1e = vue.defineComponent({
3307
- name: name$16,
3306
+ const __sfc__$1f = vue.defineComponent({
3307
+ name: name$17,
3308
3308
  components: {
3309
- VarButton: stdin_default$36,
3310
- VarIcon: stdin_default$3r
3309
+ VarButton: stdin_default$38,
3310
+ VarIcon: stdin_default$3t
3311
3311
  },
3312
3312
  inheritAttrs: false,
3313
- props: props$16,
3313
+ props: props$17,
3314
3314
  setup(props2) {
3315
3315
  const show = vue.ref(false);
3316
3316
  const backTopEl = vue.ref(null);
@@ -3349,19 +3349,19 @@ const __sfc__$1e = vue.defineComponent({
3349
3349
  show,
3350
3350
  backTopEl,
3351
3351
  toSizeUnit,
3352
- n: n$1d,
3352
+ n: n$1e,
3353
3353
  classes: classes$10,
3354
3354
  handleClick
3355
3355
  };
3356
3356
  }
3357
3357
  });
3358
- __sfc__$1e.render = __render__$1d;
3359
- var stdin_default$35 = __sfc__$1e;
3360
- withInstall(stdin_default$35);
3361
- withPropsDefaultsSetter(stdin_default$35, props$16);
3362
- const _BackTopComponent = stdin_default$35;
3363
- var stdin_default$34 = stdin_default$35;
3364
- const props$15 = {
3358
+ __sfc__$1f.render = __render__$1e;
3359
+ var stdin_default$37 = __sfc__$1f;
3360
+ withInstall(stdin_default$37);
3361
+ withPropsDefaultsSetter(stdin_default$37, props$17);
3362
+ const _BackTopComponent = stdin_default$37;
3363
+ var stdin_default$36 = stdin_default$37;
3364
+ const props$16 = {
3365
3365
  type: {
3366
3366
  type: String,
3367
3367
  default: "default"
@@ -3377,8 +3377,8 @@ const props$15 = {
3377
3377
  },
3378
3378
  maxValue: [String, Number],
3379
3379
  dot: Boolean,
3380
- icon: pickProps(props$1e, "name"),
3381
- namespace: pickProps(props$1e, "namespace"),
3380
+ icon: pickProps(props$1f, "name"),
3381
+ namespace: pickProps(props$1f, "namespace"),
3382
3382
  color: String,
3383
3383
  offsetX: {
3384
3384
  type: [String, Number],
@@ -3405,9 +3405,9 @@ var __spreadValues$l = (a, b) => {
3405
3405
  }
3406
3406
  return a;
3407
3407
  };
3408
- const { name: name$15, n: n$1c, classes: classes$$ } = createNamespace("badge");
3408
+ const { name: name$16, n: n$1d, classes: classes$$ } = createNamespace("badge");
3409
3409
  const _hoisted_1$q = { key: 0 };
3410
- function __render__$1c(_ctx, _cache) {
3410
+ function __render__$1d(_ctx, _cache) {
3411
3411
  const _component_var_icon = vue.resolveComponent("var-icon");
3412
3412
  return vue.openBlock(), vue.createElementBlock(
3413
3413
  "div",
@@ -3465,11 +3465,11 @@ function __render__$1c(_ctx, _cache) {
3465
3465
  /* CLASS */
3466
3466
  );
3467
3467
  }
3468
- const __sfc__$1d = vue.defineComponent({
3469
- name: name$15,
3470
- components: { VarIcon: stdin_default$3r },
3468
+ const __sfc__$1e = vue.defineComponent({
3469
+ name: name$16,
3470
+ components: { VarIcon: stdin_default$3t },
3471
3471
  inheritAttrs: false,
3472
- props: props$15,
3472
+ props: props$16,
3473
3473
  setup(props2) {
3474
3474
  const value = vue.computed(() => {
3475
3475
  const { value: value2, maxValue } = props2;
@@ -3482,18 +3482,18 @@ const __sfc__$1d = vue.defineComponent({
3482
3482
  return {
3483
3483
  value,
3484
3484
  offsetStyle,
3485
- n: n$1c,
3485
+ n: n$1d,
3486
3486
  classes: classes$$
3487
3487
  };
3488
3488
  }
3489
3489
  });
3490
- __sfc__$1d.render = __render__$1c;
3491
- var stdin_default$33 = __sfc__$1d;
3492
- withInstall(stdin_default$33);
3493
- withPropsDefaultsSetter(stdin_default$33, props$15);
3494
- const _BadgeComponent = stdin_default$33;
3495
- var stdin_default$32 = stdin_default$33;
3496
- const props$14 = {
3490
+ __sfc__$1e.render = __render__$1d;
3491
+ var stdin_default$35 = __sfc__$1e;
3492
+ withInstall(stdin_default$35);
3493
+ withPropsDefaultsSetter(stdin_default$35, props$16);
3494
+ const _BadgeComponent = stdin_default$35;
3495
+ var stdin_default$34 = stdin_default$35;
3496
+ const props$15 = {
3497
3497
  active: {
3498
3498
  type: [Number, String],
3499
3499
  default: 0
@@ -3542,7 +3542,7 @@ var __spreadValues$k = (a, b) => {
3542
3542
  }
3543
3543
  return a;
3544
3544
  };
3545
- const { name: name$14, n: n$1b, classes: classes$_ } = createNamespace("bottom-navigation");
3545
+ const { name: name$15, n: n$1c, classes: classes$_ } = createNamespace("bottom-navigation");
3546
3546
  const { n: nItem } = createNamespace("bottom-navigation-item");
3547
3547
  const RIGHT_HALF_SPACE_CLASS = nItem("--right-half-space");
3548
3548
  const LEFT_HALF_SPACE_CLASS = nItem("--left-half-space");
@@ -3550,7 +3550,7 @@ const RIGHT_SPACE_CLASS = nItem("--right-space");
3550
3550
  const defaultFabProps = {
3551
3551
  type: "primary"
3552
3552
  };
3553
- function __render__$1b(_ctx, _cache) {
3553
+ function __render__$1c(_ctx, _cache) {
3554
3554
  const _component_var_button = vue.resolveComponent("var-button");
3555
3555
  return vue.openBlock(), vue.createElementBlock(
3556
3556
  "div",
@@ -3578,10 +3578,10 @@ function __render__$1b(_ctx, _cache) {
3578
3578
  /* CLASS, STYLE */
3579
3579
  );
3580
3580
  }
3581
- const __sfc__$1c = vue.defineComponent({
3582
- name: name$14,
3583
- components: { VarButton: stdin_default$36 },
3584
- props: props$14,
3581
+ const __sfc__$1d = vue.defineComponent({
3582
+ name: name$15,
3583
+ components: { VarButton: stdin_default$38 },
3584
+ props: props$15,
3585
3585
  setup(props2, { slots }) {
3586
3586
  const bottomNavigationDom = vue.ref(null);
3587
3587
  const active = vue.computed(() => props2.active);
@@ -3695,23 +3695,23 @@ const __sfc__$1c = vue.defineComponent({
3695
3695
  length,
3696
3696
  bottomNavigationDom,
3697
3697
  fabProps,
3698
- n: n$1b,
3698
+ n: n$1c,
3699
3699
  classes: classes$_,
3700
3700
  handleFabClick
3701
3701
  };
3702
3702
  }
3703
3703
  });
3704
- __sfc__$1c.render = __render__$1b;
3705
- var stdin_default$31 = __sfc__$1c;
3706
- withInstall(stdin_default$31);
3707
- withPropsDefaultsSetter(stdin_default$31, props$14);
3708
- const _BottomNavigationComponent = stdin_default$31;
3709
- var stdin_default$30 = stdin_default$31;
3710
- const props$13 = {
3704
+ __sfc__$1d.render = __render__$1c;
3705
+ var stdin_default$33 = __sfc__$1d;
3706
+ withInstall(stdin_default$33);
3707
+ withPropsDefaultsSetter(stdin_default$33, props$15);
3708
+ const _BottomNavigationComponent = stdin_default$33;
3709
+ var stdin_default$32 = stdin_default$33;
3710
+ const props$14 = {
3711
3711
  name: String,
3712
3712
  label: String,
3713
- icon: pickProps(props$1e, "name"),
3714
- namespace: pickProps(props$1e, "namespace"),
3713
+ icon: pickProps(props$1f, "name"),
3714
+ namespace: pickProps(props$1f, "namespace"),
3715
3715
  badge: {
3716
3716
  type: [Boolean, Object],
3717
3717
  default: false
@@ -3731,12 +3731,12 @@ function useBottomNavigation() {
3731
3731
  bindBottomNavigation: bindParent
3732
3732
  };
3733
3733
  }
3734
- const { name: name$13, n: n$1a, classes: classes$Z } = createNamespace("bottom-navigation-item");
3734
+ const { name: name$14, n: n$1b, classes: classes$Z } = createNamespace("bottom-navigation-item");
3735
3735
  const defaultBadgeProps = {
3736
3736
  type: "danger",
3737
3737
  dot: true
3738
3738
  };
3739
- function __render__$1a(_ctx, _cache) {
3739
+ function __render__$1b(_ctx, _cache) {
3740
3740
  const _component_var_icon = vue.resolveComponent("var-icon");
3741
3741
  const _component_var_badge = vue.resolveComponent("var-badge");
3742
3742
  const _directive_ripple = vue.resolveDirective("ripple");
@@ -3795,14 +3795,14 @@ function __render__$1a(_ctx, _cache) {
3795
3795
  [_directive_ripple]
3796
3796
  ]);
3797
3797
  }
3798
- const __sfc__$1b = vue.defineComponent({
3799
- name: name$13,
3798
+ const __sfc__$1c = vue.defineComponent({
3799
+ name: name$14,
3800
3800
  components: {
3801
- VarBadge: stdin_default$32,
3802
- VarIcon: stdin_default$3r
3801
+ VarBadge: stdin_default$34,
3802
+ VarIcon: stdin_default$3t
3803
3803
  },
3804
- directives: { Ripple: stdin_default$3v },
3805
- props: props$13,
3804
+ directives: { Ripple: stdin_default$3x },
3805
+ props: props$14,
3806
3806
  setup(props2) {
3807
3807
  const name2 = vue.computed(() => props2.name);
3808
3808
  const badge = vue.computed(() => props2.badge);
@@ -3835,20 +3835,20 @@ const __sfc__$1b = vue.defineComponent({
3835
3835
  active,
3836
3836
  badge,
3837
3837
  badgeProps,
3838
- n: n$1a,
3838
+ n: n$1b,
3839
3839
  classes: classes$Z,
3840
3840
  computeColorStyle,
3841
3841
  handleClick
3842
3842
  };
3843
3843
  }
3844
3844
  });
3845
- __sfc__$1b.render = __render__$1a;
3846
- var stdin_default$2$ = __sfc__$1b;
3847
- withInstall(stdin_default$2$);
3848
- withPropsDefaultsSetter(stdin_default$2$, props$13);
3849
- const _BottomNavigationItemComponent = stdin_default$2$;
3850
- var stdin_default$2_ = stdin_default$2$;
3851
- const props$12 = {
3845
+ __sfc__$1c.render = __render__$1b;
3846
+ var stdin_default$31 = __sfc__$1c;
3847
+ withInstall(stdin_default$31);
3848
+ withPropsDefaultsSetter(stdin_default$31, props$14);
3849
+ const _BottomNavigationItemComponent = stdin_default$31;
3850
+ var stdin_default$30 = stdin_default$31;
3851
+ const props$13 = {
3852
3852
  separator: String,
3853
3853
  onClick: defineListenerProp()
3854
3854
  };
@@ -3876,8 +3876,8 @@ function useBreadcrumb() {
3876
3876
  bindBreadcrumb: bindParent
3877
3877
  };
3878
3878
  }
3879
- const { name: name$12, n: n$19, classes: classes$Y } = createNamespace("breadcrumb");
3880
- function __render__$19(_ctx, _cache) {
3879
+ const { name: name$13, n: n$1a, classes: classes$Y } = createNamespace("breadcrumb");
3880
+ function __render__$1a(_ctx, _cache) {
3881
3881
  return vue.openBlock(), vue.createElementBlock(
3882
3882
  "div",
3883
3883
  {
@@ -3915,9 +3915,9 @@ function __render__$19(_ctx, _cache) {
3915
3915
  /* CLASS */
3916
3916
  );
3917
3917
  }
3918
- const __sfc__$1a = vue.defineComponent({
3919
- name: name$12,
3920
- props: props$12,
3918
+ const __sfc__$1b = vue.defineComponent({
3919
+ name: name$13,
3920
+ props: props$13,
3921
3921
  setup(props2) {
3922
3922
  const { index, breadcrumb, bindBreadcrumb } = useBreadcrumb();
3923
3923
  const isLast = vue.computed(() => index.value === breadcrumb.length.value - 1);
@@ -3930,7 +3930,7 @@ const __sfc__$1a = vue.defineComponent({
3930
3930
  call(props2.onClick, e);
3931
3931
  }
3932
3932
  return {
3933
- n: n$19,
3933
+ n: n$1a,
3934
3934
  classes: classes$Y,
3935
3935
  isLast,
3936
3936
  parentSeparator,
@@ -3938,20 +3938,20 @@ const __sfc__$1a = vue.defineComponent({
3938
3938
  };
3939
3939
  }
3940
3940
  });
3941
- __sfc__$1a.render = __render__$19;
3942
- var stdin_default$2Z = __sfc__$1a;
3943
- withInstall(stdin_default$2Z);
3944
- withPropsDefaultsSetter(stdin_default$2Z, props$12);
3945
- const _BreadcrumbComponent = stdin_default$2Z;
3946
- var stdin_default$2Y = stdin_default$2Z;
3947
- const props$11 = {
3941
+ __sfc__$1b.render = __render__$1a;
3942
+ var stdin_default$2$ = __sfc__$1b;
3943
+ withInstall(stdin_default$2$);
3944
+ withPropsDefaultsSetter(stdin_default$2$, props$13);
3945
+ const _BreadcrumbComponent = stdin_default$2$;
3946
+ var stdin_default$2_ = stdin_default$2$;
3947
+ const props$12 = {
3948
3948
  separator: {
3949
3949
  type: String,
3950
3950
  default: "/"
3951
3951
  }
3952
3952
  };
3953
- const { name: name$11, n: n$18 } = createNamespace("breadcrumbs");
3954
- function __render__$18(_ctx, _cache) {
3953
+ const { name: name$12, n: n$19 } = createNamespace("breadcrumbs");
3954
+ function __render__$19(_ctx, _cache) {
3955
3955
  return vue.openBlock(), vue.createElementBlock(
3956
3956
  "div",
3957
3957
  {
@@ -3964,9 +3964,9 @@ function __render__$18(_ctx, _cache) {
3964
3964
  /* CLASS */
3965
3965
  );
3966
3966
  }
3967
- const __sfc__$19 = vue.defineComponent({
3968
- name: name$11,
3969
- props: props$11,
3967
+ const __sfc__$1a = vue.defineComponent({
3968
+ name: name$12,
3969
+ props: props$12,
3970
3970
  setup(props2) {
3971
3971
  const separator = vue.computed(() => props2.separator);
3972
3972
  const { bindBreadcrumbList, length } = useBreadcrumbsList();
@@ -3975,16 +3975,16 @@ const __sfc__$19 = vue.defineComponent({
3975
3975
  separator
3976
3976
  };
3977
3977
  bindBreadcrumbList(breadcrumbsProvider);
3978
- return { n: n$18 };
3978
+ return { n: n$19 };
3979
3979
  }
3980
3980
  });
3981
- __sfc__$19.render = __render__$18;
3982
- var stdin_default$2X = __sfc__$19;
3983
- withInstall(stdin_default$2X);
3984
- withPropsDefaultsSetter(stdin_default$2X, props$11);
3985
- const _BreadcrumbsComponent = stdin_default$2X;
3986
- var stdin_default$2W = stdin_default$2X;
3987
- const props$10 = {
3981
+ __sfc__$1a.render = __render__$19;
3982
+ var stdin_default$2Z = __sfc__$1a;
3983
+ withInstall(stdin_default$2Z);
3984
+ withPropsDefaultsSetter(stdin_default$2Z, props$12);
3985
+ const _BreadcrumbsComponent = stdin_default$2Z;
3986
+ var stdin_default$2Y = stdin_default$2Z;
3987
+ const props$11 = {
3988
3988
  type: {
3989
3989
  type: String,
3990
3990
  default: "default"
@@ -4005,8 +4005,8 @@ const props$10 = {
4005
4005
  },
4006
4006
  vertical: Boolean
4007
4007
  };
4008
- const { name: name$10, n: n$17, classes: classes$X } = createNamespace("button-group");
4009
- function __render__$17(_ctx, _cache) {
4008
+ const { name: name$11, n: n$18, classes: classes$X } = createNamespace("button-group");
4009
+ function __render__$18(_ctx, _cache) {
4010
4010
  return vue.openBlock(), vue.createElementBlock(
4011
4011
  "div",
4012
4012
  {
@@ -4027,9 +4027,9 @@ function __render__$17(_ctx, _cache) {
4027
4027
  /* CLASS */
4028
4028
  );
4029
4029
  }
4030
- const __sfc__$18 = vue.defineComponent({
4031
- name: name$10,
4032
- props: props$10,
4030
+ const __sfc__$19 = vue.defineComponent({
4031
+ name: name$11,
4032
+ props: props$11,
4033
4033
  setup(props2) {
4034
4034
  const { bindButtons } = useButtons();
4035
4035
  const buttonGroupProvider = {
@@ -4042,19 +4042,19 @@ const __sfc__$18 = vue.defineComponent({
4042
4042
  };
4043
4043
  bindButtons(buttonGroupProvider);
4044
4044
  return {
4045
- n: n$17,
4045
+ n: n$18,
4046
4046
  classes: classes$X,
4047
4047
  formatElevation
4048
4048
  };
4049
4049
  }
4050
4050
  });
4051
- __sfc__$18.render = __render__$17;
4052
- var stdin_default$2V = __sfc__$18;
4053
- withInstall(stdin_default$2V);
4054
- withPropsDefaultsSetter(stdin_default$2V, props$10);
4055
- const _ButtonGroupComponent = stdin_default$2V;
4056
- var stdin_default$2U = stdin_default$2V;
4057
- const props$$ = {
4051
+ __sfc__$19.render = __render__$18;
4052
+ var stdin_default$2X = __sfc__$19;
4053
+ withInstall(stdin_default$2X);
4054
+ withPropsDefaultsSetter(stdin_default$2X, props$11);
4055
+ const _ButtonGroupComponent = stdin_default$2X;
4056
+ var stdin_default$2W = stdin_default$2X;
4057
+ const props$10 = {
4058
4058
  src: String,
4059
4059
  fit: {
4060
4060
  type: String,
@@ -4104,10 +4104,10 @@ var __async$e = (__this, __arguments, generator) => {
4104
4104
  step((generator = generator.apply(__this, __arguments)).next());
4105
4105
  });
4106
4106
  };
4107
- const { name: name$$, n: n$16, classes: classes$W } = createNamespace("card");
4107
+ const { name: name$10, n: n$17, classes: classes$W } = createNamespace("card");
4108
4108
  const RIPPLE_DELAY = 500;
4109
4109
  const _hoisted_1$p = ["src", "alt"];
4110
- function __render__$16(_ctx, _cache) {
4110
+ function __render__$17(_ctx, _cache) {
4111
4111
  const _component_var_icon = vue.resolveComponent("var-icon");
4112
4112
  const _component_var_button = vue.resolveComponent("var-button");
4113
4113
  const _directive_ripple = vue.resolveDirective("ripple");
@@ -4134,6 +4134,8 @@ function __render__$16(_ctx, _cache) {
4134
4134
  left: _ctx.floaterLeft,
4135
4135
  overflow: _ctx.floaterOverflow,
4136
4136
  position: _ctx.floaterPosition,
4137
+ zIndex: _ctx.floated ? _ctx.zIndex : void 0,
4138
+ background: _ctx.outline && !_ctx.floated ? "transparent" : void 0,
4137
4139
  transition: _ctx.floated ? `background-color ${_ctx.floatingDuration}ms, color ${_ctx.floatingDuration}ms, width ${_ctx.floatingDuration}ms, height ${_ctx.floatingDuration}ms, top ${_ctx.floatingDuration}ms, left ${_ctx.floatingDuration}ms` : void 0
4138
4140
  })
4139
4141
  },
@@ -4284,14 +4286,14 @@ function __render__$16(_ctx, _cache) {
4284
4286
  [_directive_ripple, { disabled: !_ctx.ripple || _ctx.floater }]
4285
4287
  ]);
4286
4288
  }
4287
- const __sfc__$17 = vue.defineComponent({
4288
- name: name$$,
4289
- directives: { Ripple: stdin_default$3v },
4289
+ const __sfc__$18 = vue.defineComponent({
4290
+ name: name$10,
4291
+ directives: { Ripple: stdin_default$3x },
4290
4292
  components: {
4291
- VarIcon: stdin_default$3r,
4292
- VarButton: stdin_default$36
4293
+ VarIcon: stdin_default$3t,
4294
+ VarButton: stdin_default$38
4293
4295
  },
4294
- props: props$$,
4296
+ props: props$10,
4295
4297
  setup(props2) {
4296
4298
  const card = vue.ref(null);
4297
4299
  const cardFloater = vue.ref(null);
@@ -4409,7 +4411,7 @@ const __sfc__$17 = vue.defineComponent({
4409
4411
  isRow,
4410
4412
  showFloatingButtons,
4411
4413
  floated,
4412
- n: n$16,
4414
+ n: n$17,
4413
4415
  classes: classes$W,
4414
4416
  toSizeUnit,
4415
4417
  close,
@@ -4418,16 +4420,16 @@ const __sfc__$17 = vue.defineComponent({
4418
4420
  };
4419
4421
  }
4420
4422
  });
4421
- __sfc__$17.render = __render__$16;
4422
- var stdin_default$2T = __sfc__$17;
4423
- withInstall(stdin_default$2T);
4424
- withPropsDefaultsSetter(stdin_default$2T, props$$);
4425
- const _CardComponent = stdin_default$2T;
4426
- var stdin_default$2S = stdin_default$2T;
4427
- const props$_ = {
4423
+ __sfc__$18.render = __render__$17;
4424
+ var stdin_default$2V = __sfc__$18;
4425
+ withInstall(stdin_default$2V);
4426
+ withPropsDefaultsSetter(stdin_default$2V, props$10);
4427
+ const _CardComponent = stdin_default$2V;
4428
+ var stdin_default$2U = stdin_default$2V;
4429
+ const props$$ = {
4428
4430
  title: [Number, String],
4429
- icon: pickProps(props$1e, "name"),
4430
- namespace: pickProps(props$1e, "namespace"),
4431
+ icon: pickProps(props$1f, "name"),
4432
+ namespace: pickProps(props$1f, "namespace"),
4431
4433
  description: String,
4432
4434
  border: Boolean,
4433
4435
  borderOffset: [Number, String],
@@ -4438,8 +4440,8 @@ const props$_ = {
4438
4440
  ripple: Boolean,
4439
4441
  onClick: defineListenerProp()
4440
4442
  };
4441
- const { name: name$_, n: n$15, classes: classes$V } = createNamespace("cell");
4442
- function __render__$15(_ctx, _cache) {
4443
+ const { name: name$$, n: n$16, classes: classes$V } = createNamespace("cell");
4444
+ function __render__$16(_ctx, _cache) {
4443
4445
  const _component_var_icon = vue.resolveComponent("var-icon");
4444
4446
  const _directive_ripple = vue.resolveDirective("ripple");
4445
4447
  return vue.withDirectives((vue.openBlock(), vue.createElementBlock(
@@ -4520,11 +4522,11 @@ function __render__$15(_ctx, _cache) {
4520
4522
  [_directive_ripple, { disabled: !_ctx.ripple }]
4521
4523
  ]);
4522
4524
  }
4523
- const __sfc__$16 = vue.defineComponent({
4524
- name: name$_,
4525
- components: { VarIcon: stdin_default$3r },
4526
- directives: { Ripple: stdin_default$3v },
4527
- props: props$_,
4525
+ const __sfc__$17 = vue.defineComponent({
4526
+ name: name$$,
4527
+ components: { VarIcon: stdin_default$3t },
4528
+ directives: { Ripple: stdin_default$3x },
4529
+ props: props$$,
4528
4530
  setup(props2) {
4529
4531
  const borderOffsetStyles = vue.computed(() => {
4530
4532
  if (props2.borderOffset == null) {
@@ -4540,20 +4542,20 @@ const __sfc__$16 = vue.defineComponent({
4540
4542
  }
4541
4543
  return {
4542
4544
  borderOffsetStyles,
4543
- n: n$15,
4545
+ n: n$16,
4544
4546
  classes: classes$V,
4545
4547
  toSizeUnit,
4546
4548
  handleClick
4547
4549
  };
4548
4550
  }
4549
4551
  });
4550
- __sfc__$16.render = __render__$15;
4551
- var stdin_default$2R = __sfc__$16;
4552
- withInstall(stdin_default$2R);
4553
- withPropsDefaultsSetter(stdin_default$2R, props$_);
4554
- const _CellComponent = stdin_default$2R;
4555
- var stdin_default$2Q = stdin_default$2R;
4556
- const props$Z = {
4552
+ __sfc__$17.render = __render__$16;
4553
+ var stdin_default$2T = __sfc__$17;
4554
+ withInstall(stdin_default$2T);
4555
+ withPropsDefaultsSetter(stdin_default$2T, props$$);
4556
+ const _CellComponent = stdin_default$2T;
4557
+ var stdin_default$2S = stdin_default$2T;
4558
+ const props$_ = {
4557
4559
  errorMessage: {
4558
4560
  type: String,
4559
4561
  default: ""
@@ -4563,10 +4565,10 @@ const props$Z = {
4563
4565
  default: ""
4564
4566
  }
4565
4567
  };
4566
- const { name: name$Z, n: n$14 } = createNamespace("form-details");
4568
+ const { name: name$_, n: n$15 } = createNamespace("form-details");
4567
4569
  const _hoisted_1$o = { key: 0 };
4568
4570
  const _hoisted_2$e = { key: 0 };
4569
- function __render__$14(_ctx, _cache) {
4571
+ function __render__$15(_ctx, _cache) {
4570
4572
  return vue.openBlock(), vue.createBlock(vue.Transition, {
4571
4573
  name: _ctx.n()
4572
4574
  }, {
@@ -4639,18 +4641,18 @@ function __render__$14(_ctx, _cache) {
4639
4641
  /* FORWARDED */
4640
4642
  }, 8, ["name"]);
4641
4643
  }
4642
- const __sfc__$15 = vue.defineComponent({
4643
- name: name$Z,
4644
- props: props$Z,
4645
- setup: () => ({ n: n$14 })
4644
+ const __sfc__$16 = vue.defineComponent({
4645
+ name: name$_,
4646
+ props: props$_,
4647
+ setup: () => ({ n: n$15 })
4646
4648
  });
4647
- __sfc__$15.render = __render__$14;
4648
- var stdin_default$2P = __sfc__$15;
4649
- withInstall(stdin_default$2P);
4650
- withPropsDefaultsSetter(stdin_default$2P, props$Z);
4651
- const _FormDetailsComponent = stdin_default$2P;
4652
- var stdin_default$2O = stdin_default$2P;
4653
- const props$Y = {
4649
+ __sfc__$16.render = __render__$15;
4650
+ var stdin_default$2R = __sfc__$16;
4651
+ withInstall(stdin_default$2R);
4652
+ withPropsDefaultsSetter(stdin_default$2R, props$_);
4653
+ const _FormDetailsComponent = stdin_default$2R;
4654
+ var stdin_default$2Q = stdin_default$2R;
4655
+ const props$Z = {
4654
4656
  modelValue: {
4655
4657
  type: [String, Number, Boolean, Object, Array],
4656
4658
  default: false
@@ -4744,8 +4746,8 @@ function useFormItems() {
4744
4746
  bindFormItems: bindChildren
4745
4747
  };
4746
4748
  }
4747
- const { name: name$Y, n: n$13, classes: classes$U } = createNamespace("checkbox");
4748
- function __render__$13(_ctx, _cache) {
4749
+ const { name: name$Z, n: n$14, classes: classes$U } = createNamespace("checkbox");
4750
+ function __render__$14(_ctx, _cache) {
4749
4751
  const _component_var_icon = vue.resolveComponent("var-icon");
4750
4752
  const _component_var_hover_overlay = vue.resolveComponent("var-hover-overlay");
4751
4753
  const _component_var_form_details = vue.resolveComponent("var-form-details");
@@ -4812,9 +4814,10 @@ function __render__$13(_ctx, _cache) {
4812
4814
  [_directive_hover, _ctx.handleHovering, "desktop"],
4813
4815
  [_directive_ripple, { disabled: _ctx.formReadonly || _ctx.readonly || _ctx.formDisabled || _ctx.disabled || !_ctx.ripple }]
4814
4816
  ]),
4815
- vue.createElementVNode(
4817
+ _ctx.$slots.default ? (vue.openBlock(), vue.createElementBlock(
4816
4818
  "div",
4817
4819
  {
4820
+ key: 0,
4818
4821
  class: vue.normalizeClass(
4819
4822
  _ctx.classes(
4820
4823
  _ctx.n("text"),
@@ -4828,7 +4831,7 @@ function __render__$13(_ctx, _cache) {
4828
4831
  ],
4829
4832
  2
4830
4833
  /* CLASS */
4831
- )
4834
+ )) : vue.createCommentVNode("v-if", true)
4832
4835
  ],
4833
4836
  2
4834
4837
  /* CLASS */
@@ -4839,15 +4842,15 @@ function __render__$13(_ctx, _cache) {
4839
4842
  /* CLASS */
4840
4843
  );
4841
4844
  }
4842
- const __sfc__$14 = vue.defineComponent({
4843
- name: name$Y,
4844
- directives: { Ripple: stdin_default$3v, Hover: stdin_default$38 },
4845
+ const __sfc__$15 = vue.defineComponent({
4846
+ name: name$Z,
4847
+ directives: { Ripple: stdin_default$3x, Hover: stdin_default$3a },
4845
4848
  components: {
4846
- VarIcon: stdin_default$3r,
4847
- VarFormDetails: stdin_default$2O,
4848
- VarHoverOverlay: stdin_default$39
4849
+ VarIcon: stdin_default$3t,
4850
+ VarFormDetails: stdin_default$2Q,
4851
+ VarHoverOverlay: stdin_default$3b
4849
4852
  },
4850
- props: props$Y,
4853
+ props: props$Z,
4851
4854
  setup(props2) {
4852
4855
  const value = useVModel(props2, "modelValue");
4853
4856
  const isIndeterminate = useVModel(props2, "indeterminate");
@@ -4936,7 +4939,7 @@ const __sfc__$14 = vue.defineComponent({
4936
4939
  formDisabled: form == null ? void 0 : form.disabled,
4937
4940
  formReadonly: form == null ? void 0 : form.readonly,
4938
4941
  hovering,
4939
- n: n$13,
4942
+ n: n$14,
4940
4943
  classes: classes$U,
4941
4944
  handleHovering,
4942
4945
  handleClick,
@@ -4947,13 +4950,13 @@ const __sfc__$14 = vue.defineComponent({
4947
4950
  };
4948
4951
  }
4949
4952
  });
4950
- __sfc__$14.render = __render__$13;
4951
- var stdin_default$2N = __sfc__$14;
4952
- withInstall(stdin_default$2N);
4953
- withPropsDefaultsSetter(stdin_default$2N, props$Y);
4954
- const _CheckboxComponent = stdin_default$2N;
4955
- var stdin_default$2M = stdin_default$2N;
4956
- const props$X = {
4953
+ __sfc__$15.render = __render__$14;
4954
+ var stdin_default$2P = __sfc__$15;
4955
+ withInstall(stdin_default$2P);
4956
+ withPropsDefaultsSetter(stdin_default$2P, props$Z);
4957
+ const _CheckboxComponent = stdin_default$2P;
4958
+ var stdin_default$2O = stdin_default$2P;
4959
+ const props$Y = {
4957
4960
  modelValue: {
4958
4961
  type: Array,
4959
4962
  default: () => []
@@ -4971,8 +4974,8 @@ const props$X = {
4971
4974
  onChange: defineListenerProp(),
4972
4975
  "onUpdate:modelValue": defineListenerProp()
4973
4976
  };
4974
- const { name: name$X, n: n$12, classes: classes$T } = createNamespace("checkbox-group");
4975
- function __render__$12(_ctx, _cache) {
4977
+ const { name: name$Y, n: n$13, classes: classes$T } = createNamespace("checkbox-group");
4978
+ function __render__$13(_ctx, _cache) {
4976
4979
  const _component_var_form_details = vue.resolveComponent("var-form-details");
4977
4980
  return vue.openBlock(), vue.createElementBlock(
4978
4981
  "div",
@@ -4997,10 +5000,10 @@ function __render__$12(_ctx, _cache) {
4997
5000
  /* CLASS */
4998
5001
  );
4999
5002
  }
5000
- const __sfc__$13 = vue.defineComponent({
5001
- name: name$X,
5002
- components: { VarFormDetails: stdin_default$2O },
5003
- props: props$X,
5003
+ const __sfc__$14 = vue.defineComponent({
5004
+ name: name$Y,
5005
+ components: { VarFormDetails: stdin_default$2Q },
5006
+ props: props$Y,
5004
5007
  setup(props2) {
5005
5008
  const max2 = vue.computed(() => props2.max);
5006
5009
  const checkedCount = vue.computed(() => props2.modelValue.length);
@@ -5081,7 +5084,7 @@ const __sfc__$13 = vue.defineComponent({
5081
5084
  }
5082
5085
  return {
5083
5086
  errorMessage,
5084
- n: n$12,
5087
+ n: n$13,
5085
5088
  classes: classes$T,
5086
5089
  checkAll: checkAll2,
5087
5090
  inverseAll,
@@ -5091,13 +5094,13 @@ const __sfc__$13 = vue.defineComponent({
5091
5094
  };
5092
5095
  }
5093
5096
  });
5094
- __sfc__$13.render = __render__$12;
5095
- var stdin_default$2L = __sfc__$13;
5096
- withInstall(stdin_default$2L);
5097
- withPropsDefaultsSetter(stdin_default$2L, props$X);
5098
- const _CheckboxGroupComponent = stdin_default$2L;
5099
- var stdin_default$2K = stdin_default$2L;
5100
- const props$W = {
5097
+ __sfc__$14.render = __render__$13;
5098
+ var stdin_default$2N = __sfc__$14;
5099
+ withInstall(stdin_default$2N);
5100
+ withPropsDefaultsSetter(stdin_default$2N, props$Y);
5101
+ const _CheckboxGroupComponent = stdin_default$2N;
5102
+ var stdin_default$2M = stdin_default$2N;
5103
+ const props$X = {
5101
5104
  type: {
5102
5105
  type: String,
5103
5106
  default: "default"
@@ -5108,8 +5111,8 @@ const props$W = {
5108
5111
  },
5109
5112
  color: String,
5110
5113
  textColor: String,
5111
- iconName: pickProps(props$1e, "name"),
5112
- namespace: pickProps(props$1e, "namespace"),
5114
+ iconName: pickProps(props$1f, "name"),
5115
+ namespace: pickProps(props$1f, "namespace"),
5113
5116
  plain: Boolean,
5114
5117
  round: {
5115
5118
  type: Boolean,
@@ -5121,8 +5124,8 @@ const props$W = {
5121
5124
  closeable: Boolean,
5122
5125
  onClose: defineListenerProp()
5123
5126
  };
5124
- const { name: name$W, n: n$11, classes: classes$S } = createNamespace("chip");
5125
- function __render__$11(_ctx, _cache) {
5127
+ const { name: name$X, n: n$12, classes: classes$S } = createNamespace("chip");
5128
+ function __render__$12(_ctx, _cache) {
5126
5129
  const _component_var_icon = vue.resolveComponent("var-icon");
5127
5130
  return vue.openBlock(), vue.createBlock(vue.Transition, {
5128
5131
  name: _ctx.n("$-fade")
@@ -5173,13 +5176,13 @@ function __render__$11(_ctx, _cache) {
5173
5176
  /* FORWARDED */
5174
5177
  }, 8, ["name"]);
5175
5178
  }
5176
- const __sfc__$12 = vue.defineComponent({
5177
- name: name$W,
5179
+ const __sfc__$13 = vue.defineComponent({
5180
+ name: name$X,
5178
5181
  components: {
5179
- VarIcon: stdin_default$3r
5182
+ VarIcon: stdin_default$3t
5180
5183
  },
5181
5184
  inheritAttrs: false,
5182
- props: props$W,
5185
+ props: props$X,
5183
5186
  setup(props2) {
5184
5187
  const chipStyle = vue.computed(() => {
5185
5188
  const { plain, textColor, color } = props2;
@@ -5196,10 +5199,10 @@ const __sfc__$12 = vue.defineComponent({
5196
5199
  });
5197
5200
  const contentClass = vue.computed(() => {
5198
5201
  const { size, block, type, plain, round: round2 } = props2;
5199
- const blockClass = block ? n$11("$--flex") : n$11("$--inline-flex");
5200
- const plainTypeClass = plain ? `${n$11("plain")} ${n$11(`plain-${type}`)}` : n$11(`--${type}`);
5201
- const roundClass = round2 ? n$11("--round") : null;
5202
- return [n$11(`--${size}`), blockClass, plainTypeClass, roundClass];
5202
+ const blockClass = block ? n$12("$--flex") : n$12("$--inline-flex");
5203
+ const plainTypeClass = plain ? `${n$12("plain")} ${n$12(`plain-${type}`)}` : n$12(`--${type}`);
5204
+ const roundClass = round2 ? n$12("--round") : null;
5205
+ return [n$12(`--${size}`), blockClass, plainTypeClass, roundClass];
5203
5206
  });
5204
5207
  function handleClose(e) {
5205
5208
  call(props2.onClose, e);
@@ -5207,19 +5210,19 @@ const __sfc__$12 = vue.defineComponent({
5207
5210
  return {
5208
5211
  chipStyle,
5209
5212
  contentClass,
5210
- n: n$11,
5213
+ n: n$12,
5211
5214
  classes: classes$S,
5212
5215
  handleClose
5213
5216
  };
5214
5217
  }
5215
5218
  });
5216
- __sfc__$12.render = __render__$11;
5217
- var stdin_default$2J = __sfc__$12;
5218
- withInstall(stdin_default$2J);
5219
- withPropsDefaultsSetter(stdin_default$2J, props$W);
5220
- const _ChipComponent = stdin_default$2J;
5221
- var stdin_default$2I = stdin_default$2J;
5222
- const props$V = {
5219
+ __sfc__$13.render = __render__$12;
5220
+ var stdin_default$2L = __sfc__$13;
5221
+ withInstall(stdin_default$2L);
5222
+ withPropsDefaultsSetter(stdin_default$2L, props$X);
5223
+ const _ChipComponent = stdin_default$2L;
5224
+ var stdin_default$2K = stdin_default$2L;
5225
+ const props$W = {
5223
5226
  span: {
5224
5227
  type: [String, Number],
5225
5228
  default: 24
@@ -5258,8 +5261,8 @@ function useRow() {
5258
5261
  bindRow: bindParent
5259
5262
  };
5260
5263
  }
5261
- const { name: name$V, n: n$10, classes: classes$R } = createNamespace("col");
5262
- function __render__$10(_ctx, _cache) {
5264
+ const { name: name$W, n: n$11, classes: classes$R } = createNamespace("col");
5265
+ function __render__$11(_ctx, _cache) {
5263
5266
  return vue.openBlock(), vue.createElementBlock(
5264
5267
  "div",
5265
5268
  {
@@ -5294,9 +5297,9 @@ function __render__$10(_ctx, _cache) {
5294
5297
  /* CLASS, STYLE */
5295
5298
  );
5296
5299
  }
5297
- const __sfc__$11 = vue.defineComponent({
5298
- name: name$V,
5299
- props: props$V,
5300
+ const __sfc__$12 = vue.defineComponent({
5301
+ name: name$W,
5302
+ props: props$W,
5300
5303
  setup(props2) {
5301
5304
  const span = vue.computed(() => toNumber(props2.span));
5302
5305
  const offset2 = vue.computed(() => toNumber(props2.offset));
@@ -5318,10 +5321,10 @@ const __sfc__$11 = vue.defineComponent({
5318
5321
  }
5319
5322
  if (isPlainObject(size)) {
5320
5323
  const { offset: offset22, span: span2 } = size;
5321
- Number(span2) >= 0 && classes2.push(n$10(`--span-${mode}-${span2}`));
5322
- offset22 && classes2.push(n$10(`--offset-${mode}-${offset22}`));
5324
+ Number(span2) >= 0 && classes2.push(n$11(`--span-${mode}-${span2}`));
5325
+ offset22 && classes2.push(n$11(`--offset-${mode}-${offset22}`));
5323
5326
  } else {
5324
- Number(size) >= 0 && classes2.push(n$10(`--span-${mode}-${size}`));
5327
+ Number(size) >= 0 && classes2.push(n$11(`--span-${mode}-${size}`));
5325
5328
  }
5326
5329
  return classes2;
5327
5330
  }
@@ -5332,7 +5335,7 @@ const __sfc__$11 = vue.defineComponent({
5332
5335
  span,
5333
5336
  offset: offset2,
5334
5337
  padding,
5335
- n: n$10,
5338
+ n: n$11,
5336
5339
  classes: classes$R,
5337
5340
  toNumber,
5338
5341
  toSizeUnit,
@@ -5342,12 +5345,12 @@ const __sfc__$11 = vue.defineComponent({
5342
5345
  };
5343
5346
  }
5344
5347
  });
5345
- __sfc__$11.render = __render__$10;
5346
- var stdin_default$2H = __sfc__$11;
5347
- withInstall(stdin_default$2H);
5348
- withPropsDefaultsSetter(stdin_default$2H, props$V);
5349
- const _ColComponent = stdin_default$2H;
5350
- var stdin_default$2G = stdin_default$2H;
5348
+ __sfc__$12.render = __render__$11;
5349
+ var stdin_default$2J = __sfc__$12;
5350
+ withInstall(stdin_default$2J);
5351
+ withPropsDefaultsSetter(stdin_default$2J, props$W);
5352
+ const _ColComponent = stdin_default$2J;
5353
+ var stdin_default$2I = stdin_default$2J;
5351
5354
  const COLLAPSE_BIND_COLLAPSE_ITEM_KEY = Symbol("COLLAPSE_BIND_COLLAPSE_ITEM_KEY");
5352
5355
  function useCollapseItem() {
5353
5356
  const { childProviders, length, bindChildren } = useChildren(
@@ -5359,7 +5362,7 @@ function useCollapseItem() {
5359
5362
  bindCollapseItems: bindChildren
5360
5363
  };
5361
5364
  }
5362
- const props$U = {
5365
+ const props$V = {
5363
5366
  modelValue: [Array, String, Number],
5364
5367
  accordion: Boolean,
5365
5368
  offset: {
@@ -5377,8 +5380,8 @@ const props$U = {
5377
5380
  onChange: defineListenerProp(),
5378
5381
  "onUpdate:modelValue": defineListenerProp()
5379
5382
  };
5380
- const { name: name$U, n: n$$ } = createNamespace("collapse");
5381
- function __render__$$(_ctx, _cache) {
5383
+ const { name: name$V, n: n$10 } = createNamespace("collapse");
5384
+ function __render__$10(_ctx, _cache) {
5382
5385
  return vue.openBlock(), vue.createElementBlock(
5383
5386
  "div",
5384
5387
  {
@@ -5391,9 +5394,9 @@ function __render__$$(_ctx, _cache) {
5391
5394
  /* CLASS */
5392
5395
  );
5393
5396
  }
5394
- const __sfc__$10 = vue.defineComponent({
5395
- name: name$U,
5396
- props: props$U,
5397
+ const __sfc__$11 = vue.defineComponent({
5398
+ name: name$V,
5399
+ props: props$V,
5397
5400
  setup(props2) {
5398
5401
  const offset2 = vue.computed(() => props2.offset);
5399
5402
  const divider = vue.computed(() => props2.divider);
@@ -5477,17 +5480,17 @@ const __sfc__$10 = vue.defineComponent({
5477
5480
  };
5478
5481
  return {
5479
5482
  divider,
5480
- n: n$$,
5483
+ n: n$10,
5481
5484
  toggleAll
5482
5485
  };
5483
5486
  }
5484
5487
  });
5485
- __sfc__$10.render = __render__$$;
5486
- var stdin_default$2F = __sfc__$10;
5487
- withInstall(stdin_default$2F);
5488
- withPropsDefaultsSetter(stdin_default$2F, props$U);
5489
- const _CollapseComponent = stdin_default$2F;
5490
- var stdin_default$2E = stdin_default$2F;
5488
+ __sfc__$11.render = __render__$10;
5489
+ var stdin_default$2H = __sfc__$11;
5490
+ withInstall(stdin_default$2H);
5491
+ withPropsDefaultsSetter(stdin_default$2H, props$V);
5492
+ const _CollapseComponent = stdin_default$2H;
5493
+ var stdin_default$2G = stdin_default$2H;
5491
5494
  function useCollapse() {
5492
5495
  const { parentProvider, index, bindParent } = useParent(
5493
5496
  COLLAPSE_BIND_COLLAPSE_ITEM_KEY
@@ -5501,7 +5504,7 @@ function useCollapse() {
5501
5504
  bindCollapse: bindParent
5502
5505
  };
5503
5506
  }
5504
- const props$T = {
5507
+ const props$U = {
5505
5508
  name: [String, Number],
5506
5509
  title: String,
5507
5510
  icon: {
@@ -5530,8 +5533,70 @@ var __async$d = (__this, __arguments, generator) => {
5530
5533
  step((generator = generator.apply(__this, __arguments)).next());
5531
5534
  });
5532
5535
  };
5533
- const { name: name$T, n: n$_, classes: classes$Q } = createNamespace("collapse-item");
5534
- function __render__$_(_ctx, _cache) {
5536
+ function useCollapseTransition(options) {
5537
+ const { contentEl, showContent, expand } = options;
5538
+ let isInitToTrigger = true;
5539
+ vue.watch(
5540
+ expand,
5541
+ (value) => {
5542
+ vue.nextTick(() => {
5543
+ value ? open() : close();
5544
+ });
5545
+ },
5546
+ { immediate: true }
5547
+ );
5548
+ function open() {
5549
+ return __async$d(this, null, function* () {
5550
+ if (!contentEl.value) {
5551
+ return;
5552
+ }
5553
+ contentEl.value.style.height = "";
5554
+ showContent.value = true;
5555
+ yield raf();
5556
+ if (!contentEl.value) {
5557
+ return;
5558
+ }
5559
+ const { offsetHeight } = contentEl.value;
5560
+ contentEl.value.style.height = "0px";
5561
+ yield raf();
5562
+ if (!contentEl.value) {
5563
+ return;
5564
+ }
5565
+ contentEl.value.style.height = offsetHeight + "px";
5566
+ if (!isInitToTrigger) {
5567
+ return;
5568
+ }
5569
+ yield doubleRaf();
5570
+ if (isInitToTrigger) {
5571
+ handleTransitionEnd();
5572
+ }
5573
+ });
5574
+ }
5575
+ const close = () => __async$d(this, null, function* () {
5576
+ if (!contentEl.value) {
5577
+ return;
5578
+ }
5579
+ const { offsetHeight } = contentEl.value;
5580
+ contentEl.value.style.height = offsetHeight + "px";
5581
+ yield raf();
5582
+ contentEl.value.style.height = "0px";
5583
+ });
5584
+ const handleTransitionEnd = () => {
5585
+ if (!expand.value) {
5586
+ showContent.value = false;
5587
+ }
5588
+ contentEl.value.style.height = "";
5589
+ };
5590
+ const handleTransitionStart = () => {
5591
+ isInitToTrigger = false;
5592
+ };
5593
+ return {
5594
+ handleTransitionEnd,
5595
+ handleTransitionStart
5596
+ };
5597
+ }
5598
+ const { name: name$U, n: n$$, classes: classes$Q } = createNamespace("collapse-item");
5599
+ function __render__$$(_ctx, _cache) {
5535
5600
  const _component_var_icon = vue.resolveComponent("var-icon");
5536
5601
  return vue.openBlock(), vue.createElementBlock(
5537
5602
  "div",
@@ -5556,9 +5621,10 @@ function __render__$_(_ctx, _cache) {
5556
5621
  onClick: _cache[0] || (_cache[0] = (...args) => _ctx.toggle && _ctx.toggle(...args))
5557
5622
  },
5558
5623
  [
5559
- vue.createElementVNode(
5624
+ _ctx.$slots.title || _ctx.title ? (vue.openBlock(), vue.createElementBlock(
5560
5625
  "div",
5561
5626
  {
5627
+ key: 0,
5562
5628
  class: vue.normalizeClass(_ctx.n("header-title"))
5563
5629
  },
5564
5630
  [
@@ -5572,7 +5638,7 @@ function __render__$_(_ctx, _cache) {
5572
5638
  ],
5573
5639
  2
5574
5640
  /* CLASS */
5575
- ),
5641
+ )) : vue.createCommentVNode("v-if", true),
5576
5642
  vue.createElementVNode(
5577
5643
  "div",
5578
5644
  {
@@ -5605,8 +5671,8 @@ function __render__$_(_ctx, _cache) {
5605
5671
  {
5606
5672
  class: vue.normalizeClass(_ctx.n("content")),
5607
5673
  ref: "contentEl",
5608
- onTransitionend: _cache[1] || (_cache[1] = (...args) => _ctx.transitionend && _ctx.transitionend(...args)),
5609
- onTransitionstart: _cache[2] || (_cache[2] = (...args) => _ctx.start && _ctx.start(...args))
5674
+ onTransitionend: _cache[1] || (_cache[1] = (...args) => _ctx.handleTransitionEnd && _ctx.handleTransitionEnd(...args)),
5675
+ onTransitionstart: _cache[2] || (_cache[2] = (...args) => _ctx.handleTransitionStart && _ctx.handleTransitionStart(...args))
5610
5676
  },
5611
5677
  [
5612
5678
  vue.createElementVNode(
@@ -5631,12 +5697,12 @@ function __render__$_(_ctx, _cache) {
5631
5697
  /* CLASS, STYLE */
5632
5698
  );
5633
5699
  }
5634
- const __sfc__$$ = vue.defineComponent({
5635
- name: name$T,
5700
+ const __sfc__$10 = vue.defineComponent({
5701
+ name: name$U,
5636
5702
  components: {
5637
- VarIcon: stdin_default$3r
5703
+ VarIcon: stdin_default$3t
5638
5704
  },
5639
- props: props$T,
5705
+ props: props$U,
5640
5706
  setup(props2) {
5641
5707
  const isShow = vue.ref(false);
5642
5708
  const showContent = vue.ref(false);
@@ -5651,49 +5717,12 @@ const __sfc__$$ = vue.defineComponent({
5651
5717
  disabled,
5652
5718
  init
5653
5719
  };
5654
- let isInitToTrigger = true;
5655
- vue.watch(isShow, (value) => {
5656
- value ? openPanel() : closePanel();
5657
- });
5658
5720
  bindCollapse(collapseItemProvider);
5659
- function openPanel() {
5660
- return __async$d(this, null, function* () {
5661
- if (!contentEl.value) {
5662
- return;
5663
- }
5664
- contentEl.value.style.height = "";
5665
- showContent.value = true;
5666
- yield raf();
5667
- if (!contentEl.value) {
5668
- return;
5669
- }
5670
- const { offsetHeight } = contentEl.value;
5671
- contentEl.value.style.height = "0px";
5672
- yield raf();
5673
- if (!contentEl.value) {
5674
- return;
5675
- }
5676
- contentEl.value.style.height = offsetHeight + "px";
5677
- if (!isInitToTrigger) {
5678
- return;
5679
- }
5680
- yield doubleRaf();
5681
- if (isInitToTrigger) {
5682
- transitionend();
5683
- }
5684
- });
5685
- }
5686
- function closePanel() {
5687
- return __async$d(this, null, function* () {
5688
- if (!contentEl.value) {
5689
- return;
5690
- }
5691
- const { offsetHeight } = contentEl.value;
5692
- contentEl.value.style.height = offsetHeight + "px";
5693
- yield raf();
5694
- contentEl.value.style.height = "0px";
5695
- });
5696
- }
5721
+ const { handleTransitionEnd, handleTransitionStart } = useCollapseTransition({
5722
+ contentEl,
5723
+ showContent,
5724
+ expand: isShow
5725
+ });
5697
5726
  function init(show) {
5698
5727
  isShow.value = show;
5699
5728
  }
@@ -5704,15 +5733,6 @@ const __sfc__$$ = vue.defineComponent({
5704
5733
  }
5705
5734
  updateItem((_a = props2.name) != null ? _a : index.value, !isShow.value);
5706
5735
  }
5707
- function start2() {
5708
- isInitToTrigger = false;
5709
- }
5710
- function transitionend() {
5711
- if (!isShow.value) {
5712
- showContent.value = false;
5713
- }
5714
- contentEl.value.style.height = "";
5715
- }
5716
5736
  return {
5717
5737
  isShow,
5718
5738
  showContent,
@@ -5720,12 +5740,61 @@ const __sfc__$$ = vue.defineComponent({
5720
5740
  divider,
5721
5741
  elevation,
5722
5742
  contentEl,
5723
- n: n$_,
5724
- start: start2,
5743
+ n: n$$,
5725
5744
  classes: classes$Q,
5726
5745
  toggle,
5727
- transitionend,
5728
- formatElevation
5746
+ formatElevation,
5747
+ handleTransitionEnd,
5748
+ handleTransitionStart
5749
+ };
5750
+ }
5751
+ });
5752
+ __sfc__$10.render = __render__$$;
5753
+ var stdin_default$2F = __sfc__$10;
5754
+ withInstall(stdin_default$2F);
5755
+ withPropsDefaultsSetter(stdin_default$2F, props$U);
5756
+ const _CollapseItemComponent = stdin_default$2F;
5757
+ var stdin_default$2E = stdin_default$2F;
5758
+ const props$T = {
5759
+ expand: Boolean
5760
+ };
5761
+ const { name: name$T, n: n$_ } = createNamespace("collapse-transition");
5762
+ function __render__$_(_ctx, _cache) {
5763
+ return vue.withDirectives((vue.openBlock(), vue.createElementBlock(
5764
+ "div",
5765
+ {
5766
+ class: vue.normalizeClass(_ctx.n("content")),
5767
+ ref: "contentEl",
5768
+ onTransitionend: _cache[0] || (_cache[0] = (...args) => _ctx.handleTransitionEnd && _ctx.handleTransitionEnd(...args)),
5769
+ onTransitionstart: _cache[1] || (_cache[1] = (...args) => _ctx.handleTransitionStart && _ctx.handleTransitionStart(...args))
5770
+ },
5771
+ [
5772
+ vue.renderSlot(_ctx.$slots, "default")
5773
+ ],
5774
+ 34
5775
+ /* CLASS, NEED_HYDRATION */
5776
+ )), [
5777
+ [vue.vShow, _ctx.showContent]
5778
+ ]);
5779
+ }
5780
+ const __sfc__$$ = vue.defineComponent({
5781
+ name: name$T,
5782
+ props: props$T,
5783
+ setup(props2) {
5784
+ const showContent = vue.ref(false);
5785
+ const contentEl = vue.ref(null);
5786
+ const expand = vue.computed(() => props2.expand);
5787
+ const { handleTransitionEnd, handleTransitionStart } = useCollapseTransition({
5788
+ contentEl,
5789
+ showContent,
5790
+ expand
5791
+ });
5792
+ return {
5793
+ showContent,
5794
+ contentEl,
5795
+ n: n$_,
5796
+ handleTransitionEnd,
5797
+ handleTransitionStart
5729
5798
  };
5730
5799
  }
5731
5800
  });
@@ -5733,7 +5802,7 @@ __sfc__$$.render = __render__$_;
5733
5802
  var stdin_default$2D = __sfc__$$;
5734
5803
  withInstall(stdin_default$2D);
5735
5804
  withPropsDefaultsSetter(stdin_default$2D, props$T);
5736
- const _CollapseItemComponent = stdin_default$2D;
5805
+ const _CollapseTransitionComponent = stdin_default$2D;
5737
5806
  var stdin_default$2C = stdin_default$2D;
5738
5807
  const props$S = {
5739
5808
  time: {
@@ -8400,11 +8469,11 @@ function __render__$Y(_ctx, _cache) {
8400
8469
  const __sfc__$Z = vue.defineComponent({
8401
8470
  name: name$R,
8402
8471
  components: {
8403
- VarButton: stdin_default$36,
8404
- VarIcon: stdin_default$3r,
8405
- VarFormDetails: stdin_default$2O
8472
+ VarButton: stdin_default$38,
8473
+ VarIcon: stdin_default$3t,
8474
+ VarFormDetails: stdin_default$2Q
8406
8475
  },
8407
- directives: { Ripple: stdin_default$3v },
8476
+ directives: { Ripple: stdin_default$3x },
8408
8477
  inheritAttrs: false,
8409
8478
  props: props$R,
8410
8479
  setup(props2) {
@@ -9153,8 +9222,8 @@ function __render__$X(_ctx, _cache) {
9153
9222
  const __sfc__$Y = vue.defineComponent({
9154
9223
  name: "PanelHeader",
9155
9224
  components: {
9156
- VarButton: stdin_default$36,
9157
- VarIcon: stdin_default$3r
9225
+ VarButton: stdin_default$38,
9226
+ VarIcon: stdin_default$3t
9158
9227
  },
9159
9228
  props: {
9160
9229
  date: {
@@ -9301,7 +9370,7 @@ function __render__$W(_ctx, _cache) {
9301
9370
  const __sfc__$X = vue.defineComponent({
9302
9371
  name: "MonthPickerPanel",
9303
9372
  components: {
9304
- VarButton: stdin_default$36,
9373
+ VarButton: stdin_default$38,
9305
9374
  PanelHeader: stdin_default$2x
9306
9375
  },
9307
9376
  props: {
@@ -9750,7 +9819,7 @@ function __render__$U(_ctx, _cache) {
9750
9819
  const __sfc__$V = vue.defineComponent({
9751
9820
  name: "YearPickerPanel",
9752
9821
  components: {
9753
- VarButton: stdin_default$36,
9822
+ VarButton: stdin_default$38,
9754
9823
  VarSticky: stdin_default$2u,
9755
9824
  PanelHeader: stdin_default$2x
9756
9825
  },
@@ -10073,7 +10142,7 @@ function __render__$T(_ctx, _cache) {
10073
10142
  const __sfc__$U = vue.defineComponent({
10074
10143
  name: "DayPickerPanel",
10075
10144
  components: {
10076
- VarButton: stdin_default$36,
10145
+ VarButton: stdin_default$38,
10077
10146
  PanelHeader: stdin_default$2x
10078
10147
  },
10079
10148
  props: {
@@ -11005,7 +11074,7 @@ const props$O = __spreadValues$f({
11005
11074
  onConfirm: defineListenerProp(),
11006
11075
  onCancel: defineListenerProp(),
11007
11076
  "onUpdate:show": defineListenerProp()
11008
- }, pickProps(props$1f, [
11077
+ }, pickProps(props$1g, [
11009
11078
  "overlay",
11010
11079
  "overlayClass",
11011
11080
  "overlayStyle",
@@ -11169,8 +11238,8 @@ function __render__$R(_ctx, _cache) {
11169
11238
  const __sfc__$S = vue.defineComponent({
11170
11239
  name: name$O,
11171
11240
  components: {
11172
- VarPopup: stdin_default$3t,
11173
- VarButton: stdin_default$36
11241
+ VarPopup: stdin_default$3v,
11242
+ VarButton: stdin_default$38
11174
11243
  },
11175
11244
  inheritAttrs: false,
11176
11245
  props: props$O,
@@ -13605,10 +13674,10 @@ const props$J = {
13605
13674
  type: String,
13606
13675
  default: "window-close"
13607
13676
  },
13608
- inactiveIconSize: pickProps(props$1e, "size"),
13609
- activeIconSize: pickProps(props$1e, "size"),
13610
- inactiveIconNamespace: pickProps(props$1e, "namespace"),
13611
- activeIconNamespace: pickProps(props$1e, "namespace"),
13677
+ inactiveIconSize: pickProps(props$1f, "size"),
13678
+ activeIconSize: pickProps(props$1f, "size"),
13679
+ inactiveIconNamespace: pickProps(props$1f, "namespace"),
13680
+ activeIconNamespace: pickProps(props$1f, "namespace"),
13612
13681
  fixed: {
13613
13682
  type: Boolean,
13614
13683
  default: true
@@ -13699,7 +13768,7 @@ var stdin_default$2f = vue.defineComponent({
13699
13768
  active: isActive.value
13700
13769
  }) : null;
13701
13770
  }
13702
- return vue.withDirectives(vue.createVNode(stdin_default$36, {
13771
+ return vue.withDirectives(vue.createVNode(stdin_default$38, {
13703
13772
  "var-fab-cover": true,
13704
13773
  "class": n$M("trigger"),
13705
13774
  "type": props2.type,
@@ -13708,7 +13777,7 @@ var stdin_default$2f = vue.defineComponent({
13708
13777
  "elevation": props2.elevation,
13709
13778
  "round": true
13710
13779
  }, {
13711
- default: () => [vue.createVNode(stdin_default$3r, {
13780
+ default: () => [vue.createVNode(stdin_default$3t, {
13712
13781
  "var-fab-cover": true,
13713
13782
  "class": classes$E([isActive.value, n$M("trigger-active-icon"), n$M("trigger-inactive-icon")]),
13714
13783
  "name": isActive.value ? props2.activeIcon : props2.inactiveIcon,
@@ -13997,7 +14066,7 @@ function __render__$M(_ctx, _cache) {
13997
14066
  }
13998
14067
  const __sfc__$N = vue.defineComponent({
13999
14068
  name: name$I,
14000
- components: { VarIcon: stdin_default$3r },
14069
+ components: { VarIcon: stdin_default$3t },
14001
14070
  props: props$I,
14002
14071
  setup(props2, { slots }) {
14003
14072
  const placeholderTextEl = vue.ref(null);
@@ -14455,8 +14524,8 @@ function __render__$J(_ctx, _cache) {
14455
14524
  const __sfc__$K = vue.defineComponent({
14456
14525
  name: name$F,
14457
14526
  directives: {
14458
- Lazy: stdin_default$3h,
14459
- Ripple: stdin_default$3v
14527
+ Lazy: stdin_default$3j,
14528
+ Ripple: stdin_default$3x
14460
14529
  },
14461
14530
  props: props$F,
14462
14531
  setup(props2, { slots }) {
@@ -14734,8 +14803,8 @@ function __render__$I(_ctx, _cache) {
14734
14803
  }
14735
14804
  const __sfc__$J = vue.defineComponent({
14736
14805
  name: name$E,
14737
- directives: { Hover: stdin_default$38 },
14738
- components: { VarButton: stdin_default$36, VarIcon: stdin_default$3r },
14806
+ directives: { Hover: stdin_default$3a },
14807
+ components: { VarButton: stdin_default$38, VarIcon: stdin_default$3t },
14739
14808
  props: props$E,
14740
14809
  setup(props2) {
14741
14810
  const swipeEl = vue.ref(null);
@@ -15137,7 +15206,7 @@ const props$D = __spreadValues$9(__spreadValues$9({
15137
15206
  closeable: Boolean,
15138
15207
  "onUpdate:show": defineListenerProp(),
15139
15208
  onLongPress: defineListenerProp()
15140
- }, pickProps(props$E, ["loop", "indicator", "onChange"])), pickProps(props$1f, [
15209
+ }, pickProps(props$E, ["loop", "indicator", "onChange"])), pickProps(props$1g, [
15141
15210
  "lockScroll",
15142
15211
  "teleport",
15143
15212
  "onOpen",
@@ -15254,9 +15323,10 @@ function __render__$G(_ctx, _cache) {
15254
15323
  onClick: _ctx.close
15255
15324
  }, null, 8, ["class", "onClick"])) : vue.createCommentVNode("v-if", true)
15256
15325
  ]),
15257
- vue.createElementVNode(
15326
+ _ctx.$slots.extra ? (vue.openBlock(), vue.createElementBlock(
15258
15327
  "div",
15259
15328
  {
15329
+ key: 0,
15260
15330
  class: vue.normalizeClass(_ctx.n("extra"))
15261
15331
  },
15262
15332
  [
@@ -15264,7 +15334,7 @@ function __render__$G(_ctx, _cache) {
15264
15334
  ],
15265
15335
  2
15266
15336
  /* CLASS */
15267
- )
15337
+ )) : vue.createCommentVNode("v-if", true)
15268
15338
  ]),
15269
15339
  _: 3
15270
15340
  /* FORWARDED */
@@ -15275,8 +15345,8 @@ const __sfc__$H = vue.defineComponent({
15275
15345
  components: {
15276
15346
  VarSwipe: stdin_default$24,
15277
15347
  VarSwipeItem: stdin_default$22,
15278
- VarPopup: stdin_default$3t,
15279
- VarIcon: stdin_default$3r
15348
+ VarPopup: stdin_default$3v,
15349
+ VarIcon: stdin_default$3t
15280
15350
  },
15281
15351
  inheritAttrs: false,
15282
15352
  props: props$D,
@@ -16119,7 +16189,7 @@ function __render__$D(_ctx, _cache) {
16119
16189
  const __sfc__$E = vue.defineComponent({
16120
16190
  name: name$z,
16121
16191
  components: {
16122
- VarFormDetails: stdin_default$2O,
16192
+ VarFormDetails: stdin_default$2Q,
16123
16193
  VarFieldDecorator: stdin_default$2c
16124
16194
  },
16125
16195
  props: props$A,
@@ -16592,8 +16662,8 @@ function __render__$B(_ctx, _cache) {
16592
16662
  }
16593
16663
  const __sfc__$C = vue.defineComponent({
16594
16664
  name: name$x,
16595
- directives: { Ripple: stdin_default$3v },
16596
- components: { VarLoading: stdin_default$3b },
16665
+ directives: { Ripple: stdin_default$3x },
16666
+ components: { VarLoading: stdin_default$3d },
16597
16667
  props: props$y,
16598
16668
  setup(props2) {
16599
16669
  const listEl = vue.ref(null);
@@ -16680,7 +16750,7 @@ var stdin_default$1R = vue.defineComponent({
16680
16750
  return () => vue.createVNode("div", {
16681
16751
  "class": classes$t(n$z(), [props2.error, n$z("--error")]),
16682
16752
  "style": {
16683
- zIndex: stdin_default$3w.zIndex + 10,
16753
+ zIndex: stdin_default$3y.zIndex + 10,
16684
16754
  width: `${props2.value}%`,
16685
16755
  opacity: props2.opacity,
16686
16756
  height: toSizeUnit(props2.height),
@@ -17035,10 +17105,10 @@ function __render__$z(_ctx, _cache) {
17035
17105
  }
17036
17106
  const __sfc__$A = vue.defineComponent({
17037
17107
  name: name$u,
17038
- directives: { Ripple: stdin_default$3v, Hover: stdin_default$38 },
17108
+ directives: { Ripple: stdin_default$3x, Hover: stdin_default$3a },
17039
17109
  components: {
17040
- VarCheckbox: stdin_default$2M,
17041
- VarHoverOverlay: stdin_default$39
17110
+ VarCheckbox: stdin_default$2O,
17111
+ VarHoverOverlay: stdin_default$3b
17042
17112
  },
17043
17113
  props: props$u,
17044
17114
  setup(props2) {
@@ -17398,10 +17468,10 @@ function __render__$x(_ctx, _cache) {
17398
17468
  }
17399
17469
  const __sfc__$y = vue.defineComponent({
17400
17470
  name: name$s,
17401
- directives: { Ripple: stdin_default$3v, Hover: stdin_default$38 },
17471
+ directives: { Ripple: stdin_default$3x, Hover: stdin_default$3a },
17402
17472
  components: {
17403
- VarCheckbox: stdin_default$2M,
17404
- VarHoverOverlay: stdin_default$39
17473
+ VarCheckbox: stdin_default$2O,
17474
+ VarHoverOverlay: stdin_default$3b
17405
17475
  },
17406
17476
  props: props$s,
17407
17477
  setup(props2) {
@@ -17802,11 +17872,11 @@ const __sfc__$x = vue.defineComponent({
17802
17872
  name: name$q,
17803
17873
  components: {
17804
17874
  VarMenu: stdin_default$1O,
17805
- VarIcon: stdin_default$3r,
17806
- VarCell: stdin_default$2Q,
17875
+ VarIcon: stdin_default$3t,
17876
+ VarCell: stdin_default$2S,
17807
17877
  VarInput: stdin_default$1W
17808
17878
  },
17809
- directives: { Ripple: stdin_default$3v },
17879
+ directives: { Ripple: stdin_default$3x },
17810
17880
  props: props$q,
17811
17881
  setup(props2) {
17812
17882
  const menuVisible = vue.ref(false);
@@ -18024,7 +18094,7 @@ function __render__$v(_ctx, _cache) {
18024
18094
  }
18025
18095
  const __sfc__$w = vue.defineComponent({
18026
18096
  name: name$p,
18027
- directives: { Ripple: stdin_default$3v },
18097
+ directives: { Ripple: stdin_default$3x },
18028
18098
  props: props$p,
18029
18099
  setup(props2) {
18030
18100
  function handleClick(e) {
@@ -18106,7 +18176,7 @@ const props$o = __spreadValues$5({
18106
18176
  onConfirm: defineListenerProp(),
18107
18177
  onCancel: defineListenerProp(),
18108
18178
  "onUpdate:modelValue": defineListenerProp()
18109
- }, pickProps(props$1f, [
18179
+ }, pickProps(props$1g, [
18110
18180
  "show",
18111
18181
  "onUpdate:show",
18112
18182
  "closeOnClickOverlay",
@@ -18328,8 +18398,8 @@ function __render__$u(_ctx, _cache) {
18328
18398
  const __sfc__$v = vue.defineComponent({
18329
18399
  name: name$o,
18330
18400
  components: {
18331
- VarButton: stdin_default$36,
18332
- VarPopup: stdin_default$3t
18401
+ VarButton: stdin_default$38,
18402
+ VarPopup: stdin_default$3v
18333
18403
  },
18334
18404
  inheritAttrs: false,
18335
18405
  props: props$o,
@@ -18344,7 +18414,16 @@ const __sfc__$v = vue.defineComponent({
18344
18414
  let prevIndexes = [];
18345
18415
  buildScrollColumns();
18346
18416
  vue.watch(() => props2.columns, buildScrollColumns, { deep: true });
18347
- vue.watch(() => modelValue.value, updateScrollColumnsIndex);
18417
+ vue.watch(
18418
+ () => modelValue.value,
18419
+ () => {
18420
+ if (props2.cascade && props2.modelValue.length) {
18421
+ buildScrollColumns();
18422
+ } else {
18423
+ updateScrollColumnsIndex();
18424
+ }
18425
+ }
18426
+ );
18348
18427
  function getOptionKey(key) {
18349
18428
  const keyMap = {
18350
18429
  text: props2.textKey,
@@ -18401,6 +18480,10 @@ const __sfc__$v = vue.defineComponent({
18401
18480
  scrolling: false
18402
18481
  };
18403
18482
  scrollColumns2.push(scrollColumn);
18483
+ if (props2.modelValue.length) {
18484
+ const index = children.findIndex((option) => modelValue.value[scrollColumns2.length - 1] === getValue(option));
18485
+ scrollColumn.index = index === -1 ? 0 : index;
18486
+ }
18404
18487
  scrollTo2(scrollColumn);
18405
18488
  createChildren(scrollColumns2, (_a = scrollColumn.column[scrollColumn.index][getOptionKey("children")]) != null ? _a : []);
18406
18489
  }
@@ -18412,7 +18495,9 @@ const __sfc__$v = vue.defineComponent({
18412
18495
  }
18413
18496
  function buildScrollColumns() {
18414
18497
  scrollColumns.value = props2.cascade ? normalizeCascadeMode(props2.columns) : normalizeNormalMode(props2.columns);
18415
- updateScrollColumnsIndex();
18498
+ if (!props2.cascade) {
18499
+ updateScrollColumnsIndex();
18500
+ }
18416
18501
  }
18417
18502
  function updateScrollColumnsIndex() {
18418
18503
  scrollColumns.value.forEach((scrollColumn, idx) => {
@@ -18524,7 +18609,7 @@ const __sfc__$v = vue.defineComponent({
18524
18609
  if (isSamePicked()) {
18525
18610
  return;
18526
18611
  }
18527
- if (cascade) {
18612
+ if (cascade && !props2.modelValue.length) {
18528
18613
  rebuildChildren(scrollColumn);
18529
18614
  }
18530
18615
  const hasScrolling = scrollColumns.value.some((scrollColumn2) => scrollColumn2.scrolling);
@@ -19030,7 +19115,7 @@ function __render__$s(_ctx, _cache) {
19030
19115
  }
19031
19116
  const __sfc__$t = vue.defineComponent({
19032
19117
  name: name$m,
19033
- components: { VarIcon: stdin_default$3r },
19118
+ components: { VarIcon: stdin_default$3t },
19034
19119
  props: props$m,
19035
19120
  setup(props2) {
19036
19121
  const controlPosition = vue.ref(0);
@@ -19289,9 +19374,10 @@ function __render__$r(_ctx, _cache) {
19289
19374
  [_directive_ripple, { disabled: _ctx.formReadonly || _ctx.readonly || _ctx.formDisabled || _ctx.disabled || !_ctx.ripple }],
19290
19375
  [_directive_hover, _ctx.handleHovering, "desktop"]
19291
19376
  ]),
19292
- vue.createElementVNode(
19377
+ _ctx.$slots.default ? (vue.openBlock(), vue.createElementBlock(
19293
19378
  "div",
19294
19379
  {
19380
+ key: 0,
19295
19381
  class: vue.normalizeClass(
19296
19382
  _ctx.classes(
19297
19383
  _ctx.n("text"),
@@ -19305,7 +19391,7 @@ function __render__$r(_ctx, _cache) {
19305
19391
  ],
19306
19392
  2
19307
19393
  /* CLASS */
19308
- )
19394
+ )) : vue.createCommentVNode("v-if", true)
19309
19395
  ],
19310
19396
  16
19311
19397
  /* FULL_PROPS */
@@ -19318,11 +19404,11 @@ function __render__$r(_ctx, _cache) {
19318
19404
  }
19319
19405
  const __sfc__$s = vue.defineComponent({
19320
19406
  name: name$l,
19321
- directives: { Ripple: stdin_default$3v, Hover: stdin_default$38 },
19407
+ directives: { Ripple: stdin_default$3x, Hover: stdin_default$3a },
19322
19408
  components: {
19323
- VarIcon: stdin_default$3r,
19324
- VarFormDetails: stdin_default$2O,
19325
- VarHoverOverlay: stdin_default$39
19409
+ VarIcon: stdin_default$3t,
19410
+ VarFormDetails: stdin_default$2Q,
19411
+ VarHoverOverlay: stdin_default$3b
19326
19412
  },
19327
19413
  inheritAttrs: false,
19328
19414
  props: props$l,
@@ -19465,7 +19551,7 @@ function __render__$q(_ctx, _cache) {
19465
19551
  }
19466
19552
  const __sfc__$r = vue.defineComponent({
19467
19553
  name: name$k,
19468
- components: { VarFormDetails: stdin_default$2O },
19554
+ components: { VarFormDetails: stdin_default$2Q },
19469
19555
  props: props$k,
19470
19556
  setup(props2) {
19471
19557
  const { length, radios, bindRadios } = useRadios();
@@ -19548,9 +19634,9 @@ const props$j = {
19548
19634
  type: String,
19549
19635
  default: "star-half-full"
19550
19636
  },
19551
- namespace: pickProps(props$1e, "namespace"),
19552
- emptyIconNamespace: pickProps(props$1e, "namespace"),
19553
- halfIconNamespace: pickProps(props$1e, "namespace"),
19637
+ namespace: pickProps(props$1f, "namespace"),
19638
+ emptyIconNamespace: pickProps(props$1f, "namespace"),
19639
+ halfIconNamespace: pickProps(props$1f, "namespace"),
19554
19640
  emptyColor: String,
19555
19641
  size: [String, Number],
19556
19642
  gap: [String, Number],
@@ -19629,11 +19715,11 @@ function __render__$p(_ctx, _cache) {
19629
19715
  const __sfc__$q = vue.defineComponent({
19630
19716
  name: name$j,
19631
19717
  components: {
19632
- VarIcon: stdin_default$3r,
19633
- VarFormDetails: stdin_default$2O,
19634
- VarHoverOverlay: stdin_default$39
19718
+ VarIcon: stdin_default$3t,
19719
+ VarFormDetails: stdin_default$2Q,
19720
+ VarHoverOverlay: stdin_default$3b
19635
19721
  },
19636
- directives: { Ripple: stdin_default$3v, Hover: stdin_default$38 },
19722
+ directives: { Ripple: stdin_default$3x, Hover: stdin_default$3a },
19637
19723
  props: props$j,
19638
19724
  setup(props2) {
19639
19725
  const currentHoveringValue = vue.ref(-1);
@@ -20437,11 +20523,11 @@ function __render__$g(_ctx, _cache) {
20437
20523
  const __sfc__$h = vue.defineComponent({
20438
20524
  name: name$g,
20439
20525
  components: {
20440
- VarIcon: stdin_default$3r,
20526
+ VarIcon: stdin_default$3t,
20441
20527
  VarMenu: stdin_default$1O,
20442
- VarChip: stdin_default$2I,
20528
+ VarChip: stdin_default$2K,
20443
20529
  VarFieldDecorator: stdin_default$2c,
20444
- VarFormDetails: stdin_default$2O
20530
+ VarFormDetails: stdin_default$2Q
20445
20531
  },
20446
20532
  props: props$g,
20447
20533
  setup(props2) {
@@ -21038,10 +21124,10 @@ function __render__$e(_ctx, _cache) {
21038
21124
  const __sfc__$f = vue.defineComponent({
21039
21125
  name: name$e,
21040
21126
  components: {
21041
- VarFormDetails: stdin_default$2O,
21042
- VarHoverOverlay: stdin_default$39
21127
+ VarFormDetails: stdin_default$2Q,
21128
+ VarHoverOverlay: stdin_default$3b
21043
21129
  },
21044
- directives: { Hover: stdin_default$38 },
21130
+ directives: { Hover: stdin_default$3a },
21045
21131
  props: props$e,
21046
21132
  setup(props2) {
21047
21133
  const maxDistance = vue.ref(0);
@@ -21398,10 +21484,10 @@ const props$d = {
21398
21484
  default: 3e3
21399
21485
  },
21400
21486
  vertical: Boolean,
21401
- loadingType: pickProps(props$19, "type"),
21402
- loadingSize: pickProps(props$19, "size"),
21403
- loadingRadius: pickProps(props$19, "radius"),
21404
- loadingColor: __spreadProps$1(__spreadValues$3({}, pickProps(props$19, "color")), {
21487
+ loadingType: pickProps(props$1a, "type"),
21488
+ loadingSize: pickProps(props$1a, "size"),
21489
+ loadingRadius: pickProps(props$1a, "radius"),
21490
+ loadingColor: __spreadProps$1(__spreadValues$3({}, pickProps(props$1a, "color")), {
21405
21491
  default: "currentColor"
21406
21492
  }),
21407
21493
  lockScroll: Boolean,
@@ -21516,8 +21602,8 @@ function __render__$d(_ctx, _cache) {
21516
21602
  const __sfc__$e = vue.defineComponent({
21517
21603
  name: "VarSnackbarCore",
21518
21604
  components: {
21519
- VarLoading: stdin_default$3b,
21520
- VarIcon: stdin_default$3r
21605
+ VarLoading: stdin_default$3d,
21606
+ VarIcon: stdin_default$3t
21521
21607
  },
21522
21608
  props: props$d,
21523
21609
  setup(props2) {
@@ -21719,7 +21805,7 @@ const TransitionGroupHost = {
21719
21805
  });
21720
21806
  return vue.createVNode(vue.TransitionGroup, vue.mergeProps(transitionGroupProps, {
21721
21807
  "style": {
21722
- zIndex: stdin_default$3w.zIndex
21808
+ zIndex: stdin_default$3y.zIndex
21723
21809
  },
21724
21810
  "onAfterEnter": opened,
21725
21811
  "onAfterLeave": removeUniqOption
@@ -21956,11 +22042,11 @@ const props$b = {
21956
22042
  type: String,
21957
22043
  default: "check"
21958
22044
  },
21959
- currentIcon: pickProps(props$1e, "name"),
21960
- inactiveIcon: pickProps(props$1e, "name"),
21961
- activeIconNamespace: pickProps(props$1e, "namespace"),
21962
- currentIconNamespace: pickProps(props$1e, "namespace"),
21963
- inactiveIconNamespace: pickProps(props$1e, "namespace")
22045
+ currentIcon: pickProps(props$1f, "name"),
22046
+ inactiveIcon: pickProps(props$1f, "name"),
22047
+ activeIconNamespace: pickProps(props$1f, "namespace"),
22048
+ currentIconNamespace: pickProps(props$1f, "namespace"),
22049
+ inactiveIconNamespace: pickProps(props$1f, "namespace")
21964
22050
  };
21965
22051
  const STEPS_BIND_STEP_KEY = Symbol("STEPS_BIND_STEP_KEY");
21966
22052
  function useStep() {
@@ -22034,9 +22120,10 @@ function __render__$b(_ctx, _cache) {
22034
22120
  6
22035
22121
  /* CLASS, STYLE */
22036
22122
  ),
22037
- vue.createElementVNode(
22123
+ _ctx.$slots.default ? (vue.openBlock(), vue.createElementBlock(
22038
22124
  "div",
22039
22125
  {
22126
+ key: 0,
22040
22127
  class: vue.normalizeClass(_ctx.classes(_ctx.n(`${_ctx.direction}-content`), [_ctx.isActive || _ctx.isCurrent, _ctx.n(`${_ctx.direction}-content--active`)])),
22041
22128
  onClick: _cache[1] || (_cache[1] = (...args) => _ctx.click && _ctx.click(...args))
22042
22129
  },
@@ -22045,7 +22132,7 @@ function __render__$b(_ctx, _cache) {
22045
22132
  ],
22046
22133
  2
22047
22134
  /* CLASS */
22048
- ),
22135
+ )) : vue.createCommentVNode("v-if", true),
22049
22136
  vue.createElementVNode(
22050
22137
  "div",
22051
22138
  {
@@ -22066,7 +22153,7 @@ function __render__$b(_ctx, _cache) {
22066
22153
  }
22067
22154
  const __sfc__$c = vue.defineComponent({
22068
22155
  name: name$b,
22069
- components: { VarIcon: stdin_default$3r },
22156
+ components: { VarIcon: stdin_default$3t },
22070
22157
  props: props$b,
22071
22158
  setup() {
22072
22159
  const { index, steps, bindSteps } = useSteps();
@@ -22335,10 +22422,10 @@ function __render__$9(_ctx, _cache) {
22335
22422
  const __sfc__$9 = vue.defineComponent({
22336
22423
  name: name$8,
22337
22424
  components: {
22338
- VarFormDetails: stdin_default$2O,
22339
- VarHoverOverlay: stdin_default$39
22425
+ VarFormDetails: stdin_default$2Q,
22426
+ VarHoverOverlay: stdin_default$3b
22340
22427
  },
22341
- directives: { Ripple: stdin_default$3v, Hover: stdin_default$38 },
22428
+ directives: { Ripple: stdin_default$3x, Hover: stdin_default$3a },
22342
22429
  props: props$8,
22343
22430
  setup(props2) {
22344
22431
  const { bindForm, form } = useForm();
@@ -22490,7 +22577,7 @@ function __render__$8(_ctx, _cache) {
22490
22577
  }
22491
22578
  const __sfc__$8 = vue.defineComponent({
22492
22579
  name: name$7,
22493
- directives: { Ripple: stdin_default$3v },
22580
+ directives: { Ripple: stdin_default$3x },
22494
22581
  props: props$7,
22495
22582
  setup(props2) {
22496
22583
  const tabEl = vue.ref(null);
@@ -24395,12 +24482,12 @@ function __render__$1(_ctx, _cache) {
24395
24482
  }
24396
24483
  const __sfc__$1 = vue.defineComponent({
24397
24484
  name: name$1,
24398
- directives: { Ripple: stdin_default$3v, Hover: stdin_default$38 },
24485
+ directives: { Ripple: stdin_default$3x, Hover: stdin_default$3a },
24399
24486
  components: {
24400
- VarIcon: stdin_default$3r,
24401
- VarPopup: stdin_default$3t,
24402
- VarFormDetails: stdin_default$2O,
24403
- VarHoverOverlay: stdin_default$39
24487
+ VarIcon: stdin_default$3t,
24488
+ VarPopup: stdin_default$3v,
24489
+ VarFormDetails: stdin_default$2Q,
24490
+ VarHoverOverlay: stdin_default$3b
24404
24491
  },
24405
24492
  props: props$1,
24406
24493
  setup(props2) {
@@ -24950,29 +25037,30 @@ withInstall(stdin_default$1);
24950
25037
  withPropsDefaultsSetter(stdin_default$1, props);
24951
25038
  const _WatermarkComponent = stdin_default$1;
24952
25039
  var stdin_default = stdin_default$1;
24953
- const version = "2.20.6";
25040
+ const version = "2.21.0-alpha.1704976407062";
24954
25041
  function install(app) {
25042
+ stdin_default$3m.install && app.use(stdin_default$3m);
24955
25043
  stdin_default$3k.install && app.use(stdin_default$3k);
24956
- stdin_default$3i.install && app.use(stdin_default$3i);
25044
+ stdin_default$3h.install && app.use(stdin_default$3h);
24957
25045
  stdin_default$3f.install && app.use(stdin_default$3f);
24958
- stdin_default$3d.install && app.use(stdin_default$3d);
25046
+ stdin_default$36.install && app.use(stdin_default$36);
24959
25047
  stdin_default$34.install && app.use(stdin_default$34);
24960
25048
  stdin_default$32.install && app.use(stdin_default$32);
24961
25049
  stdin_default$30.install && app.use(stdin_default$30);
24962
25050
  stdin_default$2_.install && app.use(stdin_default$2_);
24963
25051
  stdin_default$2Y.install && app.use(stdin_default$2Y);
25052
+ stdin_default$38.install && app.use(stdin_default$38);
24964
25053
  stdin_default$2W.install && app.use(stdin_default$2W);
24965
- stdin_default$36.install && app.use(stdin_default$36);
24966
25054
  stdin_default$2U.install && app.use(stdin_default$2U);
24967
25055
  stdin_default$2S.install && app.use(stdin_default$2S);
24968
- stdin_default$2Q.install && app.use(stdin_default$2Q);
25056
+ stdin_default$2O.install && app.use(stdin_default$2O);
24969
25057
  stdin_default$2M.install && app.use(stdin_default$2M);
24970
25058
  stdin_default$2K.install && app.use(stdin_default$2K);
24971
25059
  stdin_default$2I.install && app.use(stdin_default$2I);
24972
25060
  stdin_default$2G.install && app.use(stdin_default$2G);
24973
25061
  stdin_default$2E.install && app.use(stdin_default$2E);
24974
25062
  stdin_default$2C.install && app.use(stdin_default$2C);
24975
- stdin_default$3w.install && app.use(stdin_default$3w);
25063
+ stdin_default$3y.install && app.use(stdin_default$3y);
24976
25064
  stdin_default$2A.install && app.use(stdin_default$2A);
24977
25065
  stdin_default$2y.install && app.use(stdin_default$2y);
24978
25066
  stdin_default$2q.install && app.use(stdin_default$2q);
@@ -24984,21 +25072,21 @@ function install(app) {
24984
25072
  stdin_default$2c.install && app.use(stdin_default$2c);
24985
25073
  stdin_default$2a.install && app.use(stdin_default$2a);
24986
25074
  stdin_default$28.install && app.use(stdin_default$28);
24987
- stdin_default$2O.install && app.use(stdin_default$2O);
24988
- stdin_default$38.install && app.use(stdin_default$38);
24989
- stdin_default$39.install && app.use(stdin_default$39);
24990
- stdin_default$3r.install && app.use(stdin_default$3r);
25075
+ stdin_default$2Q.install && app.use(stdin_default$2Q);
25076
+ stdin_default$3a.install && app.use(stdin_default$3a);
25077
+ stdin_default$3b.install && app.use(stdin_default$3b);
25078
+ stdin_default$3t.install && app.use(stdin_default$3t);
24991
25079
  stdin_default$26.install && app.use(stdin_default$26);
24992
25080
  stdin_default$20.install && app.use(stdin_default$20);
24993
25081
  stdin_default$1_.install && app.use(stdin_default$1_);
24994
25082
  stdin_default$1Y.install && app.use(stdin_default$1Y);
24995
25083
  stdin_default$1W.install && app.use(stdin_default$1W);
24996
- stdin_default$3h.install && app.use(stdin_default$3h);
25084
+ stdin_default$3j.install && app.use(stdin_default$3j);
24997
25085
  stdin_default$1U.install && app.use(stdin_default$1U);
24998
25086
  stdin_default$1S.install && app.use(stdin_default$1S);
24999
- stdin_default$3b.install && app.use(stdin_default$3b);
25087
+ stdin_default$3d.install && app.use(stdin_default$3d);
25000
25088
  stdin_default$1Q.install && app.use(stdin_default$1Q);
25001
- stdin_default$3m.install && app.use(stdin_default$3m);
25089
+ stdin_default$3o.install && app.use(stdin_default$3o);
25002
25090
  stdin_default$1O.install && app.use(stdin_default$1O);
25003
25091
  stdin_default$1M.install && app.use(stdin_default$1M);
25004
25092
  stdin_default$1K.install && app.use(stdin_default$1K);
@@ -25007,14 +25095,14 @@ function install(app) {
25007
25095
  stdin_default$1E.install && app.use(stdin_default$1E);
25008
25096
  stdin_default$1C.install && app.use(stdin_default$1C);
25009
25097
  stdin_default$1A.install && app.use(stdin_default$1A);
25010
- stdin_default$3t.install && app.use(stdin_default$3t);
25098
+ stdin_default$3v.install && app.use(stdin_default$3v);
25011
25099
  stdin_default$1y.install && app.use(stdin_default$1y);
25012
25100
  stdin_default$1w.install && app.use(stdin_default$1w);
25013
25101
  stdin_default$1u.install && app.use(stdin_default$1u);
25014
25102
  stdin_default$1s.install && app.use(stdin_default$1s);
25015
25103
  stdin_default$1q.install && app.use(stdin_default$1q);
25016
25104
  stdin_default$1i.install && app.use(stdin_default$1i);
25017
- stdin_default$3v.install && app.use(stdin_default$3v);
25105
+ stdin_default$3x.install && app.use(stdin_default$3x);
25018
25106
  stdin_default$1g.install && app.use(stdin_default$1g);
25019
25107
  stdin_default$1e.install && app.use(stdin_default$1e);
25020
25108
  stdin_default$1c.install && app.use(stdin_default$1c);
@@ -25042,27 +25130,28 @@ function install(app) {
25042
25130
  const index_bundle = {
25043
25131
  version,
25044
25132
  install,
25045
- ActionSheet: stdin_default$3k,
25046
- AppBar: stdin_default$3i,
25047
- Avatar: stdin_default$3f,
25048
- AvatarGroup: stdin_default$3d,
25049
- BackTop: stdin_default$34,
25050
- Badge: stdin_default$32,
25051
- BottomNavigation: stdin_default$30,
25052
- BottomNavigationItem: stdin_default$2_,
25053
- Breadcrumb: stdin_default$2Y,
25054
- Breadcrumbs: stdin_default$2W,
25055
- Button: stdin_default$36,
25056
- ButtonGroup: stdin_default$2U,
25057
- Card: stdin_default$2S,
25058
- Cell: stdin_default$2Q,
25059
- Checkbox: stdin_default$2M,
25060
- CheckboxGroup: stdin_default$2K,
25061
- Chip: stdin_default$2I,
25062
- Col: stdin_default$2G,
25063
- Collapse: stdin_default$2E,
25064
- CollapseItem: stdin_default$2C,
25065
- Context: stdin_default$3w,
25133
+ ActionSheet: stdin_default$3m,
25134
+ AppBar: stdin_default$3k,
25135
+ Avatar: stdin_default$3h,
25136
+ AvatarGroup: stdin_default$3f,
25137
+ BackTop: stdin_default$36,
25138
+ Badge: stdin_default$34,
25139
+ BottomNavigation: stdin_default$32,
25140
+ BottomNavigationItem: stdin_default$30,
25141
+ Breadcrumb: stdin_default$2_,
25142
+ Breadcrumbs: stdin_default$2Y,
25143
+ Button: stdin_default$38,
25144
+ ButtonGroup: stdin_default$2W,
25145
+ Card: stdin_default$2U,
25146
+ Cell: stdin_default$2S,
25147
+ Checkbox: stdin_default$2O,
25148
+ CheckboxGroup: stdin_default$2M,
25149
+ Chip: stdin_default$2K,
25150
+ Col: stdin_default$2I,
25151
+ Collapse: stdin_default$2G,
25152
+ CollapseItem: stdin_default$2E,
25153
+ CollapseTransition: stdin_default$2C,
25154
+ Context: stdin_default$3y,
25066
25155
  Countdown: stdin_default$2A,
25067
25156
  Counter: stdin_default$2y,
25068
25157
  DatePicker: stdin_default$2q,
@@ -25074,21 +25163,21 @@ const index_bundle = {
25074
25163
  FieldDecorator: stdin_default$2c,
25075
25164
  FloatingPanel: stdin_default$2a,
25076
25165
  Form: stdin_default$28,
25077
- FormDetails: stdin_default$2O,
25078
- Hover: stdin_default$38,
25079
- HoverOverlay: stdin_default$39,
25080
- Icon: stdin_default$3r,
25166
+ FormDetails: stdin_default$2Q,
25167
+ Hover: stdin_default$3a,
25168
+ HoverOverlay: stdin_default$3b,
25169
+ Icon: stdin_default$3t,
25081
25170
  Image: stdin_default$26,
25082
25171
  ImagePreview: stdin_default$20,
25083
25172
  IndexAnchor: stdin_default$1_,
25084
25173
  IndexBar: stdin_default$1Y,
25085
25174
  Input: stdin_default$1W,
25086
- Lazy: stdin_default$3h,
25175
+ Lazy: stdin_default$3j,
25087
25176
  Link: stdin_default$1U,
25088
25177
  List: stdin_default$1S,
25089
- Loading: stdin_default$3b,
25178
+ Loading: stdin_default$3d,
25090
25179
  LoadingBar: stdin_default$1Q,
25091
- Locale: stdin_default$3m,
25180
+ Locale: stdin_default$3o,
25092
25181
  Menu: stdin_default$1O,
25093
25182
  MenuOption: stdin_default$1M,
25094
25183
  MenuSelect: stdin_default$1K,
@@ -25097,14 +25186,14 @@ const index_bundle = {
25097
25186
  Pagination: stdin_default$1E,
25098
25187
  Paper: stdin_default$1C,
25099
25188
  Picker: stdin_default$1A,
25100
- Popup: stdin_default$3t,
25189
+ Popup: stdin_default$3v,
25101
25190
  Progress: stdin_default$1y,
25102
25191
  PullRefresh: stdin_default$1w,
25103
25192
  Radio: stdin_default$1u,
25104
25193
  RadioGroup: stdin_default$1s,
25105
25194
  Rate: stdin_default$1q,
25106
25195
  Result: stdin_default$1i,
25107
- Ripple: stdin_default$3v,
25196
+ Ripple: stdin_default$3x,
25108
25197
  Row: stdin_default$1g,
25109
25198
  Select: stdin_default$1e,
25110
25199
  Skeleton: stdin_default$1c,
@@ -25129,27 +25218,28 @@ const index_bundle = {
25129
25218
  Uploader: stdin_default$2,
25130
25219
  Watermark: stdin_default
25131
25220
  };
25132
- exports.ActionSheet = stdin_default$3k;
25133
- exports.AppBar = stdin_default$3i;
25134
- exports.Avatar = stdin_default$3f;
25135
- exports.AvatarGroup = stdin_default$3d;
25136
- exports.BackTop = stdin_default$34;
25137
- exports.Badge = stdin_default$32;
25138
- exports.BottomNavigation = stdin_default$30;
25139
- exports.BottomNavigationItem = stdin_default$2_;
25140
- exports.Breadcrumb = stdin_default$2Y;
25141
- exports.Breadcrumbs = stdin_default$2W;
25142
- exports.Button = stdin_default$36;
25143
- exports.ButtonGroup = stdin_default$2U;
25144
- exports.Card = stdin_default$2S;
25145
- exports.Cell = stdin_default$2Q;
25146
- exports.Checkbox = stdin_default$2M;
25147
- exports.CheckboxGroup = stdin_default$2K;
25148
- exports.Chip = stdin_default$2I;
25149
- exports.Col = stdin_default$2G;
25150
- exports.Collapse = stdin_default$2E;
25151
- exports.CollapseItem = stdin_default$2C;
25152
- exports.Context = stdin_default$3w;
25221
+ exports.ActionSheet = stdin_default$3m;
25222
+ exports.AppBar = stdin_default$3k;
25223
+ exports.Avatar = stdin_default$3h;
25224
+ exports.AvatarGroup = stdin_default$3f;
25225
+ exports.BackTop = stdin_default$36;
25226
+ exports.Badge = stdin_default$34;
25227
+ exports.BottomNavigation = stdin_default$32;
25228
+ exports.BottomNavigationItem = stdin_default$30;
25229
+ exports.Breadcrumb = stdin_default$2_;
25230
+ exports.Breadcrumbs = stdin_default$2Y;
25231
+ exports.Button = stdin_default$38;
25232
+ exports.ButtonGroup = stdin_default$2W;
25233
+ exports.Card = stdin_default$2U;
25234
+ exports.Cell = stdin_default$2S;
25235
+ exports.Checkbox = stdin_default$2O;
25236
+ exports.CheckboxGroup = stdin_default$2M;
25237
+ exports.Chip = stdin_default$2K;
25238
+ exports.Col = stdin_default$2I;
25239
+ exports.Collapse = stdin_default$2G;
25240
+ exports.CollapseItem = stdin_default$2E;
25241
+ exports.CollapseTransition = stdin_default$2C;
25242
+ exports.Context = stdin_default$3y;
25153
25243
  exports.Countdown = stdin_default$2A;
25154
25244
  exports.Counter = stdin_default$2y;
25155
25245
  exports.DatePicker = stdin_default$2q;
@@ -25161,21 +25251,21 @@ exports.Fab = stdin_default$2e;
25161
25251
  exports.FieldDecorator = stdin_default$2c;
25162
25252
  exports.FloatingPanel = stdin_default$2a;
25163
25253
  exports.Form = stdin_default$28;
25164
- exports.FormDetails = stdin_default$2O;
25165
- exports.Hover = stdin_default$38;
25166
- exports.HoverOverlay = stdin_default$39;
25167
- exports.Icon = stdin_default$3r;
25254
+ exports.FormDetails = stdin_default$2Q;
25255
+ exports.Hover = stdin_default$3a;
25256
+ exports.HoverOverlay = stdin_default$3b;
25257
+ exports.Icon = stdin_default$3t;
25168
25258
  exports.Image = stdin_default$26;
25169
25259
  exports.ImagePreview = stdin_default$20;
25170
25260
  exports.IndexAnchor = stdin_default$1_;
25171
25261
  exports.IndexBar = stdin_default$1Y;
25172
25262
  exports.Input = stdin_default$1W;
25173
- exports.Lazy = stdin_default$3h;
25263
+ exports.Lazy = stdin_default$3j;
25174
25264
  exports.Link = stdin_default$1U;
25175
25265
  exports.List = stdin_default$1S;
25176
- exports.Loading = stdin_default$3b;
25266
+ exports.Loading = stdin_default$3d;
25177
25267
  exports.LoadingBar = stdin_default$1Q;
25178
- exports.Locale = stdin_default$3m;
25268
+ exports.Locale = stdin_default$3o;
25179
25269
  exports.Menu = stdin_default$1O;
25180
25270
  exports.MenuOption = stdin_default$1M;
25181
25271
  exports.MenuSelect = stdin_default$1K;
@@ -25185,14 +25275,14 @@ exports.PIXEL = PIXEL;
25185
25275
  exports.Pagination = stdin_default$1E;
25186
25276
  exports.Paper = stdin_default$1C;
25187
25277
  exports.Picker = stdin_default$1A;
25188
- exports.Popup = stdin_default$3t;
25278
+ exports.Popup = stdin_default$3v;
25189
25279
  exports.Progress = stdin_default$1y;
25190
25280
  exports.PullRefresh = stdin_default$1w;
25191
25281
  exports.Radio = stdin_default$1u;
25192
25282
  exports.RadioGroup = stdin_default$1s;
25193
25283
  exports.Rate = stdin_default$1q;
25194
25284
  exports.Result = stdin_default$1i;
25195
- exports.Ripple = stdin_default$3v;
25285
+ exports.Ripple = stdin_default$3x;
25196
25286
  exports.Row = stdin_default$1g;
25197
25287
  exports.SNACKBAR_TYPE = SNACKBAR_TYPE;
25198
25288
  exports.Select = stdin_default$1e;
@@ -25237,6 +25327,7 @@ exports._ChipComponent = _ChipComponent;
25237
25327
  exports._ColComponent = _ColComponent;
25238
25328
  exports._CollapseComponent = _CollapseComponent;
25239
25329
  exports._CollapseItemComponent = _CollapseItemComponent;
25330
+ exports._CollapseTransitionComponent = _CollapseTransitionComponent;
25240
25331
  exports._ContextComponent = _ContextComponent;
25241
25332
  exports._CountdownComponent = _CountdownComponent;
25242
25333
  exports._CounterComponent = _CounterComponent;
@@ -25303,27 +25394,28 @@ exports._TimePickerComponent = _TimePickerComponent;
25303
25394
  exports._TooltipComponent = _TooltipComponent;
25304
25395
  exports._UploaderComponent = _UploaderComponent;
25305
25396
  exports._WatermarkComponent = _WatermarkComponent;
25306
- exports.actionSheetProps = props$1d;
25397
+ exports.actionSheetProps = props$1e;
25307
25398
  exports.add = add$2;
25308
- exports.appBarProps = props$1c;
25309
- exports.avatarGroupProps = props$1a;
25310
- exports.avatarProps = props$1b;
25311
- exports.backTopProps = props$16;
25312
- exports.badgeProps = props$15;
25313
- exports.bottomNavigationItemProps = props$13;
25314
- exports.bottomNavigationProps = props$14;
25315
- exports.breadcrumbProps = props$12;
25316
- exports.breadcrumbsProps = props$11;
25317
- exports.buttonGroupProps = props$10;
25318
- exports.buttonProps = props$17;
25319
- exports.cardProps = props$$;
25320
- exports.cellProps = props$_;
25321
- exports.checkboxGroupProps = props$X;
25322
- exports.checkboxProps = props$Y;
25323
- exports.chipProps = props$W;
25324
- exports.colProps = props$V;
25325
- exports.collapseItemProps = props$T;
25326
- exports.collapseProps = props$U;
25399
+ exports.appBarProps = props$1d;
25400
+ exports.avatarGroupProps = props$1b;
25401
+ exports.avatarProps = props$1c;
25402
+ exports.backTopProps = props$17;
25403
+ exports.badgeProps = props$16;
25404
+ exports.bottomNavigationItemProps = props$14;
25405
+ exports.bottomNavigationProps = props$15;
25406
+ exports.breadcrumbProps = props$13;
25407
+ exports.breadcrumbsProps = props$12;
25408
+ exports.buttonGroupProps = props$11;
25409
+ exports.buttonProps = props$18;
25410
+ exports.cardProps = props$10;
25411
+ exports.cellProps = props$$;
25412
+ exports.checkboxGroupProps = props$Y;
25413
+ exports.checkboxProps = props$Z;
25414
+ exports.chipProps = props$X;
25415
+ exports.colProps = props$W;
25416
+ exports.collapseItemProps = props$U;
25417
+ exports.collapseProps = props$V;
25418
+ exports.collapseTransitionProps = props$T;
25327
25419
  exports.countdownProps = props$S;
25328
25420
  exports.counterProps = props$R;
25329
25421
  exports.datePickerProps = props$Q;
@@ -25333,13 +25425,13 @@ exports.dialogProps = props$O;
25333
25425
  exports.dividerProps = props$N;
25334
25426
  exports.dragProps = props$M;
25335
25427
  exports.ellipsisProps = props$K;
25336
- exports.enUS = stdin_default$3p;
25428
+ exports.enUS = stdin_default$3r;
25337
25429
  exports.fabProps = props$J;
25338
25430
  exports.fieldDecoratorProps = props$I;
25339
- exports.formDetailsProps = props$Z;
25431
+ exports.formDetailsProps = props$_;
25340
25432
  exports.formProps = props$G;
25341
- exports.hoverOverlayProps = props$18;
25342
- exports.iconProps = props$1e;
25433
+ exports.hoverOverlayProps = props$19;
25434
+ exports.iconProps = props$1f;
25343
25435
  exports.imageCache = imageCache;
25344
25436
  exports.imagePreviewProps = props$D;
25345
25437
  exports.imageProps = props$F;
@@ -25350,7 +25442,7 @@ exports.install = install;
25350
25442
  exports.linkProps = props$z;
25351
25443
  exports.listProps = props$y;
25352
25444
  exports.loadingBarProps = props$x;
25353
- exports.loadingProps = props$19;
25445
+ exports.loadingProps = props$1a;
25354
25446
  exports.menuOptionProps = props$u;
25355
25447
  exports.menuProps = props$v;
25356
25448
  exports.menuSelectProps = props$t;
@@ -25362,7 +25454,7 @@ exports.packs = packs;
25362
25454
  exports.paginationProps = props$q;
25363
25455
  exports.paperProps = props$p;
25364
25456
  exports.pickerProps = props$o;
25365
- exports.popupProps = props$1f;
25457
+ exports.popupProps = props$1g;
25366
25458
  exports.progressProps = props$n;
25367
25459
  exports.pullRefreshProps = props$m;
25368
25460
  exports.radioGroupProps = props$k;
@@ -25394,4 +25486,4 @@ exports.useHoverOverlay = useHoverOverlay;
25394
25486
  exports.useLocale = useLocale;
25395
25487
  exports.version = version;
25396
25488
  exports.watermarkProps = props;
25397
- exports.zhCN = stdin_default$3q;
25489
+ exports.zhCN = stdin_default$3s;