@uzum-tech/ui 2.1.3 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/dist/index.js +1236 -530
  2. package/dist/index.mjs +1232 -531
  3. package/dist/index.prod.js +2 -2
  4. package/dist/index.prod.mjs +2 -2
  5. package/es/_internal/icon/index.d.ts +1 -1
  6. package/es/_internal/icon/index.mjs +1 -1
  7. package/es/_internal/icon/src/UIcon.d.ts +11 -1
  8. package/es/_internal/icon/src/UIcon.mjs +20 -8
  9. package/es/_internal/icon/src/interface.d.ts +11 -4
  10. package/es/_internal/icon/src/interface.mjs +4 -0
  11. package/es/_internal/icon/src/render-icon.d.ts +1 -0
  12. package/es/_internal/icon/src/render-icon.mjs +5 -0
  13. package/es/_internal/icons/SearchOutline.d.ts +2 -0
  14. package/es/_internal/icons/SearchOutline.mjs +18 -0
  15. package/es/_internal/icons/index.d.ts +1 -0
  16. package/es/_internal/icons/index.mjs +1 -0
  17. package/es/_mixins/use-form-item.mjs +5 -0
  18. package/es/_utils/dom/copy-to-clipboard.d.ts +1 -0
  19. package/es/_utils/dom/copy-to-clipboard.mjs +8 -0
  20. package/es/_utils/dom/index.d.ts +1 -0
  21. package/es/_utils/dom/index.mjs +1 -0
  22. package/es/components.d.ts +1169 -76
  23. package/es/components.mjs +4 -1
  24. package/es/config-provider/src/internal-interface.d.ts +4 -0
  25. package/es/data-table/src/use-table-data.d.ts +1 -1
  26. package/es/date-picker/src/DatePicker.mjs +7 -4
  27. package/es/icon/index.d.ts +1 -1
  28. package/es/icon/index.mjs +1 -1
  29. package/es/icon/src/Icon.d.ts +1 -1
  30. package/es/icon/src/Icon.mjs +1 -1
  31. package/es/icon-pack/index.d.ts +5 -0
  32. package/es/icon-pack/index.mjs +3 -0
  33. package/es/icon-pack/src/IconPack.d.ts +1047 -0
  34. package/es/icon-pack/src/IconPack.mjs +300 -0
  35. package/es/icon-pack/src/interface.d.ts +465 -0
  36. package/es/icon-pack/src/interface.mjs +75 -0
  37. package/es/icon-pack/src/styles/index.cssr.d.ts +2 -0
  38. package/es/icon-pack/src/styles/index.cssr.mjs +131 -0
  39. package/es/icon-pack/styles/dark.d.ts +123 -0
  40. package/es/icon-pack/styles/dark.mjs +20 -0
  41. package/es/icon-pack/styles/index.d.ts +3 -0
  42. package/es/icon-pack/styles/index.mjs +2 -0
  43. package/es/icon-pack/styles/light.d.ts +143 -0
  44. package/es/icon-pack/styles/light.mjs +64 -0
  45. package/es/icon-wrapper/src/IconWrapper.d.ts +1 -1
  46. package/es/input/src/Input.mjs +3 -1
  47. package/es/pagination/index.d.ts +3 -3
  48. package/es/pagination/index.mjs +2 -1
  49. package/es/pagination/src/Pagination.d.ts +74 -1379
  50. package/es/pagination/src/Pagination.mjs +28 -63
  51. package/es/pagination/src/interface.d.ts +1345 -1
  52. package/es/pagination/src/interface.mjs +68 -1
  53. package/es/themes/dark.mjs +2 -0
  54. package/es/themes/light.mjs +2 -0
  55. package/es/version.d.ts +1 -1
  56. package/es/version.mjs +1 -1
  57. package/lib/_internal/icon/index.d.ts +1 -1
  58. package/lib/_internal/icon/index.js +2 -1
  59. package/lib/_internal/icon/src/UIcon.d.ts +11 -1
  60. package/lib/_internal/icon/src/UIcon.js +17 -6
  61. package/lib/_internal/icon/src/interface.d.ts +11 -4
  62. package/lib/_internal/icon/src/interface.js +1 -1
  63. package/lib/_internal/icon/src/render-icon.d.ts +1 -0
  64. package/lib/_internal/icon/src/render-icon.js +4 -0
  65. package/lib/_internal/icons/SearchOutline.d.ts +2 -0
  66. package/lib/_internal/icons/SearchOutline.js +10 -0
  67. package/lib/_internal/icons/index.d.ts +1 -0
  68. package/lib/_internal/icons/index.js +3 -1
  69. package/lib/_mixins/use-form-item.js +5 -0
  70. package/lib/_utils/dom/copy-to-clipboard.d.ts +1 -0
  71. package/lib/_utils/dom/copy-to-clipboard.js +11 -0
  72. package/lib/_utils/dom/index.d.ts +1 -0
  73. package/lib/_utils/dom/index.js +3 -1
  74. package/lib/components.d.ts +1169 -76
  75. package/lib/components.js +12 -5
  76. package/lib/config-provider/src/internal-interface.d.ts +4 -0
  77. package/lib/data-table/src/use-table-data.d.ts +1 -1
  78. package/lib/date-picker/src/DatePicker.js +5 -4
  79. package/lib/icon/index.d.ts +1 -1
  80. package/lib/icon/index.js +2 -1
  81. package/lib/icon/src/Icon.d.ts +1 -1
  82. package/lib/icon/src/Icon.js +2 -1
  83. package/lib/icon-pack/index.d.ts +5 -0
  84. package/lib/icon-pack/index.js +13 -0
  85. package/lib/icon-pack/src/IconPack.d.ts +1047 -0
  86. package/lib/icon-pack/src/IconPack.js +240 -0
  87. package/lib/icon-pack/src/interface.d.ts +465 -0
  88. package/lib/icon-pack/src/interface.js +49 -0
  89. package/lib/icon-pack/src/styles/index.cssr.d.ts +2 -0
  90. package/lib/icon-pack/src/styles/index.cssr.js +136 -0
  91. package/lib/icon-pack/styles/dark.d.ts +123 -0
  92. package/lib/icon-pack/styles/dark.js +22 -0
  93. package/lib/icon-pack/styles/index.d.ts +3 -0
  94. package/lib/icon-pack/styles/index.js +10 -0
  95. package/lib/icon-pack/styles/light.d.ts +143 -0
  96. package/lib/icon-pack/styles/light.js +46 -0
  97. package/lib/icon-wrapper/src/IconWrapper.d.ts +1 -1
  98. package/lib/input/src/Input.js +3 -1
  99. package/lib/pagination/index.d.ts +3 -3
  100. package/lib/pagination/index.js +2 -1
  101. package/lib/pagination/src/Pagination.d.ts +74 -1379
  102. package/lib/pagination/src/Pagination.js +27 -40
  103. package/lib/pagination/src/interface.d.ts +1345 -1
  104. package/lib/pagination/src/interface.js +37 -0
  105. package/lib/themes/dark.js +110 -108
  106. package/lib/themes/light.js +110 -108
  107. package/lib/version.d.ts +1 -1
  108. package/lib/version.js +1 -1
  109. package/package.json +1 -1
  110. package/volar.d.ts +1 -0
  111. package/web-types.json +263 -1
package/dist/index.mjs CHANGED
@@ -3408,7 +3408,7 @@ function getOffset$2(placement, offsetRect, targetRect, offsetTopToStandardPlace
3408
3408
  }
3409
3409
 
3410
3410
  /* eslint-disable @typescript-eslint/no-non-null-assertion */
3411
- const style$1Y = c([c('.v-binder-follower-container', {
3411
+ const style$1Z = c([c('.v-binder-follower-container', {
3412
3412
  position: 'absolute',
3413
3413
  left: '0',
3414
3414
  right: '0',
@@ -3487,7 +3487,7 @@ var VFollower = defineComponent({
3487
3487
  }
3488
3488
  });
3489
3489
  const ssrAdapter = useSsrAdapter();
3490
- style$1Y.mount({
3490
+ style$1Z.mount({
3491
3491
  id: 'vueuc/binder',
3492
3492
  head: true,
3493
3493
  anchorMetaName: cssrAnchorMetaName$1,
@@ -4947,7 +4947,7 @@ var VXScroll = defineComponent({
4947
4947
 
4948
4948
  /* eslint-disable @typescript-eslint/strict-boolean-expressions */
4949
4949
  const hiddenAttr = 'v-hidden';
4950
- const style$1X = c('[v-hidden]', {
4950
+ const style$1Y = c('[v-hidden]', {
4951
4951
  display: 'none!important'
4952
4952
  });
4953
4953
  var VOverflow = defineComponent({
@@ -5060,7 +5060,7 @@ var VOverflow = defineComponent({
5060
5060
  }
5061
5061
  }
5062
5062
  const ssrAdapter = useSsrAdapter();
5063
- style$1X.mount({
5063
+ style$1Y.mount({
5064
5064
  id: 'vueuc/overflow',
5065
5065
  head: true,
5066
5066
  anchorMetaName: cssrAnchorMetaName$1,
@@ -5442,6 +5442,14 @@ function rtlInset(inset) {
5442
5442
  return `${top} ${left} ${bottom} ${right}`;
5443
5443
  }
5444
5444
 
5445
+ function copyToClipboard(text) {
5446
+ const clipboard = globalThis.navigator?.clipboard;
5447
+ if (!clipboard?.writeText) {
5448
+ return Promise.reject(new Error("Clipboard API is unavailable"));
5449
+ }
5450
+ return clipboard.writeText(text);
5451
+ }
5452
+
5445
5453
  function download$1(url, name) {
5446
5454
  if (!url) return;
5447
5455
  const a = document.createElement("a");
@@ -5876,6 +5884,9 @@ function useThemeClass(componentName, hashRef, cssVarsRef, props) {
5876
5884
  };
5877
5885
  }
5878
5886
 
5887
+ const formInjectionKey = createInjectionKey("u-form");
5888
+ const formItemInstsInjectionKey = createInjectionKey("u-form-item-insts");
5889
+
5879
5890
  const formItemInjectionKey = createInjectionKey("u-form-item");
5880
5891
  function useFormItem(props, {
5881
5892
  defaultSize = "medium",
@@ -5883,6 +5894,7 @@ function useFormItem(props, {
5883
5894
  mergedDisabled
5884
5895
  } = {}) {
5885
5896
  const UFormItem = inject(formItemInjectionKey, null);
5897
+ const UForm = inject(formInjectionKey, null);
5886
5898
  provide(formItemInjectionKey, null);
5887
5899
  const mergedSizeRef = computed(mergedSize ? () => mergedSize(UFormItem) : () => {
5888
5900
  const {
@@ -5909,6 +5921,9 @@ function useFormItem(props, {
5909
5921
  if (UFormItem) {
5910
5922
  return UFormItem.disabled.value;
5911
5923
  }
5924
+ if (UForm) {
5925
+ return UForm.props.disabled;
5926
+ }
5912
5927
  return false;
5913
5928
  });
5914
5929
  const mergedStatusRef = computed(() => {
@@ -14065,7 +14080,7 @@ useTheme.props = {
14065
14080
  builtinThemeOverrides: Object
14066
14081
  };
14067
14082
 
14068
- var style$1W = cB("base-icon", `
14083
+ var style$1X = cB("base-icon", `
14069
14084
  height: 1em;
14070
14085
  width: 1em;
14071
14086
  line-height: 1em;
@@ -14101,7 +14116,7 @@ var UBaseIcon = defineComponent({
14101
14116
  onMouseup: Function
14102
14117
  },
14103
14118
  setup(props) {
14104
- useStyle("-base-icon", style$1W, toRef(props, "clsPrefix"));
14119
+ useStyle("-base-icon", style$1X, toRef(props, "clsPrefix"));
14105
14120
  },
14106
14121
  render() {
14107
14122
  return /* @__PURE__ */ h(
@@ -14129,10 +14144,14 @@ const iconProps = {
14129
14144
  component: Object,
14130
14145
  name: String,
14131
14146
  pack: String,
14147
+ async: {
14148
+ type: Boolean,
14149
+ default: void 0
14150
+ },
14132
14151
  onClick: Function
14133
14152
  };
14134
14153
 
14135
- var style$1V = cB("icon", `
14154
+ var style$1W = cB("icon", `
14136
14155
  height: 1em;
14137
14156
  width: 1em;
14138
14157
  line-height: 1em;
@@ -14318,7 +14337,7 @@ const derived = {
14318
14337
  boxShadow2: "0px 20px 80px 0px rgba(0, 0, 0, 0.07)"
14319
14338
  };
14320
14339
 
14321
- function self$1C(vars) {
14340
+ function self$1D(vars) {
14322
14341
  const {
14323
14342
  elementsPrimary
14324
14343
  } = vars;
@@ -14334,15 +14353,16 @@ function self$1C(vars) {
14334
14353
  const iconLight = {
14335
14354
  name: "Icon",
14336
14355
  common: derived,
14337
- self: self$1C
14356
+ self: self$1D
14338
14357
  };
14339
14358
 
14340
14359
  const iconDark$1 = {
14341
14360
  name: "Icon",
14342
14361
  common: derived$1,
14343
- self: self$1C
14362
+ self: self$1D
14344
14363
  };
14345
14364
 
14365
+ const FALLBACK_ICON = "&#65533";
14346
14366
  const UIconImpl = defineComponent({
14347
14367
  _n_icon__: true,
14348
14368
  name: "Icon",
@@ -14353,7 +14373,7 @@ const UIconImpl = defineComponent({
14353
14373
  mergedIconPacksRef,
14354
14374
  inlineThemeDisabled
14355
14375
  } = useConfig(props);
14356
- const themeRef = useTheme("Icon", "-icon", style$1V, iconLight, props, mergedClsPrefixRef);
14376
+ const themeRef = useTheme("Icon", "-icon", style$1W, iconLight, props, mergedClsPrefixRef);
14357
14377
  const cssVarsRef = computed(() => {
14358
14378
  const {
14359
14379
  depth
@@ -14399,14 +14419,24 @@ const UIconImpl = defineComponent({
14399
14419
  warn("icon", `icon pack "${targetName}" not found`);
14400
14420
  return null;
14401
14421
  }
14402
- if (config.async) {
14403
- return target.renderAsyncIcon(name);
14404
- }
14405
- if (!("renderIcon" in target)) {
14406
- warn("icon", `pack "${target.name}" is async-only, set \`async: true\` on \`u-config-provider :icon-packs\``);
14407
- return null;
14422
+ try {
14423
+ if (props.async ?? config.async) {
14424
+ if ("renderIcon" in target) {
14425
+ warnOnce("icon", `pack "${target.name}" is a sync pack rendered in async mode \u2014 its icons are already bundled, so async loads them again at runtime. Register the async pack ("${target.name}Async") or drop \`async\`.`);
14426
+ }
14427
+ return target.renderAsyncIcon(name);
14428
+ }
14429
+ if (!("renderIcon" in target)) {
14430
+ warn("icon", `pack "${target.name}" is async-only, set \`async: true\` on \`u-config-provider :icon-packs\``);
14431
+ return null;
14432
+ }
14433
+ return target.renderIcon(name);
14434
+ } catch (err) {
14435
+ warnOnce("icon", `icon "${name}" not found in pack "${target.name}", rendering fallback (${err.message})`);
14436
+ return h("span", {
14437
+ innerHTML: FALLBACK_ICON
14438
+ });
14408
14439
  }
14409
- return target.renderIcon(name);
14410
14440
  });
14411
14441
  return {
14412
14442
  mergedClsPrefix: mergedClsPrefixRef,
@@ -14465,6 +14495,12 @@ function renderIcon(name, props, children) {
14465
14495
  name
14466
14496
  }, slots);
14467
14497
  }
14498
+ function renderAsyncIcon(name, props, children) {
14499
+ return renderIcon(name, {
14500
+ ...props,
14501
+ async: true
14502
+ }, children);
14503
+ }
14468
14504
 
14469
14505
  var commonVars$b = {
14470
14506
  iconWidth: "44px",
@@ -14478,7 +14514,7 @@ var commonVars$b = {
14478
14514
  avatarSize: "16px"
14479
14515
  };
14480
14516
 
14481
- function self$1B(vars) {
14517
+ function self$1C(vars) {
14482
14518
  const {
14483
14519
  heightHuge,
14484
14520
  fontBodyLarge,
@@ -14508,16 +14544,16 @@ function self$1B(vars) {
14508
14544
  const accountOptionLight = {
14509
14545
  name: "AccountOption",
14510
14546
  common: derived,
14511
- self: self$1B
14547
+ self: self$1C
14512
14548
  };
14513
14549
 
14514
14550
  const accountOptionDark = {
14515
14551
  name: "AccountOption",
14516
14552
  common: derived$1,
14517
- self: self$1B
14553
+ self: self$1C
14518
14554
  };
14519
14555
 
14520
- var style$1U = cB("base-account-option", `
14556
+ var style$1V = cB("base-account-option", `
14521
14557
  display: flex;
14522
14558
  align-items: center;
14523
14559
  position: relative;
@@ -14572,7 +14608,7 @@ var UBaseAccountOption = defineComponent({
14572
14608
  const themeRef = useTheme(
14573
14609
  "AccountOption",
14574
14610
  "-base-account-option",
14575
- style$1U,
14611
+ style$1V,
14576
14612
  accountOptionLight,
14577
14613
  props,
14578
14614
  mergedClsPrefixRef
@@ -15851,6 +15887,31 @@ var SearchIcon = defineComponent({
15851
15887
  }
15852
15888
  });
15853
15889
 
15890
+ var SearchOutlineIcon = defineComponent({
15891
+ name: "SearchOutline",
15892
+ render() {
15893
+ return /* @__PURE__ */ h(
15894
+ "svg",
15895
+ {
15896
+ viewBox: "0 0 24 24",
15897
+ fill: "none",
15898
+ xmlns: "http://www.w3.org/2000/svg",
15899
+ "aria-hidden": true
15900
+ },
15901
+ /* @__PURE__ */ h(
15902
+ "path",
15903
+ {
15904
+ d: "M21 21l-4.35-4.35M19 11a8 8 0 1 1-16 0 8 8 0 0 1 16 0z",
15905
+ stroke: "currentColor",
15906
+ "stroke-width": "2",
15907
+ "stroke-linecap": "round",
15908
+ "stroke-linejoin": "round"
15909
+ }
15910
+ )
15911
+ );
15912
+ }
15913
+ });
15914
+
15854
15915
  var SendFilled = defineComponent({
15855
15916
  name: "SendFilled",
15856
15917
  render() {
@@ -16027,7 +16088,7 @@ function iconSwitchTransition({
16027
16088
  })];
16028
16089
  }
16029
16090
 
16030
- var style$1T = cB("base-clear", `
16091
+ var style$1U = cB("base-clear", `
16031
16092
  flex-shrink: 0;
16032
16093
  height: 1em;
16033
16094
  width: 1em;
@@ -16068,7 +16129,7 @@ var UBaseClear = defineComponent({
16068
16129
  onClear: Function
16069
16130
  },
16070
16131
  setup(props) {
16071
- useStyle("-base-clear", style$1T, toRef(props, "clsPrefix"));
16132
+ useStyle("-base-clear", style$1U, toRef(props, "clsPrefix"));
16072
16133
  return {
16073
16134
  handleMouseDown(e) {
16074
16135
  e.preventDefault();
@@ -16099,7 +16160,7 @@ var UBaseClear = defineComponent({
16099
16160
  }
16100
16161
  });
16101
16162
 
16102
- var style$1S = cB("base-close", `
16163
+ var style$1T = cB("base-close", `
16103
16164
  display: flex;
16104
16165
  align-items: center;
16105
16166
  justify-content: center;
@@ -16171,7 +16232,7 @@ var UBaseClose = defineComponent({
16171
16232
  absolute: Boolean
16172
16233
  },
16173
16234
  setup(props) {
16174
- useStyle("-base-close", style$1S, toRef(props, "clsPrefix"));
16235
+ useStyle("-base-close", style$1T, toRef(props, "clsPrefix"));
16175
16236
  return () => {
16176
16237
  const { clsPrefix, disabled, absolute, round, isButtonTag } = props;
16177
16238
  const Tag = isButtonTag ? "button" : "div";
@@ -16330,7 +16391,7 @@ var FocusDetector = defineComponent({
16330
16391
  }
16331
16392
  });
16332
16393
 
16333
- var style$1R = c$1([c$1("@keyframes loading-container-rotate", `
16394
+ var style$1S = c$1([c$1("@keyframes loading-container-rotate", `
16334
16395
  to {
16335
16396
  -webkit-transform: rotate(360deg);
16336
16397
  transform: rotate(360deg);
@@ -16500,7 +16561,7 @@ var UBaseLoading = defineComponent({
16500
16561
  ...exposedLoadingProps
16501
16562
  },
16502
16563
  setup(props) {
16503
- useStyle("-base-loading", style$1R, toRef(props, "clsPrefix"));
16564
+ useStyle("-base-loading", style$1S, toRef(props, "clsPrefix"));
16504
16565
  },
16505
16566
  render() {
16506
16567
  const { clsPrefix, radius, strokeWidth, stroke, scale } = this;
@@ -16630,7 +16691,7 @@ function fadeInTransition({
16630
16691
  })];
16631
16692
  }
16632
16693
 
16633
- var style$1Q = cB("base-menu-mask", `
16694
+ var style$1R = cB("base-menu-mask", `
16634
16695
  position: absolute;
16635
16696
  left: 0;
16636
16697
  right: 0;
@@ -16653,7 +16714,7 @@ var UBaseMenuMask = defineComponent({
16653
16714
  }
16654
16715
  },
16655
16716
  setup(props) {
16656
- useStyle("-base-menu-mask", style$1Q, toRef(props, "clsPrefix"));
16717
+ useStyle("-base-menu-mask", style$1R, toRef(props, "clsPrefix"));
16657
16718
  const messageRef = ref(null);
16658
16719
  let timerId = null;
16659
16720
  const uncontrolledShowRef = ref(false);
@@ -16841,7 +16902,7 @@ const commonVars$a = {
16841
16902
  railColor: "transparent"
16842
16903
  };
16843
16904
 
16844
- function self$1A(vars) {
16905
+ function self$1B(vars) {
16845
16906
  const {
16846
16907
  scrollbarColor,
16847
16908
  scrollbarColorHover,
@@ -16861,13 +16922,13 @@ function self$1A(vars) {
16861
16922
  const safeTopScrollbarLight = {
16862
16923
  name: "SafeTopScrollbar",
16863
16924
  common: derived,
16864
- self: self$1A
16925
+ self: self$1B
16865
16926
  };
16866
16927
 
16867
16928
  const safeTopScrollbarDark = {
16868
16929
  name: "SafeTopScrollbar",
16869
16930
  common: derived$1,
16870
- self: self$1A
16931
+ self: self$1B
16871
16932
  };
16872
16933
 
16873
16934
  cB("scrollbar", [cM("rtl", `
@@ -16880,7 +16941,7 @@ cB("scrollbar", [cM("rtl", `
16880
16941
  right: unset;
16881
16942
  `)])])])]);
16882
16943
 
16883
- var style$1P = cB("safe-top-scrollbar", `
16944
+ var style$1Q = cB("safe-top-scrollbar", `
16884
16945
  overflow: hidden;
16885
16946
  position: relative;
16886
16947
  z-index: auto;
@@ -17029,7 +17090,7 @@ const SafeTopScrollbar$1 = defineComponent({
17029
17090
  const themeRef = useTheme(
17030
17091
  "SafeTopScrollbar",
17031
17092
  "-safe-top-scrollbar",
17032
- style$1P,
17093
+ style$1Q,
17033
17094
  safeTopScrollbarLight,
17034
17095
  props,
17035
17096
  mergedClsPrefixRef
@@ -17763,7 +17824,7 @@ const commonVars$9 = {
17763
17824
  railColor: "transparent"
17764
17825
  };
17765
17826
 
17766
- function self$1z(vars) {
17827
+ function self$1A(vars) {
17767
17828
  const {
17768
17829
  scrollbarColor,
17769
17830
  scrollbarColorHover,
@@ -17783,13 +17844,13 @@ function self$1z(vars) {
17783
17844
  const scrollbarLight = {
17784
17845
  name: "Scrollbar",
17785
17846
  common: derived,
17786
- self: self$1z
17847
+ self: self$1A
17787
17848
  };
17788
17849
 
17789
17850
  const scrollbarDark = {
17790
17851
  name: "Scrollbar",
17791
17852
  common: derived$1,
17792
- self: self$1z
17853
+ self: self$1A
17793
17854
  };
17794
17855
 
17795
17856
  var rtlStyle$t = cB("scrollbar", [cM("rtl", `
@@ -17807,7 +17868,7 @@ const scrollbarRtl = {
17807
17868
  style: rtlStyle$t
17808
17869
  };
17809
17870
 
17810
- var style$1O = cB("scrollbar", `
17871
+ var style$1P = cB("scrollbar", `
17811
17872
  overflow: hidden;
17812
17873
  position: relative;
17813
17874
  z-index: auto;
@@ -17950,7 +18011,7 @@ const Scrollbar$1 = defineComponent({
17950
18011
  const themeRef = useTheme(
17951
18012
  "Scrollbar",
17952
18013
  "-scrollbar",
17953
- style$1O,
18014
+ style$1P,
17954
18015
  scrollbarLight,
17955
18016
  props,
17956
18017
  mergedClsPrefixRef
@@ -19322,7 +19383,7 @@ function createTreeMate(rawNodes, options = {}) {
19322
19383
  return treemate;
19323
19384
  }
19324
19385
 
19325
- function self$1y(vars) {
19386
+ function self$1z(vars) {
19326
19387
  const {
19327
19388
  fontBodyMedium,
19328
19389
  fontTitleLarge,
@@ -19354,16 +19415,16 @@ function self$1y(vars) {
19354
19415
  const emptyLight = {
19355
19416
  name: "Empty",
19356
19417
  common: derived,
19357
- self: self$1y
19418
+ self: self$1z
19358
19419
  };
19359
19420
 
19360
19421
  const emptyDark$1 = {
19361
19422
  name: "Empty",
19362
19423
  common: derived$1,
19363
- self: self$1y
19424
+ self: self$1z
19364
19425
  };
19365
19426
 
19366
- var style$1N = cB("empty", `
19427
+ var style$1O = cB("empty", `
19367
19428
  display: flex;
19368
19429
  flex-direction: column;
19369
19430
  align-items: center;
@@ -19441,7 +19502,7 @@ var UEmpty$1 = defineComponent({
19441
19502
  const themeRef = useTheme(
19442
19503
  "Empty",
19443
19504
  "-empty",
19444
- style$1N,
19505
+ style$1O,
19445
19506
  emptyLight,
19446
19507
  props,
19447
19508
  mergedClsPrefixRef
@@ -19529,7 +19590,7 @@ var UEmpty$1 = defineComponent({
19529
19590
  }
19530
19591
  });
19531
19592
 
19532
- function self$1x(vars) {
19593
+ function self$1y(vars) {
19533
19594
  const {
19534
19595
  borderRadius,
19535
19596
  iconMedium,
@@ -19586,7 +19647,7 @@ const internalSelectMenuLight = createTheme$1({
19586
19647
  Scrollbar: scrollbarLight,
19587
19648
  Empty: emptyLight
19588
19649
  },
19589
- self: self$1x
19650
+ self: self$1y
19590
19651
  });
19591
19652
 
19592
19653
  const internalSelectMenuDark = {
@@ -19596,7 +19657,7 @@ const internalSelectMenuDark = {
19596
19657
  Scrollbar: scrollbarDark,
19597
19658
  Empty: emptyDark$1
19598
19659
  },
19599
- self: self$1x
19660
+ self: self$1y
19600
19661
  };
19601
19662
 
19602
19663
  cB("base-select-menu", [cM("rtl", `
@@ -19837,7 +19898,7 @@ function fadeInScaleUpTransition({
19837
19898
  })];
19838
19899
  }
19839
19900
 
19840
- var style$1M = cB("base-select-menu", `
19901
+ var style$1N = cB("base-select-menu", `
19841
19902
  line-height: 1.5;
19842
19903
  outline: none;
19843
19904
  z-index: 0;
@@ -20025,7 +20086,7 @@ var UInternalSelectMenu = defineComponent({
20025
20086
  const themeRef = useTheme(
20026
20087
  "InternalSelectMenu",
20027
20088
  "-internal-select-menu",
20028
- style$1M,
20089
+ style$1N,
20029
20090
  internalSelectMenuLight,
20030
20091
  props,
20031
20092
  toRef(props, "clsPrefix")
@@ -20493,7 +20554,7 @@ var UInternalSelectMenu = defineComponent({
20493
20554
  }
20494
20555
  });
20495
20556
 
20496
- function self$1w(vars) {
20557
+ function self$1x(vars) {
20497
20558
  const {
20498
20559
  fontBodyMedium,
20499
20560
  containerPrimary,
@@ -20520,13 +20581,13 @@ function self$1w(vars) {
20520
20581
  const popoverLight = {
20521
20582
  name: "Popover",
20522
20583
  common: derived,
20523
- self: self$1w
20584
+ self: self$1x
20524
20585
  };
20525
20586
 
20526
20587
  const popoverDark = {
20527
20588
  name: "Popover",
20528
20589
  common: derived$1,
20529
- self: self$1w
20590
+ self: self$1x
20530
20591
  };
20531
20592
 
20532
20593
  cB("popover", [cM("rtl", `
@@ -20541,7 +20602,7 @@ const oppositePlacement = {
20541
20602
  right: "left"
20542
20603
  };
20543
20604
  const arrowSize = "var(--u-arrow-height) * 1.414";
20544
- var style$1L = c$1([cB("popover", `
20605
+ var style$1M = c$1([cB("popover", `
20545
20606
  transition:
20546
20607
  box-shadow .3s var(--u-bezier),
20547
20608
  background-color .3s var(--u-bezier),
@@ -20760,7 +20821,7 @@ var UPopoverBody = defineComponent({
20760
20821
  const themeRef = useTheme(
20761
20822
  "Popover",
20762
20823
  "-popover",
20763
- style$1L,
20824
+ style$1M,
20764
20825
  popoverLight,
20765
20826
  props,
20766
20827
  mergedClsPrefixRef
@@ -21590,7 +21651,7 @@ var UPopover$1 = defineComponent({
21590
21651
  }
21591
21652
  });
21592
21653
 
21593
- function self$1v(vars) {
21654
+ function self$1w(vars) {
21594
21655
  const {
21595
21656
  opacityDisabled,
21596
21657
  borderRadiusSmall: borderRadius,
@@ -21688,13 +21749,13 @@ function self$1v(vars) {
21688
21749
  const tagLight = {
21689
21750
  name: "Tag",
21690
21751
  common: derived,
21691
- self: self$1v
21752
+ self: self$1w
21692
21753
  };
21693
21754
 
21694
21755
  const tagDark = {
21695
21756
  name: "Tag",
21696
21757
  common: derived$1,
21697
- self: self$1v
21758
+ self: self$1w
21698
21759
  };
21699
21760
 
21700
21761
  var rtlStyle$s = cB("tag", [cM("rtl", `
@@ -21741,7 +21802,7 @@ var commonProps = {
21741
21802
  }
21742
21803
  };
21743
21804
 
21744
- var style$1K = cB("tag", `
21805
+ var style$1L = cB("tag", `
21745
21806
  white-space: nowrap;
21746
21807
  position: relative;
21747
21808
  box-sizing: border-box;
@@ -21908,7 +21969,7 @@ var _UTag = defineComponent({
21908
21969
  const themeRef = useTheme(
21909
21970
  "Tag",
21910
21971
  "-tag",
21911
- style$1K,
21972
+ style$1L,
21912
21973
  tagLight,
21913
21974
  props,
21914
21975
  mergedClsPrefixRef
@@ -22272,7 +22333,7 @@ var _UTagGroup = defineComponent({
22272
22333
  }
22273
22334
  });
22274
22335
 
22275
- function self$1u(vars) {
22336
+ function self$1v(vars) {
22276
22337
  const {
22277
22338
  heightSmall,
22278
22339
  heightMedium,
@@ -22292,10 +22353,10 @@ function self$1u(vars) {
22292
22353
  }
22293
22354
  const skeletonLight$1 = {
22294
22355
  common: derived,
22295
- self: self$1u
22356
+ self: self$1v
22296
22357
  };
22297
22358
 
22298
- var style$1J = c$1([cB("skeleton", `
22359
+ var style$1K = c$1([cB("skeleton", `
22299
22360
  height: 1em;
22300
22361
  width: 100%;
22301
22362
  transition: background-color .3s var(--u-bezier);
@@ -22351,7 +22412,7 @@ var UBaseSkeleton = defineComponent({
22351
22412
  const themeRef = useTheme(
22352
22413
  "Skeleton",
22353
22414
  "-skeleton",
22354
- style$1J,
22415
+ style$1K,
22355
22416
  skeletonLight$1,
22356
22417
  props,
22357
22418
  mergedClsPrefixRef
@@ -22467,7 +22528,7 @@ var UBaseSuffix = defineComponent({
22467
22528
  }
22468
22529
  });
22469
22530
 
22470
- function self$1t(vars) {
22531
+ function self$1u(vars) {
22471
22532
  const {
22472
22533
  borderRadius,
22473
22534
  iconMedium,
@@ -22625,7 +22686,7 @@ const internalSelectionLight = createTheme$1({
22625
22686
  peers: {
22626
22687
  Popover: popoverLight
22627
22688
  },
22628
- self: self$1t
22689
+ self: self$1u
22629
22690
  });
22630
22691
 
22631
22692
  const internalSelectionDark = {
@@ -22634,7 +22695,7 @@ const internalSelectionDark = {
22634
22695
  peers: {
22635
22696
  Popover: popoverDark
22636
22697
  },
22637
- self: self$1t
22698
+ self: self$1u
22638
22699
  };
22639
22700
 
22640
22701
  cB("base-selection", [cM("rtl", `
@@ -22667,7 +22728,7 @@ function generateSecondaryStates(state) {
22667
22728
  color: var(--u-arrow-color${state}-secondary);
22668
22729
  `)])];
22669
22730
  }
22670
- var style$1I = c$1([cB("base-selection", `
22731
+ var style$1J = c$1([cB("base-selection", `
22671
22732
  position: relative;
22672
22733
  z-index: auto;
22673
22734
  box-shadow: none;
@@ -23018,7 +23079,7 @@ var UInternalSelection = defineComponent({
23018
23079
  const themeRef = useTheme(
23019
23080
  "InternalSelection",
23020
23081
  "-internal-selection",
23021
- style$1I,
23082
+ style$1J,
23022
23083
  internalSelectionLight,
23023
23084
  props,
23024
23085
  toRef(props, "clsPrefix")
@@ -24099,7 +24160,7 @@ function fadeUpWidthExpandTransition({
24099
24160
  })];
24100
24161
  }
24101
24162
 
24102
- var style$1H = c$1([c$1("@keyframes u-base-slot-machine-fade-up-in", `
24163
+ var style$1I = c$1([c$1("@keyframes u-base-slot-machine-fade-up-in", `
24103
24164
  from {
24104
24165
  transform: translateY(60%);
24105
24166
  opacity: 0;
@@ -24218,7 +24279,7 @@ var UBaseSlotMachine = defineComponent({
24218
24279
  }
24219
24280
  },
24220
24281
  setup(props) {
24221
- useStyle("-base-slot-machine", style$1H, toRef(props, "clsPrefix"));
24282
+ useStyle("-base-slot-machine", style$1I, toRef(props, "clsPrefix"));
24222
24283
  const oldValueRef = ref();
24223
24284
  const newValueRef = ref();
24224
24285
  const numbersRef = computed(() => {
@@ -24273,7 +24334,7 @@ var UBaseSlotMachine = defineComponent({
24273
24334
  }
24274
24335
  });
24275
24336
 
24276
- function self$1s(vars) {
24337
+ function self$1t(vars) {
24277
24338
  const {
24278
24339
  borderRadiusSmall,
24279
24340
  brandPrimary500,
@@ -24309,10 +24370,10 @@ function self$1s(vars) {
24309
24370
  }
24310
24371
  const typographyLight$1 = {
24311
24372
  common: derived,
24312
- self: self$1s
24373
+ self: self$1t
24313
24374
  };
24314
24375
 
24315
- var style$1G = cB("text", `
24376
+ var style$1H = cB("text", `
24316
24377
  transition: color .3s var(--u-bezier);
24317
24378
  color: var(--u-text-color);
24318
24379
  margin: 0;
@@ -24620,7 +24681,7 @@ var InternalUText = defineComponent({
24620
24681
  const themeRef = useTheme(
24621
24682
  "Typography",
24622
24683
  "-text",
24623
- style$1G,
24684
+ style$1H,
24624
24685
  typographyLight$1,
24625
24686
  props,
24626
24687
  mergedClsPrefixRef
@@ -24708,7 +24769,7 @@ var InternalUText = defineComponent({
24708
24769
  }
24709
24770
  });
24710
24771
 
24711
- var style$1F = cB("base-wave", `
24772
+ var style$1G = cB("base-wave", `
24712
24773
  position: absolute;
24713
24774
  left: 0;
24714
24775
  right: 0;
@@ -24726,7 +24787,7 @@ var UBaseWave = defineComponent({
24726
24787
  }
24727
24788
  },
24728
24789
  setup(props) {
24729
- useStyle("-base-wave", style$1F, toRef(props, "clsPrefix"));
24790
+ useStyle("-base-wave", style$1G, toRef(props, "clsPrefix"));
24730
24791
  const selfRef = ref(null);
24731
24792
  const activeRef = ref(false);
24732
24793
  let animationTimerId = null;
@@ -24771,7 +24832,7 @@ var UBaseWave = defineComponent({
24771
24832
  }
24772
24833
  });
24773
24834
 
24774
- function self$1r(vars) {
24835
+ function self$1s(vars) {
24775
24836
  const {
24776
24837
  borderRadius,
24777
24838
  fontBodyMedium,
@@ -24808,7 +24869,7 @@ const tooltipLight = createTheme$1({
24808
24869
  peers: {
24809
24870
  Popover: popoverLight
24810
24871
  },
24811
- self: self$1r
24872
+ self: self$1s
24812
24873
  });
24813
24874
 
24814
24875
  const tooltipDark = {
@@ -24817,10 +24878,10 @@ const tooltipDark = {
24817
24878
  peers: {
24818
24879
  Popover: popoverDark
24819
24880
  },
24820
- self: self$1r
24881
+ self: self$1s
24821
24882
  };
24822
24883
 
24823
- var style$1E = cB("tooltip", "", [cE("content", `
24884
+ var style$1F = cB("tooltip", "", [cE("content", `
24824
24885
  display: flex;
24825
24886
  align-items: flex-start;
24826
24887
  `), cE("icon", `
@@ -24946,7 +25007,7 @@ var _UTooltip = defineComponent({
24946
25007
  const themeRef = useTheme(
24947
25008
  "Tooltip",
24948
25009
  "-tooltip",
24949
- props.variant === "plain" ? void 0 : style$1E,
25010
+ props.variant === "plain" ? void 0 : style$1F,
24950
25011
  tooltipLight,
24951
25012
  props,
24952
25013
  mergedClsPrefixRef
@@ -25076,7 +25137,7 @@ const ellipsisLight = createTheme$1({
25076
25137
  }
25077
25138
  });
25078
25139
 
25079
- var style$1D = cB("ellipsis", {
25140
+ var style$1E = cB("ellipsis", {
25080
25141
  overflow: "hidden"
25081
25142
  }, [cNotM("line-clamp", `
25082
25143
  white-space: nowrap;
@@ -25114,7 +25175,7 @@ var _UEllipsis = defineComponent({
25114
25175
  const mergedTheme = useTheme(
25115
25176
  "Ellipsis",
25116
25177
  "-ellipsis",
25117
- style$1D,
25178
+ style$1E,
25118
25179
  ellipsisLight,
25119
25180
  props,
25120
25181
  mergedClsPrefixRef
@@ -25271,7 +25332,7 @@ const UPerformantEllipsis$1 = defineComponent({
25271
25332
  setup(props, { attrs, slots }) {
25272
25333
  const mouseEnteredRef = ref(false);
25273
25334
  const mergedClsPrefixRef = useMergedClsPrefix();
25274
- useStyle("-ellipsis", style$1D, mergedClsPrefixRef);
25335
+ useStyle("-ellipsis", style$1E, mergedClsPrefixRef);
25275
25336
  const renderTrigger = () => {
25276
25337
  const { lineClamp } = props;
25277
25338
  const mergedClsPrefix = mergedClsPrefixRef.value;
@@ -25311,7 +25372,7 @@ const UPerformantEllipsis$1 = defineComponent({
25311
25372
  }
25312
25373
  });
25313
25374
 
25314
- function self$1q(vars) {
25375
+ function self$1r(vars) {
25315
25376
  const {
25316
25377
  borderRadiusLarge,
25317
25378
  elementsQuaternary,
@@ -25353,21 +25414,21 @@ function self$1q(vars) {
25353
25414
  const actionCardLight = {
25354
25415
  name: "ActionCard",
25355
25416
  common: derived,
25356
- self: self$1q
25417
+ self: self$1r
25357
25418
  };
25358
25419
 
25359
25420
  const actionCardDark = {
25360
25421
  name: "ActionCard",
25361
25422
  common: derived$1,
25362
25423
  self: vars => {
25363
- const lightVars = self$1q(vars);
25424
+ const lightVars = self$1r(vars);
25364
25425
  return {
25365
25426
  ...lightVars
25366
25427
  };
25367
25428
  }
25368
25429
  };
25369
25430
 
25370
- var style$1C = cB("action-card", `
25431
+ var style$1D = cB("action-card", `
25371
25432
  position: relative;
25372
25433
  width: var(--u-width);
25373
25434
  min-height: var(--u-min-height);
@@ -25488,7 +25549,7 @@ var _UActionCard = defineComponent({
25488
25549
  const themeRef = useTheme(
25489
25550
  "ActionCard",
25490
25551
  "-action-card",
25491
- style$1C,
25552
+ style$1D,
25492
25553
  actionCardLight,
25493
25554
  props,
25494
25555
  mergedClsPrefixRef
@@ -25619,7 +25680,7 @@ var _UActionCard = defineComponent({
25619
25680
  }
25620
25681
  });
25621
25682
 
25622
- var style$1B = cB("affix", [cM("affixed", {
25683
+ var style$1C = cB("affix", [cM("affixed", {
25623
25684
  position: "fixed"
25624
25685
  }, [cM("absolute-positioned", {
25625
25686
  position: "absolute"
@@ -25689,7 +25750,7 @@ var _UAffix = defineComponent({
25689
25750
  props: affixProps,
25690
25751
  setup(props) {
25691
25752
  const { mergedClsPrefixRef } = useConfig(props);
25692
- useStyle("-affix", style$1B, mergedClsPrefixRef);
25753
+ useStyle("-affix", style$1C, mergedClsPrefixRef);
25693
25754
  let scrollTarget = null;
25694
25755
  const stickToTopRef = ref(false);
25695
25756
  const stickToBottomRef = ref(false);
@@ -25825,7 +25886,7 @@ var commonVars$8 = {
25825
25886
  descriptionSpaceBanner: "24px"
25826
25887
  };
25827
25888
 
25828
- function self$1p(vars) {
25889
+ function self$1q(vars) {
25829
25890
  const {
25830
25891
  iconMedium,
25831
25892
  closeMedium,
@@ -25934,13 +25995,13 @@ function self$1p(vars) {
25934
25995
  const alertLight = {
25935
25996
  name: "Alert",
25936
25997
  common: derived,
25937
- self: self$1p
25998
+ self: self$1q
25938
25999
  };
25939
26000
 
25940
26001
  const alertDark = {
25941
26002
  name: "Alert",
25942
26003
  common: derived$1,
25943
- self: self$1p
26004
+ self: self$1q
25944
26005
  };
25945
26006
 
25946
26007
  var rtlStyle$r = cB("alert", [cM("rtl", `
@@ -26016,7 +26077,7 @@ function fadeInHeightExpandTransition({
26016
26077
  `)];
26017
26078
  }
26018
26079
 
26019
- var style$1A = cB("alert", `
26080
+ var style$1B = cB("alert", `
26020
26081
  line-height: var(--u-line-height);
26021
26082
  position: relative;
26022
26083
  transition: background-color .3s var(--u-bezier);
@@ -26195,7 +26256,7 @@ var _UAlert = defineComponent({
26195
26256
  const themeRef = useTheme(
26196
26257
  "Alert",
26197
26258
  "-alert",
26198
- style$1A,
26259
+ style$1B,
26199
26260
  alertLight,
26200
26261
  props,
26201
26262
  mergedClsPrefixRef
@@ -26336,7 +26397,7 @@ var _UAlert = defineComponent({
26336
26397
  }
26337
26398
  });
26338
26399
 
26339
- function self$1o(vars) {
26400
+ function self$1p(vars) {
26340
26401
  const {
26341
26402
  borderRadius,
26342
26403
  fontBodyMedium,
@@ -26366,13 +26427,13 @@ function self$1o(vars) {
26366
26427
  const anchorLight = {
26367
26428
  name: "Anchor",
26368
26429
  common: derived,
26369
- self: self$1o
26430
+ self: self$1p
26370
26431
  };
26371
26432
 
26372
26433
  const anchorDark = {
26373
26434
  name: "Anchor",
26374
26435
  common: derived$1,
26375
- self: self$1o
26436
+ self: self$1p
26376
26437
  };
26377
26438
 
26378
26439
  const anchorInjectionKey = createInjectionKey("u-anchor");
@@ -26711,7 +26772,7 @@ var UBaseAnchor = defineComponent({
26711
26772
  }
26712
26773
  });
26713
26774
 
26714
- var style$1z = cB("anchor", `
26775
+ var style$1A = cB("anchor", `
26715
26776
  position: relative;
26716
26777
  `, [cNotM("block", `
26717
26778
  padding-left: var(--u-rail-width);
@@ -26801,7 +26862,7 @@ var _UAnchor = defineComponent({
26801
26862
  const themeRef = useTheme(
26802
26863
  "Anchor",
26803
26864
  "-anchor",
26804
- style$1z,
26865
+ style$1A,
26805
26866
  anchorLight,
26806
26867
  props,
26807
26868
  mergedClsPrefixRef
@@ -26881,7 +26942,7 @@ const isChrome = isBrowser$1 && "chrome" in window;
26881
26942
  isBrowser$1 && navigator.userAgent.includes("Firefox");
26882
26943
  const isSafari = isBrowser$1 && navigator.userAgent.includes("Safari") && !isChrome;
26883
26944
 
26884
- function self$1n(vars) {
26945
+ function self$1o(vars) {
26885
26946
  const {
26886
26947
  iconMedium,
26887
26948
  textSecondary,
@@ -26992,13 +27053,13 @@ function self$1n(vars) {
26992
27053
  const inputLight = {
26993
27054
  name: "Input",
26994
27055
  common: derived,
26995
- self: self$1n
27056
+ self: self$1o
26996
27057
  };
26997
27058
 
26998
27059
  const inputDark = {
26999
27060
  name: "Input",
27000
27061
  common: derived$1,
27001
- self: self$1n
27062
+ self: self$1o
27002
27063
  };
27003
27064
 
27004
27065
  var rtlStyle$q = cB("input", [cM("rtl", `
@@ -27024,7 +27085,7 @@ const inputRtl = {
27024
27085
 
27025
27086
  const inputInjectionKey = createInjectionKey("u-input");
27026
27087
 
27027
- var style$1y = cB("input", `
27088
+ var style$1z = cB("input", `
27028
27089
  max-width: 100%;
27029
27090
  cursor: text;
27030
27091
  line-height: 1.5;
@@ -27572,7 +27633,7 @@ var commonVariables$5 = {
27572
27633
  rippleDuration: ".6s"
27573
27634
  };
27574
27635
 
27575
- function self$1m(vars) {
27636
+ function self$1n(vars) {
27576
27637
  const {
27577
27638
  heightMini,
27578
27639
  heightTiny,
@@ -27828,13 +27889,13 @@ function self$1m(vars) {
27828
27889
  const buttonLight = {
27829
27890
  name: "Button",
27830
27891
  common: derived,
27831
- self: self$1m
27892
+ self: self$1n
27832
27893
  };
27833
27894
 
27834
27895
  const buttonDark = {
27835
27896
  name: "Button",
27836
27897
  common: derived$1,
27837
- self: self$1m
27898
+ self: self$1n
27838
27899
  };
27839
27900
 
27840
27901
  var rtlStyle$p = cB("button", [cM("rtl", `
@@ -27852,7 +27913,7 @@ const buttonRtl = {
27852
27913
  style: rtlStyle$p
27853
27914
  };
27854
27915
 
27855
- var style$1x = c$1([cB("button", `
27916
+ var style$1y = c$1([cB("button", `
27856
27917
  margin: 0;
27857
27918
  font-weight: var(--u-font-weight);
27858
27919
  line-height: 1;
@@ -28183,7 +28244,7 @@ const Button = defineComponent({
28183
28244
  const themeRef = useTheme(
28184
28245
  "Button",
28185
28246
  "-button",
28186
- style$1x,
28247
+ style$1y,
28187
28248
  buttonLight,
28188
28249
  props,
28189
28250
  mergedClsPrefixRef
@@ -28617,7 +28678,7 @@ var commonVariables$4 = {
28617
28678
  iconMargin: "0 16px 0 0"
28618
28679
  };
28619
28680
 
28620
- function self$1l(vars) {
28681
+ function self$1m(vars) {
28621
28682
  const {
28622
28683
  closeMedium,
28623
28684
  iconMedium,
@@ -28702,13 +28763,13 @@ function self$1l(vars) {
28702
28763
  const messageLight = {
28703
28764
  name: "Message",
28704
28765
  common: derived,
28705
- self: self$1l
28766
+ self: self$1m
28706
28767
  };
28707
28768
 
28708
28769
  const messageDark = {
28709
28770
  name: "Message",
28710
28771
  common: derived$1,
28711
- self: self$1l
28772
+ self: self$1m
28712
28773
  };
28713
28774
 
28714
28775
  var rtlStyle$o = cB("message", [cM("rtl", `
@@ -28743,7 +28804,7 @@ const messageProps = {
28743
28804
  onMouseleave: Function
28744
28805
  };
28745
28806
 
28746
- var style$1w = c$1([cB("message-wrapper", `
28807
+ var style$1x = c$1([cB("message-wrapper", `
28747
28808
  margin: var(--u-margin);
28748
28809
  z-index: 0;
28749
28810
  transform-origin: top center;
@@ -28864,7 +28925,7 @@ var UMessage = defineComponent({
28864
28925
  const themeRef = useTheme(
28865
28926
  "Message",
28866
28927
  "-message",
28867
- style$1w,
28928
+ style$1x,
28868
28929
  messageLight,
28869
28930
  messageProviderProps,
28870
28931
  mergedClsPrefixRef
@@ -29543,7 +29604,7 @@ var UInput$1 = defineComponent({
29543
29604
  const themeRef = useTheme(
29544
29605
  "Input",
29545
29606
  "-input",
29546
- style$1y,
29607
+ style$1z,
29547
29608
  inputLight,
29548
29609
  props,
29549
29610
  mergedClsPrefixRef
@@ -29782,10 +29843,12 @@ var UInput$1 = defineComponent({
29782
29843
  }
29783
29844
  function handleInput(e, index = 0, event = "input") {
29784
29845
  let targetValue = e.target.value;
29846
+ const sourceValue = targetValue;
29785
29847
  if (props.uppercase)
29786
29848
  targetValue = targetValue.toUpperCase();
29787
29849
  if (props.formatter)
29788
29850
  targetValue = props.formatter(targetValue);
29851
+ const valueTransformed = targetValue !== sourceValue;
29789
29852
  syncMirror(targetValue);
29790
29853
  if (e instanceof InputEvent && !e.isComposing) {
29791
29854
  isComposingRef.value = false;
@@ -29816,7 +29879,7 @@ var UInput$1 = defineComponent({
29816
29879
  }
29817
29880
  }
29818
29881
  vm.$forceUpdate();
29819
- if (!isIncomingValueValid) {
29882
+ if (!isIncomingValueValid || valueTransformed) {
29820
29883
  void nextTick(focusedInputCursorControl.restoreCursor);
29821
29884
  }
29822
29885
  }
@@ -30630,7 +30693,7 @@ var UInput$1 = defineComponent({
30630
30693
  }
30631
30694
  });
30632
30695
 
30633
- var style$1v = cB("input-group", `
30696
+ var style$1w = cB("input-group", `
30634
30697
  display: inline-flex;
30635
30698
  width: 100%;
30636
30699
  flex-wrap: nowrap;
@@ -30693,7 +30756,7 @@ var _UInputGroup = defineComponent({
30693
30756
  props: inputGroupProps,
30694
30757
  setup(props) {
30695
30758
  const { mergedClsPrefixRef } = useConfig(props);
30696
- useStyle("-input-group", style$1v, mergedClsPrefixRef);
30759
+ useStyle("-input-group", style$1w, mergedClsPrefixRef);
30697
30760
  return {
30698
30761
  mergedClsPrefix: mergedClsPrefixRef
30699
30762
  };
@@ -30704,7 +30767,7 @@ var _UInputGroup = defineComponent({
30704
30767
  }
30705
30768
  });
30706
30769
 
30707
- var style$1u = cB("input-group-label", `
30770
+ var style$1v = cB("input-group-label", `
30708
30771
  position: relative;
30709
30772
  user-select: none;
30710
30773
  -webkit-user-select: none;
@@ -30752,7 +30815,7 @@ var _UInputGroupLabel = defineComponent({
30752
30815
  const themeRef = useTheme(
30753
30816
  "Input",
30754
30817
  "-input-group-label",
30755
- style$1u,
30818
+ style$1v,
30756
30819
  inputLight,
30757
30820
  props,
30758
30821
  mergedClsPrefixRef
@@ -30878,7 +30941,7 @@ function createValOptMap(options, valueField, childrenField) {
30878
30941
  return valOptMap;
30879
30942
  }
30880
30943
 
30881
- function self$1k(vars) {
30944
+ function self$1l(vars) {
30882
30945
  const {
30883
30946
  shadowDepth2
30884
30947
  } = vars;
@@ -30893,7 +30956,7 @@ const autoCompleteLight = createTheme$1({
30893
30956
  InternalSelectMenu: internalSelectMenuLight,
30894
30957
  Input: inputLight
30895
30958
  },
30896
- self: self$1k
30959
+ self: self$1l
30897
30960
  });
30898
30961
 
30899
30962
  const autoCompleteDark = {
@@ -30903,10 +30966,10 @@ const autoCompleteDark = {
30903
30966
  InternalSelectMenu: internalSelectMenuDark,
30904
30967
  Input: inputDark
30905
30968
  },
30906
- self: self$1k
30969
+ self: self$1l
30907
30970
  };
30908
30971
 
30909
- var style$1t = c$1([cB("auto-complete", `
30972
+ var style$1u = c$1([cB("auto-complete", `
30910
30973
  z-index: auto;
30911
30974
  position: relative;
30912
30975
  display: inline-flex;
@@ -31036,7 +31099,7 @@ var _UAutoComplete = defineComponent({
31036
31099
  const themeRef = useTheme(
31037
31100
  "AutoComplete",
31038
31101
  "-auto-complete",
31039
- style$1t,
31102
+ style$1u,
31040
31103
  autoCompleteLight,
31041
31104
  props,
31042
31105
  mergedClsPrefixRef
@@ -31433,7 +31496,7 @@ const observeIntersection = (el, options, shouldStartLoadingRef) => {
31433
31496
  return unobserve;
31434
31497
  };
31435
31498
 
31436
- function self$1j(vars) {
31499
+ function self$1k(vars) {
31437
31500
  const {
31438
31501
  heightSmall,
31439
31502
  heightMedium,
@@ -31454,16 +31517,16 @@ function self$1j(vars) {
31454
31517
  const skeletonLight = {
31455
31518
  name: "Skeleton",
31456
31519
  common: derived,
31457
- self: self$1j
31520
+ self: self$1k
31458
31521
  };
31459
31522
 
31460
31523
  const skeletonDark = {
31461
31524
  name: "Skeleton",
31462
31525
  common: derived$1,
31463
- self: self$1j
31526
+ self: self$1k
31464
31527
  };
31465
31528
 
31466
- var style$1s = c$1([cB("skeleton", `
31529
+ var style$1t = c$1([cB("skeleton", `
31467
31530
  height: 1em;
31468
31531
  width: 100%;
31469
31532
  transition: background-color .3s var(--u-bezier);
@@ -31522,7 +31585,7 @@ var _USkeleton = defineComponent({
31522
31585
  const themeRef = useTheme(
31523
31586
  "Skeleton",
31524
31587
  "-skeleton",
31525
- style$1s,
31588
+ style$1t,
31526
31589
  skeletonLight,
31527
31590
  props,
31528
31591
  mergedClsPrefixRef
@@ -31577,7 +31640,7 @@ var _USkeleton = defineComponent({
31577
31640
  }
31578
31641
  });
31579
31642
 
31580
- function self$1i(vars) {
31643
+ function self$1j(vars) {
31581
31644
  const {
31582
31645
  borderRadius,
31583
31646
  heightSmall,
@@ -31609,18 +31672,18 @@ function self$1i(vars) {
31609
31672
  const avatarLight = {
31610
31673
  name: "Avatar",
31611
31674
  common: derived,
31612
- self: self$1i
31675
+ self: self$1j
31613
31676
  };
31614
31677
 
31615
31678
  const avatarDark = {
31616
31679
  name: "Avatar",
31617
31680
  common: derived$1,
31618
- self: self$1i
31681
+ self: self$1j
31619
31682
  };
31620
31683
 
31621
31684
  const avatarGroupInjectionKey = createInjectionKey("u-avatar-group");
31622
31685
 
31623
- var style$1r = cB("avatar", `
31686
+ var style$1s = cB("avatar", `
31624
31687
  width: var(--u-merged-size);
31625
31688
  height: var(--u-merged-size);
31626
31689
  color: var(--u-text-color);
@@ -31732,7 +31795,7 @@ var _UAvatar = defineComponent({
31732
31795
  const themeRef = useTheme(
31733
31796
  "Avatar",
31734
31797
  "-avatar",
31735
- style$1r,
31798
+ style$1s,
31736
31799
  avatarLight,
31737
31800
  props,
31738
31801
  mergedClsPrefixRef
@@ -31943,7 +32006,7 @@ var _UAvatar = defineComponent({
31943
32006
  }
31944
32007
  });
31945
32008
 
31946
- function self$1h() {
32009
+ function self$1i() {
31947
32010
  return {
31948
32011
  gap: "-12px"
31949
32012
  };
@@ -31954,7 +32017,7 @@ const avatarGroupLight = createTheme$1({
31954
32017
  peers: {
31955
32018
  Avatar: avatarLight
31956
32019
  },
31957
- self: self$1h
32020
+ self: self$1i
31958
32021
  });
31959
32022
 
31960
32023
  const avatarGroupDark = {
@@ -31963,7 +32026,7 @@ const avatarGroupDark = {
31963
32026
  peers: {
31964
32027
  Avatar: avatarDark
31965
32028
  },
31966
- self: self$1h
32029
+ self: self$1i
31967
32030
  };
31968
32031
 
31969
32032
  var rtlStyle$n = cB("avatar-group", [cM("rtl", `
@@ -31980,7 +32043,7 @@ const avatarGroupRtl = {
31980
32043
  style: rtlStyle$n
31981
32044
  };
31982
32045
 
31983
- var style$1q = cB("avatar-group", `
32046
+ var style$1r = cB("avatar-group", `
31984
32047
  flex-wrap: nowrap;
31985
32048
  display: inline-flex;
31986
32049
  position: relative;
@@ -32015,7 +32078,7 @@ var _UAvatarGroup = defineComponent({
32015
32078
  const mergedThemeRef = useTheme(
32016
32079
  "AvatarGroup",
32017
32080
  "-avatar-group",
32018
- style$1q,
32081
+ style$1r,
32019
32082
  avatarGroupLight,
32020
32083
  props,
32021
32084
  mergedClsPrefixRef
@@ -32104,7 +32167,7 @@ var _UAvatarGroup = defineComponent({
32104
32167
  }
32105
32168
  });
32106
32169
 
32107
- function self$1g(vars) {
32170
+ function self$1h(vars) {
32108
32171
  const {
32109
32172
  heightLarge,
32110
32173
  iconMedium,
@@ -32129,13 +32192,13 @@ function self$1g(vars) {
32129
32192
  const backTopLight = {
32130
32193
  name: "BackTop",
32131
32194
  common: derived,
32132
- self: self$1g
32195
+ self: self$1h
32133
32196
  };
32134
32197
 
32135
32198
  const backTopDark = {
32136
32199
  name: "BackTop",
32137
32200
  common: derived$1,
32138
- self: self$1g
32201
+ self: self$1h
32139
32202
  };
32140
32203
 
32141
32204
  var BackTopIcon = /* @__PURE__ */ h(
@@ -32149,7 +32212,7 @@ var BackTopIcon = /* @__PURE__ */ h(
32149
32212
  /* @__PURE__ */ h("g", { stroke: "none", "stroke-width": "1", "fill-rule": "evenodd" }, /* @__PURE__ */ h("g", { transform: "translate(-139.000000, -4423.000000)", "fill-rule": "nonzero" }, /* @__PURE__ */ h("g", { transform: "translate(120.000000, 4285.000000)" }, /* @__PURE__ */ h("g", { transform: "translate(7.000000, 126.000000)" }, /* @__PURE__ */ h("g", { transform: "translate(24.000000, 24.000000) scale(1, -1) translate(-24.000000, -24.000000) translate(12.000000, 12.000000)" }, /* @__PURE__ */ h("g", { transform: "translate(4.000000, 2.000000)" }, /* @__PURE__ */ h("path", { d: "M8,0 C8.51283584,0 8.93550716,0.38604019 8.99327227,0.883378875 L9,1 L9,10.584 L12.2928932,7.29289322 C12.6834175,6.90236893 13.3165825,6.90236893 13.7071068,7.29289322 C14.0675907,7.65337718 14.0953203,8.22060824 13.7902954,8.61289944 L13.7071068,8.70710678 L8.70710678,13.7071068 L8.62544899,13.7803112 L8.618,13.784 L8.59530661,13.8036654 L8.4840621,13.8753288 L8.37133602,13.9287745 L8.22929083,13.9735893 L8.14346259,13.9897165 L8.03324678,13.9994506 L7.9137692,13.9962979 L7.77070917,13.9735893 L7.6583843,13.9401293 L7.57677845,13.9063266 L7.47929125,13.8540045 L7.4048407,13.8036865 L7.38131006,13.7856883 C7.35030318,13.7612383 7.32077858,13.7349921 7.29289322,13.7071068 L2.29289322,8.70710678 L2.20970461,8.61289944 C1.90467972,8.22060824 1.93240926,7.65337718 2.29289322,7.29289322 C2.65337718,6.93240926 3.22060824,6.90467972 3.61289944,7.20970461 L3.70710678,7.29289322 L7,10.585 L7,1 L7.00672773,0.883378875 C7.06449284,0.38604019 7.48716416,0 8,0 Z" }), /* @__PURE__ */ h("path", { d: "M14.9333333,15.9994506 C15.5224371,15.9994506 16,16.4471659 16,16.9994506 C16,17.5122865 15.5882238,17.9349578 15.0577292,17.9927229 L14.9333333,17.9994506 L1.06666667,17.9994506 C0.477562934,17.9994506 0,17.5517354 0,16.9994506 C0,16.4866148 0.411776203,16.0639435 0.9422708,16.0061783 L1.06666667,15.9994506 L14.9333333,15.9994506 Z" })))))))
32150
32213
  );
32151
32214
 
32152
- var style$1p = cB("back-top", `
32215
+ var style$1q = cB("back-top", `
32153
32216
  position: fixed;
32154
32217
  right: 40px;
32155
32218
  bottom: 40px;
@@ -32288,7 +32351,7 @@ var _UBackTop = defineComponent({
32288
32351
  const themeRef = useTheme(
32289
32352
  "BackTop",
32290
32353
  "-back-top",
32291
- style$1p,
32354
+ style$1q,
32292
32355
  backTopLight,
32293
32356
  props,
32294
32357
  mergedClsPrefixRef
@@ -32439,7 +32502,7 @@ var _UBackTop = defineComponent({
32439
32502
  }
32440
32503
  });
32441
32504
 
32442
- function self$1f(vars) {
32505
+ function self$1g(vars) {
32443
32506
  const {
32444
32507
  brandQuaternary500,
32445
32508
  elementsPrimary,
@@ -32472,13 +32535,13 @@ function self$1f(vars) {
32472
32535
  const badgeLight = {
32473
32536
  name: "Badge",
32474
32537
  common: derived,
32475
- self: self$1f
32538
+ self: self$1g
32476
32539
  };
32477
32540
 
32478
32541
  const badgeDark = {
32479
32542
  name: "Badge",
32480
32543
  common: derived$1,
32481
- self: self$1f
32544
+ self: self$1g
32482
32545
  };
32483
32546
 
32484
32547
  var rtlStyle$m = cB("badge", [cM("rtl", `
@@ -32495,7 +32558,7 @@ const badgeRtl = {
32495
32558
  style: rtlStyle$m
32496
32559
  };
32497
32560
 
32498
- var style$1o = c$1([c$1("@keyframes badge-wave-spread", {
32561
+ var style$1p = c$1([c$1("@keyframes badge-wave-spread", {
32499
32562
  from: {
32500
32563
  boxShadow: "0 0 0.5px 0px var(--u-ripple-color)",
32501
32564
  opacity: 0.6
@@ -32609,7 +32672,7 @@ var _UBadge = defineComponent({
32609
32672
  const themeRef = useTheme(
32610
32673
  "Badge",
32611
32674
  "-badge",
32612
- style$1o,
32675
+ style$1p,
32613
32676
  badgeLight,
32614
32677
  props,
32615
32678
  mergedClsPrefixRef
@@ -32745,7 +32808,7 @@ var _UBadge = defineComponent({
32745
32808
  }
32746
32809
  });
32747
32810
 
32748
- function self$1e(vars) {
32811
+ function self$1f(vars) {
32749
32812
  const {
32750
32813
  fontWeightStrong,
32751
32814
  fontBodyMedium,
@@ -32768,16 +32831,16 @@ function self$1e(vars) {
32768
32831
  const breadcrumbLight = {
32769
32832
  name: "Breadcrumb",
32770
32833
  common: derived,
32771
- self: self$1e
32834
+ self: self$1f
32772
32835
  };
32773
32836
 
32774
32837
  const breadcrumbDark = {
32775
32838
  name: "Breadcrumb",
32776
32839
  common: derived$1,
32777
- self: self$1e
32840
+ self: self$1f
32778
32841
  };
32779
32842
 
32780
- var style$1n = cB("breadcrumb", `
32843
+ var style$1o = cB("breadcrumb", `
32781
32844
  white-space: nowrap;
32782
32845
  cursor: default;
32783
32846
  line-height: var(--u-item-line-height);
@@ -32847,7 +32910,7 @@ var _UBreadcrumb = defineComponent({
32847
32910
  const themeRef = useTheme(
32848
32911
  "Breadcrumb",
32849
32912
  "-breadcrumb",
32850
- style$1n,
32913
+ style$1o,
32851
32914
  breadcrumbLight,
32852
32915
  props,
32853
32916
  mergedClsPrefixRef
@@ -33032,7 +33095,7 @@ function createTopBorderStyle(type) {
33032
33095
  top: n1
33033
33096
  })])])])]);
33034
33097
  }
33035
- var style$1m = cB("button-group", `
33098
+ var style$1n = cB("button-group", `
33036
33099
  flex-wrap: nowrap;
33037
33100
  display: inline-flex;
33038
33101
  position: relative;
@@ -33081,7 +33144,7 @@ var _UButtonGroup = defineComponent({
33081
33144
  props: buttonGroupProps,
33082
33145
  setup(props) {
33083
33146
  const { mergedClsPrefixRef, mergedRtlRef } = useConfig(props);
33084
- useStyle("-button-group", style$1m, mergedClsPrefixRef);
33147
+ useStyle("-button-group", style$1n, mergedClsPrefixRef);
33085
33148
  provide(buttonGroupInjectionKey, props);
33086
33149
  const rtlEnabledRef = useRtl(
33087
33150
  "ButtonGroup",
@@ -39025,7 +39088,7 @@ function getMsByDateCommonItem(item) {
39025
39088
  return resultDate.getTime();
39026
39089
  }
39027
39090
 
39028
- function self$1d(vars) {
39091
+ function self$1e(vars) {
39029
39092
  const {
39030
39093
  borderRadius,
39031
39094
  fontWeightStrong,
@@ -39069,7 +39132,7 @@ const calendarLight = createTheme$1({
39069
39132
  peers: {
39070
39133
  Button: buttonLight
39071
39134
  },
39072
- self: self$1d
39135
+ self: self$1e
39073
39136
  });
39074
39137
 
39075
39138
  const calendarDark = {
@@ -39078,10 +39141,10 @@ const calendarDark = {
39078
39141
  peers: {
39079
39142
  Button: buttonDark
39080
39143
  },
39081
- self: self$1d
39144
+ self: self$1e
39082
39145
  };
39083
39146
 
39084
- var style$1l = c$1([cB("calendar", `
39147
+ var style$1m = c$1([cB("calendar", `
39085
39148
  line-height: var(--u-line-height);
39086
39149
  font-size: var(--u-font-size);
39087
39150
  color: var(--u-text-color);
@@ -39220,7 +39283,7 @@ var _UCalendar = defineComponent({
39220
39283
  const themeRef = useTheme(
39221
39284
  "Calendar",
39222
39285
  "-calendar",
39223
- style$1l,
39286
+ style$1m,
39224
39287
  calendarLight,
39225
39288
  props,
39226
39289
  mergedClsPrefixRef
@@ -39508,7 +39571,7 @@ var commonVariables$3 = {
39508
39571
  paddingHuge: "27px 40px 28px"
39509
39572
  };
39510
39573
 
39511
- function self$1c(vars) {
39574
+ function self$1d(vars) {
39512
39575
  const {
39513
39576
  borderRadius,
39514
39577
  fontWeight,
@@ -39574,13 +39637,13 @@ function self$1c(vars) {
39574
39637
  const cardLight = {
39575
39638
  name: "Card",
39576
39639
  common: derived,
39577
- self: self$1c
39640
+ self: self$1d
39578
39641
  };
39579
39642
 
39580
39643
  const cardDark$1 = {
39581
39644
  name: "Card",
39582
39645
  common: derived$1,
39583
- self: self$1c
39646
+ self: self$1d
39584
39647
  };
39585
39648
 
39586
39649
  var rtlStyle$l = cB("card", [cM("rtl", `
@@ -39603,7 +39666,7 @@ const contentBaseStyle = cB("card-content", `
39603
39666
  `, [c$1("&:first-child", {
39604
39667
  paddingTop: "var(--u-padding-bottom)"
39605
39668
  })]);
39606
- var style$1k = c$1([cB("card", `
39669
+ var style$1l = c$1([cB("card", `
39607
39670
  font-size: var(--u-font-size);
39608
39671
  line-height: var(--u-line-height);
39609
39672
  font-weight: var(--u-font-weight);
@@ -39786,7 +39849,7 @@ var _UCard = defineComponent({
39786
39849
  const themeRef = useTheme(
39787
39850
  "Card",
39788
39851
  "-card",
39789
- style$1k,
39852
+ style$1l,
39790
39853
  cardLight,
39791
39854
  props,
39792
39855
  mergedClsPrefixRef
@@ -40369,7 +40432,7 @@ var UGi$1 = defineComponent({
40369
40432
  }
40370
40433
  });
40371
40434
 
40372
- function self$1b(vars) {
40435
+ function self$1c(vars) {
40373
40436
  const {
40374
40437
  textSecondary,
40375
40438
  textPrimary,
@@ -40404,10 +40467,10 @@ function self$1b(vars) {
40404
40467
  const cardListLight = {
40405
40468
  name: "CardList",
40406
40469
  common: derived,
40407
- self: self$1b
40470
+ self: self$1c
40408
40471
  };
40409
40472
 
40410
- var style$1j = cB("card-list-item", [c$1("&", {
40473
+ var style$1k = cB("card-list-item", [c$1("&", {
40411
40474
  padding: "16px",
40412
40475
  borderRadius: "var(--u-border-radius)",
40413
40476
  display: "flex",
@@ -40528,7 +40591,7 @@ var UCardListItem = defineComponent({
40528
40591
  props: cardListItemProps,
40529
40592
  setup(props, { slots }) {
40530
40593
  const { mergedClsPrefixRef } = useConfig(props);
40531
- useStyle("-card-list-item", style$1j, mergedClsPrefixRef);
40594
+ useStyle("-card-list-item", style$1k, mergedClsPrefixRef);
40532
40595
  const isOpen = ref(false);
40533
40596
  const toggle = () => {
40534
40597
  isOpen.value = !isOpen.value;
@@ -40659,7 +40722,7 @@ var _UCardList = defineComponent({
40659
40722
  const themeRef = useTheme(
40660
40723
  "CardList",
40661
40724
  "-card-list",
40662
- style$1j,
40725
+ style$1k,
40663
40726
  cardListLight,
40664
40727
  props,
40665
40728
  mergedClsPrefixRef
@@ -40756,7 +40819,7 @@ var _UCardList = defineComponent({
40756
40819
  }
40757
40820
  });
40758
40821
 
40759
- function self$1a() {
40822
+ function self$1b() {
40760
40823
  return {
40761
40824
  dotSize: "8px",
40762
40825
  dotColor: "rgba(255, 255, 255, .3)",
@@ -40770,13 +40833,13 @@ function self$1a() {
40770
40833
  const carouselLight = {
40771
40834
  name: "Carousel",
40772
40835
  common: derived,
40773
- self: self$1a
40836
+ self: self$1b
40774
40837
  };
40775
40838
 
40776
40839
  const carouselDark = {
40777
40840
  name: "Carousel",
40778
40841
  common: derived$1,
40779
- self: self$1a
40842
+ self: self$1b
40780
40843
  };
40781
40844
 
40782
40845
  const carouselMethodsInjectionKey = createInjectionKey("u-carousel-methods");
@@ -41060,7 +41123,7 @@ var _UCarouselItem = defineComponent({
41060
41123
  }
41061
41124
  });
41062
41125
 
41063
- var style$1i = cB("carousel", `
41126
+ var style$1j = cB("carousel", `
41064
41127
  position: relative;
41065
41128
  width: 100%;
41066
41129
  height: 100%;
@@ -42062,7 +42125,7 @@ var _UCarousel = defineComponent({
42062
42125
  const themeRef = useTheme(
42063
42126
  "Carousel",
42064
42127
  "-carousel",
42065
- style$1i,
42128
+ style$1j,
42066
42129
  carouselLight,
42067
42130
  props,
42068
42131
  mergedClsPrefixRef
@@ -42222,7 +42285,7 @@ var commonVariables$2 = {
42222
42285
  labelPadding: "0 16px"
42223
42286
  };
42224
42287
 
42225
- function self$19(vars) {
42288
+ function self$1a(vars) {
42226
42289
  const {
42227
42290
  lineHeightBodyLarge,
42228
42291
  fontBodyLarge,
@@ -42298,13 +42361,13 @@ function self$19(vars) {
42298
42361
  const checkboxLight = {
42299
42362
  name: "Checkbox",
42300
42363
  common: derived,
42301
- self: self$19
42364
+ self: self$1a
42302
42365
  };
42303
42366
 
42304
42367
  const checkboxDark = {
42305
42368
  name: "Checkbox",
42306
42369
  common: derived$1,
42307
- self: self$19
42370
+ self: self$1a
42308
42371
  };
42309
42372
 
42310
42373
  var rtlStyle$k = cB("checkbox", [cM("rtl", `
@@ -42316,7 +42379,7 @@ const checkboxRtl = {
42316
42379
  style: rtlStyle$k
42317
42380
  };
42318
42381
 
42319
- function self$18(vars) {
42382
+ function self$19(vars) {
42320
42383
  const {
42321
42384
  borderRadius,
42322
42385
  heightMedium,
@@ -42357,7 +42420,7 @@ const cascaderLight = createTheme$1({
42357
42420
  Checkbox: checkboxLight,
42358
42421
  Empty: emptyLight
42359
42422
  },
42360
- self: self$18
42423
+ self: self$19
42361
42424
  });
42362
42425
 
42363
42426
  const cascaderDark = {
@@ -42370,14 +42433,14 @@ const cascaderDark = {
42370
42433
  Checkbox: checkboxDark,
42371
42434
  Empty: emptyLight
42372
42435
  },
42373
- self: self$18
42436
+ self: self$19
42374
42437
  };
42375
42438
 
42376
42439
  var CheckMark = /* @__PURE__ */ h("svg", { width: "20", height: "20", viewBox: "0 0 20 20", class: "check-icon" }, /* @__PURE__ */ h("path", { d: "M7.95833 14.6458C7.84722 14.6458 7.74306 14.6283 7.64583 14.5933C7.54861 14.5589 7.45833 14.5 7.375 14.4166L3.79167 10.8333C3.63889 10.6805 3.56583 10.4825 3.5725 10.2391C3.57972 9.99637 3.65972 9.79859 3.8125 9.64581C3.96528 9.49304 4.15972 9.41665 4.39583 9.41665C4.63195 9.41665 4.82639 9.49304 4.97917 9.64581L7.95833 12.625L15.0208 5.56248C15.1736 5.4097 15.3717 5.33331 15.615 5.33331C15.8578 5.33331 16.0556 5.4097 16.2083 5.56248C16.3611 5.71526 16.4375 5.91304 16.4375 6.15581C16.4375 6.39915 16.3611 6.5972 16.2083 6.74998L8.54167 14.4166C8.45833 14.5 8.36806 14.5589 8.27083 14.5933C8.17361 14.6283 8.06945 14.6458 7.95833 14.6458Z" }));
42377
42440
 
42378
42441
  var LineMark = /* @__PURE__ */ h("svg", { width: "22", height: "24", viewBox: "0 0 22 24", class: "line-icon" }, /* @__PURE__ */ h("path", { d: "M5.49998 13C5.24026 13 5.0224 12.904 4.8464 12.712C4.67101 12.5207 4.58331 12.2833 4.58331 12C4.58331 11.7167 4.67101 11.479 4.8464 11.287C5.0224 11.0957 5.24026 11 5.49998 11H16.5C16.7597 11 16.9773 11.0957 17.1526 11.287C17.3286 11.479 17.4166 11.7167 17.4166 12C17.4166 12.2833 17.3286 12.5207 17.1526 12.712C16.9773 12.904 16.7597 13 16.5 13H5.49998Z" }));
42379
42442
 
42380
- var style$1h = c$1([iconSwitchTransition(), c$1("@keyframes ripple", {
42443
+ var style$1i = c$1([iconSwitchTransition(), c$1("@keyframes ripple", {
42381
42444
  from: {
42382
42445
  transform: "scale(0)"
42383
42446
  },
@@ -42591,7 +42654,7 @@ var _UCheckbox = defineComponent({
42591
42654
  const themeRef = useTheme(
42592
42655
  "Checkbox",
42593
42656
  "-checkbox",
42594
- style$1h,
42657
+ style$1i,
42595
42658
  checkboxLight,
42596
42659
  props,
42597
42660
  mergedClsPrefixRef
@@ -43665,7 +43728,7 @@ var CascaderSelectMenu = defineComponent({
43665
43728
  }
43666
43729
  });
43667
43730
 
43668
- var style$1g = c$1([cB("cascader-menu", `
43731
+ var style$1h = c$1([cB("cascader-menu", `
43669
43732
  outline: none;
43670
43733
  position: relative;
43671
43734
  margin: 4px 0;
@@ -43907,7 +43970,7 @@ var _UCascader = defineComponent({
43907
43970
  const themeRef = useTheme(
43908
43971
  "Cascader",
43909
43972
  "-cascader",
43910
- style$1g,
43973
+ style$1h,
43911
43974
  cascaderLight,
43912
43975
  props,
43913
43976
  mergedClsPrefixRef
@@ -44839,12 +44902,12 @@ const flexDark = {
44839
44902
  }
44840
44903
  };
44841
44904
 
44842
- function self$17() {
44905
+ function self$18() {
44843
44906
  return commonVars$7;
44844
44907
  }
44845
44908
  const flexLight = {
44846
44909
  name: "Flex",
44847
- self: self$17
44910
+ self: self$18
44848
44911
  };
44849
44912
 
44850
44913
  cB("space", [cM("rtl", `
@@ -44962,7 +45025,7 @@ var _UFlex = defineComponent({
44962
45025
  }
44963
45026
  });
44964
45027
 
44965
- function self$16(vars) {
45028
+ function self$17(vars) {
44966
45029
  const {
44967
45030
  borderRadius,
44968
45031
  borderRadiusMedium,
@@ -45006,13 +45069,13 @@ function self$16(vars) {
45006
45069
  const listLight = {
45007
45070
  name: "List",
45008
45071
  common: derived,
45009
- self: self$16
45072
+ self: self$17
45010
45073
  };
45011
45074
 
45012
45075
  const listDark$1 = {
45013
45076
  name: "List",
45014
45077
  common: derived$1,
45015
- self: self$16
45078
+ self: self$17
45016
45079
  };
45017
45080
 
45018
45081
  var rtlStyle$j = cB("list", [cM("rtl", `
@@ -45031,7 +45094,7 @@ const listRtl = {
45031
45094
  style: rtlStyle$j
45032
45095
  };
45033
45096
 
45034
- function self$15(vars) {
45097
+ function self$16(vars) {
45035
45098
  const {
45036
45099
  shadowDepth2
45037
45100
  } = vars;
@@ -45046,7 +45109,7 @@ const selectLight = createTheme$1({
45046
45109
  InternalSelection: internalSelectionLight,
45047
45110
  InternalSelectMenu: internalSelectMenuLight
45048
45111
  },
45049
- self: self$15
45112
+ self: self$16
45050
45113
  });
45051
45114
 
45052
45115
  const selectDark = {
@@ -45056,13 +45119,13 @@ const selectDark = {
45056
45119
  InternalSelection: internalSelectionDark,
45057
45120
  InternalSelectMenu: internalSelectMenuDark
45058
45121
  },
45059
- self: self$15
45122
+ self: self$16
45060
45123
  };
45061
45124
 
45062
45125
  ({
45063
45126
  style: c$1([])});
45064
45127
 
45065
- function self$14(vars) {
45128
+ function self$15(vars) {
45066
45129
  const {
45067
45130
  borderRadiusSmall,
45068
45131
  fontWeightStrong,
@@ -45157,19 +45220,19 @@ function self$14(vars) {
45157
45220
  const typographyLight = {
45158
45221
  name: "Typography",
45159
45222
  common: derived,
45160
- self: self$14
45223
+ self: self$15
45161
45224
  };
45162
45225
 
45163
45226
  const typographyDark = {
45164
45227
  name: "Typography",
45165
45228
  common: derived$1,
45166
- self: self$14
45229
+ self: self$15
45167
45230
  };
45168
45231
 
45169
45232
  const chatInputLight = {
45170
45233
  ...inputLight,
45171
45234
  self(vars) {
45172
- const originalInputSelf = self$1n(vars);
45235
+ const originalInputSelf = self$1o(vars);
45173
45236
  const {
45174
45237
  elementsTertiary
45175
45238
  } = vars;
@@ -45189,7 +45252,7 @@ const chatInputLight = {
45189
45252
  const chatBadgeLight = {
45190
45253
  ...badgeLight,
45191
45254
  self(vars) {
45192
- const originalBadgeSelf = self$1f(vars);
45255
+ const originalBadgeSelf = self$1g(vars);
45193
45256
  const {
45194
45257
  brandPrimary400,
45195
45258
  elementsSecondary
@@ -45201,7 +45264,7 @@ const chatBadgeLight = {
45201
45264
  };
45202
45265
  }
45203
45266
  };
45204
- function self$13(vars) {
45267
+ function self$14(vars) {
45205
45268
  const {
45206
45269
  borderRadiusLarge,
45207
45270
  elementsQuaternary,
@@ -45274,7 +45337,7 @@ const chatLight = createTheme$1({
45274
45337
  HeaderShareIcon: iconLight,
45275
45338
  HeaderProfileIcon: iconLight
45276
45339
  },
45277
- self: self$13
45340
+ self: self$14
45278
45341
  });
45279
45342
 
45280
45343
  const chatDark = createTheme$1({
@@ -45296,7 +45359,7 @@ const chatDark = createTheme$1({
45296
45359
  HeaderProfileIcon: iconDark$1
45297
45360
  },
45298
45361
  self: vars => {
45299
- const lightVars = self$13(vars);
45362
+ const lightVars = self$14(vars);
45300
45363
  return {
45301
45364
  ...lightVars
45302
45365
  };
@@ -45404,7 +45467,7 @@ const listProps = {
45404
45467
  };
45405
45468
  const listInjectionKey = createInjectionKey("u-list");
45406
45469
 
45407
- var style$1f = c$1([cB("align-start", `
45470
+ var style$1g = c$1([cB("align-start", `
45408
45471
  align-self: self-start;
45409
45472
  `), cB("align-center", `
45410
45473
  align-self: center;
@@ -45537,7 +45600,7 @@ var _UList = defineComponent({
45537
45600
  const themeRef = useTheme(
45538
45601
  "List",
45539
45602
  "-list",
45540
- style$1f,
45603
+ style$1g,
45541
45604
  listLight,
45542
45605
  props,
45543
45606
  mergedClsPrefixRef
@@ -46019,7 +46082,7 @@ const SafeTopScrollbar = defineComponent({
46019
46082
  }
46020
46083
  });
46021
46084
 
46022
- var style$1e = cB("a", `
46085
+ var style$1f = cB("a", `
46023
46086
  cursor: pointer;
46024
46087
  transition:
46025
46088
  color .3s var(--u-bezier),
@@ -46042,7 +46105,7 @@ var a = defineComponent({
46042
46105
  const themeRef = useTheme(
46043
46106
  "Typography",
46044
46107
  "-a",
46045
- style$1e,
46108
+ style$1f,
46046
46109
  typographyLight,
46047
46110
  props,
46048
46111
  mergedClsPrefixRef
@@ -46078,7 +46141,7 @@ var a = defineComponent({
46078
46141
  }
46079
46142
  });
46080
46143
 
46081
- var style$1d = cB("blockquote", `
46144
+ var style$1e = cB("blockquote", `
46082
46145
  font-size: var(--u-font-size);
46083
46146
  line-height: var(--u-line-height);
46084
46147
  margin: 0;
@@ -46117,7 +46180,7 @@ var _UBlockquote = defineComponent({
46117
46180
  const themeRef = useTheme(
46118
46181
  "Typography",
46119
46182
  "-blockquote",
46120
- style$1d,
46183
+ style$1e,
46121
46184
  typographyLight,
46122
46185
  props,
46123
46186
  mergedClsPrefixRef
@@ -46166,7 +46229,7 @@ var _UBlockquote = defineComponent({
46166
46229
  }
46167
46230
  });
46168
46231
 
46169
- var style$1c = cB("h", `
46232
+ var style$1d = cB("h", `
46170
46233
  font-size: var(--u-font-size);
46171
46234
  font-weight: var(--u-font-weight);
46172
46235
  margin: var(--u-margin);
@@ -46211,7 +46274,7 @@ var createHeader = level => defineComponent({
46211
46274
  mergedClsPrefixRef,
46212
46275
  inlineThemeDisabled
46213
46276
  } = useConfig(props);
46214
- const themeRef = useTheme("Typography", "-h", style$1c, typographyLight, props, mergedClsPrefixRef);
46277
+ const themeRef = useTheme("Typography", "-h", style$1d, typographyLight, props, mergedClsPrefixRef);
46215
46278
  const cssVarsRef = computed(() => {
46216
46279
  const {
46217
46280
  type
@@ -46275,7 +46338,7 @@ const UH4$1 = createHeader("4");
46275
46338
  const UH5$1 = createHeader("5");
46276
46339
  const UH6$1 = createHeader("6");
46277
46340
 
46278
- var style$1b = cB("hr", `
46341
+ var style$1c = cB("hr", `
46279
46342
  margin: 12px 0;
46280
46343
  transition: border-color .3s var(--u-bezier);
46281
46344
  border-left: none;
@@ -46300,7 +46363,7 @@ var _UHr = defineComponent({
46300
46363
  const themeRef = useTheme(
46301
46364
  "Typography",
46302
46365
  "-hr",
46303
- style$1b,
46366
+ style$1c,
46304
46367
  typographyLight,
46305
46368
  props,
46306
46369
  mergedClsPrefixRef
@@ -46354,7 +46417,7 @@ const childStyle = [c$1("&:first-child", `
46354
46417
  `), c$1("&:last-child", `
46355
46418
  margin-bottom: 0;
46356
46419
  `)];
46357
- var style$1a = c$1([cB("ol", {
46420
+ var style$1b = c$1([cB("ol", {
46358
46421
  fontSize: "var(--u-font-size)",
46359
46422
  padding: "var(--u-ol-padding)"
46360
46423
  }, [cM("align-text", {
@@ -46378,7 +46441,7 @@ var _UOl = defineComponent({
46378
46441
  const themeRef = useTheme(
46379
46442
  "Typography",
46380
46443
  "-xl",
46381
- style$1a,
46444
+ style$1b,
46382
46445
  typographyLight,
46383
46446
  props,
46384
46447
  mergedClsPrefixRef
@@ -46431,7 +46494,7 @@ var _UOl = defineComponent({
46431
46494
  }
46432
46495
  });
46433
46496
 
46434
- var style$19 = cB("p", `
46497
+ var style$1a = cB("p", `
46435
46498
  box-sizing: border-box;
46436
46499
  transition: color .3s var(--u-bezier);
46437
46500
  margin: var(--u-margin);
@@ -46452,7 +46515,7 @@ var p = defineComponent({
46452
46515
  const themeRef = useTheme(
46453
46516
  "Typography",
46454
46517
  "-p",
46455
- style$19,
46518
+ style$1a,
46456
46519
  typographyLight,
46457
46520
  props,
46458
46521
  mergedClsPrefixRef
@@ -46592,7 +46655,7 @@ var _UUl = defineComponent({
46592
46655
  const themeRef = useTheme(
46593
46656
  "Typography",
46594
46657
  "-xl",
46595
- style$1a,
46658
+ style$1b,
46596
46659
  typographyLight,
46597
46660
  props,
46598
46661
  mergedClsPrefixRef
@@ -46645,7 +46708,7 @@ var _UUl = defineComponent({
46645
46708
  }
46646
46709
  });
46647
46710
 
46648
- function self$12(vars) {
46711
+ function self$13(vars) {
46649
46712
  const {
46650
46713
  fontWeight,
46651
46714
  fontBodyMedium,
@@ -46686,16 +46749,16 @@ function self$12(vars) {
46686
46749
  const progressLight = {
46687
46750
  name: "Progress",
46688
46751
  common: derived,
46689
- self: self$12
46752
+ self: self$13
46690
46753
  };
46691
46754
 
46692
46755
  const progressDark = {
46693
46756
  name: "Progress",
46694
46757
  common: derived$1,
46695
- self: self$12
46758
+ self: self$13
46696
46759
  };
46697
46760
 
46698
- function self$11(vars) {
46761
+ function self$12(vars) {
46699
46762
  const {
46700
46763
  staticGreen,
46701
46764
  staticRed,
@@ -46752,7 +46815,7 @@ const uploadLight = createTheme$1({
46752
46815
  Button: buttonLight,
46753
46816
  Progress: progressLight
46754
46817
  },
46755
- self: self$11
46818
+ self: self$12
46756
46819
  });
46757
46820
 
46758
46821
  const uploadDark = {
@@ -46762,7 +46825,7 @@ const uploadDark = {
46762
46825
  Button: buttonDark,
46763
46826
  Progress: progressDark
46764
46827
  },
46765
- self: self$11
46828
+ self: self$12
46766
46829
  };
46767
46830
 
46768
46831
  var rtlStyle$i = cB("upload", [cM("rtl", `
@@ -46777,7 +46840,7 @@ const uploadRtl = {
46777
46840
 
46778
46841
  const uploadInjectionKey = createInjectionKey("u-upload");
46779
46842
 
46780
- var style$18 = c$1([cB("upload", "width: var(--u-upload-width)", [cM("dragger-inside", [cB("upload-trigger", `
46843
+ var style$19 = c$1([cB("upload", "width: var(--u-upload-width)", [cM("dragger-inside", [cB("upload-trigger", `
46781
46844
  display: block;
46782
46845
  `)]), cM("drag-over", [cB("upload-dragger", `
46783
46846
  border: var(--u-dragger-border-hover);
@@ -47238,10 +47301,10 @@ const buttonGroupRtl = {
47238
47301
  const cardDark = {
47239
47302
  name: "CardList",
47240
47303
  common: derived$1,
47241
- self: self$1b
47304
+ self: self$1c
47242
47305
  };
47243
47306
 
47244
- function self$10(vars) {
47307
+ function self$11(vars) {
47245
47308
  const {
47246
47309
  textPrimary,
47247
47310
  fontBodyMedium,
@@ -47269,12 +47332,12 @@ function self$10(vars) {
47269
47332
  const codeLight = {
47270
47333
  name: "Code",
47271
47334
  common: derived,
47272
- self: self$10
47335
+ self: self$11
47273
47336
  };
47274
47337
 
47275
- function self$$(vars) {
47338
+ function self$10(vars) {
47276
47339
  return {
47277
- ...self$10(vars),
47340
+ ...self$11(vars),
47278
47341
  // extracted from hljs atom-one-dark.scss
47279
47342
  "mono-3": "#5c6370",
47280
47343
  "hue-1": "#56b6c2",
@@ -47290,10 +47353,10 @@ function self$$(vars) {
47290
47353
  const codeDark = {
47291
47354
  name: "Code",
47292
47355
  common: derived$1,
47293
- self: self$$
47356
+ self: self$10
47294
47357
  };
47295
47358
 
47296
- function self$_(vars) {
47359
+ function self$$(vars) {
47297
47360
  const {
47298
47361
  cubicBezierEaseInOut
47299
47362
  } = vars;
@@ -47304,13 +47367,13 @@ function self$_(vars) {
47304
47367
  const collapseTransitionLight = {
47305
47368
  name: "CollapseTransition",
47306
47369
  common: derived,
47307
- self: self$_
47370
+ self: self$$
47308
47371
  };
47309
47372
 
47310
47373
  const collapseTransitionDark = {
47311
47374
  name: "CollapseTransition",
47312
47375
  common: derived$1,
47313
- self: self$_
47376
+ self: self$$
47314
47377
  };
47315
47378
 
47316
47379
  var rtlStyle$g = cB("collapse-transition", [cM("rtl", `
@@ -47323,7 +47386,7 @@ const collapseTransitionRtl = {
47323
47386
  style: rtlStyle$g
47324
47387
  };
47325
47388
 
47326
- function self$Z(vars) {
47389
+ function self$_(vars) {
47327
47390
  const {
47328
47391
  fontWeight,
47329
47392
  fontBodyLarge,
@@ -47363,13 +47426,13 @@ function self$Z(vars) {
47363
47426
  const collapseLight = {
47364
47427
  name: "Collapse",
47365
47428
  common: derived,
47366
- self: self$Z
47429
+ self: self$_
47367
47430
  };
47368
47431
 
47369
47432
  const collapseDark = {
47370
47433
  name: "Collapse",
47371
47434
  common: derived$1,
47372
- self: self$Z
47435
+ self: self$_
47373
47436
  };
47374
47437
 
47375
47438
  var rtlStyle$f = cB("collapse", [cM("rtl", `
@@ -47392,7 +47455,7 @@ const collapseRtl = {
47392
47455
  style: rtlStyle$f
47393
47456
  };
47394
47457
 
47395
- function self$Y(vars) {
47458
+ function self$Z(vars) {
47396
47459
  const {
47397
47460
  borderRadius,
47398
47461
  fontBodySmall,
@@ -47479,7 +47542,7 @@ const dropdownLight = createTheme$1({
47479
47542
  peers: {
47480
47543
  Popover: popoverLight
47481
47544
  },
47482
- self: self$Y
47545
+ self: self$Z
47483
47546
  });
47484
47547
 
47485
47548
  const dropdownDark = {
@@ -47488,7 +47551,7 @@ const dropdownDark = {
47488
47551
  peers: {
47489
47552
  Popover: popoverDark
47490
47553
  },
47491
- self: self$Y
47554
+ self: self$Z
47492
47555
  };
47493
47556
 
47494
47557
  const popselect = {
@@ -47500,7 +47563,7 @@ const popselect = {
47500
47563
  }
47501
47564
  };
47502
47565
 
47503
- function self$X(vars) {
47566
+ function self$Y(vars) {
47504
47567
  const {
47505
47568
  shadowDepth2
47506
47569
  } = vars;
@@ -47515,10 +47578,10 @@ const popselectLight = createTheme$1({
47515
47578
  Popover: popoverLight,
47516
47579
  InternalSelectMenu: internalSelectMenuLight
47517
47580
  },
47518
- self: self$X
47581
+ self: self$Y
47519
47582
  });
47520
47583
 
47521
- function self$W(vars) {
47584
+ function self$X(vars) {
47522
47585
  const {
47523
47586
  brandPrimary100,
47524
47587
  transparencySecondary,
@@ -47616,7 +47679,7 @@ const paginationLight = createTheme$1({
47616
47679
  Input: inputLight,
47617
47680
  Popselect: popselectLight
47618
47681
  },
47619
- self: self$W
47682
+ self: self$X
47620
47683
  });
47621
47684
 
47622
47685
  const paginationDark = {
@@ -47627,7 +47690,7 @@ const paginationDark = {
47627
47690
  Input: inputDark,
47628
47691
  Popselect: popselect
47629
47692
  },
47630
- self: self$W
47693
+ self: self$X
47631
47694
  };
47632
47695
 
47633
47696
  var rtlStyle$e = cB("pagination", [cM("rtl", `
@@ -47644,7 +47707,7 @@ const paginationRtl = {
47644
47707
  peers: [inputRtl]
47645
47708
  };
47646
47709
 
47647
- function self$V(vars) {
47710
+ function self$W(vars) {
47648
47711
  const {
47649
47712
  heightTiny,
47650
47713
  heightSmall,
@@ -47736,13 +47799,13 @@ function self$V(vars) {
47736
47799
  const radioLight = {
47737
47800
  name: "Radio",
47738
47801
  common: derived,
47739
- self: self$V
47802
+ self: self$W
47740
47803
  };
47741
47804
 
47742
47805
  const radioDark = {
47743
47806
  name: "Radio",
47744
47807
  common: derived$1,
47745
- self: self$V
47808
+ self: self$W
47746
47809
  };
47747
47810
 
47748
47811
  var rtlStyle$d = c$1([cB("radio", [cM("rtl", `
@@ -47770,7 +47833,7 @@ const radioRtl = {
47770
47833
  style: rtlStyle$d
47771
47834
  };
47772
47835
 
47773
- function self$U(vars) {
47836
+ function self$V(vars) {
47774
47837
  const {
47775
47838
  borderRadius,
47776
47839
  opacityDisabled,
@@ -47871,7 +47934,7 @@ const dataTableLight = createTheme$1({
47871
47934
  Ellipsis: ellipsisLight,
47872
47935
  Dropdown: dropdownLight
47873
47936
  },
47874
- self: self$U
47937
+ self: self$V
47875
47938
  });
47876
47939
 
47877
47940
  const dataTableDark = {
@@ -47888,10 +47951,10 @@ const dataTableDark = {
47888
47951
  Ellipsis: ellipsisDark,
47889
47952
  Dropdown: dropdownDark
47890
47953
  },
47891
- self: self$U
47954
+ self: self$V
47892
47955
  };
47893
47956
 
47894
- function self$T(vars) {
47957
+ function self$U(vars) {
47895
47958
  const {
47896
47959
  opacityDisabled,
47897
47960
  borderRadius,
@@ -47933,7 +47996,7 @@ const timePickerLight = createTheme$1({
47933
47996
  Button: buttonLight,
47934
47997
  Input: inputLight
47935
47998
  },
47936
- self: self$T
47999
+ self: self$U
47937
48000
  });
47938
48001
 
47939
48002
  const timePickerDark = {
@@ -47944,7 +48007,7 @@ const timePickerDark = {
47944
48007
  Button: buttonDark,
47945
48008
  Input: inputDark
47946
48009
  },
47947
- self: self$T
48010
+ self: self$U
47948
48011
  };
47949
48012
 
47950
48013
  const itemWidth = "38px";
@@ -47990,7 +48053,7 @@ var commonVars$6 = {
47990
48053
  calendarRightPaddingYearrange: "0"
47991
48054
  };
47992
48055
 
47993
- function self$S(vars) {
48056
+ function self$T(vars) {
47994
48057
  const {
47995
48058
  iconMedium,
47996
48059
  fontWeightStrong,
@@ -48091,7 +48154,7 @@ const datePickerLight = createTheme$1({
48091
48154
  Scrollbar: scrollbarLight,
48092
48155
  Select: internalSelectionLight
48093
48156
  },
48094
- self: self$S
48157
+ self: self$T
48095
48158
  });
48096
48159
 
48097
48160
  const datePickerDark = {
@@ -48104,10 +48167,10 @@ const datePickerDark = {
48104
48167
  Scrollbar: scrollbarDark,
48105
48168
  Select: internalSelectionDark
48106
48169
  },
48107
- self: self$S
48170
+ self: self$T
48108
48171
  };
48109
48172
 
48110
- function self$R(vars) {
48173
+ function self$S(vars) {
48111
48174
  const {
48112
48175
  borderRadius,
48113
48176
  lineHeightBodyLarge,
@@ -48157,13 +48220,13 @@ function self$R(vars) {
48157
48220
  const descriptionsLight = {
48158
48221
  name: "Descriptions",
48159
48222
  common: derived,
48160
- self: self$R
48223
+ self: self$S
48161
48224
  };
48162
48225
 
48163
48226
  const descriptionsDark = {
48164
48227
  name: "Descriptions",
48165
48228
  common: derived$1,
48166
- self: self$R
48229
+ self: self$S
48167
48230
  };
48168
48231
 
48169
48232
  var commonVars$5 = {
@@ -48177,7 +48240,7 @@ var commonVars$5 = {
48177
48240
  closeBorderRadius: "100px"
48178
48241
  };
48179
48242
 
48180
- function self$Q(vars) {
48243
+ function self$R(vars) {
48181
48244
  const {
48182
48245
  borderRadius,
48183
48246
  containerPrimary,
@@ -48234,7 +48297,7 @@ const dialogLight = createTheme$1({
48234
48297
  peers: {
48235
48298
  Button: buttonLight
48236
48299
  },
48237
- self: self$Q
48300
+ self: self$R
48238
48301
  });
48239
48302
 
48240
48303
  const dialogDark = {
@@ -48243,10 +48306,10 @@ const dialogDark = {
48243
48306
  peers: {
48244
48307
  Button: buttonDark
48245
48308
  },
48246
- self: self$Q
48309
+ self: self$R
48247
48310
  };
48248
48311
 
48249
- function self$P(vars) {
48312
+ function self$Q(vars) {
48250
48313
  const {
48251
48314
  elementsQuaternary,
48252
48315
  textPrimary,
@@ -48266,13 +48329,13 @@ function self$P(vars) {
48266
48329
  const dividerLight = {
48267
48330
  name: "Divider",
48268
48331
  common: derived,
48269
- self: self$P
48332
+ self: self$Q
48270
48333
  };
48271
48334
 
48272
48335
  const dividerDark = {
48273
48336
  name: "Divider",
48274
48337
  common: derived$1,
48275
- self: self$P
48338
+ self: self$Q
48276
48339
  };
48277
48340
 
48278
48341
  var commonVars$4 = {
@@ -48288,7 +48351,7 @@ var commonVars$4 = {
48288
48351
  contentBorderRadius: "24px"
48289
48352
  };
48290
48353
 
48291
- function self$O(vars) {
48354
+ function self$P(vars) {
48292
48355
  const {
48293
48356
  containerPrimary,
48294
48357
  textPrimary,
@@ -48337,7 +48400,7 @@ const drawerLight = createTheme$1({
48337
48400
  peers: {
48338
48401
  Scrollbar: scrollbarLight
48339
48402
  },
48340
- self: self$O
48403
+ self: self$P
48341
48404
  });
48342
48405
 
48343
48406
  const drawerDark = {
@@ -48346,7 +48409,7 @@ const drawerDark = {
48346
48409
  peers: {
48347
48410
  Scrollbar: scrollbarDark
48348
48411
  },
48349
- self: self$O
48412
+ self: self$P
48350
48413
  };
48351
48414
 
48352
48415
  var rtlStyle$c = cB("drawer", [cM("rtl", `
@@ -48380,7 +48443,7 @@ const dynamicInputDark = {
48380
48443
  }
48381
48444
  };
48382
48445
 
48383
- function self$N() {
48446
+ function self$O() {
48384
48447
  return commonVariables$1;
48385
48448
  }
48386
48449
  const dynamicInputLight = createTheme$1({
@@ -48390,7 +48453,7 @@ const dynamicInputLight = createTheme$1({
48390
48453
  Input: inputLight,
48391
48454
  Button: buttonLight
48392
48455
  },
48393
- self: self$N
48456
+ self: self$O
48394
48457
  });
48395
48458
 
48396
48459
  var rtlStyle$b = cB("input-number", [cM("rtl", `
@@ -48431,12 +48494,12 @@ const spaceDark = {
48431
48494
  }
48432
48495
  };
48433
48496
 
48434
- function self$M() {
48497
+ function self$N() {
48435
48498
  return commonVars$3;
48436
48499
  }
48437
48500
  const spaceLight = {
48438
48501
  name: "Space",
48439
- self: self$M
48502
+ self: self$N
48440
48503
  };
48441
48504
 
48442
48505
  var rtlStyle$9 = cB("space", [cM("rtl", `
@@ -48508,7 +48571,7 @@ const floatButtonGroupDark = {
48508
48571
  }
48509
48572
  };
48510
48573
 
48511
- function self$L(vars) {
48574
+ function self$M(vars) {
48512
48575
  const {
48513
48576
  containerPrimary,
48514
48577
  elementsQuaternary,
@@ -48524,7 +48587,7 @@ function self$L(vars) {
48524
48587
  const themeLight$4 = {
48525
48588
  name: "FloatButtonGroup",
48526
48589
  common: derived,
48527
- self: self$L
48590
+ self: self$M
48528
48591
  };
48529
48592
 
48530
48593
  const floatButtonDark = {
@@ -48559,7 +48622,7 @@ const floatButtonDark = {
48559
48622
  }
48560
48623
  };
48561
48624
 
48562
- function self$K(vars) {
48625
+ function self$L(vars) {
48563
48626
  const {
48564
48627
  containerPrimary,
48565
48628
  textPrimary,
@@ -48588,10 +48651,10 @@ function self$K(vars) {
48588
48651
  const themeLight$3 = {
48589
48652
  name: "FloatButton",
48590
48653
  common: derived,
48591
- self: self$K
48654
+ self: self$L
48592
48655
  };
48593
48656
 
48594
- function self$J(vars) {
48657
+ function self$K(vars) {
48595
48658
  const {
48596
48659
  heightSmall,
48597
48660
  heightMedium,
@@ -48646,16 +48709,16 @@ function self$J(vars) {
48646
48709
  const formLight = {
48647
48710
  name: "Form",
48648
48711
  common: derived,
48649
- self: self$J
48712
+ self: self$K
48650
48713
  };
48651
48714
 
48652
48715
  const formItemDark = {
48653
48716
  name: "Form",
48654
48717
  common: derived$1,
48655
- self: self$J
48718
+ self: self$K
48656
48719
  };
48657
48720
 
48658
- function self$I(vars) {
48721
+ function self$J(vars) {
48659
48722
  const {
48660
48723
  brandPrimary500,
48661
48724
  staticGreen,
@@ -48692,16 +48755,16 @@ function self$I(vars) {
48692
48755
  const gradientTextLight = {
48693
48756
  name: "GradientText",
48694
48757
  common: derived,
48695
- self: self$I
48758
+ self: self$J
48696
48759
  };
48697
48760
 
48698
48761
  const gradientTextDark = {
48699
48762
  name: "GradientText",
48700
48763
  common: derived$1,
48701
- self: self$I
48764
+ self: self$J
48702
48765
  };
48703
48766
 
48704
- function self$H(vars) {
48767
+ function self$I(vars) {
48705
48768
  const {
48706
48769
  textSecondary
48707
48770
  } = vars;
@@ -48716,7 +48779,7 @@ const inputNumberLight = createTheme$1({
48716
48779
  Button: buttonLight,
48717
48780
  Input: inputLight
48718
48781
  },
48719
- self: self$H
48782
+ self: self$I
48720
48783
  });
48721
48784
 
48722
48785
  const inputNumberDark = {
@@ -48726,10 +48789,10 @@ const inputNumberDark = {
48726
48789
  Button: buttonDark,
48727
48790
  Input: inputDark
48728
48791
  },
48729
- self: self$H
48792
+ self: self$I
48730
48793
  };
48731
48794
 
48732
- function self$G() {
48795
+ function self$H() {
48733
48796
  return {
48734
48797
  inputWidthSmall: "44px",
48735
48798
  inputWidthMedium: "50px",
@@ -48745,7 +48808,7 @@ const inputOtpLight = createTheme$1({
48745
48808
  peers: {
48746
48809
  Input: inputLight
48747
48810
  },
48748
- self: self$G
48811
+ self: self$H
48749
48812
  });
48750
48813
 
48751
48814
  const inputOtpDark = {
@@ -48754,7 +48817,7 @@ const inputOtpDark = {
48754
48817
  peers: {
48755
48818
  Input: inputDark
48756
48819
  },
48757
- self: self$G
48820
+ self: self$H
48758
48821
  };
48759
48822
 
48760
48823
  var rtlStyle$8 = cB("input-otp", [cM("rtl", `
@@ -48766,7 +48829,7 @@ const inputOtpRtl = {
48766
48829
  style: rtlStyle$8
48767
48830
  };
48768
48831
 
48769
- function self$F(vars) {
48832
+ function self$G(vars) {
48770
48833
  const {
48771
48834
  textPrimary,
48772
48835
  textQuaternary,
@@ -48812,7 +48875,7 @@ const layoutLight = createTheme$1({
48812
48875
  peers: {
48813
48876
  Scrollbar: scrollbarLight
48814
48877
  },
48815
- self: self$F
48878
+ self: self$G
48816
48879
  });
48817
48880
 
48818
48881
  const layoutDark = {
@@ -48821,7 +48884,7 @@ const layoutDark = {
48821
48884
  peers: {
48822
48885
  Scrollbar: scrollbarDark
48823
48886
  },
48824
- self: self$F
48887
+ self: self$G
48825
48888
  };
48826
48889
 
48827
48890
  const rowDark = {
@@ -48858,7 +48921,7 @@ const rowRtl = {
48858
48921
  style: rtlStyle$7
48859
48922
  };
48860
48923
 
48861
- function self$E(vars) {
48924
+ function self$F(vars) {
48862
48925
  const {
48863
48926
  brandPrimary500,
48864
48927
  staticRed
@@ -48872,16 +48935,16 @@ function self$E(vars) {
48872
48935
  const loadingBarLight = {
48873
48936
  name: "LoadingBar",
48874
48937
  common: derived,
48875
- self: self$E
48938
+ self: self$F
48876
48939
  };
48877
48940
 
48878
48941
  const loadingBarDark = {
48879
48942
  name: "LoadingBar",
48880
48943
  common: derived$1,
48881
- self: self$E
48944
+ self: self$F
48882
48945
  };
48883
48946
 
48884
- function self$D(vars) {
48947
+ function self$E(vars) {
48885
48948
  const {
48886
48949
  fontBodyMedium,
48887
48950
  textPrimary,
@@ -48904,7 +48967,7 @@ const logLight = createTheme$1({
48904
48967
  Scrollbar: scrollbarLight,
48905
48968
  Code: codeLight
48906
48969
  },
48907
- self: self$D
48970
+ self: self$E
48908
48971
  });
48909
48972
 
48910
48973
  const logDark = {
@@ -48914,25 +48977,25 @@ const logDark = {
48914
48977
  Scrollbar: scrollbarDark,
48915
48978
  Code: codeDark
48916
48979
  },
48917
- self: self$D
48980
+ self: self$E
48918
48981
  };
48919
48982
 
48920
- function self$C() {
48983
+ function self$D() {
48921
48984
  return {};
48922
48985
  }
48923
48986
  const marqueeLight = {
48924
48987
  name: "Marquee",
48925
48988
  common: derived,
48926
- self: self$C
48989
+ self: self$D
48927
48990
  };
48928
48991
 
48929
48992
  const marqueeDark = {
48930
48993
  name: "Marquee",
48931
48994
  common: derived$1,
48932
- self: self$C
48995
+ self: self$D
48933
48996
  };
48934
48997
 
48935
- function self$B(vars) {
48998
+ function self$C(vars) {
48936
48999
  const {
48937
49000
  shadowDepth2
48938
49001
  } = vars;
@@ -48947,7 +49010,7 @@ const mentionLight = createTheme$1({
48947
49010
  InternalSelectMenu: internalSelectMenuLight,
48948
49011
  Input: inputLight
48949
49012
  },
48950
- self: self$B
49013
+ self: self$C
48951
49014
  });
48952
49015
 
48953
49016
  const listDark = {
@@ -48957,7 +49020,7 @@ const listDark = {
48957
49020
  InternalSelectMenu: internalSelectMenuDark,
48958
49021
  Input: inputDark
48959
49022
  },
48960
- self: self$B
49023
+ self: self$C
48961
49024
  };
48962
49025
 
48963
49026
  function createPartialInvertedVars(color, activeItemColor, activeTextColor, groupTextColor) {
@@ -49000,7 +49063,7 @@ function createPartialInvertedVars(color, activeItemColor, activeTextColor, grou
49000
49063
  groupTextColorInverted: groupTextColor
49001
49064
  };
49002
49065
  }
49003
- function self$A(vars) {
49066
+ function self$B(vars) {
49004
49067
  const {
49005
49068
  textSecondary,
49006
49069
  borderRadiusSmall,
@@ -49068,7 +49131,7 @@ const menuLight = createTheme$1({
49068
49131
  Tooltip: tooltipLight,
49069
49132
  Dropdown: dropdownLight
49070
49133
  },
49071
- self: self$A
49134
+ self: self$B
49072
49135
  });
49073
49136
 
49074
49137
  const menuDark = {
@@ -49078,10 +49141,10 @@ const menuDark = {
49078
49141
  Tooltip: tooltipDark,
49079
49142
  Dropdown: dropdownDark
49080
49143
  },
49081
- self: self$A
49144
+ self: self$B
49082
49145
  };
49083
49146
 
49084
- function self$z(vars) {
49147
+ function self$A(vars) {
49085
49148
  const {
49086
49149
  transparencyModal,
49087
49150
  containerPrimary,
@@ -49105,7 +49168,7 @@ const modalLight = createTheme$1({
49105
49168
  Dialog: dialogLight,
49106
49169
  Card: cardLight
49107
49170
  },
49108
- self: self$z
49171
+ self: self$A
49109
49172
  });
49110
49173
 
49111
49174
  const modalDark = {
@@ -49116,7 +49179,7 @@ const modalDark = {
49116
49179
  Dialog: dialogDark,
49117
49180
  Card: cardDark$1
49118
49181
  },
49119
- self: self$z
49182
+ self: self$A
49120
49183
  };
49121
49184
 
49122
49185
  var commonVars$2 = {
@@ -49125,7 +49188,7 @@ var commonVars$2 = {
49125
49188
  closeBorderRadius: "50px"
49126
49189
  };
49127
49190
 
49128
- function self$y(vars) {
49191
+ function self$z(vars) {
49129
49192
  const {
49130
49193
  fontWeightStrong,
49131
49194
  lineHeightBodyMedium,
@@ -49258,7 +49321,7 @@ const notificationLight = createTheme$1({
49258
49321
  peers: {
49259
49322
  Scrollbar: scrollbarLight
49260
49323
  },
49261
- self: self$y
49324
+ self: self$z
49262
49325
  });
49263
49326
 
49264
49327
  const notificationDark = {
@@ -49267,7 +49330,7 @@ const notificationDark = {
49267
49330
  peers: {
49268
49331
  Scrollbar: scrollbarDark
49269
49332
  },
49270
- self: self$y
49333
+ self: self$z
49271
49334
  };
49272
49335
 
49273
49336
  var rtlStyle$6 = cB("notification", [cM("rtl", `
@@ -49297,7 +49360,7 @@ const notificationRtl = {
49297
49360
  style: rtlStyle$6
49298
49361
  };
49299
49362
 
49300
- function self$x(vars) {
49363
+ function self$y(vars) {
49301
49364
  const {
49302
49365
  fontWeightStrong,
49303
49366
  fontTitleSmall,
@@ -49323,13 +49386,13 @@ function self$x(vars) {
49323
49386
  const pageHeaderLight = createTheme$1({
49324
49387
  name: "PageHeader",
49325
49388
  common: derived,
49326
- self: self$x
49389
+ self: self$y
49327
49390
  });
49328
49391
 
49329
49392
  const pageHeaderDark = {
49330
49393
  name: "PageHeader",
49331
49394
  common: derived$1,
49332
- self: self$x
49395
+ self: self$y
49333
49396
  };
49334
49397
 
49335
49398
  var rtlStyle$5 = cB("page-header-wrapper", [cM("rtl", [cB("page-header-header", `
@@ -49356,7 +49419,7 @@ var rtl = {
49356
49419
  style: rtlStyle$5
49357
49420
  };
49358
49421
 
49359
- function self$w(vars) {
49422
+ function self$x(vars) {
49360
49423
  const {
49361
49424
  fontBodyMedium,
49362
49425
  staticOrange
@@ -49374,7 +49437,7 @@ const popconfirmLight = createTheme$1({
49374
49437
  Button: buttonLight,
49375
49438
  Popover: popoverLight
49376
49439
  },
49377
- self: self$w
49440
+ self: self$x
49378
49441
  });
49379
49442
 
49380
49443
  const popconfirmDark = {
@@ -49384,10 +49447,10 @@ const popconfirmDark = {
49384
49447
  Button: buttonDark,
49385
49448
  Popover: popoverDark
49386
49449
  },
49387
- self: self$w
49450
+ self: self$x
49388
49451
  };
49389
49452
 
49390
- function self$v(vars) {
49453
+ function self$w(vars) {
49391
49454
  const {
49392
49455
  elementsQuinary,
49393
49456
  brandSecondary600
@@ -49403,16 +49466,16 @@ function self$v(vars) {
49403
49466
  const themeLight$2 = {
49404
49467
  name: "Rate",
49405
49468
  common: derived,
49406
- self: self$v
49469
+ self: self$w
49407
49470
  };
49408
49471
 
49409
49472
  const rateDark = {
49410
49473
  name: "Rate",
49411
49474
  common: derived$1,
49412
- self: self$v
49475
+ self: self$w
49413
49476
  };
49414
49477
 
49415
- function self$u(vars) {
49478
+ function self$v(vars) {
49416
49479
  const {
49417
49480
  fontHeadingSmall,
49418
49481
  fontHeadingMedium,
@@ -49461,16 +49524,16 @@ function self$u(vars) {
49461
49524
  const resultLight = {
49462
49525
  name: "Result",
49463
49526
  common: derived,
49464
- self: self$u
49527
+ self: self$v
49465
49528
  };
49466
49529
 
49467
49530
  const resultDark = {
49468
49531
  name: "Result",
49469
49532
  common: derived$1,
49470
- self: self$u
49533
+ self: self$v
49471
49534
  };
49472
49535
 
49473
- function self$t(vars) {
49536
+ function self$u(vars) {
49474
49537
  const {
49475
49538
  borderRadius,
49476
49539
  opacityDisabled,
@@ -49517,16 +49580,16 @@ function self$t(vars) {
49517
49580
  const sliderLight = {
49518
49581
  name: "Slider",
49519
49582
  common: derived,
49520
- self: self$t
49583
+ self: self$u
49521
49584
  };
49522
49585
 
49523
49586
  const sliderDark = {
49524
49587
  name: "Slider",
49525
49588
  common: derived$1,
49526
- self: self$t
49589
+ self: self$u
49527
49590
  };
49528
49591
 
49529
- function self$s(vars) {
49592
+ function self$t(vars) {
49530
49593
  const {
49531
49594
  opacityDisabled,
49532
49595
  elementsPrimary,
@@ -49553,16 +49616,16 @@ function self$s(vars) {
49553
49616
  const spinLight = {
49554
49617
  name: "Spin",
49555
49618
  common: derived,
49556
- self: self$s
49619
+ self: self$t
49557
49620
  };
49558
49621
 
49559
49622
  const spinDark = {
49560
49623
  name: "Spin",
49561
49624
  common: derived$1,
49562
- self: self$s
49625
+ self: self$t
49563
49626
  };
49564
49627
 
49565
- function self$r(vars) {
49628
+ function self$s(vars) {
49566
49629
  const {
49567
49630
  fontBodyMedium,
49568
49631
  fontHeadingSmall,
@@ -49584,13 +49647,13 @@ function self$r(vars) {
49584
49647
  const statisticLight = {
49585
49648
  name: "Statistic",
49586
49649
  common: derived,
49587
- self: self$r
49650
+ self: self$s
49588
49651
  };
49589
49652
 
49590
49653
  const statisticDark = {
49591
49654
  name: "Statistic",
49592
49655
  common: derived$1,
49593
- self: self$r
49656
+ self: self$s
49594
49657
  };
49595
49658
 
49596
49659
  var rtlStyle$4 = cB("statistic", [cM("rtl", `
@@ -49607,7 +49670,7 @@ const statisticRtl = {
49607
49670
  style: rtlStyle$4
49608
49671
  };
49609
49672
 
49610
- function self$q(vars) {
49673
+ function self$r(vars) {
49611
49674
  const {
49612
49675
  fontBodyMedium,
49613
49676
  lineHeightBodyMedium,
@@ -49636,16 +49699,16 @@ function self$q(vars) {
49636
49699
  const statusLight = {
49637
49700
  name: "Status",
49638
49701
  common: derived,
49639
- self: self$q
49702
+ self: self$r
49640
49703
  };
49641
49704
 
49642
49705
  const emptyDark = {
49643
49706
  name: "Status",
49644
49707
  common: derived$1,
49645
- self: self$q
49708
+ self: self$r
49646
49709
  };
49647
49710
 
49648
- function self$p(vars) {
49711
+ function self$q(vars) {
49649
49712
  const {
49650
49713
  fontWeightStrong,
49651
49714
  fontBodySmall,
@@ -49722,13 +49785,13 @@ function self$p(vars) {
49722
49785
  const stepsLight = {
49723
49786
  name: "Steps",
49724
49787
  common: derived,
49725
- self: self$p
49788
+ self: self$q
49726
49789
  };
49727
49790
 
49728
49791
  const stepsDark = {
49729
49792
  name: "Steps",
49730
49793
  common: derived$1,
49731
- self: self$p
49794
+ self: self$q
49732
49795
  };
49733
49796
 
49734
49797
  var rtlStyle$3 = c$1([cB("steps", [cM("rtl", `
@@ -49750,7 +49813,7 @@ const stepsRtl = {
49750
49813
  style: rtlStyle$3
49751
49814
  };
49752
49815
 
49753
- function self$o(vars) {
49816
+ function self$p(vars) {
49754
49817
  const {
49755
49818
  opacityDisabled,
49756
49819
  borderRadius,
@@ -49814,16 +49877,16 @@ function self$o(vars) {
49814
49877
  const switchLight = {
49815
49878
  name: "Switch",
49816
49879
  common: derived,
49817
- self: self$o
49880
+ self: self$p
49818
49881
  };
49819
49882
 
49820
49883
  const switchDark = {
49821
49884
  name: "Switch",
49822
49885
  common: derived$1,
49823
- self: self$o
49886
+ self: self$p
49824
49887
  };
49825
49888
 
49826
- function self$n(vars) {
49889
+ function self$o(vars) {
49827
49890
  const {
49828
49891
  fontBodySmall,
49829
49892
  fontBodyMedium,
@@ -49868,13 +49931,13 @@ function self$n(vars) {
49868
49931
  const tableLight = {
49869
49932
  name: "Table",
49870
49933
  common: derived,
49871
- self: self$n
49934
+ self: self$o
49872
49935
  };
49873
49936
 
49874
49937
  const tableDark = {
49875
49938
  name: "Table",
49876
49939
  common: derived$1,
49877
- self: self$n
49940
+ self: self$o
49878
49941
  };
49879
49942
 
49880
49943
  var rtlStyle$2 = c$1([cB("table", [cM("rtl", `
@@ -49895,7 +49958,7 @@ const tableRtl = {
49895
49958
  style: rtlStyle$2
49896
49959
  };
49897
49960
 
49898
- function self$m(vars) {
49961
+ function self$n(vars) {
49899
49962
  const {
49900
49963
  borderRadius,
49901
49964
  closeSmall,
@@ -50016,16 +50079,16 @@ function self$m(vars) {
50016
50079
  const tabsLight = {
50017
50080
  name: "Tabs",
50018
50081
  common: derived,
50019
- self: self$m
50082
+ self: self$n
50020
50083
  };
50021
50084
 
50022
50085
  const tabsDark = {
50023
50086
  name: "Tabs",
50024
50087
  common: derived$1,
50025
- self: self$m
50088
+ self: self$n
50026
50089
  };
50027
50090
 
50028
- function self$l(vars) {
50091
+ function self$m(vars) {
50029
50092
  const {
50030
50093
  fontBodyMedium,
50031
50094
  textPrimary,
@@ -50042,13 +50105,13 @@ function self$l(vars) {
50042
50105
  const thingLight = {
50043
50106
  name: "Thing",
50044
50107
  common: derived,
50045
- self: self$l
50108
+ self: self$m
50046
50109
  };
50047
50110
 
50048
50111
  const thingDark = {
50049
50112
  name: "Thing",
50050
50113
  common: derived$1,
50051
- self: self$l
50114
+ self: self$m
50052
50115
  };
50053
50116
 
50054
50117
  var rtlStyle$1 = cB("thing", [cM("rtl", `
@@ -50065,7 +50128,7 @@ const thingRtl = {
50065
50128
  peers: [buttonRtl, spaceRtl]
50066
50129
  };
50067
50130
 
50068
- function self$k(vars) {
50131
+ function self$l(vars) {
50069
50132
  const {
50070
50133
  fontWeightStrong,
50071
50134
  fontBodyLarge,
@@ -50106,13 +50169,13 @@ function self$k(vars) {
50106
50169
  const timelineLight = {
50107
50170
  name: "Timeline",
50108
50171
  common: derived,
50109
- self: self$k
50172
+ self: self$l
50110
50173
  };
50111
50174
 
50112
50175
  const timelineDark = {
50113
50176
  name: "Timeline",
50114
50177
  common: derived$1,
50115
- self: self$k
50178
+ self: self$l
50116
50179
  };
50117
50180
 
50118
50181
  var commonVariables = {
@@ -50122,7 +50185,7 @@ var commonVariables = {
50122
50185
  iconMargin: "16px"
50123
50186
  };
50124
50187
 
50125
- function self$j(vars) {
50188
+ function self$k(vars) {
50126
50189
  const {
50127
50190
  borderRadiusLarge,
50128
50191
  fontBodyLarge,
@@ -50187,16 +50250,16 @@ function self$j(vars) {
50187
50250
  const toggleButtonLight = {
50188
50251
  name: "ToggleButton",
50189
50252
  common: derived,
50190
- self: self$j
50253
+ self: self$k
50191
50254
  };
50192
50255
 
50193
50256
  const toggleButtonDark = {
50194
50257
  name: "ToggleButton",
50195
50258
  common: derived$1,
50196
- self: self$j
50259
+ self: self$k
50197
50260
  };
50198
50261
 
50199
- function self$i(vars) {
50262
+ function self$j(vars) {
50200
50263
  const {
50201
50264
  iconMedium,
50202
50265
  fontWeight,
@@ -50266,7 +50329,7 @@ const transferLight$1 = createTheme$1({
50266
50329
  Empty: emptyLight,
50267
50330
  Button: buttonLight
50268
50331
  },
50269
- self: self$i
50332
+ self: self$j
50270
50333
  });
50271
50334
 
50272
50335
  const transferDark$1 = {
@@ -50279,10 +50342,10 @@ const transferDark$1 = {
50279
50342
  Empty: emptyDark$1,
50280
50343
  Button: buttonDark
50281
50344
  },
50282
- self: self$i
50345
+ self: self$j
50283
50346
  };
50284
50347
 
50285
- function self$h(vars) {
50348
+ function self$i(vars) {
50286
50349
  const {
50287
50350
  fontBodyMedium,
50288
50351
  lineHeightBodyMedium,
@@ -50320,7 +50383,7 @@ const treeLight = createTheme$1({
50320
50383
  Scrollbar: scrollbarLight,
50321
50384
  Empty: emptyLight
50322
50385
  },
50323
- self: self$h
50386
+ self: self$i
50324
50387
  });
50325
50388
 
50326
50389
  const treeDark = {
@@ -50331,7 +50394,7 @@ const treeDark = {
50331
50394
  Scrollbar: scrollbarDark,
50332
50395
  Empty: emptyDark$1
50333
50396
  },
50334
- self: self$h
50397
+ self: self$i
50335
50398
  };
50336
50399
 
50337
50400
  var rtlStyle = cB("tree", [cM("rtl", `
@@ -50366,7 +50429,7 @@ const treeSelectDark = {
50366
50429
  }
50367
50430
  };
50368
50431
 
50369
- function self$g(vars) {
50432
+ function self$h(vars) {
50370
50433
  const {
50371
50434
  containerPrimary,
50372
50435
  shadowDepth2,
@@ -50394,7 +50457,7 @@ const treeSelectLight = createTheme$1({
50394
50457
  Empty: emptyLight,
50395
50458
  InternalSelection: internalSelectionLight
50396
50459
  },
50397
- self: self$g
50460
+ self: self$h
50398
50461
  });
50399
50462
 
50400
50463
  const watermarkDark = {
@@ -50423,7 +50486,7 @@ const watermarkLight = createTheme$1({
50423
50486
  }
50424
50487
  });
50425
50488
 
50426
- function self$f(vars) {
50489
+ function self$g(vars) {
50427
50490
  const {
50428
50491
  elementsSecondary,
50429
50492
  elementsSenary,
@@ -50443,7 +50506,7 @@ const imageLight = createTheme$1({
50443
50506
  peers: {
50444
50507
  Tooltip: tooltipLight
50445
50508
  },
50446
- self: self$f
50509
+ self: self$g
50447
50510
  });
50448
50511
 
50449
50512
  const imageDark = {
@@ -50452,7 +50515,7 @@ const imageDark = {
50452
50515
  peers: {
50453
50516
  Tooltip: tooltipDark
50454
50517
  },
50455
- self: self$f
50518
+ self: self$g
50456
50519
  };
50457
50520
 
50458
50521
  const prevIcon = /* @__PURE__ */ h("svg", { viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, /* @__PURE__ */ h(
@@ -50506,7 +50569,7 @@ const imagePreviewSharedProps = {
50506
50569
  };
50507
50570
  const imageContextKey = createInjectionKey("u-image");
50508
50571
 
50509
- var style$17 = c$1([c$1("body >", [cB("image-container", "position: fixed;")]), cB("image-preview-container", `
50572
+ var style$18 = c$1([c$1("body >", [cB("image-container", "position: fixed;")]), cB("image-preview-container", `
50510
50573
  position: fixed;
50511
50574
  left: 0;
50512
50575
  right: 0;
@@ -50590,7 +50653,7 @@ var _UImagePreview = defineComponent({
50590
50653
  const themeRef = useTheme(
50591
50654
  "Image",
50592
50655
  "-image",
50593
- style$17,
50656
+ style$18,
50594
50657
  imageLight,
50595
50658
  props,
50596
50659
  mergedClsPrefixRef
@@ -51521,7 +51584,7 @@ var _UImage = defineComponent({
51521
51584
  }
51522
51585
  });
51523
51586
 
51524
- var style$16 = c$1([c$1("@keyframes spin-rotate", `
51587
+ var style$17 = c$1([c$1("@keyframes spin-rotate", `
51525
51588
  from {
51526
51589
  transform: rotate(0);
51527
51590
  }
@@ -51625,7 +51688,7 @@ var _USpin = defineComponent({
51625
51688
  const themeRef = useTheme(
51626
51689
  "Spin",
51627
51690
  "-spin",
51628
- style$16,
51691
+ style$17,
51629
51692
  spinLight,
51630
51693
  props,
51631
51694
  mergedClsPrefixRef
@@ -52882,7 +52945,7 @@ var _UUpload = defineComponent({
52882
52945
  const themeRef = useTheme(
52883
52946
  "Upload",
52884
52947
  "-upload",
52885
- style$18,
52948
+ style$19,
52886
52949
  uploadLight,
52887
52950
  props,
52888
52951
  mergedClsPrefixRef
@@ -53906,7 +53969,7 @@ var UDropdownMenu = defineComponent({
53906
53969
  }
53907
53970
  });
53908
53971
 
53909
- var style$15 = cB("dropdown-menu", `
53972
+ var style$16 = cB("dropdown-menu", `
53910
53973
  transform-origin: var(--v-transform-origin);
53911
53974
  background-color: var(--u-color);
53912
53975
  border-radius: var(--u-border-radius);
@@ -54153,7 +54216,7 @@ var _UDropdown = defineComponent({
54153
54216
  const themeRef = useTheme(
54154
54217
  "Dropdown",
54155
54218
  "-dropdown",
54156
- style$15,
54219
+ style$16,
54157
54220
  dropdownLight,
54158
54221
  props,
54159
54222
  mergedClsPrefixRef
@@ -54547,7 +54610,7 @@ var ChatAttachmentComponent = defineComponent({
54547
54610
  }
54548
54611
  });
54549
54612
 
54550
- var style$14 = cB("chat", `
54613
+ var style$15 = cB("chat", `
54551
54614
  height: 100%;
54552
54615
  background-color: transparent;
54553
54616
  box-sizing: border-box;
@@ -54990,7 +55053,7 @@ var _UChatMessages = defineComponent({
54990
55053
  setup(props, { slots }) {
54991
55054
  const UChat = inject(chatInjectionKey, null);
54992
55055
  const { mergedClsPrefixRef } = useConfig(props);
54993
- const themeRef = UChat?.mergedThemeRef ?? useTheme("Chat", "-chat", style$14, chatLight, props, mergedClsPrefixRef);
55056
+ const themeRef = UChat?.mergedThemeRef ?? useTheme("Chat", "-chat", style$15, chatLight, props, mergedClsPrefixRef);
54994
55057
  const { localeRef } = useLocale("Chat");
54995
55058
  const contextMenuShow = ref(false);
54996
55059
  const contextMenuMessage = ref();
@@ -56251,7 +56314,7 @@ const Scrollbar = defineComponent({
56251
56314
  }
56252
56315
  });
56253
56316
 
56254
- var style$13 = c$1([cB("select", `
56317
+ var style$14 = c$1([cB("select", `
56255
56318
  z-index: auto;
56256
56319
  outline: none;
56257
56320
  width: 100%;
@@ -56423,7 +56486,7 @@ var _USelect = defineComponent({
56423
56486
  const themeRef = useTheme(
56424
56487
  "Select",
56425
56488
  "-select",
56426
- style$13,
56489
+ style$14,
56427
56490
  selectLight,
56428
56491
  props,
56429
56492
  mergedClsPrefixRef
@@ -57257,7 +57320,7 @@ var _UChatListItems = defineComponent({
57257
57320
  setup(props, { slots }) {
57258
57321
  const UChat = inject(chatInjectionKey, null);
57259
57322
  const { mergedClsPrefixRef } = useConfig(props);
57260
- const themeRef = UChat?.mergedThemeRef ?? useTheme("Chat", "-chat", style$14, chatLight, props, mergedClsPrefixRef);
57323
+ const themeRef = UChat?.mergedThemeRef ?? useTheme("Chat", "-chat", style$15, chatLight, props, mergedClsPrefixRef);
57261
57324
  const { localeRef } = useLocale("Chat");
57262
57325
  const cssVarsRef = computed(() => {
57263
57326
  const {
@@ -57929,7 +57992,7 @@ var _UChat = defineComponent({
57929
57992
  const themeRef = useTheme(
57930
57993
  "Chat",
57931
57994
  "-chat",
57932
- style$14,
57995
+ style$15,
57933
57996
  chatLight,
57934
57997
  props,
57935
57998
  mergedClsPrefixRef
@@ -58258,7 +58321,7 @@ var _UChat = defineComponent({
58258
58321
  }
58259
58322
  });
58260
58323
 
58261
- var style$12 = c$1([cB("code", `
58324
+ var style$13 = c$1([cB("code", `
58262
58325
  font-size: var(--u-font-size);
58263
58326
  font-family: var(--u-font-family);
58264
58327
  `, [cM("show-line-numbers", `
@@ -58429,7 +58492,7 @@ var _UCode = defineComponent({
58429
58492
  const themeRef = useTheme(
58430
58493
  "Code",
58431
58494
  "-code",
58432
- style$12,
58495
+ style$13,
58433
58496
  codeLight,
58434
58497
  props,
58435
58498
  mergedClsPrefixRef
@@ -58567,7 +58630,7 @@ const collapseProps = {
58567
58630
  }
58568
58631
  };
58569
58632
 
58570
- var style$11 = cB("collapse", `
58633
+ var style$12 = cB("collapse", `
58571
58634
  width: 100%;
58572
58635
  background-color: var(--u-background-color);
58573
58636
  border-radius: var(--u-border-radius);
@@ -58650,7 +58713,7 @@ var UCollapse$1 = defineComponent({
58650
58713
  const themeRef = useTheme(
58651
58714
  "Collapse",
58652
58715
  "-collapse",
58653
- style$11,
58716
+ style$12,
58654
58717
  collapseLight,
58655
58718
  props,
58656
58719
  mergedClsPrefixRef
@@ -58992,7 +59055,7 @@ var UCollapseItem$1 = defineComponent({
58992
59055
  }
58993
59056
  });
58994
59057
 
58995
- var style$10 = cB("collapse-transition", {
59058
+ var style$11 = cB("collapse-transition", {
58996
59059
  width: "100%"
58997
59060
  }, [fadeInHeightExpandTransition()]);
58998
59061
 
@@ -59031,7 +59094,7 @@ var _UCollapseTransition = defineComponent({
59031
59094
  const mergedThemeRef = useTheme(
59032
59095
  "CollapseTransition",
59033
59096
  "-collapse-transition",
59034
- style$10,
59097
+ style$11,
59035
59098
  collapseTransitionLight,
59036
59099
  props,
59037
59100
  mergedClsPrefixRef
@@ -59092,7 +59155,7 @@ var _UCollapseTransition = defineComponent({
59092
59155
  }
59093
59156
  });
59094
59157
 
59095
- function self$e(vars) {
59158
+ function self$f(vars) {
59096
59159
  const {
59097
59160
  borderRadius,
59098
59161
  borderRadiusSmall,
@@ -59139,7 +59202,7 @@ const colorPickerLight = createTheme$1({
59139
59202
  Input: inputLight,
59140
59203
  Button: buttonLight
59141
59204
  },
59142
- self: self$e
59205
+ self: self$f
59143
59206
  });
59144
59207
 
59145
59208
  const colorPickerDark = {
@@ -59149,7 +59212,7 @@ const colorPickerDark = {
59149
59212
  Input: inputDark,
59150
59213
  Button: buttonDark
59151
59214
  },
59152
- self: self$e
59215
+ self: self$f
59153
59216
  };
59154
59217
 
59155
59218
  function deriveDefaultValue(modes, showAlpha) {
@@ -60107,7 +60170,7 @@ var Pallete = defineComponent({
60107
60170
  }
60108
60171
  });
60109
60172
 
60110
- var style$$ = c$1([cB("color-picker", `
60173
+ var style$10 = c$1([cB("color-picker", `
60111
60174
  display: inline-block;
60112
60175
  box-sizing: border-box;
60113
60176
  height: var(--u-height);
@@ -60379,7 +60442,7 @@ var UColorPicker$1 = defineComponent({
60379
60442
  const themeRef = useTheme(
60380
60443
  "ColorPicker",
60381
60444
  "-color-picker",
60382
- style$$,
60445
+ style$10,
60383
60446
  colorPickerLight,
60384
60447
  props,
60385
60448
  mergedClsPrefixRef
@@ -64722,7 +64785,7 @@ var commonVars$1 = {
64722
64785
  wrapperMargin: "0 0 20px"
64723
64786
  };
64724
64787
 
64725
- function self$d(vars) {
64788
+ function self$e(vars) {
64726
64789
  const {
64727
64790
  elementsSenary,
64728
64791
  borderRadiusLarge
@@ -64737,17 +64800,17 @@ const cropLight = createTheme$1({
64737
64800
  name: "Crop",
64738
64801
  common: derived,
64739
64802
  peers: {},
64740
- self: self$d
64803
+ self: self$e
64741
64804
  });
64742
64805
 
64743
64806
  const cropDark = {
64744
64807
  name: "Crop",
64745
64808
  common: derived$1,
64746
64809
  peers: {},
64747
- self: self$d
64810
+ self: self$e
64748
64811
  };
64749
64812
 
64750
- var style$_ = c$1([c$1([c$1(".cropper-container", {
64813
+ var style$$ = c$1([c$1([c$1(".cropper-container", {
64751
64814
  direction: "ltr",
64752
64815
  fontSize: "0",
64753
64816
  lineHeight: "0",
@@ -65137,7 +65200,7 @@ var _UCrop = defineComponent({
65137
65200
  const themeRef = useTheme(
65138
65201
  "Crop",
65139
65202
  "-crop",
65140
- style$_,
65203
+ style$$,
65141
65204
  cropLight,
65142
65205
  props,
65143
65206
  mergedClsPrefixRef
@@ -65261,9 +65324,77 @@ var _UCrop = defineComponent({
65261
65324
  }
65262
65325
  });
65263
65326
 
65327
+ const paginationProps = {
65328
+ ...useTheme.props,
65329
+ simple: Boolean,
65330
+ variant: {
65331
+ type: String,
65332
+ default: "default"
65333
+ },
65334
+ hasPrev: {
65335
+ type: Boolean,
65336
+ default: void 0
65337
+ },
65338
+ hasNext: {
65339
+ type: Boolean,
65340
+ default: void 0
65341
+ },
65342
+ page: Number,
65343
+ defaultPage: {
65344
+ type: Number,
65345
+ default: 1
65346
+ },
65347
+ itemCount: Number,
65348
+ pageCount: Number,
65349
+ defaultPageCount: {
65350
+ type: Number,
65351
+ default: 1
65352
+ },
65353
+ showSizePicker: Boolean,
65354
+ sizePickerLabel: String,
65355
+ pageSize: Number,
65356
+ defaultPageSize: Number,
65357
+ pageSizes: {
65358
+ type: Array,
65359
+ default() {
65360
+ return [10];
65361
+ }
65362
+ },
65363
+ showQuickJumper: Boolean,
65364
+ size: {
65365
+ type: String,
65366
+ default: "medium"
65367
+ },
65368
+ disabled: Boolean,
65369
+ pageSlot: {
65370
+ type: Number,
65371
+ default: 9
65372
+ },
65373
+ selectProps: Object,
65374
+ prev: Function,
65375
+ next: Function,
65376
+ goto: Function,
65377
+ prefix: Function,
65378
+ suffix: Function,
65379
+ label: Function,
65380
+ displayOrder: {
65381
+ type: Array,
65382
+ default: ["size-picker", "pages", "quick-jumper"]
65383
+ },
65384
+ to: useAdjustedTo.propTo,
65385
+ "onUpdate:page": [Function, Array],
65386
+ onUpdatePage: [Function, Array],
65387
+ "onUpdate:pageSize": [Function, Array],
65388
+ onUpdatePageSize: [Function, Array],
65389
+ /** @deprecated */
65390
+ onPageSizeChange: [Function, Array],
65391
+ /** @deprecated */
65392
+ onChange: [Function, Array]
65393
+ };
65394
+
65264
65395
  const popselectInjectionKey = createInjectionKey("u-popselect");
65265
65396
 
65266
- var style$Z = cB("popselect-menu", `
65397
+ var style$_ = cB("popselect-menu", `
65267
65398
  box-shadow: var(--u-menu-box-shadow);
65268
65399
  `);
65269
65400
 
@@ -65317,7 +65448,7 @@ var UPopselectPanel = defineComponent({
65317
65448
  const themeRef = useTheme(
65318
65449
  "Popselect",
65319
65450
  "-pop-select",
65320
- style$Z,
65451
+ style$_,
65321
65452
  popselectLight,
65322
65453
  UPopselect.props,
65323
65454
  mergedClsPrefixRef
@@ -65567,7 +65698,7 @@ const hoverStyleChildren$1 = [cM("button", `
65567
65698
  border: var(--u-button-border-hover);
65568
65699
  color: var(--u-button-icon-color-hover);
65569
65700
  `)];
65570
- var style$Y = cB("pagination", `
65701
+ var style$Z = cB("pagination", `
65571
65702
  display: flex;
65572
65703
  width: 100%;
65573
65704
  justify-content: space-between;
@@ -65824,61 +65955,6 @@ function createRange(from, to) {
65824
65955
  return range;
65825
65956
  }
65826
65957
 
65827
- const paginationProps = {
65828
- ...useTheme.props,
65829
- simple: Boolean,
65830
- page: Number,
65831
- defaultPage: {
65832
- type: Number,
65833
- default: 1
65834
- },
65835
- itemCount: Number,
65836
- pageCount: Number,
65837
- defaultPageCount: {
65838
- type: Number,
65839
- default: 1
65840
- },
65841
- showSizePicker: Boolean,
65842
- sizePickerLabel: String,
65843
- pageSize: Number,
65844
- defaultPageSize: Number,
65845
- pageSizes: {
65846
- type: Array,
65847
- default() {
65848
- return [10];
65849
- }
65850
- },
65851
- showQuickJumper: Boolean,
65852
- size: {
65853
- type: String,
65854
- default: "medium"
65855
- },
65856
- disabled: Boolean,
65857
- pageSlot: {
65858
- type: Number,
65859
- default: 9
65860
- },
65861
- selectProps: Object,
65862
- prev: Function,
65863
- next: Function,
65864
- goto: Function,
65865
- prefix: Function,
65866
- suffix: Function,
65867
- label: Function,
65868
- displayOrder: {
65869
- type: Array,
65870
- default: ["size-picker", "pages", "quick-jumper"]
65871
- },
65872
- to: useAdjustedTo.propTo,
65873
- "onUpdate:page": [Function, Array],
65874
- onUpdatePage: [Function, Array],
65875
- "onUpdate:pageSize": [Function, Array],
65876
- onUpdatePageSize: [Function, Array],
65877
- /** @deprecated */
65878
- onPageSizeChange: [Function, Array],
65879
- /** @deprecated */
65880
- onChange: [Function, Array]
65881
- };
65882
65958
  var _UPagination = defineComponent({
65883
65959
  name: "Pagination",
65884
65960
  props: paginationProps,
@@ -65915,7 +65991,7 @@ var _UPagination = defineComponent({
65915
65991
  const themeRef = useTheme(
65916
65992
  "Pagination",
65917
65993
  "-pagination",
65918
- style$Y,
65994
+ style$Z,
65919
65995
  paginationLight,
65920
65996
  props,
65921
65997
  mergedClsPrefixRef
@@ -65951,6 +66027,18 @@ var _UPagination = defineComponent({
65951
66027
  return Math.max(pageCount, 1);
65952
66028
  return 1;
65953
66029
  });
66030
+ const mergedHasPrevRef = computed(() => {
66031
+ const { hasPrev } = props;
66032
+ if (hasPrev !== void 0)
66033
+ return hasPrev;
66034
+ return mergedPageRef.value > 1;
66035
+ });
66036
+ const mergedHasNextRef = computed(() => {
66037
+ const { hasNext } = props;
66038
+ if (hasNext !== void 0)
66039
+ return hasNext;
66040
+ return mergedPageRef.value < mergedPageCountRef.value;
66041
+ });
65954
66042
  const jumperValueRef = ref("");
65955
66043
  watchEffect(() => {
65956
66044
  void props.simple;
@@ -66090,13 +66178,13 @@ var _UPagination = defineComponent({
66090
66178
  }
66091
66179
  }
66092
66180
  function forward() {
66093
- if (props.disabled)
66181
+ if (props.disabled || !mergedHasNextRef.value)
66094
66182
  return;
66095
- const page = Math.min(mergedPageRef.value + 1, mergedPageCountRef.value);
66183
+ const page = props.hasNext === void 0 ? Math.min(mergedPageRef.value + 1, mergedPageCountRef.value) : mergedPageRef.value + 1;
66096
66184
  doUpdatePage(page);
66097
66185
  }
66098
66186
  function backward() {
66099
- if (props.disabled)
66187
+ if (props.disabled || !mergedHasPrevRef.value)
66100
66188
  return;
66101
66189
  const page = Math.max(mergedPageRef.value - 1, 1);
66102
66190
  doUpdatePage(page);
@@ -66270,6 +66358,8 @@ var _UPagination = defineComponent({
66270
66358
  locale: localeRef,
66271
66359
  selfRef,
66272
66360
  mergedPage: mergedPageRef,
66361
+ mergedHasPrev: mergedHasPrevRef,
66362
+ mergedHasNext: mergedHasNextRef,
66273
66363
  pageItems: computed(() => {
66274
66364
  return pageItemsInfo.value.items;
66275
66365
  }),
@@ -66311,6 +66401,9 @@ var _UPagination = defineComponent({
66311
66401
  cssVars,
66312
66402
  mergedPage,
66313
66403
  mergedPageCount,
66404
+ mergedHasPrev,
66405
+ mergedHasNext,
66406
+ variant,
66314
66407
  pageItems,
66315
66408
  showSizePicker,
66316
66409
  sizePickerLabel,
@@ -66352,7 +66445,8 @@ var _UPagination = defineComponent({
66352
66445
  this.themeClass,
66353
66446
  this.rtlEnabled && `${mergedClsPrefix}-pagination--rtl`,
66354
66447
  disabled && `${mergedClsPrefix}-pagination--disabled`,
66355
- simple && `${mergedClsPrefix}-pagination--simple`
66448
+ simple && `${mergedClsPrefix}-pagination--simple`,
66449
+ variant === "cursor" && `${mergedClsPrefix}-pagination--cursor`
66356
66450
  ],
66357
66451
  style: cssVars
66358
66452
  },
@@ -66373,7 +66467,7 @@ var _UPagination = defineComponent({
66373
66467
  class: [
66374
66468
  `${mergedClsPrefix}-pagination-item`,
66375
66469
  !renderPrev && `${mergedClsPrefix}-pagination-item--button`,
66376
- (mergedPage <= 1 || mergedPage > mergedPageCount || disabled) && `${mergedClsPrefix}-pagination-item--disabled`
66470
+ (!mergedHasPrev || disabled) && `${mergedClsPrefix}-pagination-item--disabled`
66377
66471
  ],
66378
66472
  onClick: handleBackwardClick
66379
66473
  },
@@ -66387,7 +66481,7 @@ var _UPagination = defineComponent({
66387
66481
  }) : /* @__PURE__ */ h(UBaseIcon, { clsPrefix: mergedClsPrefix }, {
66388
66482
  default: () => this.rtlEnabled ? /* @__PURE__ */ h(ForwardIcon, null) : /* @__PURE__ */ h(BackwardIcon, null)
66389
66483
  })
66390
- ), simple ? /* @__PURE__ */ h(Fragment, null, /* @__PURE__ */ h(
66484
+ ), variant === "cursor" ? null : simple ? /* @__PURE__ */ h(Fragment, null, /* @__PURE__ */ h(
66391
66485
  "div",
66392
66486
  {
66393
66487
  class: `${mergedClsPrefix}-pagination-quick-jumper`
@@ -66536,7 +66630,7 @@ var _UPagination = defineComponent({
66536
66630
  `${mergedClsPrefix}-pagination-item`,
66537
66631
  !renderNext && `${mergedClsPrefix}-pagination-item--button`,
66538
66632
  {
66539
- [`${mergedClsPrefix}-pagination-item--disabled`]: mergedPage < 1 || mergedPage >= mergedPageCount || disabled
66633
+ [`${mergedClsPrefix}-pagination-item--disabled`]: !mergedHasNext || disabled
66540
66634
  }
66541
66635
  ],
66542
66636
  onClick: handleForwardClick
@@ -67191,7 +67285,7 @@ var RenderSafeCheckbox = defineComponent({
67191
67285
  }
67192
67286
  });
67193
67287
 
67194
- var style$X = cB("radio", `
67288
+ var style$Y = cB("radio", `
67195
67289
  outline: none;
67196
67290
  position: relative;
67197
67291
  user-select: none;
@@ -67340,7 +67434,7 @@ var _URadio = defineComponent({
67340
67434
  const themeRef = useTheme(
67341
67435
  "Radio",
67342
67436
  "-radio",
67343
- style$X,
67437
+ style$Y,
67344
67438
  radioLight,
67345
67439
  props,
67346
67440
  radio.mergedClsPrefix
@@ -67524,7 +67618,7 @@ var _URadioButton = defineComponent({
67524
67618
  }
67525
67619
  });
67526
67620
 
67527
- var style$W = cB("radio-group", `
67621
+ var style$X = cB("radio-group", `
67528
67622
  display: inline-block;
67529
67623
  font-size: var(--u-font-size);
67530
67624
  `, [cE("splitor", `
@@ -67704,7 +67798,7 @@ var _URadioGroup = defineComponent({
67704
67798
  const themeRef = useTheme(
67705
67799
  "Radio",
67706
67800
  "-radio-group",
67707
- style$W,
67801
+ style$X,
67708
67802
  radioLight,
67709
67803
  props,
67710
67804
  mergedClsPrefixRef
@@ -70298,7 +70392,7 @@ var MainTable = defineComponent({
70298
70392
  });
70299
70393
 
70300
70394
  const fixedColumnStyle = createFixedColumnStyle();
70301
- var style$V = c$1([cB("data-table", `
70395
+ var style$W = c$1([cB("data-table", `
70302
70396
  width: 100%;
70303
70397
  font-size: var(--u-font-size);
70304
70398
  display: flex;
@@ -72141,7 +72235,7 @@ var _UDataTable = defineComponent({
72141
72235
  const themeRef = useTheme(
72142
72236
  "DataTable",
72143
72237
  "-data-table",
72144
- style$V,
72238
+ style$W,
72145
72239
  dataTableLight,
72146
72240
  props,
72147
72241
  mergedClsPrefixRef
@@ -76569,7 +76663,7 @@ var Panel = defineComponent({
76569
76663
  }
76570
76664
  });
76571
76665
 
76572
- var style$U = c$1([cB("time-picker", `
76666
+ var style$V = c$1([cB("time-picker", `
76573
76667
  z-index: auto;
76574
76668
  position: relative;
76575
76669
  `, [cB("time-picker-icon", `
@@ -76764,7 +76858,7 @@ var _UTimePicker = defineComponent({
76764
76858
  const themeRef = useTheme(
76765
76859
  "TimePicker",
76766
76860
  "-time-picker",
76767
- style$U,
76861
+ style$V,
76768
76862
  timePickerLight,
76769
76863
  props,
76770
76864
  mergedClsPrefixRef
@@ -77932,7 +78026,7 @@ var DatetimeRangePanel = defineComponent({
77932
78026
  }
77933
78027
  });
77934
78028
 
77935
- var style$T = c$1([cB("date-picker", `
78029
+ var style$U = c$1([cB("date-picker", `
77936
78030
  position: relative;
77937
78031
  z-index: auto;
77938
78032
  `, [cB("date-picker-icon", `
@@ -78641,7 +78735,7 @@ var _UDatePicker = defineComponent({
78641
78735
  const themeRef = useTheme(
78642
78736
  "DatePicker",
78643
78737
  "-date-picker",
78644
- style$T,
78738
+ style$U,
78645
78739
  datePickerLight,
78646
78740
  props,
78647
78741
  mergedClsPrefixRef
@@ -78883,12 +78977,13 @@ var _UDatePicker = defineComponent({
78883
78977
  }
78884
78978
  }
78885
78979
  function handleClear() {
78980
+ doUpdateValue(null, { doConfirm: false });
78886
78981
  doUpdateShow(false);
78887
- inputInstRef.value?.deactivate();
78982
+ inputInstRef.value?.deactivate?.();
78888
78983
  doClear();
78889
78984
  }
78890
78985
  function handlePanelClear() {
78891
- inputInstRef.value?.deactivate();
78986
+ inputInstRef.value?.deactivate?.();
78892
78987
  doClear();
78893
78988
  }
78894
78989
  function handlePanelTabOut() {
@@ -79625,7 +79720,7 @@ var _UDatePicker = defineComponent({
79625
79720
  }
79626
79721
  });
79627
79722
 
79628
- function self$c(vars) {
79723
+ function self$d(vars) {
79629
79724
  const {
79630
79725
  brandPrimary100,
79631
79726
  brandPrimary500,
@@ -79687,7 +79782,7 @@ const datePickerV2Light = createTheme$1({
79687
79782
  Select: internalSelectionLight,
79688
79783
  Scrollbar: scrollbarLight
79689
79784
  },
79690
- self: self$c
79785
+ self: self$d
79691
79786
  });
79692
79787
 
79693
79788
  const datePickerV2Dark = createTheme$1({
@@ -79699,7 +79794,7 @@ const datePickerV2Dark = createTheme$1({
79699
79794
  Select: internalSelectionDark,
79700
79795
  Scrollbar: scrollbarDark
79701
79796
  },
79702
- self: self$c
79797
+ self: self$d
79703
79798
  });
79704
79799
 
79705
79800
  const datePickerV2InjectionKey = Symbol("datePickerV2");
@@ -80491,7 +80586,7 @@ var CalendarRangePanel = defineComponent({
80491
80586
  }
80492
80587
  });
80493
80588
 
80494
- var style$S = c$1([cB("date-picker-v2", `
80589
+ var style$T = c$1([cB("date-picker-v2", `
80495
80590
  position: relative;
80496
80591
  z-index: auto;
80497
80592
  `, [cB("date-picker-v2-icon", `
@@ -80929,7 +81024,7 @@ var _UDatePickerV2 = defineComponent({
80929
81024
  const themeRef = useTheme(
80930
81025
  "DatePickerV2",
80931
81026
  "-date-picker-v2",
80932
- style$S,
81027
+ style$T,
80933
81028
  datePickerV2Light,
80934
81029
  props,
80935
81030
  mergedClsPrefixRef
@@ -81573,7 +81668,7 @@ var _UDatePickerV2 = defineComponent({
81573
81668
  }
81574
81669
  });
81575
81670
 
81576
- var style$R = c$1([cB("descriptions", {
81671
+ var style$S = c$1([cB("descriptions", {
81577
81672
  fontSize: "var(--u-font-size)"
81578
81673
  }, [cB("descriptions-separator", `
81579
81674
  display: inline-block;
@@ -81728,7 +81823,7 @@ var _UDescriptions = defineComponent({
81728
81823
  const themeRef = useTheme(
81729
81824
  "Descriptions",
81730
81825
  "-descriptions",
81731
- style$R,
81826
+ style$S,
81732
81827
  descriptionsLight,
81733
81828
  props,
81734
81829
  mergedClsPrefixRef
@@ -82070,7 +82165,7 @@ const dialogProps = {
82070
82165
  };
82071
82166
  const dialogPropKeys = keysOf(dialogProps);
82072
82167
 
82073
- var style$Q = c$1([cB("dialog", `
82168
+ var style$R = c$1([cB("dialog", `
82074
82169
  word-break: break-word;
82075
82170
  position: relative;
82076
82171
  background: var(--u-color);
@@ -82188,7 +82283,7 @@ const UDialog$1 = defineComponent({
82188
82283
  const themeRef = useTheme(
82189
82284
  "Dialog",
82190
82285
  "-dialog",
82191
- style$Q,
82286
+ style$R,
82192
82287
  dialogLight,
82193
82288
  props,
82194
82289
  mergedClsPrefixRef
@@ -82842,7 +82937,7 @@ var UModalBodyWrapper = defineComponent({
82842
82937
  }
82843
82938
  });
82844
82939
 
82845
- var style$P = c$1([cB("modal-container", `
82940
+ var style$Q = c$1([cB("modal-container", `
82846
82941
  position: fixed;
82847
82942
  left: 0;
82848
82943
  top: 0;
@@ -82991,7 +83086,7 @@ var _UModal = defineComponent({
82991
83086
  const themeRef = useTheme(
82992
83087
  "Modal",
82993
83088
  "-modal",
82994
- style$P,
83089
+ style$Q,
82995
83090
  modalLight,
82996
83091
  props,
82997
83092
  mergedClsPrefixRef
@@ -83465,7 +83560,7 @@ const UDialogProvider = defineComponent({
83465
83560
  }
83466
83561
  });
83467
83562
 
83468
- var style$O = cB("divider", `
83563
+ var style$P = cB("divider", `
83469
83564
  position: relative;
83470
83565
  display: flex;
83471
83566
  width: 100%;
@@ -83536,7 +83631,7 @@ var UDivider$1 = defineComponent({
83536
83631
  const themeRef = useTheme(
83537
83632
  "Divider",
83538
83633
  "-divider",
83539
- style$O,
83634
+ style$P,
83540
83635
  dividerLight,
83541
83636
  props,
83542
83637
  mergedClsPrefixRef
@@ -84002,7 +84097,7 @@ function slideInFromTopTransition({
84002
84097
  })];
84003
84098
  }
84004
84099
 
84005
- var style$N = c$1([cB("drawer", `
84100
+ var style$O = c$1([cB("drawer", `
84006
84101
  word-break: break-word;
84007
84102
  position: absolute;
84008
84103
  pointer-events: all;
@@ -84308,7 +84403,7 @@ var _UDrawer = defineComponent({
84308
84403
  const themeRef = useTheme(
84309
84404
  "Drawer",
84310
84405
  "-drawer",
84311
- style$N,
84406
+ style$O,
84312
84407
  drawerLight,
84313
84408
  props,
84314
84409
  mergedClsPrefixRef
@@ -84903,7 +84998,7 @@ var UDynamicInputPairPreset = defineComponent({
84903
84998
  }
84904
84999
  });
84905
85000
 
84906
- var style$M = cB("dynamic-input", {
85001
+ var style$N = cB("dynamic-input", {
84907
85002
  width: "100%"
84908
85003
  }, [cB("dynamic-input-item", `
84909
85004
  margin-bottom: 10px;
@@ -85019,7 +85114,7 @@ var _UDynamicInput = defineComponent({
85019
85114
  const themeRef = useTheme(
85020
85115
  "DynamicInput",
85021
85116
  "-dynamic-input",
85022
- style$M,
85117
+ style$N,
85023
85118
  dynamicInputLight,
85024
85119
  props,
85025
85120
  mergedClsPrefixRef
@@ -85543,7 +85638,7 @@ var USpace$1 = defineComponent({
85543
85638
  }
85544
85639
  });
85545
85640
 
85546
- var style$L = cB("dynamic-tags", [cB("input", {
85641
+ var style$M = cB("dynamic-tags", [cB("input", {
85547
85642
  minWidth: "var(--u-input-width)"
85548
85643
  })]);
85549
85644
 
@@ -85603,7 +85698,7 @@ var _UDynamicTags = defineComponent({
85603
85698
  const themeRef = useTheme(
85604
85699
  "DynamicTags",
85605
85700
  "-dynamic-tags",
85606
- style$L,
85701
+ style$M,
85607
85702
  dynamicTagsLight,
85608
85703
  props,
85609
85704
  mergedClsPrefixRef
@@ -85895,7 +85990,7 @@ const Equation = defineComponent({
85895
85990
  }
85896
85991
  });
85897
85992
 
85898
- var style$K = cB("float-button-group", [cB("float-button", `
85993
+ var style$L = cB("float-button-group", [cB("float-button", `
85899
85994
  position: relative;
85900
85995
  `), cM("square-shape", `
85901
85996
  background-color: var(--u-color);
@@ -85958,7 +86053,7 @@ var _UFloatButtonGroup = defineComponent({
85958
86053
  const themeRef = useTheme(
85959
86054
  "FloatButtonGroup",
85960
86055
  "-float-button-group",
85961
- style$K,
86056
+ style$L,
85962
86057
  themeLight$4,
85963
86058
  props,
85964
86059
  mergedClsPrefixRef
@@ -86009,7 +86104,7 @@ var _UFloatButtonGroup = defineComponent({
86009
86104
  }
86010
86105
  });
86011
86106
 
86012
- var style$J = cB("float-button", `
86107
+ var style$K = cB("float-button", `
86013
86108
  user-select: none;
86014
86109
  cursor: pointer;
86015
86110
  color: var(--u-text-color);
@@ -86139,7 +86234,7 @@ var _UFloatButton = defineComponent({
86139
86234
  const themeRef = useTheme(
86140
86235
  "FloatButton",
86141
86236
  "-float-button",
86142
- style$J,
86237
+ style$K,
86143
86238
  themeLight$3,
86144
86239
  props,
86145
86240
  mergedClsPrefixRef
@@ -86310,10 +86405,7 @@ var _UFloatButton = defineComponent({
86310
86405
  }
86311
86406
  });
86312
86407
 
86313
- const formInjectionKey = createInjectionKey("u-form");
86314
- const formItemInstsInjectionKey = createInjectionKey("u-form-item-insts");
86315
-
86316
- var style$I = cB("form", [cM("inline", `
86408
+ var style$J = cB("form", [cM("inline", `
86317
86409
  width: 100%;
86318
86410
  display: inline-flex;
86319
86411
  align-items: flex-start;
@@ -86368,7 +86460,7 @@ var _UForm = defineComponent({
86368
86460
  props: formProps,
86369
86461
  setup(props) {
86370
86462
  const { mergedClsPrefixRef } = useConfig(props);
86371
- useTheme("Form", "-form", style$I, formLight, props, mergedClsPrefixRef);
86463
+ useTheme("Form", "-form", style$J, formLight, props, mergedClsPrefixRef);
86372
86464
  const formItems = {};
86373
86465
  const maxChildLabelWidthRef = ref(void 0);
86374
86466
  const deriveMaxChildLabelWidth = (currentWidth) => {
@@ -87582,7 +87674,7 @@ function fadeDownTransition({
87582
87674
  })];
87583
87675
  }
87584
87676
 
87585
- var style$H = cB("form-item", `
87677
+ var style$I = cB("form-item", `
87586
87678
  display: grid;
87587
87679
  `, [cB("form-item-label", `
87588
87680
  grid-area: label;
@@ -87967,7 +88059,7 @@ var _UFormItem = defineComponent({
87967
88059
  const themeRef = useTheme(
87968
88060
  "Form",
87969
88061
  "-form-item",
87970
- style$H,
88062
+ style$I,
87971
88063
  formLight,
87972
88064
  props,
87973
88065
  mergedClsPrefixRef
@@ -88407,7 +88499,7 @@ const positionStyles = repeat(24, null).map((_, index) => {
88407
88499
  right: percent
88408
88500
  })];
88409
88501
  });
88410
- var style$G = c$1([cB("row", {
88502
+ var style$H = c$1([cB("row", {
88411
88503
  width: "100%",
88412
88504
  display: "flex",
88413
88505
  flexWrap: "wrap"
@@ -88439,7 +88531,7 @@ var _URow = defineComponent({
88439
88531
  props: rowProps,
88440
88532
  setup(props) {
88441
88533
  const { mergedClsPrefixRef, mergedRtlRef } = useConfig(props);
88442
- useStyle("-legacy-grid", style$G, mergedClsPrefixRef);
88534
+ useStyle("-legacy-grid", style$H, mergedClsPrefixRef);
88443
88535
  const rtlEnabledRef = useRtl("Row", mergedRtlRef, mergedClsPrefixRef);
88444
88536
  const verticalGutterRef = useMemo(() => {
88445
88537
  const { gutter } = props;
@@ -88785,7 +88877,7 @@ var _UGlobalStyle = defineComponent({
88785
88877
  }
88786
88878
  });
88787
88879
 
88788
- var style$F = cB("gradient-text", `
88880
+ var style$G = cB("gradient-text", `
88789
88881
  display: inline-block;
88790
88882
  font-weight: var(--u-font-weight);
88791
88883
  -webkit-background-clip: text;
@@ -88843,7 +88935,7 @@ var _UGradientText = defineComponent({
88843
88935
  const themeRef = useTheme(
88844
88936
  "GradientText",
88845
88937
  "-gradient-text",
88846
- style$F,
88938
+ style$G,
88847
88939
  gradientTextLight,
88848
88940
  props,
88849
88941
  mergedClsPrefixRef
@@ -88907,7 +88999,7 @@ var _UGradientText = defineComponent({
88907
88999
  }
88908
89000
  });
88909
89001
 
88910
- function self$b(vars) {
89002
+ function self$c(vars) {
88911
89003
  const {
88912
89004
  containerPrimary,
88913
89005
  textPrimary,
@@ -88962,13 +89054,13 @@ function self$b(vars) {
88962
89054
  const headerLight = createTheme$1({
88963
89055
  name: "Header",
88964
89056
  common: derived,
88965
- self: self$b
89057
+ self: self$c
88966
89058
  });
88967
89059
 
88968
89060
  const headerDark = createTheme$1({
88969
89061
  name: "Header",
88970
89062
  common: derived$1,
88971
- self: vars => self$b(vars)
89063
+ self: vars => self$c(vars)
88972
89064
  });
88973
89065
 
88974
89066
  const SEARCH_DEBOUNCE_MS = 300;
@@ -90372,7 +90464,7 @@ var HeaderMobile = defineComponent({
90372
90464
  }
90373
90465
  });
90374
90466
 
90375
- var style$E = cB("header", `
90467
+ var style$F = cB("header", `
90376
90468
  width: 100%;
90377
90469
  box-sizing: border-box;
90378
90470
  font-size: var(--u-font-size);
@@ -91066,7 +91158,7 @@ var _UHeader = defineComponent({
91066
91158
  const themeRef = useTheme(
91067
91159
  "Header",
91068
91160
  "-header",
91069
- style$E,
91161
+ style$F,
91070
91162
  headerLight,
91071
91163
  props,
91072
91164
  mergedClsPrefixRef
@@ -91434,7 +91526,7 @@ var _UHeader = defineComponent({
91434
91526
  }
91435
91527
  });
91436
91528
 
91437
- function self$a(vars) {
91529
+ function self$b(vars) {
91438
91530
  const {
91439
91531
  borderRadius,
91440
91532
  fontBodyLarge,
@@ -91474,7 +91566,7 @@ function self$a(vars) {
91474
91566
  const heatmapLight = createTheme$1({
91475
91567
  name: "Heatmap",
91476
91568
  common: derived,
91477
- self: self$a
91569
+ self: self$b
91478
91570
  });
91479
91571
 
91480
91572
  function useLoadingStyleClass(props, themeRef) {
@@ -91623,7 +91715,7 @@ var Rect = defineComponent({
91623
91715
  }
91624
91716
  });
91625
91717
 
91626
- var style$D = c$1([cB("heatmap", `
91718
+ var style$E = c$1([cB("heatmap", `
91627
91719
  display: flex;
91628
91720
  flex-direction: column;
91629
91721
  max-width: fit-content;
@@ -91897,7 +91989,7 @@ var _UHeatmap = defineComponent({
91897
91989
  const themeRef = useTheme(
91898
91990
  "Heatmap",
91899
91991
  "-heatmap",
91900
- style$D,
91992
+ style$E,
91901
91993
  heatmapLight,
91902
91994
  props,
91903
91995
  mergedClsPrefixRef
@@ -92209,7 +92301,7 @@ const HeatmapDark = {
92209
92301
  name: "Heatmap",
92210
92302
  common: derived$1,
92211
92303
  self(vars) {
92212
- const lightSelf = self$a(vars);
92304
+ const lightSelf = self$b(vars);
92213
92305
  return {
92214
92306
  ...lightSelf,
92215
92307
  activeColors: ["#0d4429", "#006d32", "#26a641", "#39d353"],
@@ -92324,7 +92416,7 @@ var _UHighlight = defineComponent({
92324
92416
  }
92325
92417
  });
92326
92418
 
92327
- function self$9(vars) {
92419
+ function self$a(vars) {
92328
92420
  const {
92329
92421
  elementsPrimary,
92330
92422
  elementsTertiary,
@@ -92350,13 +92442,13 @@ function self$9(vars) {
92350
92442
  const iconBarLight = {
92351
92443
  name: "IconBar",
92352
92444
  common: derived,
92353
- self: self$9
92445
+ self: self$a
92354
92446
  };
92355
92447
 
92356
92448
  const iconBarDark = {
92357
92449
  name: "IconBar",
92358
92450
  common: derived$1,
92359
- self: self$9
92451
+ self: self$a
92360
92452
  };
92361
92453
 
92362
92454
  const iconBarInjectionKey = createInjectionKey("icon-bar");
@@ -92389,7 +92481,7 @@ const iconBarProps = {
92389
92481
  itemSize: [Number, String]
92390
92482
  };
92391
92483
 
92392
- var style$C = c$1([cB("icon-bar", `
92484
+ var style$D = c$1([cB("icon-bar", `
92393
92485
  justify-content: space-between !important;
92394
92486
  grid-template-columns: repeat(var(--u-icon-bar-cols), var(--u-icon-bar-item-size)) !important;
92395
92487
  `), cB("icon-bar-item-wrapper", `
@@ -92452,7 +92544,7 @@ var _UIconBarItem = defineComponent({
92452
92544
  const themeRef = useTheme(
92453
92545
  "IconBar",
92454
92546
  "-icon-bar-item",
92455
- style$C,
92547
+ style$D,
92456
92548
  iconBarLight,
92457
92549
  props,
92458
92550
  mergedClsPrefixRef
@@ -92530,7 +92622,7 @@ var _UIconBar = defineComponent({
92530
92622
  const themeRef = useTheme(
92531
92623
  "IconBar",
92532
92624
  "-icon-bar",
92533
- style$C,
92625
+ style$D,
92534
92626
  iconBarLight,
92535
92627
  props,
92536
92628
  mergedClsPrefixRef
@@ -92583,6 +92675,607 @@ var _UIconBar = defineComponent({
92583
92675
  }
92584
92676
  });
92585
92677
 
92678
+ const iconPackInputLight = {
92679
+ ...inputLight,
92680
+ self(vars) {
92681
+ const originalInputSelf = self$1o(vars);
92682
+ const {
92683
+ elementsDarkQuinary,
92684
+ elementsPrimary
92685
+ } = vars;
92686
+ return {
92687
+ ...originalInputSelf,
92688
+ heightMedium: "44px",
92689
+ borderRadius: "12px",
92690
+ paddingMedium: "0 20px",
92691
+ border: `2px solid ${elementsDarkQuinary}`,
92692
+ borderHover: `2px solid ${elementsPrimary}`,
92693
+ borderFocus: `2px solid ${elementsPrimary}`,
92694
+ boxShadowFocus: "none"
92695
+ };
92696
+ }
92697
+ };
92698
+ function self$9(vars) {
92699
+ const {
92700
+ staticWhite,
92701
+ textPrimary,
92702
+ textSecondary,
92703
+ elementsTertiary,
92704
+ elementsQuaternary,
92705
+ elementsQuinary,
92706
+ brandPrimary500
92707
+ } = vars;
92708
+ return {
92709
+ containerColor: staticWhite,
92710
+ borderRadius: "24px",
92711
+ titleTextColor: textPrimary,
92712
+ descriptionTextColor: textSecondary,
92713
+ groupTitleTextColor: textPrimary,
92714
+ groupCounterTextColor: textSecondary,
92715
+ cardColor: elementsTertiary,
92716
+ cardColorHover: elementsQuaternary,
92717
+ cardColorPressed: elementsQuinary,
92718
+ cardColorSelected: brandPrimary500,
92719
+ cardBorderRadius: "20px",
92720
+ cardIconColor: textPrimary,
92721
+ cardIconColorSelected: staticWhite,
92722
+ cardLabelTextColor: textPrimary,
92723
+ cardLabelTextColorSelected: staticWhite,
92724
+ dividerColor: elementsQuaternary
92725
+ };
92726
+ }
92727
+ const iconPackLight = createTheme$1({
92728
+ name: "IconPack",
92729
+ common: derived,
92730
+ peers: {
92731
+ Input: iconPackInputLight,
92732
+ Scrollbar: scrollbarLight,
92733
+ Empty: emptyLight
92734
+ },
92735
+ self: self$9
92736
+ });
92737
+
92738
+ const iconPackDark = createTheme$1({
92739
+ name: "IconPack",
92740
+ common: derived$1,
92741
+ peers: {
92742
+ Input: inputDark,
92743
+ Scrollbar: scrollbarDark,
92744
+ Empty: emptyDark$1
92745
+ },
92746
+ self: vars => {
92747
+ const lightVars = self$9(vars);
92748
+ return {
92749
+ ...lightVars
92750
+ };
92751
+ }
92752
+ });
92753
+
92754
+ const iconPackProps = {
92755
+ ...useTheme.props,
92756
+ pack: [Object, String],
92757
+ value: String,
92758
+ defaultValue: {
92759
+ type: String,
92760
+ default: null
92761
+ },
92762
+ disabled: {
92763
+ type: Boolean,
92764
+ default: void 0
92765
+ },
92766
+ title: String,
92767
+ description: String,
92768
+ searchable: {
92769
+ type: Boolean,
92770
+ default: true
92771
+ },
92772
+ searchValue: String,
92773
+ defaultSearchValue: {
92774
+ type: String,
92775
+ default: ""
92776
+ },
92777
+ searchPlaceholder: String,
92778
+ searchDebounce: {
92779
+ type: Number,
92780
+ default: 200
92781
+ },
92782
+ grouped: {
92783
+ type: Boolean,
92784
+ default: true
92785
+ },
92786
+ columns: {
92787
+ type: [Number, String],
92788
+ default: "auto"
92789
+ },
92790
+ minColumnWidth: {
92791
+ type: [Number, String],
92792
+ default: 150
92793
+ },
92794
+ iconSize: {
92795
+ type: [Number, String],
92796
+ default: 40
92797
+ },
92798
+ height: [Number, String],
92799
+ maxBodyHeight: {
92800
+ type: [Number, String],
92801
+ default: 496
92802
+ },
92803
+ contentPadding: {
92804
+ type: [Number, String],
92805
+ default: 24
92806
+ },
92807
+ async: {
92808
+ type: Boolean,
92809
+ default: void 0
92810
+ },
92811
+ copyable: {
92812
+ type: Boolean,
92813
+ default: true
92814
+ },
92815
+ formatCopy: Function,
92816
+ formatGroupLabel: Function,
92817
+ formatIconLabel: Function,
92818
+ showGroupCounter: {
92819
+ type: Boolean,
92820
+ default: true
92821
+ },
92822
+ emptyText: String,
92823
+ emptyProps: Object,
92824
+ searchInputProps: Object,
92825
+ scrollbarProps: Object
92826
+ };
92827
+ const iconPackInjectionKey = createInjectionKey("icon-pack");
92828
+
92829
+ var style$C = cB("icon-pack", `
92830
+ box-sizing: border-box;
92831
+ width: 100%;
92832
+ display: flex;
92833
+ flex-direction: column;
92834
+ gap: 28px;
92835
+ background-color: var(--u-icon-pack-container-color);
92836
+ border-radius: var(--u-icon-pack-border-radius);
92837
+ transition: background-color .3s var(--u-bezier);
92838
+ `, [cM("disabled", `
92839
+ opacity: .5;
92840
+ `, [cB("icon-pack-card", `
92841
+ cursor: not-allowed;
92842
+ `)]), cE("header", `
92843
+ display: flex;
92844
+ align-items: flex-start;
92845
+ gap: 32px;
92846
+ padding: var(--u-icon-pack-content-padding) var(--u-icon-pack-content-padding) 0;
92847
+ `, [cE("header-main", `
92848
+ flex: 1;
92849
+ min-width: 0;
92850
+ display: flex;
92851
+ flex-direction: column;
92852
+ gap: 16px;
92853
+ `), cE("title", `
92854
+ margin: 0;
92855
+ font-size: 22px;
92856
+ line-height: 32px;
92857
+ font-weight: 700;
92858
+ color: var(--u-icon-pack-title-text-color);
92859
+ transition: color .3s var(--u-bezier);
92860
+ `), cE("description", `
92861
+ margin: 0;
92862
+ font-size: 16px;
92863
+ line-height: 24px;
92864
+ font-weight: 500;
92865
+ color: var(--u-icon-pack-description-text-color);
92866
+ transition: color .3s var(--u-bezier);
92867
+ `)]), cE("search", `
92868
+ padding: 0 var(--u-icon-pack-content-padding);
92869
+ `), cE("body", `
92870
+ min-height: 0;
92871
+ `, [c$1(".u-scrollbar-content", `
92872
+ padding: 0 var(--u-icon-pack-content-padding) var(--u-icon-pack-content-padding);
92873
+ `)]), cE("groups", `
92874
+ display: flex;
92875
+ flex-direction: column;
92876
+ gap: 28px;
92877
+ `), cE("group", `
92878
+ display: flex;
92879
+ flex-direction: column;
92880
+ gap: 20px;
92881
+ `), cE("group-header", `
92882
+ display: flex;
92883
+ align-items: flex-end;
92884
+ gap: 8px;
92885
+ `, [cE("group-title", `
92886
+ margin: 0;
92887
+ font-size: 18px;
92888
+ line-height: 28px;
92889
+ font-weight: 700;
92890
+ color: var(--u-icon-pack-group-title-text-color);
92891
+ transition: color .3s var(--u-bezier);
92892
+ `), cE("group-counter", `
92893
+ font-size: 14px;
92894
+ line-height: 24px;
92895
+ font-weight: 500;
92896
+ color: var(--u-icon-pack-group-counter-text-color);
92897
+ transition: color .3s var(--u-bezier);
92898
+ `)]), cE("grid", `
92899
+ display: grid;
92900
+ grid-template-columns: var(--u-icon-pack-grid-template-columns);
92901
+ gap: 20px;
92902
+ `), cB("icon-pack-card", `
92903
+ box-sizing: border-box;
92904
+ display: flex;
92905
+ flex-direction: column;
92906
+ align-items: center;
92907
+ gap: 24px;
92908
+ padding: 24px 12px;
92909
+ border: none;
92910
+ outline: none;
92911
+ background-color: var(--u-icon-pack-card-color);
92912
+ border-radius: var(--u-icon-pack-card-border-radius);
92913
+ cursor: pointer;
92914
+ user-select: none;
92915
+ transition:
92916
+ background-color .2s var(--u-bezier),
92917
+ color .2s var(--u-bezier);
92918
+ `, [c$1("&:hover", `
92919
+ background-color: var(--u-icon-pack-card-color-hover);
92920
+ `), c$1("&:active", `
92921
+ background-color: var(--u-icon-pack-card-color-pressed);
92922
+ `), cM("selected", `
92923
+ background-color: var(--u-icon-pack-card-color-selected);
92924
+ --u-icon-pack-card-icon-color: var(--u-icon-pack-card-icon-color-selected);
92925
+ --u-icon-pack-card-label-text-color: var(--u-icon-pack-card-label-text-color-selected);
92926
+ `, [c$1("&:hover", `
92927
+ background-color: var(--u-icon-pack-card-color-selected);
92928
+ `)]), cE("icon", `
92929
+ flex-shrink: 0;
92930
+ width: var(--u-icon-pack-icon-size);
92931
+ height: var(--u-icon-pack-icon-size);
92932
+ display: flex;
92933
+ align-items: center;
92934
+ justify-content: center;
92935
+ color: var(--u-icon-pack-card-icon-color);
92936
+ `, [c$1("svg", `
92937
+ width: var(--u-icon-pack-icon-size);
92938
+ height: var(--u-icon-pack-icon-size);
92939
+ `)]), cE("label", `
92940
+ max-width: 100%;
92941
+ padding: 0 12px;
92942
+ font-size: 12px;
92943
+ line-height: 16px;
92944
+ font-weight: 600;
92945
+ text-align: center;
92946
+ color: var(--u-icon-pack-card-label-text-color);
92947
+ transition: color .2s var(--u-bezier);
92948
+ `)]), cE("empty", `
92949
+ padding: 40px 0;
92950
+ display: flex;
92951
+ justify-content: center;
92952
+ `), cE("footer", `
92953
+ display: flex;
92954
+ align-items: center;
92955
+ gap: 16px;
92956
+ padding: 16px var(--u-icon-pack-content-padding) var(--u-icon-pack-content-padding);
92957
+ border-top: 1px solid var(--u-icon-pack-divider-color);
92958
+ `)]);
92959
+
92960
+ var _UIconPack = defineComponent({
92961
+ name: "IconPack",
92962
+ props: iconPackProps,
92963
+ emits: ["update:value", "update:searchValue", "select", "copy", "search"],
92964
+ setup(props, { emit }) {
92965
+ const { mergedClsPrefixRef, mergedIconPacksRef } = useConfig(props);
92966
+ const themeRef = useTheme(
92967
+ "IconPack",
92968
+ "-icon-pack",
92969
+ style$C,
92970
+ iconPackLight,
92971
+ props,
92972
+ mergedClsPrefixRef
92973
+ );
92974
+ const formItem = useFormItem(props);
92975
+ const { mergedDisabledRef } = formItem;
92976
+ provide(iconPackInjectionKey, {
92977
+ mergedClsPrefixRef
92978
+ });
92979
+ const uncontrolledValueRef = ref(props.defaultValue);
92980
+ const mergedValueRef = computed(
92981
+ () => props.value !== void 0 ? props.value : uncontrolledValueRef.value
92982
+ );
92983
+ const uncontrolledSearchRef = ref(props.defaultSearchValue);
92984
+ const mergedSearchRef = computed(
92985
+ () => props.searchValue !== void 0 ? props.searchValue : uncontrolledSearchRef.value
92986
+ );
92987
+ const mergedPackRef = computed(() => {
92988
+ const { pack } = props;
92989
+ if (pack && typeof pack === "object")
92990
+ return pack;
92991
+ const config = mergedIconPacksRef?.value;
92992
+ if (!config)
92993
+ return void 0;
92994
+ const name = typeof pack === "string" ? pack : config.defaultPackName;
92995
+ return config.packs.find((p) => p.name === name);
92996
+ });
92997
+ function renderIconVNode(name) {
92998
+ const pack = mergedPackRef.value;
92999
+ if (!pack)
93000
+ return null;
93001
+ if (props.async === true && typeof pack.renderAsyncIcon === "function")
93002
+ return pack.renderAsyncIcon(name);
93003
+ if (typeof pack.renderIcon === "function")
93004
+ return pack.renderIcon(name);
93005
+ if (typeof pack.renderAsyncIcon === "function")
93006
+ return pack.renderAsyncIcon(name);
93007
+ return null;
93008
+ }
93009
+ const allIconsRef = computed(() => {
93010
+ const pack = mergedPackRef.value;
93011
+ if (!pack)
93012
+ return [];
93013
+ const format = props.formatIconLabel;
93014
+ return pack.iconNames.map((name) => {
93015
+ const slashIndex = name.indexOf("/");
93016
+ const group = slashIndex === -1 ? "" : name.slice(0, slashIndex);
93017
+ const defaultLabel = slashIndex === -1 ? name : name.slice(slashIndex + 1);
93018
+ return {
93019
+ name,
93020
+ group,
93021
+ label: format ? format(name, group) : defaultLabel,
93022
+ render: () => renderIconVNode(name)
93023
+ };
93024
+ });
93025
+ });
93026
+ const searchIndexRef = computed(
93027
+ () => allIconsRef.value.map(
93028
+ (icon) => `${icon.name}
93029
+ ${icon.label}`.toLowerCase()
93030
+ )
93031
+ );
93032
+ const debouncedQueryRef = ref(
93033
+ mergedSearchRef.value.trim().toLowerCase()
93034
+ );
93035
+ const applyQuery = (value) => {
93036
+ debouncedQueryRef.value = value.trim().toLowerCase();
93037
+ };
93038
+ const applyQueryDebounced = debounce(applyQuery, props.searchDebounce);
93039
+ watch(mergedSearchRef, (value) => {
93040
+ if (props.searchDebounce <= 0)
93041
+ applyQuery(value);
93042
+ else applyQueryDebounced(value);
93043
+ });
93044
+ const filteredIconsRef = computed(() => {
93045
+ const query = debouncedQueryRef.value;
93046
+ const icons = allIconsRef.value;
93047
+ if (!query)
93048
+ return icons;
93049
+ const searchIndex = searchIndexRef.value;
93050
+ const result = [];
93051
+ for (let index = 0; index < icons.length; index++) {
93052
+ if (searchIndex[index].includes(query))
93053
+ result.push(icons[index]);
93054
+ }
93055
+ return result;
93056
+ });
93057
+ const groupsRef = computed(() => {
93058
+ const icons = filteredIconsRef.value;
93059
+ if (!props.grouped)
93060
+ return [{ key: "", label: "", icons }];
93061
+ const map = /* @__PURE__ */ new Map();
93062
+ for (const icon of icons) {
93063
+ const existing = map.get(icon.group);
93064
+ if (existing)
93065
+ existing.push(icon);
93066
+ else map.set(icon.group, [icon]);
93067
+ }
93068
+ const format = props.formatGroupLabel;
93069
+ return Array.from(map, ([key, groupIcons]) => ({
93070
+ key,
93071
+ label: format ? format(key) : key,
93072
+ icons: groupIcons
93073
+ }));
93074
+ });
93075
+ const isEmptyRef = computed(
93076
+ () => filteredIconsRef.value.length === 0
93077
+ );
93078
+ function handleSearch(value) {
93079
+ if (props.searchValue === void 0)
93080
+ uncontrolledSearchRef.value = value;
93081
+ emit("update:searchValue", value);
93082
+ emit("search", value);
93083
+ }
93084
+ function handleSelect(icon) {
93085
+ if (mergedDisabledRef.value)
93086
+ return;
93087
+ if (props.value === void 0)
93088
+ uncontrolledValueRef.value = icon.name;
93089
+ emit("update:value", icon.name);
93090
+ emit("select", icon.name, icon);
93091
+ formItem.triggerFormInput();
93092
+ formItem.triggerFormChange();
93093
+ if (props.copyable) {
93094
+ const text = props.formatCopy ? props.formatCopy(icon.name, icon) : icon.name;
93095
+ void copyToClipboard(text).catch(() => {
93096
+ });
93097
+ emit("copy", text, icon);
93098
+ }
93099
+ }
93100
+ const cssVarsRef = computed(() => {
93101
+ const {
93102
+ common: { cubicBezierEaseInOut },
93103
+ self: {
93104
+ containerColor,
93105
+ borderRadius,
93106
+ titleTextColor,
93107
+ descriptionTextColor,
93108
+ groupTitleTextColor,
93109
+ groupCounterTextColor,
93110
+ cardColor,
93111
+ cardColorHover,
93112
+ cardColorPressed,
93113
+ cardColorSelected,
93114
+ cardBorderRadius,
93115
+ cardIconColor,
93116
+ cardIconColorSelected,
93117
+ cardLabelTextColor,
93118
+ cardLabelTextColorSelected,
93119
+ dividerColor
93120
+ }
93121
+ } = themeRef.value;
93122
+ const { columns } = props;
93123
+ const gridTemplateColumns = columns === void 0 || columns === null || columns === "auto" ? `repeat(auto-fill, minmax(${formatLength(props.minColumnWidth)}, 1fr))` : `repeat(${columns}, minmax(0, 1fr))`;
93124
+ return {
93125
+ "--u-bezier": cubicBezierEaseInOut,
93126
+ "--u-icon-pack-container-color": containerColor,
93127
+ "--u-icon-pack-border-radius": borderRadius,
93128
+ "--u-icon-pack-title-text-color": titleTextColor,
93129
+ "--u-icon-pack-description-text-color": descriptionTextColor,
93130
+ "--u-icon-pack-group-title-text-color": groupTitleTextColor,
93131
+ "--u-icon-pack-group-counter-text-color": groupCounterTextColor,
93132
+ "--u-icon-pack-card-color": cardColor,
93133
+ "--u-icon-pack-card-color-hover": cardColorHover,
93134
+ "--u-icon-pack-card-color-pressed": cardColorPressed,
93135
+ "--u-icon-pack-card-color-selected": cardColorSelected,
93136
+ "--u-icon-pack-card-border-radius": cardBorderRadius,
93137
+ "--u-icon-pack-card-icon-color": cardIconColor,
93138
+ "--u-icon-pack-card-icon-color-selected": cardIconColorSelected,
93139
+ "--u-icon-pack-card-label-text-color": cardLabelTextColor,
93140
+ "--u-icon-pack-card-label-text-color-selected": cardLabelTextColorSelected,
93141
+ "--u-icon-pack-divider-color": dividerColor,
93142
+ "--u-icon-pack-grid-template-columns": gridTemplateColumns,
93143
+ "--u-icon-pack-icon-size": formatLength(props.iconSize),
93144
+ "--u-icon-pack-content-padding": formatLength(props.contentPadding)
93145
+ };
93146
+ });
93147
+ const themeClassHandle = useThemeClass(
93148
+ "icon-pack",
93149
+ computed(() => ""),
93150
+ cssVarsRef,
93151
+ props
93152
+ );
93153
+ return {
93154
+ mergedClsPrefix: mergedClsPrefixRef,
93155
+ mergedTheme: themeRef,
93156
+ cssVars: cssVarsRef,
93157
+ themeClass: themeClassHandle?.themeClass,
93158
+ onRender: themeClassHandle?.onRender,
93159
+ mergedValue: mergedValueRef,
93160
+ mergedSearch: mergedSearchRef,
93161
+ mergedDisabled: mergedDisabledRef,
93162
+ groups: groupsRef,
93163
+ isEmpty: isEmptyRef,
93164
+ handleSearch,
93165
+ handleSelect
93166
+ };
93167
+ },
93168
+ render() {
93169
+ const {
93170
+ mergedClsPrefix: cls,
93171
+ $slots,
93172
+ title,
93173
+ description,
93174
+ searchable,
93175
+ grouped,
93176
+ showGroupCounter,
93177
+ searchPlaceholder,
93178
+ searchInputProps,
93179
+ scrollbarProps,
93180
+ emptyText,
93181
+ emptyProps,
93182
+ height,
93183
+ maxBodyHeight,
93184
+ mergedDisabled
93185
+ } = this;
93186
+ this.onRender?.();
93187
+ const showHeader = !!(title || description) || !!$slots.header || !!$slots.title || !!$slots.description;
93188
+ const hasFixedHeight = height !== void 0 && height !== null;
93189
+ const bodyStyle = hasFixedHeight ? { flex: "1 1 auto", minHeight: 0 } : { maxHeight: formatLength(maxBodyHeight) };
93190
+ const renderCard = (icon) => {
93191
+ const selected = this.mergedValue === icon.name;
93192
+ return /* @__PURE__ */ h(
93193
+ "div",
93194
+ {
93195
+ key: icon.name,
93196
+ class: [
93197
+ `${cls}-icon-pack-card`,
93198
+ selected && `${cls}-icon-pack-card--selected`
93199
+ ],
93200
+ role: "button",
93201
+ tabindex: mergedDisabled ? -1 : 0,
93202
+ "aria-pressed": selected,
93203
+ "aria-disabled": mergedDisabled,
93204
+ onClick: () => this.handleSelect(icon),
93205
+ onKeydown: (e) => {
93206
+ if (e.key === "Enter" || e.key === " ") {
93207
+ e.preventDefault();
93208
+ this.handleSelect(icon);
93209
+ }
93210
+ }
93211
+ },
93212
+ /* @__PURE__ */ h("div", { class: `${cls}-icon-pack-card__icon` }, icon.render()),
93213
+ /* @__PURE__ */ h(
93214
+ UPerformantEllipsis$1,
93215
+ {
93216
+ class: `${cls}-icon-pack-card__label`,
93217
+ lineClamp: 1
93218
+ },
93219
+ { default: () => icon.label }
93220
+ )
93221
+ );
93222
+ };
93223
+ return /* @__PURE__ */ h(
93224
+ "div",
93225
+ {
93226
+ class: [
93227
+ `${cls}-icon-pack`,
93228
+ this.themeClass,
93229
+ mergedDisabled && `${cls}-icon-pack--disabled`
93230
+ ],
93231
+ style: {
93232
+ ...this.cssVars,
93233
+ ...hasFixedHeight ? { height: formatLength(height) } : {}
93234
+ }
93235
+ },
93236
+ showHeader && /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__header` }, /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__header-main` }, resolveSlot($slots.header, () => [
93237
+ (title || $slots.title) && /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__title` }, $slots.title ? $slots.title() : title),
93238
+ (description || $slots.description) && /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__description` }, $slots.description ? $slots.description() : description)
93239
+ ]))),
93240
+ searchable && /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__search` }, /* @__PURE__ */ h(
93241
+ UInput$1,
93242
+ {
93243
+ value: this.mergedSearch,
93244
+ clearable: true,
93245
+ disabled: mergedDisabled,
93246
+ placeholder: searchPlaceholder,
93247
+ onUpdateValue: this.handleSearch,
93248
+ ...searchInputProps
93249
+ },
93250
+ { prefix: () => h(SearchOutlineIcon) }
93251
+ )),
93252
+ /* @__PURE__ */ h(
93253
+ Scrollbar,
93254
+ {
93255
+ class: `${cls}-icon-pack__body`,
93256
+ style: bodyStyle,
93257
+ ...scrollbarProps
93258
+ },
93259
+ {
93260
+ default: () => this.isEmpty ? /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__empty` }, resolveSlot($slots.empty, () => [
93261
+ /* @__PURE__ */ h(
93262
+ UEmpty$1,
93263
+ {
93264
+ ...emptyProps,
93265
+ size: "large",
93266
+ description: emptyText,
93267
+ theme: this.mergedTheme.peers.Empty,
93268
+ themeOverrides: this.mergedTheme.peerOverrides.Empty
93269
+ }
93270
+ )
93271
+ ])) : /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__groups` }, this.groups.map((group) => /* @__PURE__ */ h("div", { key: group.key, class: `${cls}-icon-pack__group` }, grouped && group.key !== "" && /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__group-header` }, /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__group-title` }, group.label), showGroupCounter && /* @__PURE__ */ h("span", { class: `${cls}-icon-pack__group-counter` }, "(", group.icons.length, ")")), /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__grid` }, group.icons.map(renderCard)))))
93272
+ }
93273
+ ),
93274
+ $slots.footer && /* @__PURE__ */ h("div", { class: `${cls}-icon-pack__footer` }, $slots.footer())
93275
+ );
93276
+ }
93277
+ });
93278
+
92586
93279
  function self$8(vars) {
92587
93280
  const {
92588
93281
  brandPrimary500,
@@ -115163,6 +115856,7 @@ const UHighlight = wrap(_UHighlight);
115163
115856
  const UIcon = wrap(UIcon$1);
115164
115857
  const UIconBar = wrap(_UIconBar);
115165
115858
  const UIconBarItem = wrap(_UIconBarItem);
115859
+ const UIconPack = wrap(_UIconPack);
115166
115860
  const UIconWrapper = wrap(UIconWrapper$1);
115167
115861
  const UImage = wrap(_UImage);
115168
115862
  const UImageGroup = wrap(_UImageGroup);
@@ -115358,6 +116052,7 @@ var components = /*#__PURE__*/Object.freeze({
115358
116052
  UIcon: UIcon,
115359
116053
  UIconBar: UIconBar,
115360
116054
  UIconBarItem: UIconBarItem,
116055
+ UIconPack: UIconPack,
115361
116056
  UIconWrapper: UIconWrapper,
115362
116057
  UImage: UImage,
115363
116058
  UImageGroup: UImageGroup,
@@ -115538,6 +116233,9 @@ var components = /*#__PURE__*/Object.freeze({
115538
116233
  highlightProps: highlightProps,
115539
116234
  iconBarItemProps: iconBarItemProps,
115540
116235
  iconBarProps: iconBarProps,
116236
+ iconPackDark: iconPackDark,
116237
+ iconPackLight: iconPackLight,
116238
+ iconPackProps: iconPackProps,
115541
116239
  iconProps: iconProps,
115542
116240
  iconWrapperProps: iconWrapperProps,
115543
116241
  imageGroupProps: imageGroupProps,
@@ -115589,6 +116287,7 @@ var components = /*#__PURE__*/Object.freeze({
115589
116287
  radioGroupProps: radioGroupProps,
115590
116288
  radioProps: radioProps,
115591
116289
  rateProps: rateProps,
116290
+ renderAsyncIcon: renderAsyncIcon,
115592
116291
  renderBadge: renderBadge,
115593
116292
  renderConfig: renderConfig,
115594
116293
  renderIcon: renderIcon,
@@ -115662,7 +116361,7 @@ function useThemeVars() {
115662
116361
  });
115663
116362
  }
115664
116363
 
115665
- var version = "2.1.3";
116364
+ var version = "2.2.0";
115666
116365
 
115667
116366
  function create({
115668
116367
  componentPrefix = "U",
@@ -115818,6 +116517,7 @@ const lightTheme = {
115818
116517
  Crop: cropLight,
115819
116518
  Header: headerLight,
115820
116519
  IconBar: iconBarLight,
116520
+ IconPack: iconPackLight,
115821
116521
  QrCode: themeLight$1
115822
116522
  };
115823
116523
 
@@ -116441,6 +117141,7 @@ const darkTheme = {
116441
117141
  Crop: cropDark,
116442
117142
  Header: headerDark,
116443
117143
  IconBar: iconBarDark,
117144
+ IconPack: iconPackDark,
116444
117145
  QrCode: qrcodeDark
116445
117146
  };
116446
117147
 
@@ -116463,4 +117164,4 @@ function createTheme(name, componentThemes) {
116463
117164
  return theme;
116464
117165
  }
116465
117166
 
116466
- export { ChatAttachmentStatus, ChatMarkType, ChatMessageType, MessageStatus, a as NA, p as NP, UActionCard, UAffix, UAlert, UAnchor, UAnchorLink, UAutoComplete, UAvatar, UAvatarGroup, UBackTop, UBadge, UBlockquote, UBreadcrumb, UBreadcrumbItem, UButton, UButtonGroup, UCalendar, UCard, UCardList, UCarousel, UCarouselItem, UCascader, UChat, UChatListItems, UChatMessages, UCheckbox, UCheckboxGroup, UCode, UCol, UCollapse, UCollapseItem, UCollapseTransition, UColorPicker, UConfigProvider, UCountdown, UCrop, UDataTable, UDatePicker, UDatePickerV2, UDescriptions, UDescriptionsItem, UDialog, UDialogProvider, UDivider, UDrawer, UDrawerContent, UDropdown, UDynamicInput, UDynamicTags, UEl, UElement, UEllipsis, UEmpty, UEquation, UFlex, UFloatButton, UFloatButtonGroup, UForm, UFormItem, UFormItemCol, UFormItemGi, UFormItemGridItem, UFormItemRow, UGi, UGlobalStyle, UGradientText, UGrid, UGridItem, UH1, UH2, UH3, UH4, UH5, UH6, UHeader, UHeaderActions, UHeaderDesktopLayout, HeaderMobile as UHeaderMobile, UHeaderMobileLayout, UHeaderNavigation, UHeaderSearchDesktop, UHeaderSearchMobile, UHeaderSearchResults, UHeatmap, UHighlight, UHr, UIcon, UIconBar, UIconBarItem, UIconWrapper, UImage, UImageGroup, UImagePreview, UInfiniteScroll, UInput, UInputGroup, UInputGroupLabel, UInputNumber, UInputOtp, UKanban, UKanbanCard, UKanbanColumn, ULayout, ULayoutContent, ULayoutFooter, ULayoutHeader, ULayoutSider, ULegacyTransfer, ULi, UList, UListItem, ULoadingBarProvider, ULog, UMappingCard, UMappingCardList, UMarquee, UMention, UMenu, UMessageProvider, UModal, UModalFullscreen, UModalProvider, UNotificationProvider, UNumberAnimation, UOl, UPageHeader, UPagination, UPerformantEllipsis, UPopconfirm, UPopover, UPopselect, UProgress, UQrCode, URadio, URadioButton, URadioGroup, URate, UResult, URow, USafeTopScrollbar, UScrollbar, USelect, USkeleton, USlider, USpace, USpin, USplit, UStatistic, UStatus, UStep, USteps, USwitch, UTab, UTabPane, UTable, UTabs, UTag, UTagGroup, UTbody, UTd, UText, UTh, UThead, ThemeEditor as UThemeEditor, UThing, UTime, UTimePicker, UTimeline, UTimelineItem, UToggleButton, UTooltip, UTr, UTransfer, UTree, UTreeSelect, UUl, UUpload, UUploadDragger, UUploadFileList, UUploadTrigger, UVirtualList, UWatermark, UxButton, UzumUiResolver, aProps, actionCardDark, actionCardLight, affixProps, alertDark, alertProps, anchorDark, anchorLinkProps, anchorProps, autoCompleteDark, autoCompleteProps, avatarDark, avatarGroupProps, avatarProps, backTopDark, backTopProps, badgeDark, badgeProps, blockquoteProps, breadcrumbDark, breadcrumbItemProps, breadcrumbProps, buttonDark, buttonGroupDark, buttonGroupProps, buttonProps, c$1 as c, cB, cE, cM, cNotM, calendarProps, cardDark$1 as cardDark, cardDark as cardListDark, cardListProps, cardProps, carouselProps, cascaderDark, cascaderProps, checkboxDark, checkboxGroupProps, checkboxProps, codeDark, codeProps, colProps, collapseDark, collapseItemProps, collapseProps, collapseTransitionProps, colorPickerProps, derived$1 as commonDark, derived as commonLight, configProviderProps, countdownProps, create, createDiscreteApi, createLocale, createTheme, cropProps, darkTheme, dataTableDark, dataTableProps, dateEnUs as dateEnUS, datePickerDark, datePickerProps, datePickerV2Dark, datePickerV2Light, dateRuRU, dateUzUZ, dateZhCN, uzumUi as default, descriptionsDark, descriptionsItemProps, descriptionsProps, dialogDark, dialogProps, dialogProviderProps, dividerDark, dividerProps, drawerContentProps, drawerDark, drawerProps, dropdownDark, dropdownProps, dynamicInputDark, dynamicInputProps, dynamicTagsDark, dynamicTagsProps, elementDark, elementProps, ellipsisProps, emptyDark$1 as emptyDark, emptyProps, enUS$1 as enUS, equationProps, flexProps, floatButtonDark, floatButtonGroupDark, floatButtonGroupProps, floatButtonProps, formItemDark as formDark, formItemGiProps, formItemGiProps as formItemGridItemProps, formItemProps, formProps, getMenuItemKey, gridItemProps as giProps, gradientTextDark, gradientTextProps, gridItemProps, gridProps, headerProps$2 as h1Props, headerProps$2 as h2Props, headerProps$2 as h3Props, headerProps$2 as h4Props, headerProps$2 as h5Props, headerProps$2 as h6Props, hasChildren, headerActionsProps, headerDesktopLayoutProps, headerMobileLayoutProps, headerMobileProps, headerNavigationProps, headerProps$1 as headerProps, headerSearchDesktopProps, headerSearchMobileProps, headerSearchResultsProps, HeatmapDark as heatmapDark, heatmapLight, heatmapMockData, heatmapProps, highlightProps, iconBarItemProps, iconBarProps, iconDark$1 as iconDark, iconProps, iconWrapperProps, imageGroupProps, imagePreviewProps, imageProps, infiniteScrollProps, inputDark, inputGroupLabelProps, inputGroupProps, inputNumberDark, inputNumberProps, inputOtpDark, inputOtpProps, inputProps, install, internalSelectMenuDark, internalSelectionDark, isColumnOption, isDividerOption, isGroupOption, isLeafMenuOption, isNotNull, kanbanDark, kanbanLight, kanbanProps, layoutProps as layoutContentProps, layoutDark, layoutFooterProps, headerProps as layoutHeaderProps, layoutProps, layoutSiderProps, transferProps$1 as legacyTransferProps, lightTheme, listDark$1 as listDark, listProps, loadingBarDark, loadingBarProviderProps, logDark, logProps, mappingCardDark, mappingCardLight, marqueeDark, listDark as mentionDark, mentionProps, menuDark, menuProps, messageDark, messageProviderProps, modalDark, modalFullscreenProps, modalProps, modalProviderProps, notificationDark, notificationProviderProps, numberAnimationProps, olProps, pProps, pageHeaderProps, paginationDark, paginationProps, popconfirmDark, popconfirmProps, popoverDark, popoverProps, popselect as popselectDark, popselectProps, progressDark, progressProps, qrCodeProps, radioButtonProps, radioDark, radioGroupProps, radioProps, rateDark, rateProps, renderBadge, renderConfig, renderIcon, renderOptionLabel, resolvePlacement, resolveTopLevelMenuKey, resultDark, resultProps, rowProps, ruRu as ruRU, safeTopScrollbarProps, scrollbarDark, scrollbarProps, selectDark, selectProps, skeletonProps, sliderDark, sliderProps, spaceDark, spaceProps, spinDark, spinProps, splitProps, statisticDark, statisticProps, emptyDark as statusDark, statusProps, stepProps, stepsDark, stepsProps, switchDark, switchProps, tabPaneProps, tabProps, tableDark, tableProps, tabsDark, tabsProps, tagDark, tagProps, textProps, thingDark, thingProps, timePickerDark, timePickerProps, timeProps, timelineDark, timelineItemProps, timelineProps, toggleButtonDark, toggleButtonProps, tooltipDark, tooltipProps, transferDark$1 as transferDark, transferProps, treeDark, treeGetClickTarget, treeProps, treeSelectDark, treeSelectProps, typographyDark, ulProps, alertRtl as unstableAlertRtl, avatarGroupRtl as unstableAvatarGroupRtl, badgeRtl as unstableBadgeRtl, buttonGroupRtl as unstableButtonGroupRtl, buttonRtl as unstableButtonRtl, cardRtl as unstableCardRtl, checkboxRtl as unstableCheckboxRtl, collapseRtl as unstableCollapseRtl, collapseTransitionRtl as unstableCollapseTransitionRtl, drawerRtl as unstableDrawerRtl, dynamicInputRtl as unstableDynamicInputRtl, inputNumberRtl as unstableInputNumberRtl, inputOtpRtl as unstableInputOtpRtl, inputRtl as unstableInputRtl, listRtl as unstableListRtl, messageRtl as unstableMessageRtl, notificationRtl as unstableNotificationRtl, rtl as unstablePageHeaderRtl, paginationRtl as unstablePaginationRtl, radioRtl as unstableRadioRtl, rowRtl as unstableRowRtl, scrollbarRtl as unstableScrollbarRtl, spaceRtl as unstableSpaceRtl, statisticRtl as unstableStatisticRtl, stepsRtl as unstableStepsRtl, tableRtl as unstableTableRtl, tagRtl as unstableTagRtl, thingRtl as unstableThingRtl, treeRtl as unstableTreeRtl, uploadRtl as unstableUploadRtl, uploadDark, publicDownload as uploadDownload, uploadProps, useDialog, useDialogReactiveList, useLoadingBar, useMessage, useModal, useModalReactiveList, useNotification, useOsTheme, useThemeVars, uzUZ, version, virtualListProps, watermarkDark, watermarkProps, zhCN$1 as zhCN, zindexable };
117167
+ export { ChatAttachmentStatus, ChatMarkType, ChatMessageType, MessageStatus, a as NA, p as NP, UActionCard, UAffix, UAlert, UAnchor, UAnchorLink, UAutoComplete, UAvatar, UAvatarGroup, UBackTop, UBadge, UBlockquote, UBreadcrumb, UBreadcrumbItem, UButton, UButtonGroup, UCalendar, UCard, UCardList, UCarousel, UCarouselItem, UCascader, UChat, UChatListItems, UChatMessages, UCheckbox, UCheckboxGroup, UCode, UCol, UCollapse, UCollapseItem, UCollapseTransition, UColorPicker, UConfigProvider, UCountdown, UCrop, UDataTable, UDatePicker, UDatePickerV2, UDescriptions, UDescriptionsItem, UDialog, UDialogProvider, UDivider, UDrawer, UDrawerContent, UDropdown, UDynamicInput, UDynamicTags, UEl, UElement, UEllipsis, UEmpty, UEquation, UFlex, UFloatButton, UFloatButtonGroup, UForm, UFormItem, UFormItemCol, UFormItemGi, UFormItemGridItem, UFormItemRow, UGi, UGlobalStyle, UGradientText, UGrid, UGridItem, UH1, UH2, UH3, UH4, UH5, UH6, UHeader, UHeaderActions, UHeaderDesktopLayout, HeaderMobile as UHeaderMobile, UHeaderMobileLayout, UHeaderNavigation, UHeaderSearchDesktop, UHeaderSearchMobile, UHeaderSearchResults, UHeatmap, UHighlight, UHr, UIcon, UIconBar, UIconBarItem, UIconPack, UIconWrapper, UImage, UImageGroup, UImagePreview, UInfiniteScroll, UInput, UInputGroup, UInputGroupLabel, UInputNumber, UInputOtp, UKanban, UKanbanCard, UKanbanColumn, ULayout, ULayoutContent, ULayoutFooter, ULayoutHeader, ULayoutSider, ULegacyTransfer, ULi, UList, UListItem, ULoadingBarProvider, ULog, UMappingCard, UMappingCardList, UMarquee, UMention, UMenu, UMessageProvider, UModal, UModalFullscreen, UModalProvider, UNotificationProvider, UNumberAnimation, UOl, UPageHeader, UPagination, UPerformantEllipsis, UPopconfirm, UPopover, UPopselect, UProgress, UQrCode, URadio, URadioButton, URadioGroup, URate, UResult, URow, USafeTopScrollbar, UScrollbar, USelect, USkeleton, USlider, USpace, USpin, USplit, UStatistic, UStatus, UStep, USteps, USwitch, UTab, UTabPane, UTable, UTabs, UTag, UTagGroup, UTbody, UTd, UText, UTh, UThead, ThemeEditor as UThemeEditor, UThing, UTime, UTimePicker, UTimeline, UTimelineItem, UToggleButton, UTooltip, UTr, UTransfer, UTree, UTreeSelect, UUl, UUpload, UUploadDragger, UUploadFileList, UUploadTrigger, UVirtualList, UWatermark, UxButton, UzumUiResolver, aProps, actionCardDark, actionCardLight, affixProps, alertDark, alertProps, anchorDark, anchorLinkProps, anchorProps, autoCompleteDark, autoCompleteProps, avatarDark, avatarGroupProps, avatarProps, backTopDark, backTopProps, badgeDark, badgeProps, blockquoteProps, breadcrumbDark, breadcrumbItemProps, breadcrumbProps, buttonDark, buttonGroupDark, buttonGroupProps, buttonProps, c$1 as c, cB, cE, cM, cNotM, calendarProps, cardDark$1 as cardDark, cardDark as cardListDark, cardListProps, cardProps, carouselProps, cascaderDark, cascaderProps, checkboxDark, checkboxGroupProps, checkboxProps, codeDark, codeProps, colProps, collapseDark, collapseItemProps, collapseProps, collapseTransitionProps, colorPickerProps, derived$1 as commonDark, derived as commonLight, configProviderProps, countdownProps, create, createDiscreteApi, createLocale, createTheme, cropProps, darkTheme, dataTableDark, dataTableProps, dateEnUs as dateEnUS, datePickerDark, datePickerProps, datePickerV2Dark, datePickerV2Light, dateRuRU, dateUzUZ, dateZhCN, uzumUi as default, descriptionsDark, descriptionsItemProps, descriptionsProps, dialogDark, dialogProps, dialogProviderProps, dividerDark, dividerProps, drawerContentProps, drawerDark, drawerProps, dropdownDark, dropdownProps, dynamicInputDark, dynamicInputProps, dynamicTagsDark, dynamicTagsProps, elementDark, elementProps, ellipsisProps, emptyDark$1 as emptyDark, emptyProps, enUS$1 as enUS, equationProps, flexProps, floatButtonDark, floatButtonGroupDark, floatButtonGroupProps, floatButtonProps, formItemDark as formDark, formItemGiProps, formItemGiProps as formItemGridItemProps, formItemProps, formProps, getMenuItemKey, gridItemProps as giProps, gradientTextDark, gradientTextProps, gridItemProps, gridProps, headerProps$2 as h1Props, headerProps$2 as h2Props, headerProps$2 as h3Props, headerProps$2 as h4Props, headerProps$2 as h5Props, headerProps$2 as h6Props, hasChildren, headerActionsProps, headerDesktopLayoutProps, headerMobileLayoutProps, headerMobileProps, headerNavigationProps, headerProps$1 as headerProps, headerSearchDesktopProps, headerSearchMobileProps, headerSearchResultsProps, HeatmapDark as heatmapDark, heatmapLight, heatmapMockData, heatmapProps, highlightProps, iconBarItemProps, iconBarProps, iconDark$1 as iconDark, iconPackDark, iconPackLight, iconPackProps, iconProps, iconWrapperProps, imageGroupProps, imagePreviewProps, imageProps, infiniteScrollProps, inputDark, inputGroupLabelProps, inputGroupProps, inputNumberDark, inputNumberProps, inputOtpDark, inputOtpProps, inputProps, install, internalSelectMenuDark, internalSelectionDark, isColumnOption, isDividerOption, isGroupOption, isLeafMenuOption, isNotNull, kanbanDark, kanbanLight, kanbanProps, layoutProps as layoutContentProps, layoutDark, layoutFooterProps, headerProps as layoutHeaderProps, layoutProps, layoutSiderProps, transferProps$1 as legacyTransferProps, lightTheme, listDark$1 as listDark, listProps, loadingBarDark, loadingBarProviderProps, logDark, logProps, mappingCardDark, mappingCardLight, marqueeDark, listDark as mentionDark, mentionProps, menuDark, menuProps, messageDark, messageProviderProps, modalDark, modalFullscreenProps, modalProps, modalProviderProps, notificationDark, notificationProviderProps, numberAnimationProps, olProps, pProps, pageHeaderProps, paginationDark, paginationProps, popconfirmDark, popconfirmProps, popoverDark, popoverProps, popselect as popselectDark, popselectProps, progressDark, progressProps, qrCodeProps, radioButtonProps, radioDark, radioGroupProps, radioProps, rateDark, rateProps, renderAsyncIcon, renderBadge, renderConfig, renderIcon, renderOptionLabel, resolvePlacement, resolveTopLevelMenuKey, resultDark, resultProps, rowProps, ruRu as ruRU, safeTopScrollbarProps, scrollbarDark, scrollbarProps, selectDark, selectProps, skeletonProps, sliderDark, sliderProps, spaceDark, spaceProps, spinDark, spinProps, splitProps, statisticDark, statisticProps, emptyDark as statusDark, statusProps, stepProps, stepsDark, stepsProps, switchDark, switchProps, tabPaneProps, tabProps, tableDark, tableProps, tabsDark, tabsProps, tagDark, tagProps, textProps, thingDark, thingProps, timePickerDark, timePickerProps, timeProps, timelineDark, timelineItemProps, timelineProps, toggleButtonDark, toggleButtonProps, tooltipDark, tooltipProps, transferDark$1 as transferDark, transferProps, treeDark, treeGetClickTarget, treeProps, treeSelectDark, treeSelectProps, typographyDark, ulProps, alertRtl as unstableAlertRtl, avatarGroupRtl as unstableAvatarGroupRtl, badgeRtl as unstableBadgeRtl, buttonGroupRtl as unstableButtonGroupRtl, buttonRtl as unstableButtonRtl, cardRtl as unstableCardRtl, checkboxRtl as unstableCheckboxRtl, collapseRtl as unstableCollapseRtl, collapseTransitionRtl as unstableCollapseTransitionRtl, drawerRtl as unstableDrawerRtl, dynamicInputRtl as unstableDynamicInputRtl, inputNumberRtl as unstableInputNumberRtl, inputOtpRtl as unstableInputOtpRtl, inputRtl as unstableInputRtl, listRtl as unstableListRtl, messageRtl as unstableMessageRtl, notificationRtl as unstableNotificationRtl, rtl as unstablePageHeaderRtl, paginationRtl as unstablePaginationRtl, radioRtl as unstableRadioRtl, rowRtl as unstableRowRtl, scrollbarRtl as unstableScrollbarRtl, spaceRtl as unstableSpaceRtl, statisticRtl as unstableStatisticRtl, stepsRtl as unstableStepsRtl, tableRtl as unstableTableRtl, tagRtl as unstableTagRtl, thingRtl as unstableThingRtl, treeRtl as unstableTreeRtl, uploadRtl as unstableUploadRtl, uploadDark, publicDownload as uploadDownload, uploadProps, useDialog, useDialogReactiveList, useLoadingBar, useMessage, useModal, useModalReactiveList, useNotification, useOsTheme, useThemeVars, uzUZ, version, virtualListProps, watermarkDark, watermarkProps, zhCN$1 as zhCN, zindexable };