@dimaan/ui 0.0.9 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -6,8 +6,10 @@ var clsx = require('clsx');
6
6
  var tailwindMerge = require('tailwind-merge');
7
7
  var jsxRuntime = require('react/jsx-runtime');
8
8
  var lucideReact = require('lucide-react');
9
+ var RadixDropdown = require('@radix-ui/react-dropdown-menu');
9
10
  var reactHookForm = require('react-hook-form');
10
11
  var RadixSelect = require('@radix-ui/react-select');
12
+ var RadixRadioGroup = require('@radix-ui/react-radio-group');
11
13
  var RadixSwitch = require('@radix-ui/react-switch');
12
14
 
13
15
  function _interopNamespace(e) {
@@ -28,7 +30,9 @@ function _interopNamespace(e) {
28
30
  return Object.freeze(n);
29
31
  }
30
32
 
33
+ var RadixDropdown__namespace = /*#__PURE__*/_interopNamespace(RadixDropdown);
31
34
  var RadixSelect__namespace = /*#__PURE__*/_interopNamespace(RadixSelect);
35
+ var RadixRadioGroup__namespace = /*#__PURE__*/_interopNamespace(RadixRadioGroup);
32
36
  var RadixSwitch__namespace = /*#__PURE__*/_interopNamespace(RadixSwitch);
33
37
 
34
38
  // src/components/app-shell/AppShell.tsx
@@ -722,6 +726,47 @@ function Avatar({ src, alt = "", fallback, size = "md", className, ...props }) {
722
726
  }
723
727
  );
724
728
  }
729
+
730
+ // src/components/badge/badgeVariants.ts
731
+ var badgeVariantClass = {
732
+ default: "bg-muted text-foreground border-transparent",
733
+ primary: "bg-primary text-primary-foreground border-transparent",
734
+ success: "bg-success text-success-foreground border-transparent",
735
+ warning: "bg-warning text-warning-foreground border-transparent",
736
+ destructive: "bg-destructive text-destructive-foreground border-transparent",
737
+ outline: "border-border bg-transparent text-foreground"
738
+ };
739
+ var badgeSizeClass = {
740
+ sm: "h-5 gap-1 px-2 text-[11px]",
741
+ md: "h-6 gap-1.5 px-2.5 text-xs"
742
+ };
743
+ var badgeDotSizeClass = {
744
+ sm: "size-1.5",
745
+ md: "size-2"
746
+ };
747
+ var badgeBaseClass = "inline-flex shrink-0 items-center rounded-full border font-medium leading-none whitespace-nowrap select-none transition-colors";
748
+ var Badge = react.forwardRef(function Badge2({ variant = "default", size = "md", dot = false, className, children, ...props }, ref) {
749
+ return /* @__PURE__ */ jsxRuntime.jsxs(
750
+ "span",
751
+ {
752
+ ref,
753
+ "data-slot": "badge",
754
+ "data-variant": variant,
755
+ className: cn(badgeBaseClass, badgeVariantClass[variant], badgeSizeClass[size], className),
756
+ ...props,
757
+ children: [
758
+ dot ? /* @__PURE__ */ jsxRuntime.jsx(
759
+ "span",
760
+ {
761
+ "aria-hidden": "true",
762
+ className: cn("inline-block rounded-full bg-current opacity-80", badgeDotSizeClass[size])
763
+ }
764
+ ) : null,
765
+ children
766
+ ]
767
+ }
768
+ );
769
+ });
725
770
  var sizeClass2 = {
726
771
  sm: "h-3.5 w-3.5",
727
772
  md: "h-4 w-4"
@@ -790,6 +835,166 @@ var Checkbox = react.forwardRef(function Checkbox2({
790
835
  )
791
836
  ] });
792
837
  });
838
+
839
+ // src/components/dropdown-menu/dropdownMenuVariants.ts
840
+ var dropdownMenuContentClass = "z-50 min-w-32 overflow-hidden rounded-md border border-border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95";
841
+ var dropdownMenuItemBaseClass = "relative flex w-full cursor-pointer select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:size-4 [&_svg]:shrink-0";
842
+ var dropdownMenuItemVariantClass = {
843
+ default: "text-foreground data-[highlighted]:bg-accent data-[highlighted]:text-accent-foreground",
844
+ destructive: "text-destructive data-[highlighted]:bg-destructive data-[highlighted]:text-destructive-foreground"
845
+ };
846
+ var dropdownMenuItemInsetClass = "ps-8";
847
+ var dropdownMenuSeparatorClass = "-mx-1 my-1 h-px bg-border";
848
+ var dropdownMenuLabelClass = "px-2 py-1.5 text-xs font-semibold text-muted-foreground select-none";
849
+ var dropdownMenuShortcutClass = "ms-auto text-xs tracking-widest text-muted-foreground";
850
+ var DropdownMenu = RadixDropdown__namespace.Root;
851
+ var DropdownMenuTrigger = RadixDropdown__namespace.Trigger;
852
+ var DropdownMenuGroup = RadixDropdown__namespace.Group;
853
+ var DropdownMenuPortal = RadixDropdown__namespace.Portal;
854
+ var DropdownMenuContent = react.forwardRef(function DropdownMenuContent2({ className, sideOffset = 4, ...props }, ref) {
855
+ return /* @__PURE__ */ jsxRuntime.jsx(RadixDropdown__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
856
+ RadixDropdown__namespace.Content,
857
+ {
858
+ ref,
859
+ sideOffset,
860
+ "data-slot": "dropdown-menu-content",
861
+ className: cn(dropdownMenuContentClass, className),
862
+ ...props
863
+ }
864
+ ) });
865
+ });
866
+ var DropdownMenuItem = react.forwardRef(function DropdownMenuItem2({ className, variant = "default", inset = false, ...props }, ref) {
867
+ return /* @__PURE__ */ jsxRuntime.jsx(
868
+ RadixDropdown__namespace.Item,
869
+ {
870
+ ref,
871
+ "data-slot": "dropdown-menu-item",
872
+ "data-variant": variant,
873
+ className: cn(
874
+ dropdownMenuItemBaseClass,
875
+ dropdownMenuItemVariantClass[variant],
876
+ inset && dropdownMenuItemInsetClass,
877
+ className
878
+ ),
879
+ ...props
880
+ }
881
+ );
882
+ });
883
+ var DropdownMenuSeparator = react.forwardRef(function DropdownMenuSeparator2({ className, ...props }, ref) {
884
+ return /* @__PURE__ */ jsxRuntime.jsx(
885
+ RadixDropdown__namespace.Separator,
886
+ {
887
+ ref,
888
+ "data-slot": "dropdown-menu-separator",
889
+ className: cn(dropdownMenuSeparatorClass, className),
890
+ ...props
891
+ }
892
+ );
893
+ });
894
+ var DropdownMenuLabel = react.forwardRef(function DropdownMenuLabel2({ className, inset = false, ...props }, ref) {
895
+ return /* @__PURE__ */ jsxRuntime.jsx(
896
+ RadixDropdown__namespace.Label,
897
+ {
898
+ ref,
899
+ "data-slot": "dropdown-menu-label",
900
+ className: cn(dropdownMenuLabelClass, inset && dropdownMenuItemInsetClass, className),
901
+ ...props
902
+ }
903
+ );
904
+ });
905
+ var DropdownMenuShortcut = react.forwardRef(
906
+ function DropdownMenuShortcut2({ className, ...props }, ref) {
907
+ return /* @__PURE__ */ jsxRuntime.jsx(
908
+ "span",
909
+ {
910
+ ref,
911
+ "data-slot": "dropdown-menu-shortcut",
912
+ className: cn(dropdownMenuShortcutClass, className),
913
+ ...props
914
+ }
915
+ );
916
+ }
917
+ );
918
+
919
+ // src/components/empty-state/emptyStateVariants.ts
920
+ var emptyStateContainerSizeClass = {
921
+ sm: "py-8 gap-2",
922
+ md: "py-14 gap-3",
923
+ lg: "py-20 gap-4"
924
+ };
925
+ var emptyStateIconWrapperSizeClass = {
926
+ sm: "size-10 [&_svg]:size-5",
927
+ md: "size-14 [&_svg]:size-7",
928
+ lg: "size-16 [&_svg]:size-8"
929
+ };
930
+ var emptyStateTitleSizeClass = {
931
+ sm: "text-sm",
932
+ md: "text-base",
933
+ lg: "text-lg"
934
+ };
935
+ var emptyStateDescriptionSizeClass = {
936
+ sm: "text-xs",
937
+ md: "text-sm",
938
+ lg: "text-sm"
939
+ };
940
+ var emptyStateActionsSpacingClass = {
941
+ sm: "mt-2",
942
+ md: "mt-4",
943
+ lg: "mt-6"
944
+ };
945
+ var emptyStateBaseClass = "flex flex-col items-center justify-center text-center px-4";
946
+ var emptyStateIconWrapperBaseClass = "inline-flex items-center justify-center rounded-full bg-muted text-muted-foreground";
947
+ var EmptyState = react.forwardRef(function EmptyState2({ icon, title, description, action, size = "md", className, ...props }, ref) {
948
+ return /* @__PURE__ */ jsxRuntime.jsxs(
949
+ "div",
950
+ {
951
+ ref,
952
+ role: "status",
953
+ "aria-live": "polite",
954
+ "data-slot": "empty-state",
955
+ className: cn(emptyStateBaseClass, emptyStateContainerSizeClass[size], className),
956
+ ...props,
957
+ children: [
958
+ icon ? /* @__PURE__ */ jsxRuntime.jsx(
959
+ "span",
960
+ {
961
+ "aria-hidden": "true",
962
+ "data-slot": "empty-state-icon",
963
+ className: cn(emptyStateIconWrapperBaseClass, emptyStateIconWrapperSizeClass[size]),
964
+ children: icon
965
+ }
966
+ ) : null,
967
+ /* @__PURE__ */ jsxRuntime.jsx(
968
+ "p",
969
+ {
970
+ "data-slot": "empty-state-title",
971
+ className: cn("font-semibold text-foreground", emptyStateTitleSizeClass[size]),
972
+ children: title
973
+ }
974
+ ),
975
+ description ? /* @__PURE__ */ jsxRuntime.jsx(
976
+ "p",
977
+ {
978
+ "data-slot": "empty-state-description",
979
+ className: cn("max-w-sm text-muted-foreground", emptyStateDescriptionSizeClass[size]),
980
+ children: description
981
+ }
982
+ ) : null,
983
+ action ? /* @__PURE__ */ jsxRuntime.jsx(
984
+ "div",
985
+ {
986
+ "data-slot": "empty-state-actions",
987
+ className: cn(
988
+ "flex flex-wrap items-center justify-center gap-2",
989
+ emptyStateActionsSpacingClass[size]
990
+ ),
991
+ children: action
992
+ }
993
+ ) : null
994
+ ]
995
+ }
996
+ );
997
+ });
793
998
  function Field(props) {
794
999
  const formContext = reactHookForm.useFormContext();
795
1000
  if (props.name !== void 0) {
@@ -934,86 +1139,67 @@ var inputBaseClass = "group/input relative inline-flex w-full items-center text-
934
1139
  var Input = react.forwardRef(function Input2({
935
1140
  variant = "default",
936
1141
  inputSize = "md",
937
- label,
938
- helperText,
939
- error,
940
1142
  leadingIcon,
941
1143
  trailingIcon,
942
- fullWidth = true,
943
1144
  type = "text",
944
1145
  id,
945
1146
  className,
946
1147
  wrapperClassName,
947
- containerClassName,
948
- "aria-invalid": ariaInvalidProp,
949
- "aria-describedby": ariaDescribedByProp,
1148
+ "aria-invalid": ariaInvalid,
1149
+ "aria-describedby": ariaDescribedBy,
950
1150
  disabled,
951
1151
  ...props
952
1152
  }, ref) {
953
1153
  const generatedId = react.useId();
954
1154
  const inputId = id ?? generatedId;
955
- const helperId = `${inputId}-helper`;
956
- const errorId = `${inputId}-error`;
957
- const hasError = error !== void 0 && error !== null && error !== false;
958
- const ariaInvalid = ariaInvalidProp ?? (hasError ? true : void 0);
959
- const describedByIds = [
960
- ariaDescribedByProp,
961
- hasError ? errorId : null,
962
- !hasError && helperText ? helperId : null
963
- ].filter(Boolean).join(" ");
964
- const ariaDescribedBy = describedByIds.length > 0 ? describedByIds : void 0;
965
- return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex flex-col gap-1.5", fullWidth && "w-full", containerClassName), children: [
966
- label !== void 0 && label !== null && /* @__PURE__ */ jsxRuntime.jsx("label", { htmlFor: inputId, className: "text-sm font-medium text-foreground select-none", children: label }),
967
- /* @__PURE__ */ jsxRuntime.jsxs(
968
- "div",
969
- {
970
- "data-slot": "input-wrapper",
971
- className: cn(
972
- inputBaseClass,
973
- inputVariantClass[variant],
974
- inputSizeClass[inputSize],
975
- wrapperClassName
1155
+ return /* @__PURE__ */ jsxRuntime.jsxs(
1156
+ "div",
1157
+ {
1158
+ "data-slot": "input-wrapper",
1159
+ className: cn(
1160
+ inputBaseClass,
1161
+ inputVariantClass[variant],
1162
+ inputSizeClass[inputSize],
1163
+ wrapperClassName
1164
+ ),
1165
+ "aria-invalid": ariaInvalid,
1166
+ "data-disabled": disabled ? "true" : void 0,
1167
+ children: [
1168
+ leadingIcon ? /* @__PURE__ */ jsxRuntime.jsx(
1169
+ "span",
1170
+ {
1171
+ "aria-hidden": "true",
1172
+ className: "inline-flex h-4 w-4 items-center justify-center text-muted-foreground",
1173
+ children: leadingIcon
1174
+ }
1175
+ ) : null,
1176
+ /* @__PURE__ */ jsxRuntime.jsx(
1177
+ "input",
1178
+ {
1179
+ ref,
1180
+ id: inputId,
1181
+ type,
1182
+ disabled,
1183
+ "aria-invalid": ariaInvalid,
1184
+ "aria-describedby": ariaDescribedBy,
1185
+ className: cn(
1186
+ "h-full w-full min-w-0 flex-1 bg-transparent outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed",
1187
+ className
1188
+ ),
1189
+ ...props
1190
+ }
976
1191
  ),
977
- "aria-invalid": ariaInvalid,
978
- "data-disabled": disabled ? "true" : void 0,
979
- children: [
980
- leadingIcon ? /* @__PURE__ */ jsxRuntime.jsx(
981
- "span",
982
- {
983
- "aria-hidden": "true",
984
- className: "inline-flex h-4 w-4 items-center justify-center text-muted-foreground",
985
- children: leadingIcon
986
- }
987
- ) : null,
988
- /* @__PURE__ */ jsxRuntime.jsx(
989
- "input",
990
- {
991
- ref,
992
- id: inputId,
993
- type,
994
- disabled,
995
- "aria-invalid": ariaInvalid,
996
- "aria-describedby": ariaDescribedBy,
997
- className: cn(
998
- "h-full w-full min-w-0 flex-1 bg-transparent outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed",
999
- className
1000
- ),
1001
- ...props
1002
- }
1003
- ),
1004
- trailingIcon ? /* @__PURE__ */ jsxRuntime.jsx(
1005
- "span",
1006
- {
1007
- "aria-hidden": "true",
1008
- className: "inline-flex h-4 w-4 items-center justify-center text-muted-foreground",
1009
- children: trailingIcon
1010
- }
1011
- ) : null
1012
- ]
1013
- }
1014
- ),
1015
- hasError ? /* @__PURE__ */ jsxRuntime.jsx("p", { id: errorId, className: "text-xs text-destructive", children: error }) : helperText ? /* @__PURE__ */ jsxRuntime.jsx("p", { id: helperId, className: "text-xs text-muted-foreground", children: helperText }) : null
1016
- ] });
1192
+ trailingIcon ? /* @__PURE__ */ jsxRuntime.jsx(
1193
+ "span",
1194
+ {
1195
+ "aria-hidden": "true",
1196
+ className: "inline-flex h-4 w-4 items-center justify-center text-muted-foreground",
1197
+ children: trailingIcon
1198
+ }
1199
+ ) : null
1200
+ ]
1201
+ }
1202
+ );
1017
1203
  });
1018
1204
  function LanguageSwitcher({
1019
1205
  languages,
@@ -1053,6 +1239,72 @@ function LanguageSwitcher({
1053
1239
  );
1054
1240
  }
1055
1241
 
1242
+ // src/components/page-header/pageHeaderVariants.ts
1243
+ var pageHeaderBaseClass = "flex w-full flex-col gap-3";
1244
+ var pageHeaderBorderedClass = "border-b border-border pb-4";
1245
+ var pageHeaderTitleRowClass = "flex flex-wrap items-start justify-between gap-3 sm:gap-4";
1246
+ var pageHeaderTitleBlockClass = "min-w-0 flex-1 space-y-1";
1247
+ var pageHeaderTitleClass = "text-2xl font-semibold tracking-tight text-foreground";
1248
+ var pageHeaderDescriptionClass = "text-sm text-muted-foreground";
1249
+ var pageHeaderActionsClass = "flex shrink-0 flex-wrap items-center gap-2";
1250
+ var pageHeaderBackClass = "inline-flex items-center gap-1.5 self-start text-sm text-muted-foreground transition-colors hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40 focus-visible:ring-offset-2 focus-visible:ring-offset-background rounded-md";
1251
+ var pageHeaderBackIconClass = "size-4 shrink-0 rtl:rotate-180";
1252
+ var pageHeaderBreadcrumbsClass = "text-xs text-muted-foreground";
1253
+ var PageHeader = react.forwardRef(function PageHeader2({
1254
+ title,
1255
+ description,
1256
+ breadcrumbs,
1257
+ back,
1258
+ actions,
1259
+ as = "h1",
1260
+ bordered = false,
1261
+ className,
1262
+ ...props
1263
+ }, ref) {
1264
+ return /* @__PURE__ */ jsxRuntime.jsxs(
1265
+ "header",
1266
+ {
1267
+ ref,
1268
+ "data-slot": "page-header",
1269
+ className: cn(pageHeaderBaseClass, bordered && pageHeaderBorderedClass, className),
1270
+ ...props,
1271
+ children: [
1272
+ breadcrumbs ? /* @__PURE__ */ jsxRuntime.jsx("div", { "data-slot": "page-header-breadcrumbs", className: pageHeaderBreadcrumbsClass, children: breadcrumbs }) : null,
1273
+ back ? /* @__PURE__ */ jsxRuntime.jsx(PageHeaderBack, { ...back }) : null,
1274
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-slot": "page-header-row", className: pageHeaderTitleRowClass, children: [
1275
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: pageHeaderTitleBlockClass, children: [
1276
+ react.createElement(
1277
+ as,
1278
+ { "data-slot": "page-header-title", className: pageHeaderTitleClass },
1279
+ title
1280
+ ),
1281
+ description ? /* @__PURE__ */ jsxRuntime.jsx("p", { "data-slot": "page-header-description", className: pageHeaderDescriptionClass, children: description }) : null
1282
+ ] }),
1283
+ actions ? /* @__PURE__ */ jsxRuntime.jsx("div", { "data-slot": "page-header-actions", className: pageHeaderActionsClass, children: actions }) : null
1284
+ ] })
1285
+ ]
1286
+ }
1287
+ );
1288
+ });
1289
+ function PageHeaderBack({ label = "Back", href, onClick, render }) {
1290
+ const inner = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
1291
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ArrowLeft, { className: pageHeaderBackIconClass, "aria-hidden": "true" }),
1292
+ /* @__PURE__ */ jsxRuntime.jsx("span", { children: label })
1293
+ ] });
1294
+ if (render) {
1295
+ return render({
1296
+ href,
1297
+ onClick,
1298
+ className: pageHeaderBackClass,
1299
+ children: inner
1300
+ });
1301
+ }
1302
+ if (href) {
1303
+ return /* @__PURE__ */ jsxRuntime.jsx("a", { href, onClick, className: pageHeaderBackClass, children: inner });
1304
+ }
1305
+ return /* @__PURE__ */ jsxRuntime.jsx("button", { type: "button", onClick, className: pageHeaderBackClass, children: inner });
1306
+ }
1307
+
1056
1308
  // src/components/select/selectVariants.ts
1057
1309
  var selectVariantClass = {
1058
1310
  default: "border border-input bg-background hover:border-ring",
@@ -1178,81 +1430,6 @@ var SelectItem = react.forwardRef(function SelectItem2({ className, children, ..
1178
1430
  /* @__PURE__ */ jsxRuntime.jsx(RadixSelect__namespace.ItemText, { children })
1179
1431
  ] });
1180
1432
  });
1181
-
1182
- // src/components/switch/switchVariants.ts
1183
- var switchTrackClass = {
1184
- sm: "h-4 w-7",
1185
- md: "h-5 w-9",
1186
- lg: "h-6 w-11"
1187
- };
1188
- var switchThumbClass = {
1189
- sm: "size-3 data-[state=checked]:translate-x-3 data-[state=checked]:rtl:-translate-x-3",
1190
- md: "size-4 data-[state=checked]:translate-x-4 data-[state=checked]:rtl:-translate-x-4",
1191
- lg: "size-5 data-[state=checked]:translate-x-5 data-[state=checked]:rtl:-translate-x-5"
1192
- };
1193
- var switchTrackBaseClass = "relative inline-flex shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent bg-input transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40 focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary aria-[invalid=true]:ring-2 aria-[invalid=true]:ring-destructive/40";
1194
- var switchThumbBaseClass = "pointer-events-none block rounded-full bg-background shadow-sm ring-0 transition-transform";
1195
- var Switch = react.forwardRef(function Switch2({
1196
- switchSize = "md",
1197
- checked,
1198
- defaultChecked,
1199
- onCheckedChange,
1200
- value,
1201
- onChange,
1202
- onBlur,
1203
- name,
1204
- disabled,
1205
- required,
1206
- id,
1207
- className,
1208
- "aria-label": ariaLabel,
1209
- "aria-describedby": ariaDescribedBy,
1210
- "aria-invalid": ariaInvalid
1211
- }, ref) {
1212
- const generatedId = react.useId();
1213
- const switchId = id ?? generatedId;
1214
- const resolvedChecked = checked ?? (value === void 0 ? void 0 : Boolean(value));
1215
- const handleCheckedChange = react.useCallback(
1216
- (next) => {
1217
- onCheckedChange?.(next);
1218
- if (onChange) {
1219
- const synthetic = {
1220
- target: { checked: next, value: next, name },
1221
- currentTarget: { checked: next, value: next, name },
1222
- type: "change"
1223
- };
1224
- onChange(synthetic);
1225
- }
1226
- },
1227
- [onCheckedChange, onChange, name]
1228
- );
1229
- return /* @__PURE__ */ jsxRuntime.jsx(
1230
- RadixSwitch__namespace.Root,
1231
- {
1232
- ref,
1233
- id: switchId,
1234
- checked: resolvedChecked,
1235
- defaultChecked,
1236
- onCheckedChange: handleCheckedChange,
1237
- onBlur,
1238
- disabled,
1239
- required,
1240
- name,
1241
- "aria-label": ariaLabel,
1242
- "aria-invalid": ariaInvalid,
1243
- "aria-describedby": ariaDescribedBy,
1244
- "data-slot": "switch-track",
1245
- className: cn(switchTrackBaseClass, switchTrackClass[switchSize], className),
1246
- children: /* @__PURE__ */ jsxRuntime.jsx(
1247
- RadixSwitch__namespace.Thumb,
1248
- {
1249
- "data-slot": "switch-thumb",
1250
- className: cn(switchThumbBaseClass, switchThumbClass[switchSize])
1251
- }
1252
- )
1253
- }
1254
- );
1255
- });
1256
1433
  function Pagination({
1257
1434
  pageIndex,
1258
1435
  pageSize,
@@ -1740,6 +1917,333 @@ function SortIndicator({ active, direction }) {
1740
1917
  if (!active) return /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronsUpDown, { "aria-hidden": "true", className });
1741
1918
  return direction === "asc" ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronUp, { "aria-hidden": "true", className }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { "aria-hidden": "true", className });
1742
1919
  }
1920
+ var DEFAULT_LABELS = {
1921
+ searchPlaceholder: "Search\u2026",
1922
+ searchAriaLabel: "Search",
1923
+ reset: "Reset filters",
1924
+ emptyTitle: "No results",
1925
+ emptyDescription: "Try clearing the search or adjusting the filters."
1926
+ };
1927
+ var FILTER_WIDTH_CLASS = {
1928
+ narrow: "w-32",
1929
+ default: "w-44",
1930
+ wide: "w-56"
1931
+ };
1932
+ function ListPage({
1933
+ title,
1934
+ description,
1935
+ bordered = true,
1936
+ actions,
1937
+ data,
1938
+ columns,
1939
+ getRowId,
1940
+ searchKeys,
1941
+ filters,
1942
+ enableRowSelection,
1943
+ bulkActions,
1944
+ emptyState,
1945
+ labels: labelsProp,
1946
+ className
1947
+ }) {
1948
+ const labels = { ...DEFAULT_LABELS, ...labelsProp };
1949
+ const initialFilterValues = react.useMemo(() => {
1950
+ const init = {};
1951
+ for (const f of filters ?? []) {
1952
+ init[f.key] = f.defaultValue ?? f.options[0]?.value ?? "";
1953
+ }
1954
+ return init;
1955
+ }, [filters]);
1956
+ const [search, setSearch] = react.useState("");
1957
+ const [filterValues, setFilterValues] = react.useState(initialFilterValues);
1958
+ const setFilter = (key, value) => {
1959
+ setFilterValues((prev) => ({ ...prev, [key]: value }));
1960
+ };
1961
+ const reset = () => {
1962
+ setSearch("");
1963
+ setFilterValues(initialFilterValues);
1964
+ };
1965
+ const hasActiveFilters = react.useMemo(() => {
1966
+ if (search.trim() !== "") return true;
1967
+ for (const f of filters ?? []) {
1968
+ const current = filterValues[f.key];
1969
+ const def = f.defaultValue ?? f.options[0]?.value ?? "";
1970
+ if (current !== def) return true;
1971
+ }
1972
+ return false;
1973
+ }, [search, filters, filterValues]);
1974
+ const filtered = react.useMemo(() => {
1975
+ return data.filter((row) => {
1976
+ if (search.trim() && searchKeys && searchKeys.length > 0) {
1977
+ const q = search.trim().toLowerCase();
1978
+ const matches = searchKeys.some((key) => {
1979
+ const val = row[key];
1980
+ return val != null && String(val).toLowerCase().includes(q);
1981
+ });
1982
+ if (!matches) return false;
1983
+ }
1984
+ for (const f of filters ?? []) {
1985
+ const value = filterValues[f.key];
1986
+ const def = f.defaultValue ?? f.options[0]?.value ?? "";
1987
+ if (value !== void 0 && value !== def) {
1988
+ if (f.accessor(row) !== value) return false;
1989
+ }
1990
+ }
1991
+ return true;
1992
+ });
1993
+ }, [data, search, searchKeys, filters, filterValues]);
1994
+ const showFilterBar = Boolean(searchKeys?.length) || Boolean(filters?.length);
1995
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-slot": "list-page", className: cn("space-y-6", className), children: [
1996
+ /* @__PURE__ */ jsxRuntime.jsx(PageHeader, { title, description, bordered, actions }),
1997
+ showFilterBar ? /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-slot": "list-page-filter-bar", className: "flex flex-wrap items-center gap-3", children: [
1998
+ searchKeys?.length ? /* @__PURE__ */ jsxRuntime.jsx(
1999
+ Input,
2000
+ {
2001
+ type: "search",
2002
+ placeholder: labels.searchPlaceholder,
2003
+ "aria-label": labels.searchAriaLabel || labels.searchPlaceholder,
2004
+ value: search,
2005
+ onChange: (e) => setSearch(e.target.value),
2006
+ leadingIcon: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Search, {}),
2007
+ wrapperClassName: "sm:max-w-xs"
2008
+ }
2009
+ ) : null,
2010
+ filters?.map((f) => /* @__PURE__ */ jsxRuntime.jsx(
2011
+ Select,
2012
+ {
2013
+ "aria-label": f.ariaLabel,
2014
+ value: filterValues[f.key],
2015
+ onValueChange: (v) => setFilter(f.key, v),
2016
+ options: f.options,
2017
+ className: FILTER_WIDTH_CLASS[f.width ?? "default"]
2018
+ },
2019
+ f.key
2020
+ )),
2021
+ hasActiveFilters ? /* @__PURE__ */ jsxRuntime.jsxs(Button, { variant: "ghost", onClick: reset, children: [
2022
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.RefreshCw, {}),
2023
+ labels.reset
2024
+ ] }) : null
2025
+ ] }) : null,
2026
+ filtered.length > 0 ? /* @__PURE__ */ jsxRuntime.jsx(
2027
+ Table,
2028
+ {
2029
+ "aria-label": typeof title === "string" ? title : void 0,
2030
+ data: filtered,
2031
+ columns,
2032
+ getRowId,
2033
+ enableRowSelection,
2034
+ bulkActions
2035
+ }
2036
+ ) : /* @__PURE__ */ jsxRuntime.jsx("div", { "data-slot": "list-page-empty", className: "rounded-md border border-border", children: /* @__PURE__ */ jsxRuntime.jsx(
2037
+ EmptyState,
2038
+ {
2039
+ icon: emptyState?.icon,
2040
+ title: emptyState?.title ?? labels.emptyTitle,
2041
+ description: emptyState?.description ?? labels.emptyDescription,
2042
+ action: emptyState?.action !== void 0 ? emptyState.action : hasActiveFilters ? /* @__PURE__ */ jsxRuntime.jsx(Button, { variant: "outline", onClick: reset, children: labels.reset }) : null
2043
+ }
2044
+ ) })
2045
+ ] });
2046
+ }
2047
+
2048
+ // src/components/radio-group/radioGroupVariants.ts
2049
+ var radioItemSizeClass = {
2050
+ sm: "size-4",
2051
+ md: "size-5",
2052
+ lg: "size-6"
2053
+ };
2054
+ var radioIndicatorSizeClass = {
2055
+ sm: "size-1.5",
2056
+ md: "size-2",
2057
+ lg: "size-2.5"
2058
+ };
2059
+ var radioLabelSizeClass = {
2060
+ sm: "text-xs",
2061
+ md: "text-sm",
2062
+ lg: "text-base"
2063
+ };
2064
+ var radioItemBaseClass = "aspect-square shrink-0 rounded-full border border-input bg-background text-primary outline-none transition-colors focus-visible:ring-2 focus-visible:ring-ring/40 focus-visible:ring-offset-2 focus-visible:ring-offset-background hover:border-ring disabled:cursor-not-allowed disabled:opacity-50 aria-[invalid=true]:border-destructive aria-[invalid=true]:focus-visible:ring-destructive/40 data-[state=checked]:border-primary";
2065
+ var radioIndicatorBaseClass = "flex h-full w-full items-center justify-center";
2066
+ var radioIndicatorDotClass = "rounded-full bg-primary";
2067
+ var radioOptionRowClass = "flex cursor-pointer items-start gap-2 has-[button:disabled]:cursor-not-allowed";
2068
+ var radioGroupBaseClass = "flex gap-3";
2069
+ var radioGroupOrientationClass = {
2070
+ vertical: "flex-col",
2071
+ horizontal: "flex-row flex-wrap"
2072
+ };
2073
+ var RadioGroup = react.forwardRef(function RadioGroup2({
2074
+ radioSize = "md",
2075
+ orientation = "vertical",
2076
+ value,
2077
+ defaultValue,
2078
+ onValueChange,
2079
+ onChange,
2080
+ onBlur,
2081
+ name,
2082
+ disabled,
2083
+ required,
2084
+ id,
2085
+ options,
2086
+ className,
2087
+ "aria-label": ariaLabel,
2088
+ "aria-labelledby": ariaLabelledBy,
2089
+ "aria-describedby": ariaDescribedBy,
2090
+ "aria-invalid": ariaInvalid,
2091
+ children
2092
+ }, ref) {
2093
+ const generatedId = react.useId();
2094
+ const groupId = id ?? generatedId;
2095
+ const handleValueChange = react.useCallback(
2096
+ (next) => {
2097
+ onValueChange?.(next);
2098
+ if (onChange) {
2099
+ const synthetic = {
2100
+ target: { value: next, name },
2101
+ currentTarget: { value: next, name },
2102
+ type: "change"
2103
+ };
2104
+ onChange(synthetic);
2105
+ }
2106
+ },
2107
+ [onValueChange, onChange, name]
2108
+ );
2109
+ return /* @__PURE__ */ jsxRuntime.jsx(
2110
+ RadixRadioGroup__namespace.Root,
2111
+ {
2112
+ ref,
2113
+ id: groupId,
2114
+ value,
2115
+ defaultValue,
2116
+ onValueChange: handleValueChange,
2117
+ onBlur,
2118
+ disabled,
2119
+ required,
2120
+ name,
2121
+ orientation,
2122
+ "aria-label": ariaLabel,
2123
+ "aria-labelledby": ariaLabelledBy,
2124
+ "aria-describedby": ariaDescribedBy,
2125
+ "aria-invalid": ariaInvalid,
2126
+ "data-slot": "radio-group",
2127
+ className: cn(radioGroupBaseClass, radioGroupOrientationClass[orientation], className),
2128
+ children: children ?? options?.map((opt) => /* @__PURE__ */ jsxRuntime.jsx(
2129
+ RadioGroupOptionRow,
2130
+ {
2131
+ option: opt,
2132
+ radioSize,
2133
+ groupId
2134
+ },
2135
+ opt.value
2136
+ ))
2137
+ }
2138
+ );
2139
+ });
2140
+ function RadioGroupOptionRow({ option, radioSize, groupId }) {
2141
+ const itemId = `${groupId}-${option.value}`;
2142
+ return /* @__PURE__ */ jsxRuntime.jsxs("label", { htmlFor: itemId, className: radioOptionRowClass, children: [
2143
+ /* @__PURE__ */ jsxRuntime.jsx(
2144
+ RadixRadioGroup__namespace.Item,
2145
+ {
2146
+ id: itemId,
2147
+ value: option.value,
2148
+ disabled: option.disabled,
2149
+ "data-slot": "radio-item",
2150
+ className: cn(radioItemBaseClass, radioItemSizeClass[radioSize], "mt-0.5"),
2151
+ children: /* @__PURE__ */ jsxRuntime.jsx(RadixRadioGroup__namespace.Indicator, { className: radioIndicatorBaseClass, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: cn(radioIndicatorDotClass, radioIndicatorSizeClass[radioSize]) }) })
2152
+ }
2153
+ ),
2154
+ /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "min-w-0 flex-1 leading-tight", children: [
2155
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: cn("block font-medium text-foreground", radioLabelSizeClass[radioSize]), children: option.label }),
2156
+ option.description ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "mt-0.5 block text-xs text-muted-foreground", children: option.description }) : null
2157
+ ] })
2158
+ ] });
2159
+ }
2160
+ var RadioGroupItem = react.forwardRef(function RadioGroupItem2({ className, radioSize = "md", ...props }, ref) {
2161
+ return /* @__PURE__ */ jsxRuntime.jsx(
2162
+ RadixRadioGroup__namespace.Item,
2163
+ {
2164
+ ref,
2165
+ "data-slot": "radio-item",
2166
+ className: cn(radioItemBaseClass, radioItemSizeClass[radioSize], className),
2167
+ ...props,
2168
+ children: /* @__PURE__ */ jsxRuntime.jsx(RadixRadioGroup__namespace.Indicator, { className: radioIndicatorBaseClass, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: cn(radioIndicatorDotClass, radioIndicatorSizeClass[radioSize]) }) })
2169
+ }
2170
+ );
2171
+ });
2172
+
2173
+ // src/components/switch/switchVariants.ts
2174
+ var switchTrackClass = {
2175
+ sm: "h-4 w-7",
2176
+ md: "h-5 w-9",
2177
+ lg: "h-6 w-11"
2178
+ };
2179
+ var switchThumbClass = {
2180
+ sm: "size-3 data-[state=checked]:translate-x-3 data-[state=checked]:rtl:-translate-x-3",
2181
+ md: "size-4 data-[state=checked]:translate-x-4 data-[state=checked]:rtl:-translate-x-4",
2182
+ lg: "size-5 data-[state=checked]:translate-x-5 data-[state=checked]:rtl:-translate-x-5"
2183
+ };
2184
+ var switchTrackBaseClass = "relative inline-flex shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent bg-input transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40 focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary aria-[invalid=true]:ring-2 aria-[invalid=true]:ring-destructive/40";
2185
+ var switchThumbBaseClass = "pointer-events-none block rounded-full bg-background shadow-sm ring-0 transition-transform";
2186
+ var Switch = react.forwardRef(function Switch2({
2187
+ switchSize = "md",
2188
+ checked,
2189
+ defaultChecked,
2190
+ onCheckedChange,
2191
+ value,
2192
+ onChange,
2193
+ onBlur,
2194
+ name,
2195
+ disabled,
2196
+ required,
2197
+ id,
2198
+ className,
2199
+ "aria-label": ariaLabel,
2200
+ "aria-describedby": ariaDescribedBy,
2201
+ "aria-invalid": ariaInvalid
2202
+ }, ref) {
2203
+ const generatedId = react.useId();
2204
+ const switchId = id ?? generatedId;
2205
+ const resolvedChecked = checked ?? (value === void 0 ? void 0 : Boolean(value));
2206
+ const handleCheckedChange = react.useCallback(
2207
+ (next) => {
2208
+ onCheckedChange?.(next);
2209
+ if (onChange) {
2210
+ const synthetic = {
2211
+ target: { checked: next, value: next, name },
2212
+ currentTarget: { checked: next, value: next, name },
2213
+ type: "change"
2214
+ };
2215
+ onChange(synthetic);
2216
+ }
2217
+ },
2218
+ [onCheckedChange, onChange, name]
2219
+ );
2220
+ return /* @__PURE__ */ jsxRuntime.jsx(
2221
+ RadixSwitch__namespace.Root,
2222
+ {
2223
+ ref,
2224
+ id: switchId,
2225
+ checked: resolvedChecked,
2226
+ defaultChecked,
2227
+ onCheckedChange: handleCheckedChange,
2228
+ onBlur,
2229
+ disabled,
2230
+ required,
2231
+ name,
2232
+ "aria-label": ariaLabel,
2233
+ "aria-invalid": ariaInvalid,
2234
+ "aria-describedby": ariaDescribedBy,
2235
+ "data-slot": "switch-track",
2236
+ className: cn(switchTrackBaseClass, switchTrackClass[switchSize], className),
2237
+ children: /* @__PURE__ */ jsxRuntime.jsx(
2238
+ RadixSwitch__namespace.Thumb,
2239
+ {
2240
+ "data-slot": "switch-thumb",
2241
+ className: cn(switchThumbBaseClass, switchThumbClass[switchSize])
2242
+ }
2243
+ )
2244
+ }
2245
+ );
2246
+ });
1743
2247
 
1744
2248
  // src/components/textarea/textareaVariants.ts
1745
2249
  var textareaVariantClass = {
@@ -1763,77 +2267,69 @@ var Textarea = react.forwardRef(function Textarea2({
1763
2267
  variant = "default",
1764
2268
  textareaSize = "md",
1765
2269
  resize = "vertical",
1766
- label,
1767
- helperText,
1768
- error,
1769
- fullWidth = true,
1770
2270
  rows = 4,
1771
2271
  id,
1772
2272
  className,
1773
2273
  wrapperClassName,
1774
- containerClassName,
1775
- "aria-invalid": ariaInvalidProp,
1776
- "aria-describedby": ariaDescribedByProp,
2274
+ "aria-invalid": ariaInvalid,
2275
+ "aria-describedby": ariaDescribedBy,
1777
2276
  disabled,
1778
2277
  ...props
1779
2278
  }, ref) {
1780
2279
  const generatedId = react.useId();
1781
2280
  const textareaId = id ?? generatedId;
1782
- const helperId = `${textareaId}-helper`;
1783
- const errorId = `${textareaId}-error`;
1784
- const hasError = error !== void 0 && error !== null && error !== false;
1785
- const ariaInvalid = ariaInvalidProp ?? (hasError ? true : void 0);
1786
- const describedByIds = [
1787
- ariaDescribedByProp,
1788
- hasError ? errorId : null,
1789
- !hasError && helperText ? helperId : null
1790
- ].filter(Boolean).join(" ");
1791
- const ariaDescribedBy = describedByIds.length > 0 ? describedByIds : void 0;
1792
- return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex flex-col gap-1.5", fullWidth && "w-full", containerClassName), children: [
1793
- label !== void 0 && label !== null && /* @__PURE__ */ jsxRuntime.jsx("label", { htmlFor: textareaId, className: "text-sm font-medium text-foreground select-none", children: label }),
1794
- /* @__PURE__ */ jsxRuntime.jsx(
1795
- "div",
1796
- {
1797
- "data-slot": "textarea-wrapper",
1798
- className: cn(
1799
- textareaBaseClass,
1800
- textareaVariantClass[variant],
1801
- textareaSizeClass[textareaSize],
1802
- wrapperClassName
1803
- ),
1804
- "aria-invalid": ariaInvalid,
1805
- "data-disabled": disabled ? "true" : void 0,
1806
- children: /* @__PURE__ */ jsxRuntime.jsx(
1807
- "textarea",
1808
- {
1809
- ref,
1810
- id: textareaId,
1811
- rows,
1812
- disabled,
1813
- "aria-invalid": ariaInvalid,
1814
- "aria-describedby": ariaDescribedBy,
1815
- className: cn(
1816
- "w-full min-w-0 flex-1 bg-transparent outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed",
1817
- textareaResizeClass[resize],
1818
- className
1819
- ),
1820
- ...props
1821
- }
1822
- )
1823
- }
1824
- ),
1825
- hasError ? /* @__PURE__ */ jsxRuntime.jsx("p", { id: errorId, className: "text-xs text-destructive", children: error }) : helperText ? /* @__PURE__ */ jsxRuntime.jsx("p", { id: helperId, className: "text-xs text-muted-foreground", children: helperText }) : null
1826
- ] });
2281
+ return /* @__PURE__ */ jsxRuntime.jsx(
2282
+ "div",
2283
+ {
2284
+ "data-slot": "textarea-wrapper",
2285
+ className: cn(
2286
+ textareaBaseClass,
2287
+ textareaVariantClass[variant],
2288
+ textareaSizeClass[textareaSize],
2289
+ wrapperClassName
2290
+ ),
2291
+ "aria-invalid": ariaInvalid,
2292
+ "data-disabled": disabled ? "true" : void 0,
2293
+ children: /* @__PURE__ */ jsxRuntime.jsx(
2294
+ "textarea",
2295
+ {
2296
+ ref,
2297
+ id: textareaId,
2298
+ rows,
2299
+ disabled,
2300
+ "aria-invalid": ariaInvalid,
2301
+ "aria-describedby": ariaDescribedBy,
2302
+ className: cn(
2303
+ "w-full min-w-0 flex-1 bg-transparent outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed",
2304
+ textareaResizeClass[resize],
2305
+ className
2306
+ ),
2307
+ ...props
2308
+ }
2309
+ )
2310
+ }
2311
+ );
1827
2312
  });
1828
2313
 
1829
2314
  exports.AppShell = AppShell;
1830
2315
  exports.Avatar = Avatar;
2316
+ exports.Badge = Badge;
1831
2317
  exports.Button = Button;
1832
2318
  exports.Checkbox = Checkbox;
1833
2319
  exports.DashboardContent = DashboardContent;
1834
2320
  exports.DashboardHeader = DashboardHeader;
1835
2321
  exports.DashboardLayout = DashboardLayout;
1836
2322
  exports.DashboardMain = DashboardMain;
2323
+ exports.DropdownMenu = DropdownMenu;
2324
+ exports.DropdownMenuContent = DropdownMenuContent;
2325
+ exports.DropdownMenuGroup = DropdownMenuGroup;
2326
+ exports.DropdownMenuItem = DropdownMenuItem;
2327
+ exports.DropdownMenuLabel = DropdownMenuLabel;
2328
+ exports.DropdownMenuPortal = DropdownMenuPortal;
2329
+ exports.DropdownMenuSeparator = DropdownMenuSeparator;
2330
+ exports.DropdownMenuShortcut = DropdownMenuShortcut;
2331
+ exports.DropdownMenuTrigger = DropdownMenuTrigger;
2332
+ exports.EmptyState = EmptyState;
1837
2333
  exports.Field = Field;
1838
2334
  exports.HeaderActions = HeaderActions;
1839
2335
  exports.HeaderCollapseTrigger = HeaderCollapseTrigger;
@@ -1842,6 +2338,10 @@ exports.HeaderSearch = HeaderSearch;
1842
2338
  exports.HeaderTitle = HeaderTitle;
1843
2339
  exports.Input = Input;
1844
2340
  exports.LanguageSwitcher = LanguageSwitcher;
2341
+ exports.ListPage = ListPage;
2342
+ exports.PageHeader = PageHeader;
2343
+ exports.RadioGroup = RadioGroup;
2344
+ exports.RadioGroupItem = RadioGroupItem;
1845
2345
  exports.Select = Select;
1846
2346
  exports.Sidebar = Sidebar;
1847
2347
  exports.SidebarFooter = SidebarFooter;
@@ -1853,13 +2353,50 @@ exports.SidebarNavItem = SidebarNavItem;
1853
2353
  exports.Switch = Switch;
1854
2354
  exports.Table = Table;
1855
2355
  exports.Textarea = Textarea;
2356
+ exports.badgeBaseClass = badgeBaseClass;
2357
+ exports.badgeDotSizeClass = badgeDotSizeClass;
2358
+ exports.badgeSizeClass = badgeSizeClass;
2359
+ exports.badgeVariantClass = badgeVariantClass;
1856
2360
  exports.buttonBaseClass = buttonBaseClass;
1857
2361
  exports.buttonSizeClass = buttonSizeClass;
1858
2362
  exports.buttonVariantClass = buttonVariantClass;
1859
2363
  exports.cn = cn;
2364
+ exports.dropdownMenuContentClass = dropdownMenuContentClass;
2365
+ exports.dropdownMenuItemBaseClass = dropdownMenuItemBaseClass;
2366
+ exports.dropdownMenuItemInsetClass = dropdownMenuItemInsetClass;
2367
+ exports.dropdownMenuItemVariantClass = dropdownMenuItemVariantClass;
2368
+ exports.dropdownMenuLabelClass = dropdownMenuLabelClass;
2369
+ exports.dropdownMenuSeparatorClass = dropdownMenuSeparatorClass;
2370
+ exports.dropdownMenuShortcutClass = dropdownMenuShortcutClass;
2371
+ exports.emptyStateActionsSpacingClass = emptyStateActionsSpacingClass;
2372
+ exports.emptyStateBaseClass = emptyStateBaseClass;
2373
+ exports.emptyStateContainerSizeClass = emptyStateContainerSizeClass;
2374
+ exports.emptyStateDescriptionSizeClass = emptyStateDescriptionSizeClass;
2375
+ exports.emptyStateIconWrapperBaseClass = emptyStateIconWrapperBaseClass;
2376
+ exports.emptyStateIconWrapperSizeClass = emptyStateIconWrapperSizeClass;
2377
+ exports.emptyStateTitleSizeClass = emptyStateTitleSizeClass;
1860
2378
  exports.inputBaseClass = inputBaseClass;
1861
2379
  exports.inputSizeClass = inputSizeClass;
1862
2380
  exports.inputVariantClass = inputVariantClass;
2381
+ exports.pageHeaderActionsClass = pageHeaderActionsClass;
2382
+ exports.pageHeaderBackClass = pageHeaderBackClass;
2383
+ exports.pageHeaderBackIconClass = pageHeaderBackIconClass;
2384
+ exports.pageHeaderBaseClass = pageHeaderBaseClass;
2385
+ exports.pageHeaderBorderedClass = pageHeaderBorderedClass;
2386
+ exports.pageHeaderBreadcrumbsClass = pageHeaderBreadcrumbsClass;
2387
+ exports.pageHeaderDescriptionClass = pageHeaderDescriptionClass;
2388
+ exports.pageHeaderTitleBlockClass = pageHeaderTitleBlockClass;
2389
+ exports.pageHeaderTitleClass = pageHeaderTitleClass;
2390
+ exports.pageHeaderTitleRowClass = pageHeaderTitleRowClass;
2391
+ exports.radioGroupBaseClass = radioGroupBaseClass;
2392
+ exports.radioGroupOrientationClass = radioGroupOrientationClass;
2393
+ exports.radioIndicatorBaseClass = radioIndicatorBaseClass;
2394
+ exports.radioIndicatorDotClass = radioIndicatorDotClass;
2395
+ exports.radioIndicatorSizeClass = radioIndicatorSizeClass;
2396
+ exports.radioItemBaseClass = radioItemBaseClass;
2397
+ exports.radioItemSizeClass = radioItemSizeClass;
2398
+ exports.radioLabelSizeClass = radioLabelSizeClass;
2399
+ exports.radioOptionRowClass = radioOptionRowClass;
1863
2400
  exports.selectBaseClass = selectBaseClass;
1864
2401
  exports.selectSizeClass = selectSizeClass;
1865
2402
  exports.selectVariantClass = selectVariantClass;