@flux-ui/components 3.0.0-next.73 → 3.0.0-next.75

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 (56) hide show
  1. package/dist/component/FluxKanbanColumn.vue.d.ts +1 -1
  2. package/dist/component/FluxSegmentedControl.vue.d.ts +18 -8
  3. package/dist/component/FluxSegmentedControlItem.vue.d.ts +20 -0
  4. package/dist/component/FluxSpacing.vue.d.ts +2 -1
  5. package/dist/component/index.d.ts +1 -4
  6. package/dist/component/primitive/FilterMenuRenderer.d.ts +3 -3
  7. package/dist/composable/index.d.ts +1 -0
  8. package/dist/composable/useSegmentedControlInjection.d.ts +2 -0
  9. package/dist/data/di.d.ts +10 -1
  10. package/dist/index.css +57 -158
  11. package/dist/index.js +321 -405
  12. package/dist/index.js.map +1 -1
  13. package/package.json +9 -9
  14. package/src/component/FluxBoxedIcon.vue +1 -1
  15. package/src/component/FluxCalendar.vue +6 -6
  16. package/src/component/FluxColorPicker.vue +5 -5
  17. package/src/component/FluxDropZone.vue +0 -1
  18. package/src/component/FluxDynamicView.vue +2 -2
  19. package/src/component/FluxExpandableGroup.vue +0 -1
  20. package/src/component/FluxFilterBase.vue +11 -11
  21. package/src/component/FluxFormFieldAddition.vue +2 -2
  22. package/src/component/FluxInfo.vue +2 -2
  23. package/src/component/FluxInfoStack.vue +2 -2
  24. package/src/component/FluxKanbanColumn.vue +2 -4
  25. package/src/component/FluxLayerPane.vue +1 -1
  26. package/src/component/FluxPagination.vue +4 -4
  27. package/src/component/FluxSegmentedControl.vue +64 -67
  28. package/src/component/FluxSegmentedControlItem.vue +98 -0
  29. package/src/component/FluxSpacing.vue +5 -1
  30. package/src/component/FluxSplitButton.vue +2 -2
  31. package/src/component/FluxTable.vue +3 -1
  32. package/src/component/FluxToolbar.vue +1 -1
  33. package/src/component/index.ts +1 -4
  34. package/src/component/primitive/FilterBadge.vue +11 -2
  35. package/src/component/primitive/FilterMenuRenderer.ts +4 -4
  36. package/src/composable/index.ts +1 -0
  37. package/src/composable/useSegmentedControlInjection.ts +13 -0
  38. package/src/css/component/Form.module.scss +2 -2
  39. package/src/css/component/SegmentedControl.module.scss +51 -23
  40. package/src/css/component/Spinner.module.scss +1 -0
  41. package/src/css/component/Visual.module.scss +1 -0
  42. package/src/css/mixin/tree-node.scss +3 -3
  43. package/src/data/di.ts +13 -1
  44. package/src/data/iconRegistry.ts +1 -1
  45. package/src/util/createDialogRenderer.ts +1 -1
  46. package/dist/component/FluxLegend.vue.d.ts +0 -8
  47. package/dist/component/FluxPercentageBar.vue.d.ts +0 -8
  48. package/dist/component/FluxSegmentedView.vue.d.ts +0 -9
  49. package/dist/component/FluxStatistic.vue.d.ts +0 -17
  50. package/src/component/FluxLegend.vue +0 -27
  51. package/src/component/FluxPercentageBar.vue +0 -47
  52. package/src/component/FluxSegmentedView.vue +0 -15
  53. package/src/component/FluxStatistic.vue +0 -82
  54. package/src/css/component/Legend.module.scss +0 -29
  55. package/src/css/component/PercentageBar.module.scss +0 -31
  56. package/src/css/component/Statistic.module.scss +0 -91
package/dist/index.js CHANGED
@@ -70,6 +70,7 @@ var FluxExpandableGroupInjectionKey = Symbol();
70
70
  var FluxFlyoutInjectionKey = Symbol();
71
71
  var FluxFilterInjectionKey = Symbol();
72
72
  var FluxFormFieldInjectionKey = Symbol();
73
+ var FluxSegmentedControlInjectionKey = Symbol();
73
74
  var FluxTabBarInjectionKey = Symbol();
74
75
  var FluxTableInjectionKey = Symbol();
75
76
  var FluxTooltipInjectionKey = Symbol();
@@ -164,7 +165,7 @@ function fluxRegisterIcons(icons) {
164
165
  if (!icons[key]) return acc;
165
166
  const { icon, iconName } = icons[key];
166
167
  acc[iconName] = icon;
167
- if (Array.isArray(icon[2])) icon[2].forEach((iconName) => acc[iconName] = icon);
168
+ if (Array.isArray(icon[2])) icon[2].forEach((alias) => acc[alias] = icon);
168
169
  return acc;
169
170
  }, {});
170
171
  }
@@ -2345,6 +2346,17 @@ function useKanbanInjection_default() {
2345
2346
  return injection;
2346
2347
  }
2347
2348
  //#endregion
2349
+ //#region src/composable/useSegmentedControlInjection.ts
2350
+ function useSegmentedControlInjection_default() {
2351
+ return inject(FluxSegmentedControlInjectionKey, {
2352
+ modelValue: ref(void 0),
2353
+ size: ref("medium"),
2354
+ select: () => void 0,
2355
+ registerItem: () => void 0,
2356
+ unregisterItem: () => void 0
2357
+ });
2358
+ }
2359
+ //#endregion
2348
2360
  //#region src/composable/useTabBarInjection.ts
2349
2361
  function useTabBarInjection_default() {
2350
2362
  return inject(FluxTabBarInjectionKey, {
@@ -2369,7 +2381,7 @@ function useTooltipInjection_default() {
2369
2381
  return inject(FluxTooltipInjectionKey, { calculate: () => void 0 });
2370
2382
  }
2371
2383
  //#endregion
2372
- //#region ../../node_modules/.bun/@basmilius+utils@3.37.0+f2ed1ec6a4c7f7fd/node_modules/@basmilius/utils/dist/index.mjs
2384
+ //#region ../../node_modules/.bun/@basmilius+utils@3.40.0+f2ed1ec6a4c7f7fd/node_modules/@basmilius/utils/dist/index.mjs
2373
2385
  function t$1(e, t) {
2374
2386
  return Math.round(e / t) * t;
2375
2387
  }
@@ -2386,13 +2398,6 @@ function p$4(e, t = 0) {
2386
2398
  minimumFractionDigits: t
2387
2399
  }).format(e);
2388
2400
  }
2389
- function m$2(e) {
2390
- return new Intl.NumberFormat(navigator.language, {
2391
- maximumFractionDigits: 1,
2392
- minimumFractionDigits: 0,
2393
- style: `percent`
2394
- }).format(e);
2395
- }
2396
2401
  function g$1(e, t, n = 5, r) {
2397
2402
  let i = [
2398
2403
  1,
@@ -2543,7 +2548,6 @@ function G$2(e, t, n) {
2543
2548
  function K$2(e, t, n) {
2544
2549
  Object.defineProperty(e, t, { value: n });
2545
2550
  }
2546
- var Z$1 = `—`;
2547
2551
  //#endregion
2548
2552
  //#region ../../node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_freeGlobal.js
2549
2553
  /** Detect free variable `global` from Node.js. */
@@ -3339,7 +3343,7 @@ var camelCase = createCompounder(function(result, word, index) {
3339
3343
  return result + (index ? capitalize(word) : word);
3340
3344
  });
3341
3345
  //#endregion
3342
- //#region ../internals/dist/util-CwaOsSvo.js
3346
+ //#region ../internals/dist/util-CJ4O9fDL.js
3343
3347
  function i$2(e) {
3344
3348
  if (typeof requestAnimationFrame > `u`) return (() => {});
3345
3349
  let t = 0;
@@ -3468,7 +3472,7 @@ function v$2(...e) {
3468
3472
  }
3469
3473
  function y$2(e, t, n = !1) {
3470
3474
  let r = b$2(e), i = t.compareDocumentPosition(e), a;
3471
- a = i && Node.DOCUMENT_POSITION_PRECEDING || n ? r.firstChild() : r.lastChild(), (a === null ? e : a).focus();
3475
+ a = (i & Node.DOCUMENT_POSITION_PRECEDING) !== 0 || n ? r.firstChild() : r.lastChild(), (a === null ? e : a).focus();
3472
3476
  }
3473
3477
  function b$2(e) {
3474
3478
  return document.createTreeWalker(e, NodeFilter.SHOW_ELEMENT, { acceptNode: (e) => e.tabIndex >= 0 && !e.disabled ? NodeFilter.FILTER_ACCEPT : NodeFilter.FILTER_SKIP });
@@ -6585,7 +6589,7 @@ useMode(definition$2);
6585
6589
  useMode(definition$1);
6586
6590
  useMode(definition);
6587
6591
  //#endregion
6588
- //#region ../../node_modules/.bun/@basmilius+http-client@3.37.0+f97c77f67c914c00/node_modules/@basmilius/http-client/dist/index.mjs
6592
+ //#region ../../node_modules/.bun/@basmilius+http-client@3.40.0+24cbb59c6ffe9d25/node_modules/@basmilius/http-client/dist/index.mjs
6589
6593
  function adapter_default(Parent) {
6590
6594
  return class extends Parent {
6591
6595
  constructor(...args) {
@@ -6593,11 +6597,6 @@ function adapter_default(Parent) {
6593
6597
  }
6594
6598
  };
6595
6599
  }
6596
- function bound_default() {
6597
- return (target, method) => {
6598
- target[method] = target[method].bind(target);
6599
- };
6600
- }
6601
6600
  /**
6602
6601
  * Checks if the two given values are equal. When both values are a
6603
6602
  * dto, the check is done by firstly converthing them to JSON.
@@ -6621,7 +6620,7 @@ var TRIGGER = Symbol();
6621
6620
  * Checks if the given object is a dto.
6622
6621
  */
6623
6622
  function isDto_default(obj) {
6624
- return typeof obj === "object" && obj !== null && NAME in obj;
6623
+ return obj && typeof obj === "object" && !!obj[NAME];
6625
6624
  }
6626
6625
  /**
6627
6626
  * Asserts that the given object is a dto.
@@ -6676,9 +6675,6 @@ var markDtoClean = circularProtect_default(function(obj) {
6676
6675
  if (!obj[CHILDREN] || obj[CHILDREN].length === 0) return;
6677
6676
  obj[CHILDREN].filter(isDtoDirty_default).forEach(markDtoClean);
6678
6677
  });
6679
- function isProxiedArray_default(value) {
6680
- return Array.isArray(value) && PARENT in value;
6681
- }
6682
6678
  /**
6683
6679
  * Marks the given dto dirty.
6684
6680
  */
@@ -6705,7 +6701,7 @@ function relateDtoTo_default(dto, parent, key) {
6705
6701
  */
6706
6702
  function relateValueTo_default(dto, key, value) {
6707
6703
  if (isDto_default(value)) relateDtoTo_default(value, dto, key);
6708
- else if (isProxiedArray_default(value)) {
6704
+ else if (Array.isArray(value)) {
6709
6705
  for (const item of value) {
6710
6706
  if (!isDto_default(item)) continue;
6711
6707
  relateDtoTo_default(item, dto, key);
@@ -6737,7 +6733,7 @@ function unrelateDtoFrom_default(dto, parent) {
6737
6733
  */
6738
6734
  function unrelateValueFrom_default(dto, value) {
6739
6735
  if (isDto_default(value)) unrelateDtoFrom_default(value, dto);
6740
- else if (isProxiedArray_default(value)) {
6736
+ else if (Array.isArray(value)) {
6741
6737
  for (const item of value) if (isDto_default(item)) unrelateDtoFrom_default(item, dto);
6742
6738
  value[PARENT] = void 0;
6743
6739
  value[PARENT_KEY] = void 0;
@@ -6781,7 +6777,7 @@ var arrayProxy_default = {
6781
6777
  }
6782
6778
  };
6783
6779
  /**
6784
- * Checks if the proxy should ignore the given key.
6780
+ * Checks if the given key should be ignored by the proxy.
6785
6781
  */
6786
6782
  function ignored(target, key) {
6787
6783
  return typeof key === "symbol" || typeof target[key] === "function" || key === "length";
@@ -6826,7 +6822,7 @@ var instanceProxy_default = {
6826
6822
  const oldValue = descriptor.get?.call(target) ?? void 0;
6827
6823
  if (areEqual_default(value, oldValue)) return true;
6828
6824
  unrelateValueFrom_default(target, oldValue);
6829
- if (Array.isArray(value) && !isProxiedArray_default(value)) value = new Proxy(value, arrayProxy_default);
6825
+ if (Array.isArray(value) && !value[PROXY]) value = new Proxy(value, arrayProxy_default);
6830
6826
  descriptor.set.call(target, value);
6831
6827
  relateValueTo_default(target, key, value);
6832
6828
  markDtoDirty(target, key);
@@ -6950,7 +6946,7 @@ function dto_default(clazz) {
6950
6946
  K$2(clazz.prototype, DESCRIPTORS, descriptors);
6951
6947
  K$2(clazz.prototype, NAME, clazz.name);
6952
6948
  K$2(clazz.prototype, PROPERTIES, properties);
6953
- K$2(clazz, Symbol.hasInstance, (instance) => typeof instance === "object" && instance !== null && NAME in instance && instance[NAME] === clazz.name);
6949
+ K$2(clazz, Symbol.hasInstance, (instance) => typeof instance === "object" && instance?.[NAME] === clazz.name);
6954
6950
  G$2(clazz, "clone", clone_default);
6955
6951
  G$2(clazz, "fill", fill_default);
6956
6952
  G$2(clazz, "toJSON", toJSON_default);
@@ -6971,12 +6967,6 @@ function __decorate(decorators, target, key, desc) {
6971
6967
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6972
6968
  return c > 3 && r && Object.defineProperty(target, key, r), r;
6973
6969
  }
6974
- var X$2 = class {
6975
- test() {
6976
- return true;
6977
- }
6978
- };
6979
- __decorate([bound_default()], X$2.prototype, "test", null);
6980
6970
  var BlobResponse = class BlobResponse {
6981
6971
  get blob() {
6982
6972
  return this.#blob;
@@ -7089,7 +7079,7 @@ var HttpAdapter = _HttpAdapter = class HttpAdapter {
7089
7079
  const defaultFilename = `download-${DateTime.now().toFormat("yyyy-MM-dd HH-mm-ss")}`;
7090
7080
  if (!header.startsWith("attachment")) return defaultFilename;
7091
7081
  const matches = /filename[^;=\n]*=((['"]).*?\2|[^;\n]*)/.exec(header);
7092
- if (!matches || matches.length < 2) return defaultFilename;
7082
+ if ((matches?.length || 0) < 2) return defaultFilename;
7093
7083
  return matches[1].replaceAll("'", "").replaceAll("\"", "").replaceAll("/", "-").replaceAll(":", "-");
7094
7084
  }
7095
7085
  static parseRequestError(data, statusCode) {
@@ -7097,7 +7087,12 @@ var HttpAdapter = _HttpAdapter = class HttpAdapter {
7097
7087
  }
7098
7088
  static parseValidationError(data) {
7099
7089
  let errors;
7100
- if (data.errors) errors = Object.fromEntries(Object.entries(data.errors).map(([key, value]) => [key, _HttpAdapter.parseValidationError(value)]));
7090
+ if (data.errors) {
7091
+ errors = {};
7092
+ Object.entries(data.errors).forEach(([key, value]) => {
7093
+ errors[key] = _HttpAdapter.parseValidationError(value);
7094
+ });
7095
+ }
7101
7096
  return new ValidationError_default(data.code, data.error, data.error_description, errors, data.params);
7102
7097
  }
7103
7098
  };
@@ -7204,7 +7199,7 @@ function ye$1(e, t, n) {
7204
7199
  onScopeDispose(o);
7205
7200
  }
7206
7201
  //#endregion
7207
- //#region ../internals/dist/composable-BLswOqxr.js
7202
+ //#region ../internals/dist/composable-CbnFLx66.js
7208
7203
  function _$1(e, t) {
7209
7204
  let n = ref(!1), r = ref(e), i = computed(() => {
7210
7205
  let e = [], t = unref(r).month, n = unref(r).startOf(`month`);
@@ -7343,54 +7338,52 @@ function T$1(e) {
7343
7338
  }));
7344
7339
  }
7345
7340
  function E$1(e) {
7346
- let t = ref(null);
7347
- e.announce;
7348
- let n = computed(() => {
7341
+ let t = ref(null), n = e.announce ?? T$1, r = computed(() => {
7349
7342
  let t = unref(e.itemId), n = unref(e.grabbedId);
7350
7343
  return t != null && n === t;
7351
7344
  });
7352
- function r() {
7345
+ function i() {
7353
7346
  t.value = null;
7354
7347
  }
7355
- function i(r) {
7348
+ function a(i) {
7356
7349
  if (unref(e.isDraggable) && unref(e.itemId) != null) {
7357
- if (!n.value) {
7358
- (r.key === ` ` || r.key === `Enter`) && (r.preventDefault(), t.value = e.onGrab());
7350
+ if (!r.value) {
7351
+ (i.key === ` ` || i.key === `Enter`) && (i.preventDefault(), t.value = e.onGrab(), n(`Grabbed, use arrow keys to move`));
7359
7352
  return;
7360
7353
  }
7361
- switch (r.key) {
7354
+ switch (i.key) {
7362
7355
  case `ArrowUp`:
7363
- r.preventDefault(), e.onMove(`up`);
7356
+ i.preventDefault(), e.onMove(`up`), n(`Moved up`);
7364
7357
  break;
7365
7358
  case `ArrowDown`:
7366
- r.preventDefault(), e.onMove(`down`);
7359
+ i.preventDefault(), e.onMove(`down`), n(`Moved down`);
7367
7360
  break;
7368
7361
  case `ArrowLeft`:
7369
- r.preventDefault(), e.onMove(`left`);
7362
+ i.preventDefault(), e.onMove(`left`), n(`Moved left`);
7370
7363
  break;
7371
7364
  case `ArrowRight`:
7372
- r.preventDefault(), e.onMove(`right`);
7365
+ i.preventDefault(), e.onMove(`right`), n(`Moved right`);
7373
7366
  break;
7374
7367
  case ` `:
7375
7368
  case `Enter`: {
7376
- r.preventDefault();
7377
- let n = t.value;
7378
- t.value = null, n !== null && e.onCommit(n);
7369
+ i.preventDefault();
7370
+ let r = t.value;
7371
+ t.value = null, r !== null && (e.onCommit(r), n(`Dropped`));
7379
7372
  break;
7380
7373
  }
7381
7374
  case `Escape`: {
7382
- r.preventDefault();
7383
- let n = t.value;
7384
- t.value = null, n !== null && e.onCancel(n);
7375
+ i.preventDefault();
7376
+ let r = t.value;
7377
+ t.value = null, r !== null && (e.onCancel(r), n(`Cancelled`));
7385
7378
  break;
7386
7379
  }
7387
7380
  }
7388
7381
  }
7389
7382
  }
7390
7383
  return {
7391
- isGrabbed: n,
7392
- handleKeyDown: i,
7393
- release: r
7384
+ isGrabbed: r,
7385
+ handleKeyDown: a,
7386
+ release: i
7394
7387
  };
7395
7388
  }
7396
7389
  function D$1(e, t, n, r = { passive: !0 }) {
@@ -7572,7 +7565,7 @@ function z$1(e, t, n, r, i, o) {
7572
7565
  //#region ../internals/dist/data/index.js
7573
7566
  var oe = `#ef4444`, se = `#dc2626`, _e = `#f97316`, ve = `#ea580c`, Oe = `#f59e0b`, ke = `#d97706`, ze = `#eab308`, Be = `#ca8a04`, Xe = `#84cc16`, Ze = `#65a30d`, st = `#22c55e`, ct = `#16a34a`, vt = `#10b981`, yt = `#059669`, kt = `#14b8a6`, At = `#0d9488`, Bt = `#06b6d4`, Vt = `#0891b2`, Zt = `#0ea5e9`, Qt = `#0284c7`, ln = `#3b82f6`, un = `#2563eb`, bn = `#6366f1`, xn = `#4f46e5`, jn = `#8b5cf6`, Mn = `#7c3aed`, Hn = `#a855f7`, Un = `#9333ea`, $n = `#d946ef`, er = `#c026d3`, ur = `#ec4899`, dr = `#db2777`, xr = `#f43f5e`, Sr = `#e11d48`;
7574
7567
  //#endregion
7575
- //#region ../internals/dist/directive-Dprka-AO.js
7568
+ //#region ../internals/dist/directive-CoRl44Fx.js
7576
7569
  var i = class {
7577
7570
  #e;
7578
7571
  #t;
@@ -7639,7 +7632,7 @@ var _hoisted_1$62 = [
7639
7632
  "aria-hidden",
7640
7633
  "aria-label"
7641
7634
  ];
7642
- var _hoisted_2$24 = ["d"];
7635
+ var _hoisted_2$23 = ["d"];
7643
7636
  //#endregion
7644
7637
  //#region src/component/FluxIcon.vue
7645
7638
  var FluxIcon_default = /* @__PURE__ */ defineComponent({
@@ -7685,7 +7678,7 @@ var FluxIcon_default = /* @__PURE__ */ defineComponent({
7685
7678
  return openBlock(), createElementBlock("path", {
7686
7679
  d: path,
7687
7680
  fill: "currentColor"
7688
- }, null, 8, _hoisted_2$24);
7681
+ }, null, 8, _hoisted_2$23);
7689
7682
  }), 256))], 14, _hoisted_1$62)) : (openBlock(), createElementBlock("i", {
7690
7683
  key: 1,
7691
7684
  class: normalizeClass(unref(Icon_module_default).icon)
@@ -9330,31 +9323,31 @@ var FluxAction_default = /* @__PURE__ */ defineComponent({
9330
9323
  });
9331
9324
  //#endregion
9332
9325
  //#region src/css/component/Button.module.scss
9333
- var { "button": _0$14, "buttonIcon": _1$5, "buttonLabel": _2$4 } = Button_module_default$1;
9326
+ var { "buttonIcon": _0$14, "button": _1$5, "buttonLabel": _2$4 } = Button_module_default$1;
9334
9327
  var Button_module_default = {
9335
- primaryButton: `primary-button ${_0$14}`,
9328
+ primaryButton: `primary-button ${_1$5}`,
9336
9329
  spinner: `spinner`,
9337
- primaryButtonIcon: `primary-button-icon ${_1$5}`,
9330
+ primaryButtonIcon: `primary-button-icon ${_0$14}`,
9338
9331
  primaryButtonLabel: `primary-button-label ${_2$4}`,
9339
- secondaryButton: `secondary-button ${_0$14}`,
9340
- secondaryButtonIcon: `secondary-button-icon ${_1$5}`,
9332
+ secondaryButton: `secondary-button ${_1$5}`,
9333
+ secondaryButtonIcon: `secondary-button-icon ${_0$14}`,
9341
9334
  secondaryButtonLabel: `secondary-button-label ${_2$4}`,
9342
- destructiveButton: `destructive-button ${_0$14}`,
9343
- destructiveButtonIcon: `destructive-button-icon ${_1$5}`,
9335
+ destructiveButton: `destructive-button ${_1$5}`,
9336
+ destructiveButtonIcon: `destructive-button-icon ${_0$14}`,
9344
9337
  destructiveButtonLabel: `destructive-button-label ${_2$4}`,
9345
- baseLinkButton: `base-link-button ${_0$14}`,
9346
- primaryLinkButton: `primary-link-button base-link-button ${_0$14}`,
9347
- primaryLinkButtonIcon: `primary-link-button-icon ${_1$5}`,
9338
+ baseLinkButton: `base-link-button ${_1$5}`,
9339
+ primaryLinkButton: `primary-link-button base-link-button ${_1$5}`,
9340
+ primaryLinkButtonIcon: `primary-link-button-icon ${_0$14}`,
9348
9341
  primaryLinkButtonLabel: `primary-link-button-label ${_2$4}`,
9349
- secondaryLinkButton: `secondary-link-button base-link-button ${_0$14}`,
9350
- secondaryLinkButtonIcon: `secondary-link-button-icon ${_1$5}`,
9342
+ secondaryLinkButton: `secondary-link-button base-link-button ${_1$5}`,
9343
+ secondaryLinkButtonIcon: `secondary-link-button-icon ${_0$14}`,
9351
9344
  secondaryLinkButtonLabel: `secondary-link-button-label ${_2$4}`,
9352
- linkButton: `link-button ${_0$14}`,
9353
- linkButtonIcon: `link-button-icon ${_1$5}`,
9345
+ linkButton: `link-button ${_1$5}`,
9346
+ linkButtonIcon: `link-button-icon ${_0$14}`,
9354
9347
  icon: `icon`,
9355
9348
  linkButtonLabel: `link-button-label ${_2$4}`,
9356
- publishButton: `publish-button primary-button ${_0$14}`,
9357
- publishButtonIcon: `publish-button-icon primary-button-icon ${_1$5}`,
9349
+ publishButton: `publish-button primary-button ${_1$5}`,
9350
+ publishButtonIcon: `publish-button-icon primary-button-icon ${_0$14}`,
9358
9351
  publishButtonLabel: `publish-button-label primary-button-label ${_2$4}`,
9359
9352
  publishButtonAnimation: `publish-button-animation`,
9360
9353
  isDone: `is-done`,
@@ -10637,7 +10630,7 @@ var Avatar_module_default = {
10637
10630
  //#endregion
10638
10631
  //#region src/component/FluxAvatar.vue?vue&type=script&setup=true&lang.ts
10639
10632
  var _hoisted_1$59 = ["alt", "src"];
10640
- var _hoisted_2$23 = { key: 0 };
10633
+ var _hoisted_2$22 = { key: 0 };
10641
10634
  //#endregion
10642
10635
  //#region src/component/FluxAvatar.vue
10643
10636
  var FluxAvatar_default = /* @__PURE__ */ defineComponent({
@@ -10726,7 +10719,7 @@ var FluxAvatar_default = /* @__PURE__ */ defineComponent({
10726
10719
  }, null, 10, _hoisted_1$59)) : (openBlock(), createElementBlock("div", {
10727
10720
  key: 1,
10728
10721
  class: normalizeClass(__props.fallback === "colorized" ? unref(Avatar_module_default).avatarFallbackColorized : unref(Avatar_module_default).avatarFallbackNeutral)
10729
- }, [__props.fallbackInitials ? (openBlock(), createElementBlock("span", _hoisted_2$23, toDisplayString(__props.fallbackInitials), 1)) : __props.fallbackIcon ? (openBlock(), createBlock(FluxIcon_default, {
10722
+ }, [__props.fallbackInitials ? (openBlock(), createElementBlock("span", _hoisted_2$22, toDisplayString(__props.fallbackInitials), 1)) : __props.fallbackIcon ? (openBlock(), createBlock(FluxIcon_default, {
10730
10723
  key: 1,
10731
10724
  name: __props.fallbackIcon
10732
10725
  }, null, 8, ["name"])) : createCommentVNode("", true)], 2)),
@@ -11174,12 +11167,12 @@ var _hoisted_1$55 = [
11174
11167
  "onDragleave",
11175
11168
  "onDrop"
11176
11169
  ];
11177
- var _hoisted_2$22 = [
11170
+ var _hoisted_2$21 = [
11178
11171
  "onDragover",
11179
11172
  "onDragleave",
11180
11173
  "onDrop"
11181
11174
  ];
11182
- var _hoisted_3$8 = ["onMousedown"];
11175
+ var _hoisted_3$6 = ["onMousedown"];
11183
11176
  var _hoisted_4$1 = ["onMousedown"];
11184
11177
  //#endregion
11185
11178
  //#region src/component/calendar/FluxCalendarTimeGridView.vue
@@ -11521,7 +11514,7 @@ var FluxCalendarTimeGridView_default = /* @__PURE__ */ defineComponent({
11521
11514
  }, [createElementVNode("div", { class: normalizeClass(unref(Calendar_module_default).timeGridDayItemBody) }, [createVNode(FluxCalendarItemDisplay_default, { data: positioned.data }, null, 8, ["data"]), __props.draggable && !__props.hasActiveDrag ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [createElementVNode("div", {
11522
11515
  class: normalizeClass(unref(clsx)(unref(Calendar_module_default).timeGridDayItemHandle, unref(Calendar_module_default).isTop)),
11523
11516
  onMousedown: (evt) => onResizeStart(positioned, "top", evt)
11524
- }, null, 42, _hoisted_3$8), createElementVNode("div", {
11517
+ }, null, 42, _hoisted_3$6), createElementVNode("div", {
11525
11518
  class: normalizeClass(unref(clsx)(unref(Calendar_module_default).timeGridDayItemHandle, unref(Calendar_module_default).isBottom)),
11526
11519
  onMousedown: (evt) => onResizeStart(positioned, "bottom", evt)
11527
11520
  }, null, 42, _hoisted_4$1)], 64)) : createCommentVNode("", true)], 2)], 6);
@@ -11529,7 +11522,7 @@ var FluxCalendarTimeGridView_default = /* @__PURE__ */ defineComponent({
11529
11522
  key: 0,
11530
11523
  class: normalizeClass(unref(Calendar_module_default).timeGridDropIndicator),
11531
11524
  style: normalizeStyle({ top: `${(dropTargetMinutes.value - __props.hourRange[0] * 60) * __props.pixelsPerMinute}px` })
11532
- }, null, 6)) : createCommentVNode("", true)], 46, _hoisted_2$22);
11525
+ }, null, 6)) : createCommentVNode("", true)], 46, _hoisted_2$21);
11533
11526
  }), 128))], 2)], 2)
11534
11527
  ], 2))]),
11535
11528
  _: 1
@@ -11561,13 +11554,13 @@ var DatePicker_module_default = {
11561
11554
  //#endregion
11562
11555
  //#region src/component/FluxDatePicker.vue?vue&type=script&setup=true&lang.ts
11563
11556
  var _hoisted_1$54 = ["id"];
11564
- var _hoisted_2$21 = ["aria-labelledby"];
11565
- var _hoisted_3$7 = ["onClick", "onMouseover"];
11557
+ var _hoisted_2$20 = ["aria-labelledby"];
11558
+ var _hoisted_3$5 = ["onClick", "onMouseover"];
11566
11559
  //#endregion
11567
11560
  //#region src/component/FluxDatePicker.vue
11568
11561
  var FluxDatePicker_default = /* @__PURE__ */ defineComponent({
11569
11562
  __name: "FluxDatePicker",
11570
- props: /* @__PURE__ */ mergeModels({
11563
+ props: /*@__PURE__*/ mergeModels({
11571
11564
  max: {},
11572
11565
  min: {},
11573
11566
  rangeMode: {}
@@ -11748,10 +11741,10 @@ var FluxDatePicker_default = /* @__PURE__ */ defineComponent({
11748
11741
  onClick: ($event) => setDate(date),
11749
11742
  onMouseover: ($event) => onDateMouseOver(date),
11750
11743
  onMouseout: onDateMouseOut
11751
- }, toDisplayString(date.toLocaleString({ day: "numeric" })), 43, _hoisted_3$7);
11744
+ }, toDisplayString(date.toLocaleString({ day: "numeric" })), 43, _hoisted_3$5);
11752
11745
  }), 256))], 2))]),
11753
11746
  _: 1
11754
- }, 8, ["is-back"])], 10, _hoisted_2$21)) : viewMode.value === "month" ? (openBlock(), createElementBlock("div", {
11747
+ }, 8, ["is-back"])], 10, _hoisted_2$20)) : viewMode.value === "month" ? (openBlock(), createElementBlock("div", {
11755
11748
  key: "month",
11756
11749
  class: normalizeClass(unref(DatePicker_module_default).datePickerMonths)
11757
11750
  }, [(openBlock(true), createElementBlock(Fragment, null, renderList(unref(months), (month) => {
@@ -11823,8 +11816,8 @@ var FluxLayerPane_default = /* @__PURE__ */ defineComponent({
11823
11816
  //#endregion
11824
11817
  //#region src/component/FluxCalendar.vue?vue&type=script&setup=true&lang.ts
11825
11818
  var _hoisted_1$53 = ["aria-label", "onClick"];
11826
- var _hoisted_2$20 = ["aria-label", "onClick"];
11827
- var _hoisted_3$6 = ["aria-label", "onClick"];
11819
+ var _hoisted_2$19 = ["aria-label", "onClick"];
11820
+ var _hoisted_3$4 = ["aria-label", "onClick"];
11828
11821
  var SNAP_MINUTES = 30;
11829
11822
  var NAV_HOVER_INITIAL_DELAY_MS = 700;
11830
11823
  var NAV_HOVER_REPEAT_DELAY_MS = 450;
@@ -11882,9 +11875,9 @@ var FluxCalendar_default = /* @__PURE__ */ defineComponent({
11882
11875
  return "day";
11883
11876
  });
11884
11877
  const timeGridDayCount = computed(() => {
11885
- const v = unref(resolvedView);
11886
- if (v === "week") return 7;
11887
- if (v === "two-days") return 2;
11878
+ const resolved = unref(resolvedView);
11879
+ if (resolved === "week") return 7;
11880
+ if (resolved === "two-days") return 2;
11888
11881
  return 1;
11889
11882
  });
11890
11883
  const { isTransitioningToPast: monthIsTransitioningToPast, viewDate: monthViewDate, viewMonth: monthViewMonth, viewYear: monthViewYear, dates: monthDates, days: monthDays, setViewDate: setMonthViewDateRaw, nextMonth: nextMonthRaw, previousMonth: previousMonthRaw } = _$1(__props.initialDate, { weekDayLength: "long" });
@@ -12039,15 +12032,15 @@ var FluxCalendar_default = /* @__PURE__ */ defineComponent({
12039
12032
  if (id == null) return;
12040
12033
  const currentDate = findItemDate(id);
12041
12034
  if (!currentDate) return;
12042
- const v = unref(resolvedView);
12043
- const delta = (v === "month" ? MONTH_KEY_DELTAS : TIME_GRID_KEY_DELTAS)[direction];
12035
+ const resolved = unref(resolvedView);
12036
+ const delta = (resolved === "month" ? MONTH_KEY_DELTAS : TIME_GRID_KEY_DELTAS)[direction];
12044
12037
  const newDate = currentDate.plus(delta);
12045
12038
  emit("reschedule", {
12046
12039
  id,
12047
12040
  fromDate: currentDate,
12048
12041
  toDate: newDate
12049
12042
  });
12050
- if (v === "month") {
12043
+ if (resolved === "month") {
12051
12044
  monthFocusedDate.value = newDate.startOf("day");
12052
12045
  if (newDate.month !== unref(monthViewDate).month) setMonthViewDateRaw(newDate);
12053
12046
  } else {
@@ -12165,7 +12158,7 @@ var FluxCalendar_default = /* @__PURE__ */ defineComponent({
12165
12158
  "aria-label": unref(translate)("flux.selectYear"),
12166
12159
  type: "button",
12167
12160
  onClick: open
12168
- }, toDisplayString(unref(monthViewYear)), 11, _hoisted_2$20)]),
12161
+ }, toDisplayString(unref(monthViewYear)), 11, _hoisted_2$19)]),
12169
12162
  default: withCtx(({ close }) => [createElementVNode("div", { class: normalizeClass(unref(DatePicker_module_default).datePickerYears) }, [
12170
12163
  createVNode(FluxSecondaryButton_default, {
12171
12164
  "aria-label": unref(translate)("flux.previousYears"),
@@ -12198,7 +12191,7 @@ var FluxCalendar_default = /* @__PURE__ */ defineComponent({
12198
12191
  "aria-label": unref(translate)("flux.selectDate"),
12199
12192
  type: "button",
12200
12193
  onClick: open
12201
- }, toDisplayString(rangeLabel.value), 11, _hoisted_3$6)]),
12194
+ }, toDisplayString(rangeLabel.value), 11, _hoisted_3$4)]),
12202
12195
  default: withCtx(({ close }) => [createVNode(FluxDatePicker_default, {
12203
12196
  "model-value": datePickerValue.value,
12204
12197
  "onUpdate:modelValue": ($event) => {
@@ -12441,7 +12434,7 @@ var Form_module_default = {
12441
12434
  //#endregion
12442
12435
  //#region src/component/FluxCheckbox.vue?vue&type=script&setup=true&lang.ts
12443
12436
  var _hoisted_1$51 = ["for"];
12444
- var _hoisted_2$19 = [
12437
+ var _hoisted_2$18 = [
12445
12438
  "id",
12446
12439
  "disabled",
12447
12440
  "aria-disabled",
@@ -12452,7 +12445,7 @@ var _hoisted_2$19 = [
12452
12445
  //#region src/component/FluxCheckbox.vue
12453
12446
  var FluxCheckbox_default = /* @__PURE__ */ defineComponent({
12454
12447
  __name: "FluxCheckbox",
12455
- props: /* @__PURE__ */ mergeModels({
12448
+ props: /*@__PURE__*/ mergeModels({
12456
12449
  disabled: { type: Boolean },
12457
12450
  error: {},
12458
12451
  isReadonly: { type: Boolean },
@@ -12495,7 +12488,7 @@ var FluxCheckbox_default = /* @__PURE__ */ defineComponent({
12495
12488
  "aria-readonly": __props.isReadonly ? true : void 0,
12496
12489
  "aria-invalid": __props.error ? true : void 0,
12497
12490
  onClick
12498
- }, null, 10, _hoisted_2$19), [[vModelCheckbox, modelValue.value]]),
12491
+ }, null, 10, _hoisted_2$18), [[vModelCheckbox, modelValue.value]]),
12499
12492
  createElementVNode("button", {
12500
12493
  "aria-hidden": "true",
12501
12494
  class: normalizeClass(unref(Form_module_default).checkboxElement),
@@ -12803,7 +12796,7 @@ var FluxCommandPaletteItem_default = /* @__PURE__ */ defineComponent({
12803
12796
  //#endregion
12804
12797
  //#region src/component/FluxCommandPalette.vue?vue&type=script&setup=true&lang.ts
12805
12798
  var _hoisted_1$49 = ["placeholder", "value"];
12806
- var _hoisted_2$18 = ["onClick"];
12799
+ var _hoisted_2$17 = ["onClick"];
12807
12800
  //#endregion
12808
12801
  //#region src/component/FluxCommandPalette.vue
12809
12802
  var FluxCommandPalette_default = /* @__PURE__ */ defineComponent({
@@ -12957,7 +12950,7 @@ var FluxCommandPalette_default = /* @__PURE__ */ defineComponent({
12957
12950
  key: 0,
12958
12951
  class: normalizeClass(unref(CommandPalette_module_default).commandPaletteTabIcon),
12959
12952
  name: tab.icon
12960
- }, null, 8, ["class", "name"])) : createCommentVNode("", true), createTextVNode(" " + toDisplayString(tab.label), 1)], 42, _hoisted_2$18);
12953
+ }, null, 8, ["class", "name"])) : createCommentVNode("", true), createTextVNode(" " + toDisplayString(tab.label), 1)], 42, _hoisted_2$17);
12961
12954
  }), 128))], 2)) : createCommentVNode("", true),
12962
12955
  createVNode(unref(FluxWindowTransition_default), { "is-back": unref(isTransitioningBack) }, {
12963
12956
  default: withCtx(() => [(openBlock(), createElementBlock("div", {
@@ -13035,7 +13028,7 @@ var Comment_module_default = {
13035
13028
  //#endregion
13036
13029
  //#region src/component/FluxComment.vue?vue&type=script&setup=true&lang.ts
13037
13030
  var _hoisted_1$48 = { key: 0 };
13038
- var _hoisted_2$17 = ["datetime"];
13031
+ var _hoisted_2$16 = ["datetime"];
13039
13032
  //#endregion
13040
13033
  //#region src/component/FluxComment.vue
13041
13034
  var FluxComment_default = /* @__PURE__ */ defineComponent({
@@ -13082,7 +13075,7 @@ var FluxComment_default = /* @__PURE__ */ defineComponent({
13082
13075
  createElementVNode("div", { class: normalizeClass(unref(Comment_module_default).commentFooter) }, [__props.isReceived && __props.postedBy ? (openBlock(), createElementBlock("span", _hoisted_1$48, toDisplayString(__props.postedBy), 1)) : createCommentVNode("", true), iso.value && relative.value && !__props.isTyping ? (openBlock(), createElementBlock("time", {
13083
13076
  key: 1,
13084
13077
  datetime: iso.value
13085
- }, toDisplayString(isJustNowVisible.value ? unref(translate)("flux.justNow") : relative.value), 9, _hoisted_2$17)) : createCommentVNode("", true)], 2)
13078
+ }, toDisplayString(isJustNowVisible.value ? unref(translate)("flux.justNow") : relative.value), 9, _hoisted_2$16)) : createCommentVNode("", true)], 2)
13086
13079
  ], 2);
13087
13080
  };
13088
13081
  }
@@ -13196,7 +13189,7 @@ var FluxFormField_default = /* @__PURE__ */ defineComponent({
13196
13189
  //#endregion
13197
13190
  //#region src/component/FluxFormInput.vue?vue&type=script&setup=true&lang.ts
13198
13191
  var _hoisted_1$45 = ["aria-disabled"];
13199
- var _hoisted_2$16 = [
13192
+ var _hoisted_2$15 = [
13200
13193
  "id",
13201
13194
  "name",
13202
13195
  "autocomplete",
@@ -13217,7 +13210,7 @@ var _hoisted_2$16 = [
13217
13210
  //#region src/component/FluxFormInput.vue
13218
13211
  var FluxFormInput_default = /* @__PURE__ */ defineComponent({
13219
13212
  __name: "FluxFormInput",
13220
- props: /* @__PURE__ */ mergeModels({
13213
+ props: /*@__PURE__*/ mergeModels({
13221
13214
  autoFocus: {
13222
13215
  type: Boolean,
13223
13216
  default: false
@@ -13243,7 +13236,7 @@ var FluxFormInput_default = /* @__PURE__ */ defineComponent({
13243
13236
  "modelValue": { default: "" },
13244
13237
  "modelModifiers": {}
13245
13238
  }),
13246
- emits: /* @__PURE__ */ mergeModels([
13239
+ emits: /*@__PURE__*/ mergeModels([
13247
13240
  "blur",
13248
13241
  "focus",
13249
13242
  "showPicker"
@@ -13375,7 +13368,7 @@ var FluxFormInput_default = /* @__PURE__ */ defineComponent({
13375
13368
  onFocus: _cache[1] || (_cache[1] = ($event) => onFocus()),
13376
13369
  onInput,
13377
13370
  onKeydown: onKeyDown
13378
- }, null, 42, _hoisted_2$16),
13371
+ }, null, 42, _hoisted_2$15),
13379
13372
  __props.iconLeading ? (openBlock(), createBlock(FluxIcon_default, {
13380
13373
  key: 0,
13381
13374
  class: normalizeClass(unref(Form_module_default).formInputIconLeading),
@@ -13571,7 +13564,7 @@ var FluxPaneFooter_default = /* @__PURE__ */ defineComponent({
13571
13564
  //#endregion
13572
13565
  //#region src/component/FluxPaneHeader.vue?vue&type=script&setup=true&lang.ts
13573
13566
  var _hoisted_1$44 = { key: 0 };
13574
- var _hoisted_2$15 = { key: 1 };
13567
+ var _hoisted_2$14 = { key: 1 };
13575
13568
  //#endregion
13576
13569
  //#region src/component/FluxPaneHeader.vue
13577
13570
  var FluxPaneHeader_default = /* @__PURE__ */ defineComponent({
@@ -13594,7 +13587,7 @@ var FluxPaneHeader_default = /* @__PURE__ */ defineComponent({
13594
13587
  __props.title || __props.subtitle ? (openBlock(), createElementBlock("div", {
13595
13588
  key: 1,
13596
13589
  class: normalizeClass(unref(Pane_module_default).paneHeaderCaption)
13597
- }, [__props.title ? (openBlock(), createElementBlock("strong", _hoisted_1$44, toDisplayString(__props.title), 1)) : createCommentVNode("", true), __props.subtitle ? (openBlock(), createElementBlock("span", _hoisted_2$15, toDisplayString(__props.subtitle), 1)) : createCommentVNode("", true)], 2)) : createCommentVNode("", true),
13590
+ }, [__props.title ? (openBlock(), createElementBlock("strong", _hoisted_1$44, toDisplayString(__props.title), 1)) : createCommentVNode("", true), __props.subtitle ? (openBlock(), createElementBlock("span", _hoisted_2$14, toDisplayString(__props.subtitle), 1)) : createCommentVNode("", true)], 2)) : createCommentVNode("", true),
13598
13591
  renderSlot(_ctx.$slots, "after")
13599
13592
  ], 2);
13600
13593
  };
@@ -13682,8 +13675,13 @@ var FilterBadge_default = /* @__PURE__ */ defineComponent({
13682
13675
  function onClick(evt) {
13683
13676
  emit("click", evt);
13684
13677
  }
13685
- watch([() => __props.item, () => __props.value], async () => {
13686
- valueLabel.value = await unref(getValueLabel)(__props.value) ?? void 0;
13678
+ watch([() => __props.item, () => __props.value], async ([, nextValue], _prev, onCleanup) => {
13679
+ let cancelled = false;
13680
+ onCleanup(() => {
13681
+ cancelled = true;
13682
+ });
13683
+ const nextLabel = await unref(getValueLabel)(nextValue);
13684
+ if (!cancelled) valueLabel.value = nextLabel ?? void 0;
13687
13685
  }, {
13688
13686
  deep: true,
13689
13687
  immediate: true
@@ -13901,7 +13899,7 @@ var FluxMenuSubHeader_default = /* @__PURE__ */ defineComponent({
13901
13899
  //#region src/component/primitive/FilterOptionBase.vue
13902
13900
  var FilterOptionBase_default = /* @__PURE__ */ defineComponent({
13903
13901
  __name: "FilterOptionBase",
13904
- props: /* @__PURE__ */ mergeModels({
13902
+ props: /*@__PURE__*/ mergeModels({
13905
13903
  isLoading: { type: Boolean },
13906
13904
  isSearchable: { type: Boolean },
13907
13905
  options: {},
@@ -13911,7 +13909,7 @@ var FilterOptionBase_default = /* @__PURE__ */ defineComponent({
13911
13909
  "searchQuery": { default: "" },
13912
13910
  "searchQueryModifiers": {}
13913
13911
  }),
13914
- emits: /* @__PURE__ */ mergeModels(["select"], ["update:searchQuery"]),
13912
+ emits: /*@__PURE__*/ mergeModels(["select"], ["update:searchQuery"]),
13915
13913
  setup(__props, { emit: __emit }) {
13916
13914
  const emit = __emit;
13917
13915
  const modelSearch = useModel(__props, "searchQuery");
@@ -13981,7 +13979,7 @@ var INITIAL_HIGHLIGHTED_INDEX = -1;
13981
13979
  var SelectBase_default = /* @__PURE__ */ defineComponent({
13982
13980
  inheritAttrs: false,
13983
13981
  __name: "SelectBase",
13984
- props: /* @__PURE__ */ mergeModels({
13982
+ props: /*@__PURE__*/ mergeModels({
13985
13983
  disabled: { type: Boolean },
13986
13984
  isLoading: { type: Boolean },
13987
13985
  isMultiple: { type: Boolean },
@@ -13993,7 +13991,7 @@ var SelectBase_default = /* @__PURE__ */ defineComponent({
13993
13991
  "searchQuery": { default: "" },
13994
13992
  "searchQueryModifiers": {}
13995
13993
  }),
13996
- emits: /* @__PURE__ */ mergeModels([
13994
+ emits: /*@__PURE__*/ mergeModels([
13997
13995
  "keyDown",
13998
13996
  "deselect",
13999
13997
  "select",
@@ -14624,7 +14622,7 @@ var VNodeRenderer = defineComponent({
14624
14622
  //#region src/component/FluxFormSlider.vue
14625
14623
  var FluxFormSlider_default = /* @__PURE__ */ defineComponent({
14626
14624
  __name: "FluxFormSlider",
14627
- props: /* @__PURE__ */ mergeModels({
14625
+ props: /*@__PURE__*/ mergeModels({
14628
14626
  disabled: {
14629
14627
  type: Boolean,
14630
14628
  default: false
@@ -14829,7 +14827,7 @@ var _hoisted_1$38 = ["aria-disabled", "aria-label"];
14829
14827
  //#region src/component/primitive/CoordinatePicker.vue
14830
14828
  var CoordinatePicker_default = /* @__PURE__ */ defineComponent({
14831
14829
  __name: "CoordinatePicker",
14832
- props: /* @__PURE__ */ mergeModels({
14830
+ props: /*@__PURE__*/ mergeModels({
14833
14831
  ariaLabel: {},
14834
14832
  disabled: { type: Boolean },
14835
14833
  max: { default: 100 },
@@ -14839,7 +14837,7 @@ var CoordinatePicker_default = /* @__PURE__ */ defineComponent({
14839
14837
  "modelValue": { default: [0, 0] },
14840
14838
  "modelModifiers": {}
14841
14839
  }),
14842
- emits: /* @__PURE__ */ mergeModels(["dragging"], ["update:modelValue"]),
14840
+ emits: /*@__PURE__*/ mergeModels(["dragging"], ["update:modelValue"]),
14843
14841
  setup(__props, { emit: __emit }) {
14844
14842
  const emit = __emit;
14845
14843
  const modelValue = useModel(__props, "modelValue");
@@ -14952,7 +14950,7 @@ var Color_module_default = {
14952
14950
  //#region src/component/FluxColorPicker.vue
14953
14951
  var FluxColorPicker_default = /* @__PURE__ */ defineComponent({
14954
14952
  __name: "FluxColorPicker",
14955
- props: /* @__PURE__ */ mergeModels({
14953
+ props: /*@__PURE__*/ mergeModels({
14956
14954
  isAlphaEnabled: { type: Boolean },
14957
14955
  type: { default: "hex" }
14958
14956
  }, {
@@ -15000,9 +14998,9 @@ var FluxColorPicker_default = /* @__PURE__ */ defineComponent({
15000
14998
  });
15001
14999
  const saturationValue = computed({
15002
15000
  get: () => [unref(saturation), unref(value)],
15003
- set: ([s, v]) => {
15004
- saturation.value = s;
15005
- value.value = v;
15001
+ set: ([nextSaturation, nextValue]) => {
15002
+ saturation.value = nextSaturation;
15003
+ value.value = nextValue;
15006
15004
  }
15007
15005
  });
15008
15006
  const saturationPickerColor = computed(() => {
@@ -15310,7 +15308,7 @@ var _hoisted_1$37 = [
15310
15308
  "tabindex",
15311
15309
  "onClick"
15312
15310
  ];
15313
- var _hoisted_2$14 = [
15311
+ var _hoisted_2$13 = [
15314
15312
  "disabled",
15315
15313
  "tabindex",
15316
15314
  "aria-label",
@@ -15320,7 +15318,7 @@ var _hoisted_2$14 = [
15320
15318
  //#region src/component/FluxColorSelect.vue
15321
15319
  var FluxColorSelect_default = /* @__PURE__ */ defineComponent({
15322
15320
  __name: "FluxColorSelect",
15323
- props: /* @__PURE__ */ mergeModels({
15321
+ props: /*@__PURE__*/ mergeModels({
15324
15322
  colors: { default: () => [
15325
15323
  oe,
15326
15324
  _e,
@@ -15390,7 +15388,7 @@ var FluxColorSelect_default = /* @__PURE__ */ defineComponent({
15390
15388
  }, [createVNode(FluxIcon_default, {
15391
15389
  name: "ellipsis-h",
15392
15390
  size: 16
15393
- })], 10, _hoisted_2$14)]),
15391
+ })], 10, _hoisted_2$13)]),
15394
15392
  default: withCtx(({ close }) => [createVNode(FluxColorPicker_default, {
15395
15393
  modelValue: customColor.value,
15396
15394
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => customColor.value = $event),
@@ -15434,7 +15432,7 @@ var FluxContainer_default = /* @__PURE__ */ defineComponent({
15434
15432
  //#region src/component/FluxFormSelect.vue
15435
15433
  var FluxFormSelect_default = /* @__PURE__ */ defineComponent({
15436
15434
  __name: "FluxFormSelect",
15437
- props: /* @__PURE__ */ mergeModels({
15435
+ props: /*@__PURE__*/ mergeModels({
15438
15436
  autoFocus: { type: Boolean },
15439
15437
  disabled: { type: Boolean },
15440
15438
  error: {},
@@ -15498,15 +15496,15 @@ var FluxFormSelect_default = /* @__PURE__ */ defineComponent({
15498
15496
  });
15499
15497
  //#endregion
15500
15498
  //#region src/css/component/Pagination.module.scss
15501
- var { "secondaryButton": _0$8, "secondaryButtonIcon": _1$2, "secondaryButtonLabel": _2$1 } = Button_module_default;
15499
+ var { "secondaryButtonIcon": _0$8, "secondaryButton": _1$2, "secondaryButtonLabel": _2$1 } = Button_module_default;
15502
15500
  var Pagination_module_default = {
15503
15501
  pagination: `pagination`,
15504
- paginationButton: `pagination-button ${_0$8}`,
15502
+ paginationButton: `pagination-button ${_1$2}`,
15505
15503
  secondaryButton: `secondary-button`,
15506
15504
  paginationButtonArrow: `pagination-button-arrow`,
15507
15505
  paginationButtonCurrent: `pagination-button-current`,
15508
15506
  paginationButtonSpacer: `pagination-button-spacer`,
15509
- paginationButtonIcon: `pagination-button-icon ${_1$2}`,
15507
+ paginationButtonIcon: `pagination-button-icon ${_0$8}`,
15510
15508
  paginationButtonLabel: `pagination-button-label ${_2$1}`,
15511
15509
  paginationBar: `pagination-bar`,
15512
15510
  paginationBarLimit: `pagination-bar-limit`,
@@ -15643,9 +15641,9 @@ var FluxPagination_default = /* @__PURE__ */ defineComponent({
15643
15641
  message: translate("flux.paginationNavigateMessage"),
15644
15642
  fieldLabel: translate("flux.paginationNavigatePage")
15645
15643
  });
15646
- const page = Number(pageStr);
15647
- if (isNaN(page) || page > unref(pages) || page <= 0) return;
15648
- navigate(page);
15644
+ const target = Number(pageStr);
15645
+ if (isNaN(target) || target > unref(pages) || target <= 0) return;
15646
+ navigate(target);
15649
15647
  }
15650
15648
  return (_ctx, _cache) => {
15651
15649
  return openBlock(), createElementBlock("nav", {
@@ -15684,7 +15682,7 @@ var FluxPagination_default = /* @__PURE__ */ defineComponent({
15684
15682
  ]))], 64);
15685
15683
  }), 256)) : (openBlock(), createBlock(FluxPaginationButton_default, {
15686
15684
  key: 2,
15687
- class: normalizeClass(unref(Pagination_module_default).paginationCurrentZZ),
15685
+ "is-current": "",
15688
15686
  onClick: prompt
15689
15687
  }, {
15690
15688
  before: withCtx(() => [
@@ -15693,7 +15691,7 @@ var FluxPagination_default = /* @__PURE__ */ defineComponent({
15693
15691
  createElementVNode("span", null, toDisplayString(pages.value), 1)
15694
15692
  ]),
15695
15693
  _: 1
15696
- }, 8, ["class"])),
15694
+ })),
15697
15695
  __props.arrows || __props.isCompact ? (openBlock(), createBlock(FluxPaginationButton_default, {
15698
15696
  key: 3,
15699
15697
  disabled: isNextDisabled.value,
@@ -15834,8 +15832,8 @@ var FluxTableRow_default = /* @__PURE__ */ defineComponent({
15834
15832
  //#endregion
15835
15833
  //#region src/component/FluxTable.vue?vue&type=script&setup=true&lang.ts
15836
15834
  var _hoisted_1$35 = { key: 0 };
15837
- var _hoisted_2$13 = { key: 1 };
15838
- var _hoisted_3$5 = { key: 2 };
15835
+ var _hoisted_2$12 = { key: 1 };
15836
+ var _hoisted_3$3 = { key: 2 };
15839
15837
  //#endregion
15840
15838
  //#region src/component/FluxTable.vue
15841
15839
  var FluxTable_default = /* @__PURE__ */ defineComponent({
@@ -15883,16 +15881,16 @@ var FluxTable_default = /* @__PURE__ */ defineComponent({
15883
15881
  createElementVNode("table", { class: normalizeClass(unref(Table_module_default).tableBase) }, [
15884
15882
  renderSlot(_ctx.$slots, "colgroups"),
15885
15883
  slots.header ? (openBlock(), createElementBlock("thead", _hoisted_1$35, [renderSlot(_ctx.$slots, "header")])) : createCommentVNode("", true),
15886
- slots.default ? (openBlock(), createElementBlock("tbody", _hoisted_2$13, [renderSlot(_ctx.$slots, "default"), __props.fillColumns ? (openBlock(), createBlock(FluxTableRow_default, {
15884
+ slots.default ? (openBlock(), createElementBlock("tbody", _hoisted_2$12, [renderSlot(_ctx.$slots, "default"), __props.fillColumns ? (openBlock(), createBlock(FluxTableRow_default, {
15887
15885
  key: 0,
15888
15886
  class: normalizeClass(unref(Table_module_default).tableFill)
15889
15887
  }, {
15890
- default: withCtx(() => [(openBlock(true), createElementBlock(Fragment, null, renderList(__props.fillColumns, (_) => {
15891
- return openBlock(), createBlock(FluxTableCell_default);
15892
- }), 256))]),
15888
+ default: withCtx(() => [(openBlock(true), createElementBlock(Fragment, null, renderList(__props.fillColumns, (n) => {
15889
+ return openBlock(), createBlock(FluxTableCell_default, { key: n });
15890
+ }), 128))]),
15893
15891
  _: 1
15894
15892
  }, 8, ["class"])) : createCommentVNode("", true)])) : createCommentVNode("", true),
15895
- slots.footer ? (openBlock(), createElementBlock("tfoot", _hoisted_3$5, [renderSlot(_ctx.$slots, "footer")])) : createCommentVNode("", true),
15893
+ slots.footer ? (openBlock(), createElementBlock("tfoot", _hoisted_3$3, [renderSlot(_ctx.$slots, "footer")])) : createCommentVNode("", true),
15896
15894
  slots.caption ? (openBlock(), createElementBlock("caption", {
15897
15895
  key: 3,
15898
15896
  style: normalizeStyle({ captionSide: __props.captionSide })
@@ -15917,7 +15915,7 @@ var FluxTable_default = /* @__PURE__ */ defineComponent({
15917
15915
  //#endregion
15918
15916
  //#region src/component/FluxTableHeader.vue?vue&type=script&setup=true&lang.ts
15919
15917
  var _hoisted_1$34 = ["aria-sort"];
15920
- var _hoisted_2$12 = ["aria-label", "onClick"];
15918
+ var _hoisted_2$11 = ["aria-label", "onClick"];
15921
15919
  //#endregion
15922
15920
  //#region src/component/FluxTableHeader.vue
15923
15921
  var FluxTableHeader_default = /* @__PURE__ */ defineComponent({
@@ -15956,7 +15954,7 @@ var FluxTableHeader_default = /* @__PURE__ */ defineComponent({
15956
15954
  }, [createVNode(FluxIcon_default, {
15957
15955
  size: 16,
15958
15956
  name: sortingIcon.value
15959
- }, null, 8, ["name"])], 10, _hoisted_2$12)]),
15957
+ }, null, 8, ["name"])], 10, _hoisted_2$11)]),
15960
15958
  default: withCtx(() => [createVNode(FluxMenu_default, null, {
15961
15959
  default: withCtx(() => [createVNode(FluxMenuGroup_default, null, {
15962
15960
  default: withCtx(() => [createVNode(FluxMenuItem_default, {
@@ -15991,7 +15989,7 @@ var FluxTableHeader_default = /* @__PURE__ */ defineComponent({
15991
15989
  //#region src/component/FluxDataTable.vue
15992
15990
  var FluxDataTable_default = /* @__PURE__ */ defineComponent({
15993
15991
  __name: "FluxDataTable",
15994
- props: /* @__PURE__ */ mergeModels({
15992
+ props: /*@__PURE__*/ mergeModels({
15995
15993
  fillColumns: {},
15996
15994
  isBordered: {
15997
15995
  type: Boolean,
@@ -16024,7 +16022,7 @@ var FluxDataTable_default = /* @__PURE__ */ defineComponent({
16024
16022
  "selected": {},
16025
16023
  "selectedModifiers": {}
16026
16024
  }),
16027
- emits: /* @__PURE__ */ mergeModels(["limit", "navigate"], ["update:selected"]),
16025
+ emits: /*@__PURE__*/ mergeModels(["limit", "navigate"], ["update:selected"]),
16028
16026
  setup(__props, { emit: __emit }) {
16029
16027
  const IGNORED_SLOTS = [
16030
16028
  "filter",
@@ -16274,12 +16272,12 @@ var _hoisted_1$32 = [
16274
16272
  "width",
16275
16273
  "height"
16276
16274
  ];
16277
- var _hoisted_2$11 = [
16275
+ var _hoisted_2$10 = [
16278
16276
  "r",
16279
16277
  "cx",
16280
16278
  "cy"
16281
16279
  ];
16282
- var _hoisted_3$4 = ["fill"];
16280
+ var _hoisted_3$2 = ["fill"];
16283
16281
  //#endregion
16284
16282
  //#region src/component/FluxDotPattern.vue
16285
16283
  var FluxDotPattern_default = /* @__PURE__ */ defineComponent({
@@ -16324,12 +16322,12 @@ var FluxDotPattern_default = /* @__PURE__ */ defineComponent({
16324
16322
  r: __props.cr,
16325
16323
  cx: __props.width / 2 - __props.cx,
16326
16324
  cy: __props.height / 2 - __props.cy
16327
- }, null, 8, _hoisted_2$11)], 8, _hoisted_1$32)]), createElementVNode("rect", {
16325
+ }, null, 8, _hoisted_2$10)], 8, _hoisted_1$32)]), createElementVNode("rect", {
16328
16326
  width: "100%",
16329
16327
  height: "100%",
16330
16328
  "stroke-width": "0",
16331
16329
  fill: `url(#${unref(id)})`
16332
- }, null, 8, _hoisted_3$4)], 2);
16330
+ }, null, 8, _hoisted_3$2)], 2);
16333
16331
  };
16334
16332
  }
16335
16333
  });
@@ -16352,7 +16350,7 @@ var _hoisted_1$31 = [
16352
16350
  "aria-label",
16353
16351
  "tabindex"
16354
16352
  ];
16355
- var _hoisted_2$10 = ["pathLength"];
16353
+ var _hoisted_2$9 = ["pathLength"];
16356
16354
  //#endregion
16357
16355
  //#region src/component/FluxDropZone.vue
16358
16356
  var FluxDropZone_default = /* @__PURE__ */ defineComponent({
@@ -16466,7 +16464,7 @@ var FluxDropZone_default = /* @__PURE__ */ defineComponent({
16466
16464
  "stroke-linecap": "round",
16467
16465
  "stroke-linejoin": "round",
16468
16466
  pathLength: pathLength.value
16469
- }, null, 8, _hoisted_2$10)], 2)),
16467
+ }, null, 8, _hoisted_2$9)], 2)),
16470
16468
  renderSlot(_ctx.$slots, "default", normalizeProps(guardReactiveProps({
16471
16469
  isDragging: isDragging.value,
16472
16470
  isDraggingOver: isDraggingOver.value,
@@ -16528,7 +16526,7 @@ var _hoisted_1$30 = [
16528
16526
  "aria-controls",
16529
16527
  "aria-expanded"
16530
16528
  ];
16531
- var _hoisted_2$9 = ["id", "aria-labelledby"];
16529
+ var _hoisted_2$8 = ["id", "aria-labelledby"];
16532
16530
  //#endregion
16533
16531
  //#region src/component/FluxExpandable.vue
16534
16532
  var FluxExpandable_default = /* @__PURE__ */ defineComponent({
@@ -16619,7 +16617,7 @@ var FluxExpandable_default = /* @__PURE__ */ defineComponent({
16619
16617
  })), () => [createElementVNode("div", { class: normalizeClass(unref(Expandable_module_default).expandableContent) }, [renderSlot(_ctx.$slots, "default", normalizeProps(guardReactiveProps({
16620
16618
  label: __props.label,
16621
16619
  close
16622
- })))], 2)])], 10, _hoisted_2$9)) : createCommentVNode("", true)]),
16620
+ })))], 2)])], 10, _hoisted_2$8)) : createCommentVNode("", true)]),
16623
16621
  _: 3
16624
16622
  })], 10, _hoisted_1$30);
16625
16623
  };
@@ -16721,7 +16719,7 @@ var FluxFilterBase_default = /* @__PURE__ */ defineComponent({
16721
16719
  "modelValue": { required: true },
16722
16720
  "modelModifiers": {}
16723
16721
  },
16724
- emits: /* @__PURE__ */ mergeModels([
16722
+ emits: /*@__PURE__*/ mergeModels([
16725
16723
  "back",
16726
16724
  "clear",
16727
16725
  "reset"
@@ -16736,41 +16734,41 @@ var FluxFilterBase_default = /* @__PURE__ */ defineComponent({
16736
16734
  }
16737
16735
  const flattenedFilters = computed(() => a$2(slots.filters?.() ?? []));
16738
16736
  const buttons = computed(() => {
16739
- const buttons = {};
16737
+ const result = {};
16740
16738
  const items = unref(flattenedFilters);
16741
16739
  for (const item of items) {
16742
16740
  const definition = resolveDefinition(item);
16743
16741
  if (!definition) continue;
16744
- buttons[definition.name] = definition;
16742
+ result[definition.name] = definition;
16745
16743
  }
16746
- return buttons;
16744
+ return result;
16747
16745
  });
16748
16746
  const filters = computed(() => {
16749
- const filters = {};
16747
+ const result = {};
16750
16748
  const items = unref(flattenedFilters);
16751
16749
  for (const item of items) {
16752
16750
  const definition = resolveDefinition(item);
16753
16751
  if (!definition) continue;
16754
- filters[definition.name] = item;
16752
+ result[definition.name] = item;
16755
16753
  }
16756
- return filters;
16754
+ return result;
16757
16755
  });
16758
16756
  const menuItems = computed(() => {
16759
- const menuItems = [[]];
16757
+ const result = [[]];
16760
16758
  const items = unref(flattenedFilters);
16761
16759
  for (const item of items) {
16762
16760
  if (f$3(item) === "FluxSeparator") {
16763
- menuItems.push([]);
16761
+ result.push([]);
16764
16762
  continue;
16765
16763
  }
16766
16764
  const definition = resolveDefinition(item);
16767
16765
  if (definition) {
16768
- menuItems[menuItems.length - 1].push(definition);
16766
+ result[result.length - 1].push(definition);
16769
16767
  continue;
16770
16768
  }
16771
- menuItems[menuItems.length - 1].push(item);
16769
+ result[result.length - 1].push(item);
16772
16770
  }
16773
- return menuItems;
16771
+ return result;
16774
16772
  });
16775
16773
  watchEffect(() => {
16776
16774
  const state = unref(modelValue);
@@ -16947,7 +16945,7 @@ var FluxFilter_default = /* @__PURE__ */ defineComponent({
16947
16945
  "modelValue": { required: true },
16948
16946
  "modelModifiers": {}
16949
16947
  },
16950
- emits: /* @__PURE__ */ mergeModels(["clear", "reset"], ["update:modelValue"]),
16948
+ emits: /*@__PURE__*/ mergeModels(["clear", "reset"], ["update:modelValue"]),
16951
16949
  setup(__props, { emit: __emit }) {
16952
16950
  const emit = __emit;
16953
16951
  const modelValue = useModel(__props, "modelValue");
@@ -17068,7 +17066,7 @@ var FluxOverflowBar_default = /* @__PURE__ */ defineComponent({
17068
17066
  //#region src/component/FluxFilterBar.vue
17069
17067
  var FluxFilterBar_default = /* @__PURE__ */ defineComponent({
17070
17068
  __name: "FluxFilterBar",
17071
- props: /* @__PURE__ */ mergeModels({
17069
+ props: /*@__PURE__*/ mergeModels({
17072
17070
  isSearchable: { type: Boolean },
17073
17071
  searchPlaceholder: {}
17074
17072
  }, {
@@ -17077,7 +17075,7 @@ var FluxFilterBar_default = /* @__PURE__ */ defineComponent({
17077
17075
  "modelValue": { required: true },
17078
17076
  "modelModifiers": {}
17079
17077
  }),
17080
- emits: /* @__PURE__ */ mergeModels(["clear", "reset"], ["update:search", "update:modelValue"]),
17078
+ emits: /*@__PURE__*/ mergeModels(["clear", "reset"], ["update:search", "update:modelValue"]),
17081
17079
  setup(__props, { emit: __emit }) {
17082
17080
  const emit = __emit;
17083
17081
  const modelSearch = useModel(__props, "search");
@@ -17345,7 +17343,7 @@ var FluxFilterOption_default = /* @__PURE__ */ defineComponent({
17345
17343
  };
17346
17344
  }),
17347
17345
  __name: "FluxFilterOption",
17348
- props: /* @__PURE__ */ mergeModels({
17346
+ props: /*@__PURE__*/ mergeModels({
17349
17347
  icon: {},
17350
17348
  label: {},
17351
17349
  name: {},
@@ -17403,7 +17401,7 @@ var FluxFilterOptionAsync_default = /* @__PURE__ */ defineComponent({
17403
17401
  }
17404
17402
  })),
17405
17403
  __name: "FluxFilterOptionAsync",
17406
- props: /* @__PURE__ */ mergeModels({
17404
+ props: /*@__PURE__*/ mergeModels({
17407
17405
  icon: {},
17408
17406
  label: {},
17409
17407
  name: {},
@@ -17478,7 +17476,7 @@ var FluxFilterOptions_default = /* @__PURE__ */ defineComponent({
17478
17476
  };
17479
17477
  }),
17480
17478
  __name: "FluxFilterOptions",
17481
- props: /* @__PURE__ */ mergeModels({
17479
+ props: /*@__PURE__*/ mergeModels({
17482
17480
  icon: {},
17483
17481
  label: {},
17484
17482
  name: {},
@@ -17540,7 +17538,7 @@ var FluxFilterOptionsAsync_default = /* @__PURE__ */ defineComponent({
17540
17538
  };
17541
17539
  }),
17542
17540
  __name: "FluxFilterOptionsAsync",
17543
- props: /* @__PURE__ */ mergeModels({
17541
+ props: /*@__PURE__*/ mergeModels({
17544
17542
  icon: {},
17545
17543
  label: {},
17546
17544
  name: {},
@@ -17845,7 +17843,7 @@ var _hoisted_1$29 = ["src"];
17845
17843
  //#region src/component/FluxFocalPointEditor.vue
17846
17844
  var FluxFocalPointEditor_default = /* @__PURE__ */ defineComponent({
17847
17845
  __name: "FluxFocalPointEditor",
17848
- props: /* @__PURE__ */ mergeModels({ src: {} }, {
17846
+ props: /*@__PURE__*/ mergeModels({ src: {} }, {
17849
17847
  "modelValue": { required: true },
17850
17848
  "modelModifiers": {}
17851
17849
  }),
@@ -18011,7 +18009,7 @@ var FluxFormInputGroup_default = /* @__PURE__ */ defineComponent({
18011
18009
  //#region src/component/FluxFormDateInput.vue
18012
18010
  var FluxFormDateInput_default = /* @__PURE__ */ defineComponent({
18013
18011
  __name: "FluxFormDateInput",
18014
- props: /* @__PURE__ */ mergeModels({
18012
+ props: /*@__PURE__*/ mergeModels({
18015
18013
  autoFocus: { type: Boolean },
18016
18014
  disabled: { type: Boolean },
18017
18015
  error: {},
@@ -18028,7 +18026,7 @@ var FluxFormDateInput_default = /* @__PURE__ */ defineComponent({
18028
18026
  "modelValue": { default: null },
18029
18027
  "modelModifiers": {}
18030
18028
  }),
18031
- emits: /* @__PURE__ */ mergeModels(["blur", "focus"], ["update:modelValue"]),
18029
+ emits: /*@__PURE__*/ mergeModels(["blur", "focus"], ["update:modelValue"]),
18032
18030
  setup(__props, { emit: __emit }) {
18033
18031
  const emit = __emit;
18034
18032
  const modelValue = useModel(__props, "modelValue");
@@ -18103,7 +18101,7 @@ var _hoisted_1$26 = { key: 0 };
18103
18101
  //#region src/component/FluxFormDateRangeInput.vue
18104
18102
  var FluxFormDateRangeInput_default = /* @__PURE__ */ defineComponent({
18105
18103
  __name: "FluxFormDateRangeInput",
18106
- props: /* @__PURE__ */ mergeModels({
18104
+ props: /*@__PURE__*/ mergeModels({
18107
18105
  autoFocus: { type: Boolean },
18108
18106
  disabled: { type: Boolean },
18109
18107
  error: {},
@@ -18179,7 +18177,7 @@ var FluxFormDateRangeInput_default = /* @__PURE__ */ defineComponent({
18179
18177
  //#region src/component/FluxFormDateTimeInput.vue
18180
18178
  var FluxFormDateTimeInput_default = /* @__PURE__ */ defineComponent({
18181
18179
  __name: "FluxFormDateTimeInput",
18182
- props: /* @__PURE__ */ mergeModels({
18180
+ props: /*@__PURE__*/ mergeModels({
18183
18181
  autoFocus: { type: Boolean },
18184
18182
  disabled: { type: Boolean },
18185
18183
  error: {},
@@ -18348,7 +18346,7 @@ var _hoisted_1$24 = [
18348
18346
  "aria-disabled",
18349
18347
  "aria-invalid"
18350
18348
  ];
18351
- var _hoisted_2$8 = [
18349
+ var _hoisted_2$7 = [
18352
18350
  "aria-label",
18353
18351
  "autocomplete",
18354
18352
  "autofocus",
@@ -18362,7 +18360,7 @@ var _hoisted_2$8 = [
18362
18360
  //#region src/component/FluxFormPinInput.vue
18363
18361
  var FluxFormPinInput_default = /* @__PURE__ */ defineComponent({
18364
18362
  __name: "FluxFormPinInput",
18365
- props: /* @__PURE__ */ mergeModels({
18363
+ props: /*@__PURE__*/ mergeModels({
18366
18364
  autoFocus: {
18367
18365
  type: Boolean,
18368
18366
  default: false
@@ -18464,7 +18462,7 @@ var FluxFormPinInput_default = /* @__PURE__ */ defineComponent({
18464
18462
  onInput,
18465
18463
  onKeydown: onKeyDown,
18466
18464
  onPaste
18467
- }, null, 42, _hoisted_2$8);
18465
+ }, null, 42, _hoisted_2$7);
18468
18466
  }), 128))], 14, _hoisted_1$24);
18469
18467
  };
18470
18468
  }
@@ -18473,7 +18471,7 @@ var FluxFormPinInput_default = /* @__PURE__ */ defineComponent({
18473
18471
  //#region src/component/FluxFormRangeSlider.vue
18474
18472
  var FluxFormRangeSlider_default = /* @__PURE__ */ defineComponent({
18475
18473
  __name: "FluxFormRangeSlider",
18476
- props: /* @__PURE__ */ mergeModels({
18474
+ props: /*@__PURE__*/ mergeModels({
18477
18475
  disabled: { type: Boolean },
18478
18476
  error: {},
18479
18477
  isLoading: { type: Boolean },
@@ -18665,7 +18663,7 @@ var FluxFormSection_default = /* @__PURE__ */ defineComponent({
18665
18663
  //#region src/component/FluxFormSelectAsync.vue
18666
18664
  var FluxFormSelectAsync_default = /* @__PURE__ */ defineComponent({
18667
18665
  __name: "FluxFormSelectAsync",
18668
- props: /* @__PURE__ */ mergeModels({
18666
+ props: /*@__PURE__*/ mergeModels({
18669
18667
  autoFocus: { type: Boolean },
18670
18668
  disabled: { type: Boolean },
18671
18669
  error: {},
@@ -18778,7 +18776,7 @@ var _hoisted_1$23 = [
18778
18776
  //#region src/component/FluxFormTextArea.vue
18779
18777
  var FluxFormTextArea_default = /* @__PURE__ */ defineComponent({
18780
18778
  __name: "FluxFormTextArea",
18781
- props: /* @__PURE__ */ mergeModels({
18779
+ props: /*@__PURE__*/ mergeModels({
18782
18780
  autoFocus: {
18783
18781
  type: Boolean,
18784
18782
  default: false
@@ -18798,7 +18796,7 @@ var FluxFormTextArea_default = /* @__PURE__ */ defineComponent({
18798
18796
  "modelValue": { default: "" },
18799
18797
  "modelModifiers": {}
18800
18798
  }),
18801
- emits: /* @__PURE__ */ mergeModels(["blur", "focus"], ["update:modelValue"]),
18799
+ emits: /*@__PURE__*/ mergeModels(["blur", "focus"], ["update:modelValue"]),
18802
18800
  setup(__props, { emit: __emit }) {
18803
18801
  const emit = __emit;
18804
18802
  const modelValue = useModel(__props, "modelValue");
@@ -19449,7 +19447,7 @@ var TIME_ZONE_GROUP_ORDER = [
19449
19447
  //#region src/component/FluxFormTimeZonePicker.vue
19450
19448
  var FluxFormTimeZonePicker_default = /* @__PURE__ */ defineComponent({
19451
19449
  __name: "FluxFormTimeZonePicker",
19452
- props: /* @__PURE__ */ mergeModels({
19450
+ props: /*@__PURE__*/ mergeModels({
19453
19451
  autoFocus: { type: Boolean },
19454
19452
  disabled: { type: Boolean },
19455
19453
  error: {},
@@ -19562,7 +19560,7 @@ var _hoisted_1$22 = [
19562
19560
  var FluxFormTreeViewSelect_default = /* @__PURE__ */ defineComponent({
19563
19561
  inheritAttrs: false,
19564
19562
  __name: "FluxFormTreeViewSelect",
19565
- props: /* @__PURE__ */ mergeModels({
19563
+ props: /*@__PURE__*/ mergeModels({
19566
19564
  autoFocus: { type: Boolean },
19567
19565
  disabled: { type: Boolean },
19568
19566
  error: {},
@@ -20060,8 +20058,8 @@ var _hoisted_1$19 = [
20060
20058
  "width",
20061
20059
  "height"
20062
20060
  ];
20063
- var _hoisted_2$7 = ["d", "stroke-dasharray"];
20064
- var _hoisted_3$3 = ["fill"];
20061
+ var _hoisted_2$6 = ["d", "stroke-dasharray"];
20062
+ var _hoisted_3$1 = ["fill"];
20065
20063
  var _hoisted_4 = {
20066
20064
  key: 0,
20067
20065
  style: { "overflow": "visible" }
@@ -20100,13 +20098,13 @@ var FluxGridPattern_default = /* @__PURE__ */ defineComponent({
20100
20098
  d: `M.5 ${__props.height}V.5H${__props.width}`,
20101
20099
  fill: "none",
20102
20100
  "stroke-dasharray": __props.strokeDasharray
20103
- }, null, 8, _hoisted_2$7)], 8, _hoisted_1$19)]),
20101
+ }, null, 8, _hoisted_2$6)], 8, _hoisted_1$19)]),
20104
20102
  createElementVNode("rect", {
20105
20103
  width: "100%",
20106
20104
  height: "100%",
20107
20105
  "stroke-width": "0",
20108
20106
  fill: `url(#${unref(id)})`
20109
- }, null, 8, _hoisted_3$3),
20107
+ }, null, 8, _hoisted_3$1),
20110
20108
  __props.squares ? (openBlock(), createElementBlock("svg", _hoisted_4, [(openBlock(true), createElementBlock(Fragment, null, renderList(__props.squares, ([x, y]) => {
20111
20109
  return openBlock(), createElementBlock("rect", {
20112
20110
  key: `${x}-${y}`,
@@ -20241,7 +20239,7 @@ var FluxKanban_default = /* @__PURE__ */ defineComponent({
20241
20239
  //#endregion
20242
20240
  //#region src/component/FluxKanbanColumn.vue?vue&type=script&setup=true&lang.ts
20243
20241
  var _hoisted_1$17 = ["aria-label", "aria-disabled"];
20244
- var _hoisted_2$6 = ["draggable", "tabindex"];
20242
+ var _hoisted_2$5 = ["draggable", "tabindex"];
20245
20243
  //#endregion
20246
20244
  //#region src/component/FluxKanbanColumn.vue
20247
20245
  var FluxKanbanColumn_default = /* @__PURE__ */ defineComponent({
@@ -20393,7 +20391,7 @@ var FluxKanbanColumn_default = /* @__PURE__ */ defineComponent({
20393
20391
  key: 1,
20394
20392
  label: String(__props.count)
20395
20393
  }, null, 8, ["label"])) : createCommentVNode("", true)
20396
- ], 2), renderSlot(_ctx.$slots, "actions")], 42, _hoisted_2$6),
20394
+ ], 2), renderSlot(_ctx.$slots, "actions")], 42, _hoisted_2$5),
20397
20395
  createElementVNode("main", {
20398
20396
  ref_key: "body",
20399
20397
  ref: body,
@@ -20421,7 +20419,7 @@ var FluxKanbanColumn_default = /* @__PURE__ */ defineComponent({
20421
20419
  hasFooter.value ? (openBlock(), createElementBlock("footer", {
20422
20420
  key: 0,
20423
20421
  class: normalizeClass(unref(Kanban_module_default).kanbanColumnFooter)
20424
- }, [hasFooter.value ? renderSlot(_ctx.$slots, "footer", { key: 0 }) : createCommentVNode("", true)], 2)) : createCommentVNode("", true)
20422
+ }, [renderSlot(_ctx.$slots, "footer")], 2)) : createCommentVNode("", true)
20425
20423
  ], 10, _hoisted_1$17);
20426
20424
  };
20427
20425
  }
@@ -20664,31 +20662,6 @@ var FluxLayerPaneSecondary_default = /* @__PURE__ */ defineComponent({
20664
20662
  };
20665
20663
  }
20666
20664
  });
20667
- var Legend_module_default = {
20668
- legendHorizontal: `legend-horizontal`,
20669
- legendVertical: `legend-vertical`,
20670
- legendItem: `legend-item`
20671
- };
20672
- //#endregion
20673
- //#region src/component/FluxLegend.vue
20674
- var FluxLegend_default = /* @__PURE__ */ defineComponent({
20675
- __name: "FluxLegend",
20676
- props: {
20677
- direction: { default: "horizontal" },
20678
- items: {}
20679
- },
20680
- setup(__props) {
20681
- return (_ctx, _cache) => {
20682
- return openBlock(), createElementBlock("div", { class: normalizeClass(__props.direction === "horizontal" ? unref(Legend_module_default).legendHorizontal : unref(Legend_module_default).legendVertical) }, [(openBlock(true), createElementBlock(Fragment, null, renderList(__props.items, (item, index) => {
20683
- return openBlock(), createElementBlock("span", {
20684
- key: index,
20685
- class: normalizeClass(unref(Legend_module_default).legendItem),
20686
- style: normalizeStyle({ "--color": item.color })
20687
- }, toDisplayString(item.label), 7);
20688
- }), 128))], 2);
20689
- };
20690
- }
20691
- });
20692
20665
  //#endregion
20693
20666
  //#region src/component/FluxLink.vue
20694
20667
  var FluxLink_default = /* @__PURE__ */ defineComponent({
@@ -20871,7 +20844,7 @@ var FluxMenuCollapsible_default = /* @__PURE__ */ defineComponent({
20871
20844
  //#region src/component/FluxMenuOptions.vue
20872
20845
  var FluxMenuOptions_default = /* @__PURE__ */ defineComponent({
20873
20846
  __name: "FluxMenuOptions",
20874
- props: /* @__PURE__ */ mergeModels({
20847
+ props: /*@__PURE__*/ mergeModels({
20875
20848
  isHorizontal: { type: Boolean },
20876
20849
  mode: { default: "highlight" }
20877
20850
  }, {
@@ -21272,45 +21245,6 @@ var FluxPaneMedia_default = /* @__PURE__ */ defineComponent({
21272
21245
  };
21273
21246
  }
21274
21247
  });
21275
- var PercentageBar_module_default = {
21276
- percentageBar: `percentage-bar`,
21277
- percentageBarSegment: `percentage-bar-segment`,
21278
- percentageBarTooltip: `percentage-bar-tooltip`,
21279
- percentageBarTrack: `percentage-bar-track`
21280
- };
21281
- //#endregion
21282
- //#region src/component/FluxPercentageBar.vue
21283
- var FluxPercentageBar_default = /* @__PURE__ */ defineComponent({
21284
- __name: "FluxPercentageBar",
21285
- props: {
21286
- isLegendVisible: { type: Boolean },
21287
- items: {}
21288
- },
21289
- setup(__props) {
21290
- return (_ctx, _cache) => {
21291
- return openBlock(), createElementBlock("div", { class: normalizeClass(unref(PercentageBar_module_default).percentageBar) }, [createElementVNode("div", { class: normalizeClass(unref(PercentageBar_module_default).percentageBarTrack) }, [(openBlock(true), createElementBlock(Fragment, null, renderList(__props.items, (item, index) => {
21292
- return openBlock(), createBlock(FluxTooltip_default, { key: index }, {
21293
- content: withCtx(() => [createElementVNode("div", { class: normalizeClass(unref(PercentageBar_module_default).percentageBarTooltip) }, [item.icon ? (openBlock(), createBlock(FluxIcon_default, {
21294
- key: 0,
21295
- name: item.icon,
21296
- size: 16
21297
- }, null, 8, ["name"])) : createCommentVNode("", true), createElementVNode("span", null, toDisplayString(unref(m$2)(item.value)) + " " + toDisplayString(item.label), 1)], 2)]),
21298
- default: withCtx(() => [createElementVNode("div", {
21299
- class: normalizeClass(unref(PercentageBar_module_default).percentageBarSegment),
21300
- style: normalizeStyle({
21301
- backgroundColor: item.color,
21302
- flexGrow: item.value
21303
- })
21304
- }, null, 6)]),
21305
- _: 2
21306
- }, 1024);
21307
- }), 128))], 2), __props.isLegendVisible ? (openBlock(), createBlock(FluxLegend_default, {
21308
- key: 0,
21309
- items: __props.items
21310
- }, null, 8, ["items"])) : createCommentVNode("", true)], 2);
21311
- };
21312
- }
21313
- });
21314
21248
  //#endregion
21315
21249
  //#region src/component/FluxPersona.vue?vue&type=script&setup=true&lang.ts
21316
21250
  var _hoisted_1$12 = { key: 0 };
@@ -21360,7 +21294,7 @@ var FluxPersona_default = /* @__PURE__ */ defineComponent({
21360
21294
  //#endregion
21361
21295
  //#region src/component/FluxPlaceholder.vue?vue&type=script&setup=true&lang.ts
21362
21296
  var _hoisted_1$11 = { key: 0 };
21363
- var _hoisted_2$5 = { key: 1 };
21297
+ var _hoisted_2$4 = { key: 1 };
21364
21298
  //#endregion
21365
21299
  //#region src/component/FluxPlaceholder.vue
21366
21300
  var FluxPlaceholder_default = /* @__PURE__ */ defineComponent({
@@ -21389,7 +21323,7 @@ var FluxPlaceholder_default = /* @__PURE__ */ defineComponent({
21389
21323
  class: normalizeClass(unref(Placeholder_module_default).placeholderIcon),
21390
21324
  name: __props.icon
21391
21325
  }, null, 8, ["class", "name"])) : createCommentVNode("", true),
21392
- createElementVNode("div", { class: normalizeClass(unref(Placeholder_module_default).placeholderCaption) }, [__props.title ? (openBlock(), createElementBlock("strong", _hoisted_1$11, toDisplayString(__props.title), 1)) : createCommentVNode("", true), __props.message ? (openBlock(), createElementBlock("p", _hoisted_2$5, toDisplayString(__props.message), 1)) : createCommentVNode("", true)], 2),
21326
+ createElementVNode("div", { class: normalizeClass(unref(Placeholder_module_default).placeholderCaption) }, [__props.title ? (openBlock(), createElementBlock("strong", _hoisted_1$11, toDisplayString(__props.title), 1)) : createCommentVNode("", true), __props.message ? (openBlock(), createElementBlock("p", _hoisted_2$4, toDisplayString(__props.message), 1)) : createCommentVNode("", true)], 2),
21393
21327
  renderSlot(_ctx.$slots, "default")
21394
21328
  ], 2);
21395
21329
  };
@@ -21625,7 +21559,7 @@ var _hoisted_1$10 = [
21625
21559
  //#region src/component/FluxQuantitySelector.vue
21626
21560
  var FluxQuantitySelector_default = /* @__PURE__ */ defineComponent({
21627
21561
  __name: "FluxQuantitySelector",
21628
- props: /* @__PURE__ */ mergeModels({
21562
+ props: /*@__PURE__*/ mergeModels({
21629
21563
  disabled: { type: Boolean },
21630
21564
  max: { default: 100 },
21631
21565
  min: { default: 0 },
@@ -22206,82 +22140,97 @@ var SegmentedControl_module_default = {
22206
22140
  segmentedControlHighlight: `segmented-control-highlight`,
22207
22141
  segmentedControlItem: `segmented-control-item`,
22208
22142
  isActive: `is-active`,
22209
- segmentedControlSeparator: `segmented-control-separator`
22143
+ isSmall: `is-small`,
22144
+ isMedium: `is-medium`,
22145
+ isLarge: `is-large`
22210
22146
  };
22211
22147
  //#endregion
22212
22148
  //#region src/component/FluxSegmentedControl.vue?vue&type=script&setup=true&lang.ts
22213
22149
  var _hoisted_1$7 = ["aria-label"];
22214
- var _hoisted_2$4 = [
22215
- "aria-checked",
22216
- "aria-label",
22217
- "tabindex",
22218
- "onClick"
22219
- ];
22220
- var _hoisted_3$2 = { key: 1 };
22221
22150
  //#endregion
22222
22151
  //#region src/component/FluxSegmentedControl.vue
22223
22152
  var FluxSegmentedControl_default = /* @__PURE__ */ defineComponent({
22224
22153
  __name: "FluxSegmentedControl",
22225
- props: /* @__PURE__ */ mergeModels({
22154
+ props: /*@__PURE__*/ mergeModels({
22226
22155
  ariaLabel: {},
22227
22156
  isFill: { type: Boolean },
22228
- items: {}
22157
+ size: { default: "medium" }
22229
22158
  }, {
22230
- "modelValue": { default: 0 },
22159
+ "modelValue": {},
22231
22160
  "modelModifiers": {}
22232
22161
  }),
22233
22162
  emits: ["update:modelValue"],
22234
22163
  setup(__props) {
22235
22164
  const modelValue = useModel(__props, "modelValue");
22236
22165
  const controlRef = useTemplateRef("control");
22237
- const itemRefs = useTemplateRef("items");
22238
22166
  const activeItemX = ref(0);
22239
22167
  const activeItemWidth = ref(0);
22240
- const isAlive = ref(true);
22241
- onBeforeUnmount(() => {
22242
- isAlive.value = false;
22168
+ const items = /* @__PURE__ */ new Map();
22169
+ provide(FluxSegmentedControlInjectionKey, {
22170
+ modelValue,
22171
+ size: toRef(() => __props.size),
22172
+ select,
22173
+ registerItem(element, value) {
22174
+ items.set(element, value);
22175
+ updateHighlight();
22176
+ },
22177
+ unregisterItem(element) {
22178
+ items.delete(element);
22179
+ updateHighlight();
22180
+ }
22243
22181
  });
22244
- watchEffect(() => updateHighlight(unref(modelValue)), { flush: "post" });
22245
- ye$1(controlRef, () => updateHighlight(unref(modelValue)));
22246
- function activate(index) {
22247
- modelValue.value = index;
22248
- (itemRefs.value?.[index])?.focus();
22182
+ onMounted(() => updateHighlight());
22183
+ watch(modelValue, () => updateHighlight(), { flush: "post" });
22184
+ he$1(controlRef, () => updateHighlight(), {
22185
+ childList: true,
22186
+ subtree: true
22187
+ });
22188
+ ye$1(controlRef, () => updateHighlight());
22189
+ function select(value) {
22190
+ modelValue.value = value;
22249
22191
  }
22250
22192
  function onKeyDown(evt) {
22251
- const items = itemRefs.value;
22252
- if (!items) return;
22253
- let newIndex = null;
22193
+ const control = controlRef.value;
22194
+ if (!control) return;
22195
+ const radios = Array.from(control.querySelectorAll("[role=radio]:not([disabled])"));
22196
+ if (radios.length === 0) return;
22197
+ const activeElement = control.querySelector("[role=radio][aria-checked=true]");
22198
+ const currentIndex = activeElement ? radios.indexOf(activeElement) : -1;
22199
+ let newIndex;
22254
22200
  switch (evt.key) {
22255
22201
  case "ArrowLeft":
22256
22202
  case "ArrowUp":
22257
- newIndex = Math.max(0, unref(modelValue) - 1);
22203
+ newIndex = Math.max(0, currentIndex - 1);
22258
22204
  break;
22259
22205
  case "ArrowRight":
22260
22206
  case "ArrowDown":
22261
- newIndex = Math.min(items.length - 1, unref(modelValue) + 1);
22207
+ newIndex = Math.min(radios.length - 1, currentIndex + 1);
22262
22208
  break;
22263
22209
  case "Home":
22264
22210
  newIndex = 0;
22265
22211
  break;
22266
22212
  case "End":
22267
- newIndex = items.length - 1;
22213
+ newIndex = radios.length - 1;
22268
22214
  break;
22269
22215
  default: return;
22270
22216
  }
22271
- activate(newIndex);
22217
+ const target = radios[newIndex];
22218
+ const value = items.get(target);
22219
+ if (value !== void 0) select(value);
22220
+ target.focus();
22272
22221
  evt.preventDefault();
22273
22222
  }
22274
- function updateHighlight(index) {
22275
- if (!isAlive.value) return;
22276
- const itemRef = itemRefs.value?.[index];
22223
+ function updateHighlight() {
22277
22224
  const control = controlRef.value;
22278
- if (!itemRef || !control) return;
22279
- const width = itemRef.offsetWidth;
22225
+ if (!control) return;
22226
+ const activeElement = control.querySelector("[role=radio][aria-checked=true]");
22227
+ if (!activeElement) {
22228
+ activeItemWidth.value = 0;
22229
+ return;
22230
+ }
22231
+ const width = activeElement.offsetWidth;
22280
22232
  if (width === 0) return;
22281
- const controlRect = control.getBoundingClientRect();
22282
- const itemRect = itemRef.getBoundingClientRect();
22283
- const scaleX = control.offsetWidth > 0 ? controlRect.width / control.offsetWidth : 1;
22284
- activeItemX.value = (itemRect.left - controlRect.left) / scaleX;
22233
+ activeItemX.value = activeElement.offsetLeft;
22285
22234
  activeItemWidth.value = width;
22286
22235
  }
22287
22236
  return (_ctx, _cache) => {
@@ -22298,37 +22247,79 @@ var FluxSegmentedControl_default = /* @__PURE__ */ defineComponent({
22298
22247
  left: `${activeItemX.value}px`,
22299
22248
  width: `${activeItemWidth.value}px`
22300
22249
  })
22301
- }, null, 6)) : createCommentVNode("", true), (openBlock(true), createElementBlock(Fragment, null, renderList(__props.items, (item, index) => {
22302
- return openBlock(), createElementBlock(Fragment, null, [index > 0 ? (openBlock(), createElementBlock("div", {
22303
- key: 0,
22304
- class: normalizeClass(unref(clsx)(unref(SegmentedControl_module_default).segmentedControlSeparator, (index === modelValue.value || index === modelValue.value + 1) && unref(SegmentedControl_module_default).isActive)),
22305
- role: "separator"
22306
- }, null, 2)) : createCommentVNode("", true), createElementVNode("button", {
22307
- ref_for: true,
22308
- ref: "items",
22309
- class: normalizeClass(unref(clsx)(unref(SegmentedControl_module_default).segmentedControlItem, index === modelValue.value && unref(SegmentedControl_module_default).isActive)),
22310
- role: "radio",
22311
- "aria-checked": index === modelValue.value,
22312
- "aria-label": item.label,
22313
- tabindex: index === modelValue.value ? 0 : -1,
22314
- type: "button",
22315
- onClick: ($event) => activate(index)
22316
- }, [item.icon ? (openBlock(), createBlock(FluxIcon_default, {
22317
- key: 0,
22318
- name: item.icon,
22319
- size: 15
22320
- }, null, 8, ["name"])) : createCommentVNode("", true), item.label ? (openBlock(), createElementBlock("span", _hoisted_3$2, toDisplayString(item.label), 1)) : createCommentVNode("", true)], 10, _hoisted_2$4)], 64);
22321
- }), 256))], 42, _hoisted_1$7);
22250
+ }, null, 6)) : createCommentVNode("", true), renderSlot(_ctx.$slots, "default")], 42, _hoisted_1$7);
22322
22251
  };
22323
22252
  }
22324
22253
  });
22325
22254
  //#endregion
22326
- //#region src/component/FluxSegmentedView.vue
22327
- var FluxSegmentedView_default = defineComponent({
22328
- props: { index: Number },
22329
- setup(props, { slots }) {
22330
- return () => {
22331
- return slots.default()[props.index];
22255
+ //#region src/component/FluxSegmentedControlItem.vue?vue&type=script&setup=true&lang.ts
22256
+ var _hoisted_1$6 = [
22257
+ "aria-checked",
22258
+ "aria-disabled",
22259
+ "disabled",
22260
+ "tabindex"
22261
+ ];
22262
+ var _hoisted_2$3 = { key: 1 };
22263
+ //#endregion
22264
+ //#region src/component/FluxSegmentedControlItem.vue
22265
+ var FluxSegmentedControlItem_default = /* @__PURE__ */ defineComponent({
22266
+ __name: "FluxSegmentedControlItem",
22267
+ props: {
22268
+ value: {},
22269
+ disabled: { type: Boolean },
22270
+ icon: {},
22271
+ label: {}
22272
+ },
22273
+ setup(__props) {
22274
+ const control = useSegmentedControlInjection_default();
22275
+ const disabled = useDisabled_default(toRef(() => __props.disabled));
22276
+ const itemRef = useTemplateRef("item");
22277
+ const sizeClasses = {
22278
+ small: SegmentedControl_module_default.isSmall,
22279
+ medium: SegmentedControl_module_default.isMedium,
22280
+ large: SegmentedControl_module_default.isLarge
22281
+ };
22282
+ const iconSizes = {
22283
+ small: 14,
22284
+ medium: 16,
22285
+ large: 18
22286
+ };
22287
+ const isActive = computed(() => control.modelValue.value === __props.value);
22288
+ const iconSize = computed(() => iconSizes[unref(control.size)]);
22289
+ const itemClass = computed(() => clsx(SegmentedControl_module_default.segmentedControlItem, sizeClasses[unref(control.size)], isActive.value && SegmentedControl_module_default.isActive));
22290
+ onMounted(() => {
22291
+ const element = unref(itemRef);
22292
+ if (!element) return;
22293
+ control.registerItem(element, __props.value);
22294
+ if (control.modelValue.value === void 0 && !unref(disabled)) control.select(__props.value);
22295
+ });
22296
+ onBeforeUnmount(() => {
22297
+ const element = unref(itemRef);
22298
+ if (element) control.unregisterItem(element);
22299
+ });
22300
+ function onClick(evt) {
22301
+ if (unref(disabled)) {
22302
+ evt.preventDefault();
22303
+ return;
22304
+ }
22305
+ control.select(__props.value);
22306
+ }
22307
+ return (_ctx, _cache) => {
22308
+ return openBlock(), createElementBlock("button", {
22309
+ ref: "item",
22310
+ class: normalizeClass(itemClass.value),
22311
+ role: "radio",
22312
+ "aria-checked": isActive.value,
22313
+ "aria-disabled": unref(disabled) ? true : void 0,
22314
+ disabled: unref(disabled) ? true : void 0,
22315
+ tabindex: isActive.value ? 0 : -1,
22316
+ type: "button",
22317
+ onClick
22318
+ }, [renderSlot(_ctx.$slots, "default", {}, () => [__props.icon ? (openBlock(), createBlock(FluxIcon_default, {
22319
+ key: 0,
22320
+ name: __props.icon,
22321
+ size: iconSize.value
22322
+ }, null, 8, ["name", "size"])) : createCommentVNode("", true), __props.label ? (openBlock(), createElementBlock("span", _hoisted_2$3, toDisplayString(__props.label), 1)) : createCommentVNode("", true)])], 10, _hoisted_1$6);
22332
22323
  };
22333
22324
  }
22334
22325
  });
@@ -22447,7 +22438,7 @@ var FluxSplitViewPane_default = /* @__PURE__ */ defineComponent({
22447
22438
  });
22448
22439
  //#endregion
22449
22440
  //#region src/component/FluxSplitView.vue?vue&type=script&setup=true&lang.ts
22450
- var _hoisted_1$6 = [
22441
+ var _hoisted_1$5 = [
22451
22442
  "aria-orientation",
22452
22443
  "aria-valuenow",
22453
22444
  "tabindex",
@@ -22512,88 +22503,13 @@ var FluxSplitView_default = /* @__PURE__ */ defineComponent({
22512
22503
  tabindex: pane.isResizable ? 0 : -1,
22513
22504
  onPointerdown: ($event) => unref(onHandlePointerDown)($event, index),
22514
22505
  onKeydown: ($event) => unref(onHandleKeyDown)($event, index)
22515
- }, null, 42, _hoisted_1$6)) : createCommentVNode("", true)], 64);
22506
+ }, null, 42, _hoisted_1$5)) : createCommentVNode("", true)], 64);
22516
22507
  }), 128))]),
22517
22508
  _: 1
22518
22509
  }, 8, ["class", "style"]);
22519
22510
  };
22520
22511
  }
22521
22512
  });
22522
- var Statistic_module_default = {
22523
- statistic: `statistic`,
22524
- statisticChange: `statistic-change`,
22525
- isGray: `is-gray`,
22526
- isPrimary: `is-primary`,
22527
- isDanger: `is-danger`,
22528
- isInfo: `is-info`,
22529
- isSuccess: `is-success`,
22530
- isWarning: `is-warning`,
22531
- statisticData: `statistic-data`,
22532
- statisticIcon: `statistic-icon`,
22533
- icon: `icon`,
22534
- statisticImage: `statistic-image`,
22535
- statisticHorizontal: `statistic-horizontal statistic`,
22536
- statisticVertical: `statistic-vertical statistic`
22537
- };
22538
- //#endregion
22539
- //#region src/component/FluxStatistic.vue?vue&type=script&setup=true&lang.ts
22540
- var _hoisted_1$5 = { key: 1 };
22541
- var _hoisted_2$3 = ["src", "alt"];
22542
- var _hoisted_3$1 = { key: 0 };
22543
- //#endregion
22544
- //#region src/component/FluxStatistic.vue
22545
- var FluxStatistic_default = /* @__PURE__ */ defineComponent({
22546
- __name: "FluxStatistic",
22547
- props: {
22548
- changeColor: { default: "gray" },
22549
- changeIcon: {},
22550
- changeValue: {},
22551
- color: { default: "gray" },
22552
- direction: { default: "horizontal" },
22553
- icon: {},
22554
- imageSrc: {},
22555
- imageAlt: {},
22556
- isLoading: { type: Boolean },
22557
- label: {},
22558
- value: {}
22559
- },
22560
- setup(__props) {
22561
- return (_ctx, _cache) => {
22562
- return openBlock(), createBlock(FluxPane_default, {
22563
- class: normalizeClass(unref(clsx)(__props.direction === "horizontal" && unref(Statistic_module_default).statisticHorizontal, __props.direction === "vertical" && unref(Statistic_module_default).statisticVertical, __props.color === "gray" && unref(Statistic_module_default).isGray, __props.color === "primary" && unref(Statistic_module_default).isPrimary, __props.color === "danger" && unref(Statistic_module_default).isDanger, __props.color === "info" && unref(Statistic_module_default).isInfo, __props.color === "success" && unref(Statistic_module_default).isSuccess, __props.color === "warning" && unref(Statistic_module_default).isWarning)),
22564
- "is-loading": __props.isLoading
22565
- }, {
22566
- default: withCtx(() => [
22567
- __props.icon ? (openBlock(), createBlock(FluxBoxedIcon_default, {
22568
- key: 0,
22569
- class: normalizeClass(unref(Statistic_module_default).statisticIcon),
22570
- color: __props.color,
22571
- name: __props.icon,
22572
- size: 48
22573
- }, null, 8, [
22574
- "class",
22575
- "color",
22576
- "name"
22577
- ])) : __props.imageSrc ? (openBlock(), createElementBlock("div", _hoisted_1$5, [createElementVNode("img", {
22578
- class: normalizeClass(unref(Statistic_module_default).statisticImage),
22579
- src: __props.imageSrc,
22580
- alt: __props.imageAlt
22581
- }, null, 10, _hoisted_2$3)])) : createCommentVNode("", true),
22582
- createElementVNode("div", { class: normalizeClass(unref(Statistic_module_default).statisticData) }, [createElementVNode("span", null, toDisplayString(__props.label), 1), createElementVNode("strong", null, toDisplayString(__props.value ?? unref(Z$1)), 1)], 2),
22583
- __props.changeIcon || __props.changeValue ? (openBlock(), createElementBlock("div", {
22584
- key: 2,
22585
- class: normalizeClass(unref(clsx)(unref(Statistic_module_default).statisticChange, __props.changeColor === "gray" && unref(Statistic_module_default).isGray, __props.changeColor === "primary" && unref(Statistic_module_default).isPrimary, __props.changeColor === "danger" && unref(Statistic_module_default).isDanger, __props.changeColor === "info" && unref(Statistic_module_default).isInfo, __props.changeColor === "success" && unref(Statistic_module_default).isSuccess, __props.changeColor === "warning" && unref(Statistic_module_default).isWarning))
22586
- }, [__props.changeValue ? (openBlock(), createElementBlock("span", _hoisted_3$1, toDisplayString(__props.changeValue), 1)) : createCommentVNode("", true), __props.changeIcon ? (openBlock(), createBlock(FluxIcon_default, {
22587
- key: 1,
22588
- name: __props.changeIcon,
22589
- size: 14
22590
- }, null, 8, ["name"])) : createCommentVNode("", true)], 2)) : createCommentVNode("", true)
22591
- ]),
22592
- _: 1
22593
- }, 8, ["class", "is-loading"]);
22594
- };
22595
- }
22596
- });
22597
22513
  //#endregion
22598
22514
  //#region src/css/component/Stepper.module.scss
22599
22515
  var { "sparklesContainer": _0$2, "sparklesContainerActive": _1, "sparklesParticles": _2 } = {
@@ -23050,7 +22966,7 @@ var FluxTabBarItem_default = /* @__PURE__ */ defineComponent({
23050
22966
  //#region src/component/FluxTabs.vue
23051
22967
  var FluxTabs_default = /* @__PURE__ */ defineComponent({
23052
22968
  __name: "FluxTabs",
23053
- props: /* @__PURE__ */ mergeModels({ isPills: { type: Boolean } }, {
22969
+ props: /*@__PURE__*/ mergeModels({ isPills: { type: Boolean } }, {
23054
22970
  "modelValue": { default: 0 },
23055
22971
  "modelModifiers": {}
23056
22972
  }),
@@ -23263,7 +23179,7 @@ var _hoisted_2 = [
23263
23179
  //#region src/component/FluxToggle.vue
23264
23180
  var FluxToggle_default = /* @__PURE__ */ defineComponent({
23265
23181
  __name: "FluxToggle",
23266
- props: /* @__PURE__ */ mergeModels({
23182
+ props: /*@__PURE__*/ mergeModels({
23267
23183
  disabled: { type: Boolean },
23268
23184
  error: {},
23269
23185
  isReadonly: { type: Boolean },
@@ -23457,6 +23373,6 @@ var FluxTreeView_default = /* @__PURE__ */ defineComponent({
23457
23373
  }
23458
23374
  });
23459
23375
  //#endregion
23460
- export { FluxAction_default as FluxAction, FluxActionBar_default as FluxActionBar, FluxActionPane_default as FluxActionPane, FluxActionStack_default as FluxActionStack, FluxAdaptiveGroup_default as FluxAdaptiveGroup, FluxAdaptiveSlot_default as FluxAdaptiveSlot, FluxAnimatedColors_default as FluxAnimatedColors, FluxAspectRatio_default as FluxAspectRatio, FluxAutoHeightTransition_default as FluxAutoHeightTransition, FluxAutoWidthTransition_default as FluxAutoWidthTransition, FluxAvatar_default as FluxAvatar, FluxBadge_default as FluxBadge, FluxBadgeStack_default as FluxBadgeStack, FluxBorderShine_default as FluxBorderShine, FluxBoxedIcon_default as FluxBoxedIcon, FluxBreakthroughTransition_default as FluxBreakthroughTransition, FluxButton_default as FluxButton, FluxButtonGroup_default as FluxButtonGroup, FluxButtonStack_default as FluxButtonStack, FluxCalendar_default as FluxCalendar, FluxCalendarItem_default as FluxCalendarItem, FluxCheckbox_default as FluxCheckbox, FluxChip_default as FluxChip, FluxClickablePane_default as FluxClickablePane, FluxColorPicker_default as FluxColorPicker, FluxColorSelect_default as FluxColorSelect, FluxCommandPalette_default as FluxCommandPalette, FluxCommandPaletteGroup_default as FluxCommandPaletteGroup, FluxCommandPaletteItem_default as FluxCommandPaletteItem, FluxComment_default as FluxComment, FluxContainer_default as FluxContainer, FluxDataTable_default as FluxDataTable, FluxDatePicker_default as FluxDatePicker, FluxDestructiveButton_default as FluxDestructiveButton, FluxDisabled_default as FluxDisabled, FluxDivider_default as FluxDivider, FluxDotPattern_default as FluxDotPattern, FluxDropZone_default as FluxDropZone, FluxDynamicView_default as FluxDynamicView, FluxExpandable_default as FluxExpandable, FluxExpandableGroup_default as FluxExpandableGroup, FluxFadeTransition_default as FluxFadeTransition, FluxFader_default as FluxFader, FluxFaderItem_default as FluxFaderItem, FluxFilter_default as FluxFilter, FluxFilterBar_default as FluxFilterBar, FluxFilterDate_default as FluxFilterDate, FluxFilterDateRange_default as FluxFilterDateRange, FluxFilterOption_default as FluxFilterOption, FluxFilterOptionAsync_default as FluxFilterOptionAsync, FluxFilterOptions_default as FluxFilterOptions, FluxFilterOptionsAsync_default as FluxFilterOptionsAsync, FluxFilterRange_default as FluxFilterRange, FluxFlex_default as FluxFlex, FluxFlexItem_default as FluxFlexItem, FluxFlickeringGrid_default as FluxFlickeringGrid, FluxFlyout_default as FluxFlyout, FluxFocalPointEditor_default as FluxFocalPointEditor, FluxFocalPointImage_default as FluxFocalPointImage, FluxForm_default as FluxForm, FluxFormColumn_default as FluxFormColumn, FluxFormDateInput_default as FluxFormDateInput, FluxFormDateRangeInput_default as FluxFormDateRangeInput, FluxFormDateTimeInput_default as FluxFormDateTimeInput, FluxFormField_default as FluxFormField, FluxFormFieldAddition_default as FluxFormFieldAddition, FluxFormGrid_default as FluxFormGrid, FluxFormInput_default as FluxFormInput, FluxFormInputAddition_default as FluxFormInputAddition, FluxFormInputGroup_default as FluxFormInputGroup, FluxFormPinInput_default as FluxFormPinInput, FluxFormRangeSlider_default as FluxFormRangeSlider, FluxFormRow_default as FluxFormRow, FluxFormSection_default as FluxFormSection, FluxFormSelect_default as FluxFormSelect, FluxFormSelectAsync_default as FluxFormSelectAsync, FluxFormSlider_default as FluxFormSlider, FluxFormTextArea_default as FluxFormTextArea, FluxFormTimeZonePicker_default as FluxFormTimeZonePicker, FluxFormTreeViewSelect_default as FluxFormTreeViewSelect, FluxGallery_default as FluxGallery, FluxGalleryItem_default as FluxGalleryItem, FluxGrid_default as FluxGrid, FluxGridColumn_default as FluxGridColumn, FluxGridPattern_default as FluxGridPattern, FluxIcon_default as FluxIcon, FluxInfo_default as FluxInfo, FluxInfoStack_default as FluxInfoStack, FluxItem_default as FluxItem, FluxItemActions_default as FluxItemActions, FluxItemContent_default as FluxItemContent, FluxItemMedia_default as FluxItemMedia, FluxItemStack_default as FluxItemStack, FluxKanban_default as FluxKanban, FluxKanbanColumn_default as FluxKanbanColumn, FluxKanbanItem_default as FluxKanbanItem, FluxLayerPane_default as FluxLayerPane, FluxLayerPaneSecondary_default as FluxLayerPaneSecondary, FluxLegend_default as FluxLegend, FluxLink_default as FluxLink, FluxMenu_default as FluxMenu, FluxMenuCollapsible_default as FluxMenuCollapsible, FluxMenuGroup_default as FluxMenuGroup, FluxMenuItem_default as FluxMenuItem, FluxMenuOptions_default as FluxMenuOptions, FluxMenuSubHeader_default as FluxMenuSubHeader, FluxMenuTitle_default as FluxMenuTitle, FluxNotice_default as FluxNotice, FluxNoticeStack_default as FluxNoticeStack, FluxOverflowBar_default as FluxOverflowBar, FluxOverlay_default as FluxOverlay, FluxOverlayProvider_default as FluxOverlayProvider, FluxOverlayTransition_default as FluxOverlayTransition, FluxPagination_default as FluxPagination, FluxPaginationBar_default as FluxPaginationBar, FluxPane_default as FluxPane, FluxPaneBody_default as FluxPaneBody, FluxPaneFooter_default as FluxPaneFooter, FluxPaneGroup_default as FluxPaneGroup, FluxPaneHeader_default as FluxPaneHeader, FluxPaneIllustration_default as FluxPaneIllustration, FluxPaneMedia_default as FluxPaneMedia, FluxPercentageBar_default as FluxPercentageBar, FluxPersona_default as FluxPersona, FluxPlaceholder_default as FluxPlaceholder, FluxPressable_default as FluxPressable, FluxPrimaryButton_default as FluxPrimaryButton, FluxPrimaryLinkButton_default as FluxPrimaryLinkButton, FluxProgressBar_default as FluxProgressBar, FluxPublishButton_default as FluxPublishButton, FluxQuantitySelector_default as FluxQuantitySelector, FluxRemove_default as FluxRemove, FluxRoot_default as FluxRoot, FluxRouteTransition_default as FluxRouteTransition, FluxScroller_default as FluxScroller, FluxSecondaryButton_default as FluxSecondaryButton, FluxSecondaryLinkButton_default as FluxSecondaryLinkButton, FluxSegmentedControl_default as FluxSegmentedControl, FluxSegmentedView_default as FluxSegmentedView, FluxSeparator_default as FluxSeparator, FluxSlideOver_default as FluxSlideOver, FluxSlideOverTransition_default as FluxSlideOverTransition, FluxSnackbar_default as FluxSnackbar, FluxSnackbarProvider_default as FluxSnackbarProvider, FluxSpacer_default as FluxSpacer, FluxSpacing_default as FluxSpacing, FluxSpinner_default as FluxSpinner, FluxSplitButton_default as FluxSplitButton, FluxSplitView_default as FluxSplitView, FluxSplitViewPane_default as FluxSplitViewPane, FluxStatistic_default as FluxStatistic, FluxStepper_default as FluxStepper, FluxStepperStep_default as FluxStepperStep, FluxStepperSteps_default as FluxStepperSteps, FluxSticky_default as FluxSticky, FluxTab_default as FluxTab, FluxTabBar_default as FluxTabBar, FluxTabBarItem_default as FluxTabBarItem, FluxTable_default as FluxTable, FluxTableActions_default as FluxTableActions, FluxTableBar_default as FluxTableBar, FluxTableCell_default as FluxTableCell, FluxTableHeader_default as FluxTableHeader, FluxTableRow_default as FluxTableRow, FluxTabs_default as FluxTabs, FluxTag_default as FluxTag, FluxTagStack_default as FluxTagStack, FluxTicks_default as FluxTicks, FluxTimeline_default as FluxTimeline, FluxTimelineItem_default as FluxTimelineItem, FluxToggle_default as FluxToggle, FluxToolbar_default as FluxToolbar, FluxToolbarGroup_default as FluxToolbarGroup, FluxTooltip_default as FluxTooltip, FluxTooltipProvider_default as FluxTooltipProvider, FluxTooltipTransition_default as FluxTooltipTransition, FluxTreeView_default as FluxTreeView, FluxVerticalWindowTransition_default as FluxVerticalWindowTransition, FluxWindow_default as FluxWindow, FluxWindowTransition_default as FluxWindowTransition, defineFilter, fluxRegisterIcons, iconRegistry, isFluxFilterOptionHeader, isFluxFilterOptionItem, isFluxFormSelectGroup, isFluxFormSelectOption, pickFilterCommon, showAlert, showConfirm, showPrompt, showSnackbar, useAdaptiveGroupInjection_default as useAdaptiveGroupInjection, useBreakpoints_default as useBreakpoints, useCalendarInjection_default as useCalendarInjection, useDisabled_default as useDisabled, useDisabledInjection_default as useDisabledInjection, useExpandableGroupInjection_default as useExpandableGroupInjection, useFilterInjection_default as useFilterInjection, useFluxStore, useFlyoutInjection_default as useFlyoutInjection, useFormFieldInjection_default as useFormFieldInjection, useKanbanInjection_default as useKanbanInjection, useTabBarInjection_default as useTabBarInjection, useTableInjection_default as useTableInjection, useTooltipInjection_default as useTooltipInjection };
23376
+ export { FluxAction_default as FluxAction, FluxActionBar_default as FluxActionBar, FluxActionPane_default as FluxActionPane, FluxActionStack_default as FluxActionStack, FluxAdaptiveGroup_default as FluxAdaptiveGroup, FluxAdaptiveSlot_default as FluxAdaptiveSlot, FluxAnimatedColors_default as FluxAnimatedColors, FluxAspectRatio_default as FluxAspectRatio, FluxAutoHeightTransition_default as FluxAutoHeightTransition, FluxAutoWidthTransition_default as FluxAutoWidthTransition, FluxAvatar_default as FluxAvatar, FluxBadge_default as FluxBadge, FluxBadgeStack_default as FluxBadgeStack, FluxBorderShine_default as FluxBorderShine, FluxBoxedIcon_default as FluxBoxedIcon, FluxBreakthroughTransition_default as FluxBreakthroughTransition, FluxButton_default as FluxButton, FluxButtonGroup_default as FluxButtonGroup, FluxButtonStack_default as FluxButtonStack, FluxCalendar_default as FluxCalendar, FluxCalendarItem_default as FluxCalendarItem, FluxCheckbox_default as FluxCheckbox, FluxChip_default as FluxChip, FluxClickablePane_default as FluxClickablePane, FluxColorPicker_default as FluxColorPicker, FluxColorSelect_default as FluxColorSelect, FluxCommandPalette_default as FluxCommandPalette, FluxCommandPaletteGroup_default as FluxCommandPaletteGroup, FluxCommandPaletteItem_default as FluxCommandPaletteItem, FluxComment_default as FluxComment, FluxContainer_default as FluxContainer, FluxDataTable_default as FluxDataTable, FluxDatePicker_default as FluxDatePicker, FluxDestructiveButton_default as FluxDestructiveButton, FluxDisabled_default as FluxDisabled, FluxDivider_default as FluxDivider, FluxDotPattern_default as FluxDotPattern, FluxDropZone_default as FluxDropZone, FluxDynamicView_default as FluxDynamicView, FluxExpandable_default as FluxExpandable, FluxExpandableGroup_default as FluxExpandableGroup, FluxFadeTransition_default as FluxFadeTransition, FluxFader_default as FluxFader, FluxFaderItem_default as FluxFaderItem, FluxFilter_default as FluxFilter, FluxFilterBar_default as FluxFilterBar, FluxFilterDate_default as FluxFilterDate, FluxFilterDateRange_default as FluxFilterDateRange, FluxFilterOption_default as FluxFilterOption, FluxFilterOptionAsync_default as FluxFilterOptionAsync, FluxFilterOptions_default as FluxFilterOptions, FluxFilterOptionsAsync_default as FluxFilterOptionsAsync, FluxFilterRange_default as FluxFilterRange, FluxFlex_default as FluxFlex, FluxFlexItem_default as FluxFlexItem, FluxFlickeringGrid_default as FluxFlickeringGrid, FluxFlyout_default as FluxFlyout, FluxFocalPointEditor_default as FluxFocalPointEditor, FluxFocalPointImage_default as FluxFocalPointImage, FluxForm_default as FluxForm, FluxFormColumn_default as FluxFormColumn, FluxFormDateInput_default as FluxFormDateInput, FluxFormDateRangeInput_default as FluxFormDateRangeInput, FluxFormDateTimeInput_default as FluxFormDateTimeInput, FluxFormField_default as FluxFormField, FluxFormFieldAddition_default as FluxFormFieldAddition, FluxFormGrid_default as FluxFormGrid, FluxFormInput_default as FluxFormInput, FluxFormInputAddition_default as FluxFormInputAddition, FluxFormInputGroup_default as FluxFormInputGroup, FluxFormPinInput_default as FluxFormPinInput, FluxFormRangeSlider_default as FluxFormRangeSlider, FluxFormRow_default as FluxFormRow, FluxFormSection_default as FluxFormSection, FluxFormSelect_default as FluxFormSelect, FluxFormSelectAsync_default as FluxFormSelectAsync, FluxFormSlider_default as FluxFormSlider, FluxFormTextArea_default as FluxFormTextArea, FluxFormTimeZonePicker_default as FluxFormTimeZonePicker, FluxFormTreeViewSelect_default as FluxFormTreeViewSelect, FluxGallery_default as FluxGallery, FluxGalleryItem_default as FluxGalleryItem, FluxGrid_default as FluxGrid, FluxGridColumn_default as FluxGridColumn, FluxGridPattern_default as FluxGridPattern, FluxIcon_default as FluxIcon, FluxInfo_default as FluxInfo, FluxInfoStack_default as FluxInfoStack, FluxItem_default as FluxItem, FluxItemActions_default as FluxItemActions, FluxItemContent_default as FluxItemContent, FluxItemMedia_default as FluxItemMedia, FluxItemStack_default as FluxItemStack, FluxKanban_default as FluxKanban, FluxKanbanColumn_default as FluxKanbanColumn, FluxKanbanItem_default as FluxKanbanItem, FluxLayerPane_default as FluxLayerPane, FluxLayerPaneSecondary_default as FluxLayerPaneSecondary, FluxLink_default as FluxLink, FluxMenu_default as FluxMenu, FluxMenuCollapsible_default as FluxMenuCollapsible, FluxMenuGroup_default as FluxMenuGroup, FluxMenuItem_default as FluxMenuItem, FluxMenuOptions_default as FluxMenuOptions, FluxMenuSubHeader_default as FluxMenuSubHeader, FluxMenuTitle_default as FluxMenuTitle, FluxNotice_default as FluxNotice, FluxNoticeStack_default as FluxNoticeStack, FluxOverflowBar_default as FluxOverflowBar, FluxOverlay_default as FluxOverlay, FluxOverlayProvider_default as FluxOverlayProvider, FluxOverlayTransition_default as FluxOverlayTransition, FluxPagination_default as FluxPagination, FluxPaginationBar_default as FluxPaginationBar, FluxPane_default as FluxPane, FluxPaneBody_default as FluxPaneBody, FluxPaneFooter_default as FluxPaneFooter, FluxPaneGroup_default as FluxPaneGroup, FluxPaneHeader_default as FluxPaneHeader, FluxPaneIllustration_default as FluxPaneIllustration, FluxPaneMedia_default as FluxPaneMedia, FluxPersona_default as FluxPersona, FluxPlaceholder_default as FluxPlaceholder, FluxPressable_default as FluxPressable, FluxPrimaryButton_default as FluxPrimaryButton, FluxPrimaryLinkButton_default as FluxPrimaryLinkButton, FluxProgressBar_default as FluxProgressBar, FluxPublishButton_default as FluxPublishButton, FluxQuantitySelector_default as FluxQuantitySelector, FluxRemove_default as FluxRemove, FluxRoot_default as FluxRoot, FluxRouteTransition_default as FluxRouteTransition, FluxScroller_default as FluxScroller, FluxSecondaryButton_default as FluxSecondaryButton, FluxSecondaryLinkButton_default as FluxSecondaryLinkButton, FluxSegmentedControl_default as FluxSegmentedControl, FluxSegmentedControlItem_default as FluxSegmentedControlItem, FluxSeparator_default as FluxSeparator, FluxSlideOver_default as FluxSlideOver, FluxSlideOverTransition_default as FluxSlideOverTransition, FluxSnackbar_default as FluxSnackbar, FluxSnackbarProvider_default as FluxSnackbarProvider, FluxSpacer_default as FluxSpacer, FluxSpacing_default as FluxSpacing, FluxSpinner_default as FluxSpinner, FluxSplitButton_default as FluxSplitButton, FluxSplitView_default as FluxSplitView, FluxSplitViewPane_default as FluxSplitViewPane, FluxStepper_default as FluxStepper, FluxStepperStep_default as FluxStepperStep, FluxStepperSteps_default as FluxStepperSteps, FluxSticky_default as FluxSticky, FluxTab_default as FluxTab, FluxTabBar_default as FluxTabBar, FluxTabBarItem_default as FluxTabBarItem, FluxTable_default as FluxTable, FluxTableActions_default as FluxTableActions, FluxTableBar_default as FluxTableBar, FluxTableCell_default as FluxTableCell, FluxTableHeader_default as FluxTableHeader, FluxTableRow_default as FluxTableRow, FluxTabs_default as FluxTabs, FluxTag_default as FluxTag, FluxTagStack_default as FluxTagStack, FluxTicks_default as FluxTicks, FluxTimeline_default as FluxTimeline, FluxTimelineItem_default as FluxTimelineItem, FluxToggle_default as FluxToggle, FluxToolbar_default as FluxToolbar, FluxToolbarGroup_default as FluxToolbarGroup, FluxTooltip_default as FluxTooltip, FluxTooltipProvider_default as FluxTooltipProvider, FluxTooltipTransition_default as FluxTooltipTransition, FluxTreeView_default as FluxTreeView, FluxVerticalWindowTransition_default as FluxVerticalWindowTransition, FluxWindow_default as FluxWindow, FluxWindowTransition_default as FluxWindowTransition, defineFilter, fluxRegisterIcons, iconRegistry, isFluxFilterOptionHeader, isFluxFilterOptionItem, isFluxFormSelectGroup, isFluxFormSelectOption, pickFilterCommon, showAlert, showConfirm, showPrompt, showSnackbar, useAdaptiveGroupInjection_default as useAdaptiveGroupInjection, useBreakpoints_default as useBreakpoints, useCalendarInjection_default as useCalendarInjection, useDisabled_default as useDisabled, useDisabledInjection_default as useDisabledInjection, useExpandableGroupInjection_default as useExpandableGroupInjection, useFilterInjection_default as useFilterInjection, useFluxStore, useFlyoutInjection_default as useFlyoutInjection, useFormFieldInjection_default as useFormFieldInjection, useKanbanInjection_default as useKanbanInjection, useSegmentedControlInjection_default as useSegmentedControlInjection, useTabBarInjection_default as useTabBarInjection, useTableInjection_default as useTableInjection, useTooltipInjection_default as useTooltipInjection };
23461
23377
 
23462
23378
  //# sourceMappingURL=index.js.map