@inf-monkeys-tech/monkeys-design 1.0.42 → 1.0.43

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 (70) hide show
  1. package/dist/OverlayNodeHost-14bb9b0f18f4.d.mts +1 -1
  2. package/dist/OverlayNodeHost-3c763888b689.d.ts +1 -1
  3. package/dist/components/agent-workbench/index.js +4 -1
  4. package/dist/components/agent-workbench/index.js.map +1 -1
  5. package/dist/components/agent-workbench/index.mjs +4 -1
  6. package/dist/components/agent-workbench/index.mjs.map +1 -1
  7. package/dist/components/base/index.d.mts +2 -2
  8. package/dist/components/base/index.d.ts +2 -2
  9. package/dist/components/base/index.js +212 -58
  10. package/dist/components/base/index.js.map +1 -1
  11. package/dist/components/base/index.mjs +212 -59
  12. package/dist/components/base/index.mjs.map +1 -1
  13. package/dist/components/data-explorer/index.js +4 -1
  14. package/dist/components/data-explorer/index.js.map +1 -1
  15. package/dist/components/data-explorer/index.mjs +4 -1
  16. package/dist/components/data-explorer/index.mjs.map +1 -1
  17. package/dist/components/layout/index.d.mts +1 -1
  18. package/dist/components/layout/index.d.ts +1 -1
  19. package/dist/components/layout/index.js +4 -1
  20. package/dist/components/layout/index.js.map +1 -1
  21. package/dist/components/layout/index.mjs +4 -1
  22. package/dist/components/layout/index.mjs.map +1 -1
  23. package/dist/components/runtime/index.d.mts +1 -1
  24. package/dist/components/runtime/index.d.ts +1 -1
  25. package/dist/components/runtime/index.js +4 -1
  26. package/dist/components/runtime/index.js.map +1 -1
  27. package/dist/components/runtime/index.mjs +4 -1
  28. package/dist/components/runtime/index.mjs.map +1 -1
  29. package/dist/components/toast/index.d.mts +1 -1
  30. package/dist/components/toast/index.d.ts +1 -1
  31. package/dist/components/toast/index.js +4 -1
  32. package/dist/components/toast/index.js.map +1 -1
  33. package/dist/components/toast/index.mjs +4 -1
  34. package/dist/components/toast/index.mjs.map +1 -1
  35. package/dist/components/toolbar/index.js +4 -1
  36. package/dist/components/toolbar/index.js.map +1 -1
  37. package/dist/components/toolbar/index.mjs +4 -1
  38. package/dist/components/toolbar/index.mjs.map +1 -1
  39. package/dist/components/workbench/index.d.mts +9 -1
  40. package/dist/components/workbench/index.d.ts +9 -1
  41. package/dist/components/workbench/index.js +244 -78
  42. package/dist/components/workbench/index.js.map +1 -1
  43. package/dist/components/workbench/index.mjs +244 -78
  44. package/dist/components/workbench/index.mjs.map +1 -1
  45. package/dist/index.d.mts +4 -4
  46. package/dist/index.d.ts +4 -4
  47. package/dist/index.js +262 -74
  48. package/dist/index.js.map +1 -1
  49. package/dist/index.mjs +261 -75
  50. package/dist/index.mjs.map +1 -1
  51. package/dist/locale/index.d.mts +8 -2
  52. package/dist/locale/index.d.ts +8 -2
  53. package/dist/locale/index.js +8 -2
  54. package/dist/locale/index.js.map +1 -1
  55. package/dist/locale/index.mjs +8 -2
  56. package/dist/locale/index.mjs.map +1 -1
  57. package/dist/provider/index.d.mts +25 -5
  58. package/dist/provider/index.d.ts +25 -5
  59. package/dist/provider/index.js +24 -3
  60. package/dist/provider/index.js.map +1 -1
  61. package/dist/provider/index.mjs +24 -4
  62. package/dist/provider/index.mjs.map +1 -1
  63. package/dist/styles.css +1 -1
  64. package/dist/{theme-61b15c3b7960.d.ts → theme-17bde32ca128.d.ts} +3 -2
  65. package/dist/{theme-7bf5602208e8.d.mts → theme-39d2fdc145c2.d.mts} +3 -2
  66. package/dist/{types-453d18eab188.d.mts → types-22bd2ecb535c.d.mts} +3 -0
  67. package/dist/{types-453d18eab188.d.ts → types-22bd2ecb535c.d.ts} +3 -0
  68. package/dist/{types-3c51850d34c1.d.mts → types-29dff278cb84.d.mts} +15 -1
  69. package/dist/{types-3c51850d34c1.d.ts → types-29dff278cb84.d.ts} +15 -1
  70. package/package.json +1 -1
@@ -99,7 +99,10 @@ var enUS = {
99
99
  loadError: "Unable to load items",
100
100
  refreshError: "Unable to refresh items",
101
101
  retry: "Retry",
102
- loadingMore: "Loading more items"
102
+ loadingMore: "Loading more items",
103
+ permission: "You do not have permission to view this content",
104
+ offline: "You appear to be offline",
105
+ requestAccess: "Request access"
103
106
  },
104
107
  interactiveTable: {
105
108
  columnActions: "Column actions",
@@ -363,6 +366,9 @@ function useMonkeysBaseAppearance(explicit) {
363
366
  [explicit, inherited]
364
367
  );
365
368
  }
369
+ function useMonkeysStatusStates() {
370
+ return useContext(MonkeysThemeContext).statusStates ?? {};
371
+ }
366
372
  function useMonkeysDirection() {
367
373
  return useContext(MonkeysDirectionContext).direction;
368
374
  }
@@ -4937,6 +4943,7 @@ var BaseEmptyState = forwardRef(
4937
4943
  title,
4938
4944
  description,
4939
4945
  actions,
4946
+ variant,
4940
4947
  appearance,
4941
4948
  className,
4942
4949
  classNames,
@@ -4945,6 +4952,9 @@ var BaseEmptyState = forwardRef(
4945
4952
  }, ref) {
4946
4953
  const resolvedAppearance = useMonkeysBaseAppearance(appearance);
4947
4954
  const componentAttributes = useMonkeysComponentAttributes();
4955
+ const statusStates = useMonkeysStatusStates();
4956
+ const resolvedVariant = variant ?? statusStates.empty?.variant ?? "default";
4957
+ const densityClassName = statusStates.density === "compact" ? "min-h-0 px-3 py-3" : statusStates.density === "comfortable" ? "min-h-56 px-8 py-12" : void 0;
4948
4958
  const theme = resolveBaseAppearance(resolvedAppearance);
4949
4959
  return /* @__PURE__ */ jsxs(
4950
4960
  "div",
@@ -4955,7 +4965,15 @@ var BaseEmptyState = forwardRef(
4955
4965
  "data-monkeys-component": "empty-state",
4956
4966
  "data-slot": "root",
4957
4967
  "data-state": "empty",
4958
- className: cn(theme.slots.stateRoot, classNames?.root, className),
4968
+ "data-variant": resolvedVariant,
4969
+ "data-density": statusStates.density,
4970
+ className: cn(
4971
+ theme.slots.stateRoot,
4972
+ densityClassName,
4973
+ resolvedVariant === "compact" && "min-h-0 gap-1 py-3",
4974
+ classNames?.root,
4975
+ className
4976
+ ),
4959
4977
  style: {
4960
4978
  ...theme.styles.stateRoot,
4961
4979
  ...style
@@ -6332,6 +6350,59 @@ var BaseLayoutSplit = forwardRef(
6332
6350
  );
6333
6351
  }
6334
6352
  );
6353
+ var variantClassNames = {
6354
+ line: "h-4 w-full",
6355
+ block: "h-24 w-full",
6356
+ circle: "aspect-square h-10 rounded-full"
6357
+ };
6358
+ var BaseSkeleton = forwardRef(
6359
+ function BaseSkeleton2({
6360
+ variant = "line",
6361
+ animated = true,
6362
+ appearance,
6363
+ className,
6364
+ classNames,
6365
+ style,
6366
+ ...skeletonProps
6367
+ }, ref) {
6368
+ if (variant !== "line" && variant !== "block" && variant !== "circle") {
6369
+ throw new TypeError(
6370
+ 'BaseSkeleton variant must be "line", "block", or "circle".'
6371
+ );
6372
+ }
6373
+ if (typeof animated !== "boolean") {
6374
+ throw new TypeError("BaseSkeleton animated must be a boolean.");
6375
+ }
6376
+ const resolvedAppearance = useMonkeysBaseAppearance(appearance);
6377
+ const componentAttributes = useMonkeysComponentAttributes();
6378
+ const theme = resolveBaseAppearance(resolvedAppearance);
6379
+ return /* @__PURE__ */ jsx(
6380
+ "div",
6381
+ {
6382
+ ...componentAttributes,
6383
+ ...skeletonProps,
6384
+ ref,
6385
+ "aria-hidden": "true",
6386
+ "data-monkeys-component": "skeleton",
6387
+ "data-slot": "root",
6388
+ "data-variant": variant,
6389
+ "data-animated": animated,
6390
+ "data-state": animated ? "animated" : "static",
6391
+ className: cn(
6392
+ theme.slots.skeletonRoot,
6393
+ variantClassNames[variant],
6394
+ animated && "motion-safe:animate-pulse motion-reduce:animate-none",
6395
+ classNames?.root,
6396
+ className
6397
+ ),
6398
+ style: {
6399
+ ...theme.styles.skeleton,
6400
+ ...style
6401
+ }
6402
+ }
6403
+ );
6404
+ }
6405
+ );
6335
6406
  function DefaultLoadingIcon({ className }) {
6336
6407
  return /* @__PURE__ */ jsxs(
6337
6408
  "svg",
@@ -6369,6 +6440,7 @@ var BaseLoadingState = forwardRef(function BaseLoadingState2({
6369
6440
  title,
6370
6441
  description,
6371
6442
  actions,
6443
+ variant,
6372
6444
  appearance,
6373
6445
  className,
6374
6446
  classNames,
@@ -6383,8 +6455,11 @@ var BaseLoadingState = forwardRef(function BaseLoadingState2({
6383
6455
  const resolvedAppearance = useMonkeysBaseAppearance(appearance);
6384
6456
  const componentAttributes = useMonkeysComponentAttributes();
6385
6457
  const loadingMessages = useMonkeysLocaleMessages().loading;
6458
+ const statusStates = useMonkeysStatusStates();
6459
+ const resolvedVariant = variant ?? statusStates.loading?.variant ?? "spinner";
6460
+ const densityClassName = statusStates.density === "compact" ? "min-h-0 px-3 py-3" : statusStates.density === "comfortable" ? "min-h-56 px-8 py-12" : void 0;
6386
6461
  const theme = resolveBaseAppearance(resolvedAppearance);
6387
- const resolvedIcon = icon === void 0 ? /* @__PURE__ */ jsx(DefaultLoadingIcon, { className: theme.slots.loadingSpinner }) : icon;
6462
+ const resolvedIcon = resolvedVariant === "skeleton" && icon === void 0 ? void 0 : icon === void 0 ? /* @__PURE__ */ jsx(DefaultLoadingIcon, { className: theme.slots.loadingSpinner }) : icon;
6388
6463
  const resolvedAriaLabel = nativeAriaLabel ?? (nativeAriaLabelledBy === void 0 ? loadingMessages.spinner : void 0);
6389
6464
  return /* @__PURE__ */ jsxs(
6390
6465
  "div",
@@ -6400,13 +6475,19 @@ var BaseLoadingState = forwardRef(function BaseLoadingState2({
6400
6475
  "data-monkeys-component": "loading-state",
6401
6476
  "data-slot": "root",
6402
6477
  "data-state": "loading",
6403
- className: cn(theme.slots.stateRoot, classNames?.root, className),
6478
+ "data-variant": resolvedVariant,
6479
+ "data-density": statusStates.density,
6480
+ className: cn(theme.slots.stateRoot, densityClassName, classNames?.root, className),
6404
6481
  style: {
6405
6482
  ...theme.styles.stateRoot,
6406
6483
  ...style
6407
6484
  },
6408
6485
  children: [
6409
- hasRenderableNode(resolvedIcon) ? /* @__PURE__ */ jsx(
6486
+ resolvedVariant === "skeleton" ? /* @__PURE__ */ jsxs("div", { className: "flex w-full max-w-sm flex-col gap-3", "data-slot": "skeleton", children: [
6487
+ /* @__PURE__ */ jsx(BaseSkeleton, { variant: "block", className: "h-20" }),
6488
+ /* @__PURE__ */ jsx(BaseSkeleton, { variant: "line", className: "w-4/5" }),
6489
+ /* @__PURE__ */ jsx(BaseSkeleton, { variant: "line", className: "w-3/5" })
6490
+ ] }) : hasRenderableNode(resolvedIcon) ? /* @__PURE__ */ jsx(
6410
6491
  "div",
6411
6492
  {
6412
6493
  "data-slot": "icon",
@@ -9303,59 +9384,6 @@ function BaseSegmentedControl({
9303
9384
  }
9304
9385
  );
9305
9386
  }
9306
- var variantClassNames = {
9307
- line: "h-4 w-full",
9308
- block: "h-24 w-full",
9309
- circle: "aspect-square h-10 rounded-full"
9310
- };
9311
- var BaseSkeleton = forwardRef(
9312
- function BaseSkeleton2({
9313
- variant = "line",
9314
- animated = true,
9315
- appearance,
9316
- className,
9317
- classNames,
9318
- style,
9319
- ...skeletonProps
9320
- }, ref) {
9321
- if (variant !== "line" && variant !== "block" && variant !== "circle") {
9322
- throw new TypeError(
9323
- 'BaseSkeleton variant must be "line", "block", or "circle".'
9324
- );
9325
- }
9326
- if (typeof animated !== "boolean") {
9327
- throw new TypeError("BaseSkeleton animated must be a boolean.");
9328
- }
9329
- const resolvedAppearance = useMonkeysBaseAppearance(appearance);
9330
- const componentAttributes = useMonkeysComponentAttributes();
9331
- const theme = resolveBaseAppearance(resolvedAppearance);
9332
- return /* @__PURE__ */ jsx(
9333
- "div",
9334
- {
9335
- ...componentAttributes,
9336
- ...skeletonProps,
9337
- ref,
9338
- "aria-hidden": "true",
9339
- "data-monkeys-component": "skeleton",
9340
- "data-slot": "root",
9341
- "data-variant": variant,
9342
- "data-animated": animated,
9343
- "data-state": animated ? "animated" : "static",
9344
- className: cn(
9345
- theme.slots.skeletonRoot,
9346
- variantClassNames[variant],
9347
- animated && "motion-safe:animate-pulse motion-reduce:animate-none",
9348
- classNames?.root,
9349
- className
9350
- ),
9351
- style: {
9352
- ...theme.styles.skeleton,
9353
- ...style
9354
- }
9355
- }
9356
- );
9357
- }
9358
- );
9359
9387
  var BaseSpinner = forwardRef(
9360
9388
  function BaseSpinner2({
9361
9389
  decorative = false,
@@ -9966,6 +9994,131 @@ var BaseSwitch = forwardRef(
9966
9994
  );
9967
9995
  }
9968
9996
  );
9997
+ function SystemStateIcon({ kind }) {
9998
+ const path = {
9999
+ error: /* @__PURE__ */ jsxs(Fragment, { children: [
10000
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
10001
+ /* @__PURE__ */ jsx("path", { d: "M12 7v6" }),
10002
+ /* @__PURE__ */ jsx("path", { d: "M12 17h.01" })
10003
+ ] }),
10004
+ permission: /* @__PURE__ */ jsxs(Fragment, { children: [
10005
+ /* @__PURE__ */ jsx("rect", { x: "5", y: "10", width: "14", height: "10", rx: "2" }),
10006
+ /* @__PURE__ */ jsx("path", { d: "M8 10V7a4 4 0 0 1 8 0v3" })
10007
+ ] }),
10008
+ offline: /* @__PURE__ */ jsxs(Fragment, { children: [
10009
+ /* @__PURE__ */ jsx("path", { d: "M5 12.5a10 10 0 0 1 14 0" }),
10010
+ /* @__PURE__ */ jsx("path", { d: "M8.5 16a5 5 0 0 1 7 0" }),
10011
+ /* @__PURE__ */ jsx("path", { d: "M12 20h.01" }),
10012
+ /* @__PURE__ */ jsx("path", { d: "m4 4 16 16" })
10013
+ ] }),
10014
+ fallback: /* @__PURE__ */ jsxs(Fragment, { children: [
10015
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
10016
+ /* @__PURE__ */ jsx("path", { d: "M9.5 9a2.5 2.5 0 1 1 4.2 1.8c-1 .8-1.7 1.2-1.7 2.7" }),
10017
+ /* @__PURE__ */ jsx("path", { d: "M12 17h.01" })
10018
+ ] })
10019
+ };
10020
+ return /* @__PURE__ */ jsx(
10021
+ "svg",
10022
+ {
10023
+ "aria-hidden": "true",
10024
+ viewBox: "0 0 24 24",
10025
+ className: "h-7 w-7",
10026
+ fill: "none",
10027
+ stroke: "currentColor",
10028
+ strokeLinecap: "round",
10029
+ strokeLinejoin: "round",
10030
+ strokeWidth: "1.8",
10031
+ children: path[kind]
10032
+ }
10033
+ );
10034
+ }
10035
+ var BaseSystemState = forwardRef(
10036
+ function BaseSystemState2({
10037
+ kind = "fallback",
10038
+ icon,
10039
+ title,
10040
+ description,
10041
+ actions,
10042
+ appearance,
10043
+ className,
10044
+ classNames,
10045
+ style,
10046
+ role,
10047
+ "aria-live": ariaLive,
10048
+ ...stateProps
10049
+ }, ref) {
10050
+ const resolvedAppearance = useMonkeysBaseAppearance(appearance);
10051
+ const componentAttributes = useMonkeysComponentAttributes();
10052
+ const statusStates = useMonkeysStatusStates();
10053
+ const densityClassName = statusStates.density === "compact" ? "min-h-0 px-3 py-3" : statusStates.density === "comfortable" ? "min-h-56 px-8 py-12" : void 0;
10054
+ const theme = resolveBaseAppearance(resolvedAppearance);
10055
+ const resolvedIcon = icon === void 0 ? /* @__PURE__ */ jsx(SystemStateIcon, { kind }) : icon;
10056
+ const resolvedRole = role ?? (kind === "error" || kind === "offline" ? "alert" : "status");
10057
+ return /* @__PURE__ */ jsxs(
10058
+ "div",
10059
+ {
10060
+ ...componentAttributes,
10061
+ ...stateProps,
10062
+ ref,
10063
+ role: resolvedRole,
10064
+ "aria-live": ariaLive ?? (resolvedRole === "alert" ? "assertive" : "polite"),
10065
+ "data-monkeys-component": "system-state",
10066
+ "data-slot": "root",
10067
+ "data-state": kind,
10068
+ "data-density": statusStates.density,
10069
+ className: cn(
10070
+ theme.slots.stateRoot,
10071
+ densityClassName,
10072
+ classNames?.root,
10073
+ className
10074
+ ),
10075
+ style: { ...theme.styles.stateRoot, ...style },
10076
+ children: [
10077
+ hasRenderableNode(resolvedIcon) ? /* @__PURE__ */ jsx(
10078
+ "div",
10079
+ {
10080
+ "data-slot": "icon",
10081
+ "data-state": kind,
10082
+ className: cn(theme.slots.stateIcon, classNames?.icon),
10083
+ style: theme.styles.stateIcon,
10084
+ children: resolvedIcon
10085
+ }
10086
+ ) : null,
10087
+ hasRenderableNode(title) ? /* @__PURE__ */ jsx(
10088
+ "div",
10089
+ {
10090
+ "data-slot": "title",
10091
+ "data-state": kind,
10092
+ className: cn(theme.slots.stateTitle, classNames?.title),
10093
+ children: title
10094
+ }
10095
+ ) : null,
10096
+ hasRenderableNode(description) ? /* @__PURE__ */ jsx(
10097
+ "div",
10098
+ {
10099
+ "data-slot": "description",
10100
+ "data-state": kind,
10101
+ className: cn(
10102
+ theme.slots.stateDescription,
10103
+ classNames?.description
10104
+ ),
10105
+ children: description
10106
+ }
10107
+ ) : null,
10108
+ hasRenderableNode(actions) ? /* @__PURE__ */ jsx(
10109
+ "div",
10110
+ {
10111
+ "data-slot": "actions",
10112
+ "data-state": kind,
10113
+ className: cn(theme.slots.stateActions, classNames?.actions),
10114
+ children: actions
10115
+ }
10116
+ ) : null
10117
+ ]
10118
+ }
10119
+ );
10120
+ }
10121
+ );
9969
10122
  var DATA_TRANSFER_COLUMN_TYPE = "application/x-monkeys-base-table-column";
9970
10123
  var COLUMN_RESIZE_KEYBOARD_STEP = 8;
9971
10124
  function assignRef2(ref, value) {
@@ -11847,6 +12000,6 @@ var BaseVisuallyHidden = forwardRef(function BaseVisuallyHidden2({
11847
12000
  );
11848
12001
  });
11849
12002
 
11850
- export { BaseAccordion, BaseAspectRatio, BaseAvatar, BaseBadge, BaseBreadcrumb, BaseButton, BaseCheckbox, BaseCode, BaseContainer, BaseContextMenu, BaseContextMenuCheckboxItem, BaseContextMenuContent, BaseContextMenuItem, BaseContextMenuLabel, BaseContextMenuRadioGroup, BaseContextMenuRadioItem, BaseContextMenuSeparator, BaseContextMenuSub, BaseContextMenuSubContent, BaseContextMenuSubTrigger, BaseContextMenuTrigger, BaseDescriptionList, BaseDialog, BaseDivider, BaseDropdownMenu, BaseEmptyState, BaseField, BaseFieldset, BaseGrid, BaseHeading, BaseInline, BaseInput, BaseInputGroup, BaseKbd, BaseLayout, BaseLayoutPane, BaseLayoutResizeHandle, BaseLayoutSplit, BaseLink, BaseList, BaseListItem, BaseLoadingState, BaseMultiSelect, BaseNotice, BaseNumberInput, BasePagination, BasePanel, BasePasswordInput, BasePortal, BaseProgress, BaseRadioGroup, BaseScrollArea, BaseSectionHeader, BaseSegmentedControl, BaseSelect, BaseSkeleton, BaseSpinner, BaseStack, BaseSteps, BaseSwitch, BaseTable, BaseTableBody, BaseTableCaption, BaseTableCell, BaseTableContainer, BaseTableEmpty, BaseTableFooter, BaseTableFooterBar, BaseTableHead, BaseTableHeader, BaseTableLoading, BaseTableRow, BaseTabs, BaseText, BaseTextarea, BaseToolbar, BaseTooltip, BaseVisuallyHidden, cn, getBaseBadgeToneClassName, getBaseButtonToneClassName, getBaseMenuItemToneClassName, getBaseNoticeToneClassName, resolveBaseAppearance };
12003
+ export { BaseAccordion, BaseAspectRatio, BaseAvatar, BaseBadge, BaseBreadcrumb, BaseButton, BaseCheckbox, BaseCode, BaseContainer, BaseContextMenu, BaseContextMenuCheckboxItem, BaseContextMenuContent, BaseContextMenuItem, BaseContextMenuLabel, BaseContextMenuRadioGroup, BaseContextMenuRadioItem, BaseContextMenuSeparator, BaseContextMenuSub, BaseContextMenuSubContent, BaseContextMenuSubTrigger, BaseContextMenuTrigger, BaseDescriptionList, BaseDialog, BaseDivider, BaseDropdownMenu, BaseEmptyState, BaseField, BaseFieldset, BaseGrid, BaseHeading, BaseInline, BaseInput, BaseInputGroup, BaseKbd, BaseLayout, BaseLayoutPane, BaseLayoutResizeHandle, BaseLayoutSplit, BaseLink, BaseList, BaseListItem, BaseLoadingState, BaseMultiSelect, BaseNotice, BaseNumberInput, BasePagination, BasePanel, BasePasswordInput, BasePortal, BaseProgress, BaseRadioGroup, BaseScrollArea, BaseSectionHeader, BaseSegmentedControl, BaseSelect, BaseSkeleton, BaseSpinner, BaseStack, BaseSteps, BaseSwitch, BaseSystemState, BaseTable, BaseTableBody, BaseTableCaption, BaseTableCell, BaseTableContainer, BaseTableEmpty, BaseTableFooter, BaseTableFooterBar, BaseTableHead, BaseTableHeader, BaseTableLoading, BaseTableRow, BaseTabs, BaseText, BaseTextarea, BaseToolbar, BaseTooltip, BaseVisuallyHidden, cn, getBaseBadgeToneClassName, getBaseButtonToneClassName, getBaseMenuItemToneClassName, getBaseNoticeToneClassName, resolveBaseAppearance };
11851
12004
  //# sourceMappingURL=index.mjs.map
11852
12005
  //# sourceMappingURL=index.mjs.map