react-os-shell 4.31.0 → 4.41.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/dist/{Browser-63NYU74S.js → Browser-TKBH4DZ3.js} +4 -4
  2. package/dist/{Browser-63NYU74S.js.map → Browser-TKBH4DZ3.js.map} +1 -1
  3. package/dist/{Documents-YP4GBBRF.js → Documents-YRTLDTLX.js} +4 -4
  4. package/dist/{Documents-YP4GBBRF.js.map → Documents-YRTLDTLX.js.map} +1 -1
  5. package/dist/{Files-6JWIE3VH.js → Files-WHYCDRYU.js} +4 -4
  6. package/dist/{Files-6JWIE3VH.js.map → Files-WHYCDRYU.js.map} +1 -1
  7. package/dist/{Notepad-EHO56UNK.js → Notepad-6UAWRNZH.js} +4 -4
  8. package/dist/{Notepad-EHO56UNK.js.map → Notepad-6UAWRNZH.js.map} +1 -1
  9. package/dist/{Preview-67IPCMSN.js → Preview-VBIWWJLK.js} +4 -4
  10. package/dist/{Preview-67IPCMSN.js.map → Preview-VBIWWJLK.js.map} +1 -1
  11. package/dist/{Spreadsheet-HVXBAFR7.js → Spreadsheet-GRD4P3OI.js} +4 -4
  12. package/dist/{Spreadsheet-HVXBAFR7.js.map → Spreadsheet-GRD4P3OI.js.map} +1 -1
  13. package/dist/apps/index.js +8 -8
  14. package/dist/{chunk-BT3EQNH3.js → chunk-COTCIYLS.js} +3 -3
  15. package/dist/{chunk-BT3EQNH3.js.map → chunk-COTCIYLS.js.map} +1 -1
  16. package/dist/{chunk-7NIFBQUX.js → chunk-D4WFGAUW.js} +217 -61
  17. package/dist/chunk-D4WFGAUW.js.map +1 -0
  18. package/dist/chunk-TQFUNASX.js +7 -0
  19. package/dist/{chunk-SGS3IQEL.js.map → chunk-TQFUNASX.js.map} +1 -1
  20. package/dist/{index-CdxMm6Dk.d.ts → index-B4RRJ5bp.d.ts} +127 -31
  21. package/dist/index.d.ts +2 -2
  22. package/dist/index.js +4 -4
  23. package/dist/ui/index.d.ts +1 -1
  24. package/dist/ui/index.js +2 -2
  25. package/package.json +1 -1
  26. package/dist/chunk-7NIFBQUX.js.map +0 -1
  27. package/dist/chunk-SGS3IQEL.js +0 -7
@@ -0,0 +1,7 @@
1
+ // src/version.ts
2
+ var VERSION = "4.41.0" ;
3
+ var APP_VERSION = VERSION;
4
+
5
+ export { APP_VERSION, VERSION };
6
+ //# sourceMappingURL=chunk-TQFUNASX.js.map
7
+ //# sourceMappingURL=chunk-TQFUNASX.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/version.ts"],"names":[],"mappings":";AAIO,IAAM,OAAA,GAAwD,QAAA;AAG9D,IAAM,WAAA,GAAc","file":"chunk-SGS3IQEL.js","sourcesContent":["declare const __PKG_VERSION__: string | undefined;\n\n/** Package version, injected by tsup at build time. Stays as an empty\n * string when the source is consumed without a build (e.g. tests). */\nexport const VERSION: string = typeof __PKG_VERSION__ === 'string' ? __PKG_VERSION__ : '';\n\n/** Legacy alias kept so existing consumers do not break. */\nexport const APP_VERSION = VERSION;\n"]}
1
+ {"version":3,"sources":["../src/version.ts"],"names":[],"mappings":";AAIO,IAAM,OAAA,GAAwD,QAAA;AAG9D,IAAM,WAAA,GAAc","file":"chunk-TQFUNASX.js","sourcesContent":["declare const __PKG_VERSION__: string | undefined;\n\n/** Package version, injected by tsup at build time. Stays as an empty\n * string when the source is consumed without a build (e.g. tests). */\nexport const VERSION: string = typeof __PKG_VERSION__ === 'string' ? __PKG_VERSION__ : '';\n\n/** Legacy alias kept so existing consumers do not break. */\nexport const APP_VERSION = VERSION;\n"]}
@@ -10,9 +10,9 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
10
10
  * it lets someone tell what the button costs WITHOUT reading it, which under
11
11
  * time pressure is what actually happens.
12
12
  */
13
- type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'ghost-danger' | 'danger';
13
+ type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'ghost-danger' | 'danger' | 'link';
14
14
  /**
15
- * `sm`/`md` are the desktop scale. The `touch-*` rungs are for a finger on
15
+ * `sm`/`md`/`lg` are the desktop scale. The `touch-*` rungs are for a finger on
16
16
  * glass — a till, a warehouse tablet — and are a SEPARATE ladder on purpose:
17
17
  * a till's idea of "medium" is 56px, and naming it `md` would have made the
18
18
  * same word mean two sizes depending on which app you were reading.
@@ -20,7 +20,7 @@ type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'ghost-danger' | 'dange
20
20
  * Nothing picks a touch size automatically. An app that wants them asks for
21
21
  * them, so a desktop portal cannot grow finger-sized buttons by accident.
22
22
  */
23
- type ButtonSize = 'sm' | 'md' | 'touch-sm' | 'touch' | 'touch-lg' | 'touch-xl';
23
+ type ButtonSize = 'sm' | 'md' | 'lg' | 'touch-sm' | 'touch' | 'touch-lg' | 'touch-xl';
24
24
  interface ButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'className'> {
25
25
  variant?: ButtonVariant;
26
26
  size?: ButtonSize;
@@ -59,7 +59,12 @@ interface IconButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>,
59
59
  * affordance, a close — and a grid of solid blue squares is not what any of
60
60
  * those want. Ask for `primary` on the rare icon-only main action.
61
61
  */
62
- variant?: ButtonVariant;
62
+ /**
63
+ * `link` is excluded: it exists to shed the box, and a square icon button is
64
+ * nothing but the box. Asking for it would produce a bare coloured glyph
65
+ * with a 40px hit area it no longer draws.
66
+ */
67
+ variant?: Exclude<ButtonVariant, 'link'>;
63
68
  size?: ButtonSize;
64
69
  className?: string;
65
70
  }
@@ -75,15 +80,17 @@ declare const IconButton: react.ForwardRefExoticComponent<IconButtonProps & reac
75
80
  * so the classes survive both the dark-mode allow-list and the design-sync
76
81
  * compiled stylesheet.
77
82
  */
78
- /** `md` is the desktop control; `touch` is a finger on glass. See ButtonSize
79
- * for why the touch scale is a separate ladder rather than a bigger `lg`. */
80
- type InputSize = 'md' | 'touch';
83
+ /** `sm`/`md`/`lg` are the desktop ladder; `touch` is a finger on glass. See
84
+ * ButtonSize for why touch is a separate rung rather than the top of this
85
+ * ladder a till's idea of "large" is 56px, and one word cannot mean both. */
86
+ type InputSize = 'sm' | 'md' | 'lg' | 'touch';
81
87
  declare const INPUT_SIZES: Record<InputSize, string>;
82
88
  /** Base look for a text-bearing form control. Native <input>/<select>/<textarea>
83
89
  * also receive dark styling for free via the global rule in styles.css. */
84
90
  declare const INPUT_BASE: string;
85
- /** Compose the input classes for a control. Omitting `size` yields exactly
86
- * `INPUT_BASE`, so every existing caller is unaffected. */
91
+ /** Compose the input classes for a control. Omitting `size` or passing the
92
+ * default `md` — yields exactly `INPUT_BASE`, so every existing caller is
93
+ * unaffected. */
87
94
  declare function inputClasses(opts?: {
88
95
  invalid?: boolean;
89
96
  size?: InputSize;
@@ -115,6 +122,8 @@ interface TextareaProps extends Omit<TextareaHTMLAttributes<HTMLTextAreaElement>
115
122
  invalid?: boolean;
116
123
  /** Grow the field to fit its content instead of scrolling. */
117
124
  autoGrow?: boolean;
125
+ /** Desktop rung, or `touch`. Defaults to `md`. */
126
+ size?: InputSize;
118
127
  className?: string;
119
128
  }
120
129
  declare const Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
@@ -124,9 +133,18 @@ interface SelectOption {
124
133
  label: string;
125
134
  disabled?: boolean;
126
135
  }
127
- interface SelectProps extends Omit<SelectHTMLAttributes<HTMLSelectElement>, 'onChange' | 'value' | 'className'> {
136
+ interface SelectProps extends Omit<SelectHTMLAttributes<HTMLSelectElement>, 'onChange' | 'value' | 'className' | 'size'> {
128
137
  value: string;
129
138
  onChange: (value: string) => void;
139
+ /**
140
+ * Desktop rung, or `touch`. Defaults to `md`.
141
+ *
142
+ * This shadows the native `size` attribute (the number of rows a select
143
+ * shows when it is rendered as a list box), which is omitted above rather
144
+ * than left to collide. Nothing here has ever rendered as a list box — the
145
+ * kit's Select is a dropdown — so no capability is lost.
146
+ */
147
+ size?: InputSize;
130
148
  options: SelectOption[];
131
149
  /** Shown as a disabled first option when no value is selected. */
132
150
  placeholder?: string;
@@ -710,10 +728,19 @@ interface DescriptionListProps {
710
728
  /** Hairline-separated rows in a bordered panel. */
711
729
  bordered?: boolean;
712
730
  size?: 'sm' | 'md';
731
+ /**
732
+ * Shown in place of a value that is `null`, `undefined` or `''`. Defaults to
733
+ * an em dash.
734
+ *
735
+ * A blank cell answers nothing — and inside `bordered`, where the cell has
736
+ * an outline of its own, it reads as a rendering fault rather than as "there
737
+ * is no tracking number". Pass `emptyText={null}` for the old behaviour.
738
+ */
739
+ emptyText?: ReactNode;
713
740
  title?: ReactNode;
714
741
  className?: string;
715
742
  }
716
- declare function DescriptionList({ items, columns, bordered, size, title, className, }: DescriptionListProps): react_jsx_runtime.JSX.Element;
743
+ declare function DescriptionList({ items, columns, bordered, size, title, className, emptyText: empty, }: DescriptionListProps): react_jsx_runtime.JSX.Element;
717
744
 
718
745
  type ResultStatus = 'success' | 'error' | 'warning' | 'info' | '404' | '403' | '500';
719
746
  interface ResultProps {
@@ -823,6 +850,16 @@ interface BannerProps {
823
850
  }
824
851
  declare function Banner({ tone, emphasis, title, children, icon, onDismiss, sticky, className, }: BannerProps): react_jsx_runtime.JSX.Element;
825
852
 
853
+ /**
854
+ * The DOM id of a tab and of the panel it controls, derived from the same
855
+ * prefix so a consumer rendering the panel cannot mismatch them.
856
+ *
857
+ * Exported rather than inlined: the panel is rendered by the CONSUMER, so both
858
+ * sides have to agree on the string, and agreeing by convention in a comment
859
+ * is how these drift.
860
+ */
861
+ declare const tabButtonId: (prefix: string, id: string) => string;
862
+ declare const tabPanelId: (prefix: string, id: string) => string;
826
863
  interface TabItem {
827
864
  id: string;
828
865
  label: ReactNode;
@@ -834,9 +871,27 @@ interface TabsProps {
834
871
  value: string;
835
872
  onChange: (id: string) => void;
836
873
  variant?: 'underline' | 'pill';
874
+ /**
875
+ * Enables the tab/panel association. With it each tab gains a stable id and
876
+ * an `aria-controls` pointing at `tabPanelId(idPrefix, item.id)`; the
877
+ * consumer gives its panel that id and names it with
878
+ * `aria-labelledby={tabButtonId(idPrefix, item.id)}`.
879
+ *
880
+ * Omitted, nothing is emitted. A tab strip used purely as a filter — no
881
+ * panel to point at — should not claim to control an element that does not
882
+ * exist, which is a dangling reference rather than a helpful one.
883
+ */
884
+ idPrefix?: string;
885
+ /**
886
+ * Names the strip. A page with more than one — order sections above, media
887
+ * types below — gives a screen-reader user two "tab list"s with nothing to
888
+ * tell them apart, and there was no way to pass a name at all.
889
+ */
890
+ 'aria-label'?: string;
891
+ 'aria-labelledby'?: string;
837
892
  className?: string;
838
893
  }
839
- declare function Tabs({ items, value, onChange, variant, className }: TabsProps): react_jsx_runtime.JSX.Element;
894
+ declare function Tabs({ items, value, onChange, variant, idPrefix, className, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledBy, }: TabsProps): react_jsx_runtime.JSX.Element;
840
895
 
841
896
  interface AccordionItem {
842
897
  id: string;
@@ -864,10 +919,37 @@ interface TooltipProps {
864
919
  }
865
920
  declare function Tooltip({ content, side, delay, children }: TooltipProps): react_jsx_runtime.JSX.Element;
866
921
 
922
+ type SemanticGroup = 'success' | 'active' | 'queued' | 'info' | 'pending' | 'warning' | 'danger' | 'draft' | 'neutral';
923
+ /**
924
+ * The one table. `ColoredBadge` reads it too, through its `tone` prop, so a
925
+ * badge given a tone directly and a badge given a status string that maps to
926
+ * that tone are the same colour — which is the promise this component's
927
+ * docblock makes and could not keep for anything that was not a status.
928
+ */
929
+ declare const GROUP_COLORS: Record<SemanticGroup, string>;
930
+ declare function StatusBadgeProvider({ groups, children, }: {
931
+ groups: Record<string, SemanticGroup>;
932
+ children: ReactNode;
933
+ }): react_jsx_runtime.JSX.Element;
934
+ interface StatusBadgeProps {
935
+ status: string;
936
+ }
937
+ declare function StatusBadge({ status }: StatusBadgeProps): react_jsx_runtime.JSX.Element;
938
+
867
939
  interface ColoredBadgeProps {
940
+ /**
941
+ * A semantic tone, resolved through the same table `StatusBadge` uses — so a
942
+ * badge given `tone="success"` and one given a status string that maps to
943
+ * success are the same green.
944
+ *
945
+ * Prefer this to `colorClass`. Raw classes are the escape hatch for a colour
946
+ * the system has no name for, and every consumer reaching for them is a
947
+ * place the theme system cannot follow.
948
+ */
949
+ tone?: SemanticGroup;
868
950
  /** Tailwind classes for the badge color, e.g. `bg-green-100 text-green-800`.
869
- * Keep a per-app palette map rather than hardcoding colors at call sites. */
870
- colorClass: string;
951
+ * Wins over `tone` when both are given. */
952
+ colorClass?: string;
871
953
  children: ReactNode;
872
954
  /** `xs` = 10px (dense list cells), `sm` = 12px / px-2 (default), `md` =
873
955
  * 12px / px-2.5 (matches StatusBadge). */
@@ -875,23 +957,29 @@ interface ColoredBadgeProps {
875
957
  /** Capitalize each word — useful for raw status strings like `in_progress`
876
958
  * (rendered as `In Progress`). Default false. */
877
959
  capitalize?: boolean;
960
+ /**
961
+ * Render a close control — a filter chip the user can drop.
962
+ *
963
+ * Its accessible name is derived from the badge's own text: "Remove Winter
964
+ * tyres", not "Remove". A row of filter chips otherwise gives a screen-reader
965
+ * user five identical buttons and no way to tell which one drops which
966
+ * filter. `closeLabel` overrides it, and is required in practice whenever
967
+ * the children are not plain text — there is nothing to derive from.
968
+ */
969
+ closable?: boolean;
970
+ onClose?: () => void;
971
+ closeLabel?: string;
972
+ className?: string;
878
973
  }
879
974
  /**
880
- * ColoredBadge — a small rounded-full pill whose colors are supplied as a
881
- * Tailwind class string. Generic counterpart to StatusBadge (which maps status
882
- * strings to semantic groups); use this when the caller already knows the color.
975
+ * ColoredBadge — a small rounded-full pill. Give it a `tone` from the shell's
976
+ * semantic vocabulary, or raw Tailwind classes when the colour has no name.
977
+ *
978
+ * Counterpart to StatusBadge, which takes a domain status STRING and maps it
979
+ * through a provider. Both read the same colour table, so the two never
980
+ * disagree about what success looks like.
883
981
  */
884
- declare function ColoredBadge({ colorClass, children, size, capitalize }: ColoredBadgeProps): react_jsx_runtime.JSX.Element;
885
-
886
- type SemanticGroup = 'success' | 'active' | 'queued' | 'info' | 'pending' | 'warning' | 'danger' | 'draft' | 'neutral';
887
- declare function StatusBadgeProvider({ groups, children, }: {
888
- groups: Record<string, SemanticGroup>;
889
- children: ReactNode;
890
- }): react_jsx_runtime.JSX.Element;
891
- interface StatusBadgeProps {
892
- status: string;
893
- }
894
- declare function StatusBadge({ status }: StatusBadgeProps): react_jsx_runtime.JSX.Element;
982
+ declare function ColoredBadge({ colorClass, tone, children, size, capitalize, closable, onClose, closeLabel, className, }: ColoredBadgeProps): react_jsx_runtime.JSX.Element;
895
983
 
896
984
  interface EmptyStateProps {
897
985
  /** Bold heading, e.g. "No invoices yet". */
@@ -908,8 +996,16 @@ interface EmptyStateProps {
908
996
  variant?: 'dashed' | 'card' | 'none';
909
997
  /** @deprecated set `variant="none"` instead. */
910
998
  frameless?: boolean;
911
- /** Show the placeholder icon. Defaults to true (false for `variant="card"`). */
912
- icon?: boolean;
999
+ /**
1000
+ * `true`/omitted shows the placeholder inbox, `false` shows nothing, and an
1001
+ * element shows that instead.
1002
+ *
1003
+ * The boolean alone meant every empty state in every app was an inbox — an
1004
+ * empty catalogue, an empty invoice list and an empty inbox drawn
1005
+ * identically, when the icon is the fastest thing on the screen to read.
1006
+ * Defaults to the placeholder (to nothing for `variant="card"`).
1007
+ */
1008
+ icon?: boolean | ReactNode;
913
1009
  /** Action(s) rendered under the text. */
914
1010
  children?: ReactNode;
915
1011
  }
@@ -2076,4 +2172,4 @@ declare const ALT_SHIFT_N: string;
2076
2172
  * string when the source is consumed without a build (e.g. tests). */
2077
2173
  declare const VERSION: string;
2078
2174
 
2079
- export { type CountBadgeProps as $, ALT as A, Banner as B, type ColumnDef as C, type ButtonSize as D, type ButtonVariant as E, CMD_A as F, CMD_DOT as G, CMD_ENTER as H, CMD_K as I, CMD_S as J, Card as K, type CardPadding as L, type CardProps as M, type CellStyle as N, ChatTemplate as O, type PaginatedResponse as P, Checkbox as Q, type CheckboxProps as R, type SearchConfig as S, CheckoutTemplate as T, ColoredBadge as U, type ColoredBadgeProps as V, ConfirmProvider as W, ContainerFillChart as X, type ContainerFillChartProps as Y, type ContainerFillItem as Z, CountBadge as _, type SortState as a, type InputSize as a$, type CountBadgeTone as a0, DashboardTemplate as a1, DataTable as a2, type DataTableColumn as a3, DataTablePage as a4, type DataTableProps as a5, DatePicker as a6, type DatePickerProps as a7, DateRangePicker as a8, type DateRangePickerProps as a9, type FilePickerProps as aA, FormField as aB, type FormFieldProps as aC, FormLayoutPage as aD, GLASS_DIVIDER as aE, GLASS_INPUT_BG as aF, GalleryTemplate as aG, type Gap as aH, GlobalSearch as aI, type GlobalSearchProps as aJ, Grid as aK, type GridCols as aL, type GridColumn as aM, type GridProps as aN, HelpCenter as aO, type HelpCenterDoc as aP, type HelpCenterProps as aQ, INPUT_BASE as aR, INPUT_SIZES as aS, IconButton as aT, type IconButtonProps as aU, Inline as aV, type InlineProps as aW, Input as aX, InputNumber as aY, type InputNumberProps as aZ, type InputProps as a_, type DescriptionColumns as aa, type DescriptionItem as ab, DescriptionList as ac, type DescriptionListProps as ad, Dialog as ae, type DialogProps as af, type DialogSize as ag, Divider as ah, type DividerProps as ai, type DividerSpacing as aj, DonutChart as ak, type DonutChartProps as al, type DonutSegment as am, Drawer as an, type DrawerProps as ao, type DrawerSide as ap, type DrawerSize as aq, ENTER as ar, EditableGrid as as, type EditableGridProps as at, EmailTemplate as au, EmptyState as av, type EmptyStateProps as aw, ErrorPage as ax, type ErrorPageProps as ay, FilePicker as az, ALT_SHIFT_D as b, SidebarGroupLabel as b$, type Justify as b0, Kanban as b1, type KanbanColumn as b2, type KanbanProps as b3, Label as b4, type LabelProps as b5, ListFooter as b6, ListLoadError as b7, type ListLoadErrorProps as b8, LoadingSpinner as b9, PopupMenuDivider as bA, PopupMenuItem as bB, PopupMenuLabel as bC, Radio as bD, type RadioProps as bE, Result as bF, type ResultProps as bG, type ResultStatus as bH, SHIFT as bI, type SearchProvider as bJ, type SearchResult as bK, type SearchableOption as bL, SearchableSelect as bM, type SearchableSelectProps as bN, Segmented as bO, type SegmentedOption as bP, type SegmentedProps as bQ, type SegmentedSize as bR, Select as bS, type SelectOption as bT, type SelectProps as bU, type SemanticGroup as bV, type SeverityTone as bW, type ShellPrefsAdapter as bX, ShellPrefsProvider as bY, SidebarActionButton as bZ, type SidebarActionButtonProps as b_, type LoadingSpinnerProps as ba, MAX_FRACTION_DIGITS as bb, MOD as bc, Markdown as bd, type MarkdownProps as be, MediaUploadField as bf, type MediaUploadFieldProps as bg, MediaUploadGrid as bh, type MediaUploadGridItem as bi, type MediaUploadGridProps as bj, MetricBar as bk, type MetricBarProps as bl, type Milestone as bm, type MilestoneKind as bn, MilestoneTimeline as bo, type MilestoneTimelineProps as bp, NativeSelect as bq, NumericKeypad as br, type NumericKeypadProps as bs, PageHeader as bt, type PageHeaderProps as bu, Pagination as bv, type PaginationProps as bw, Paragraph as bx, type ParagraphProps as by, PopupMenu as bz, ALT_SHIFT_E as c, useConfirm as c$, SidebarLayout as c0, type SidebarLayoutProps as c1, SidebarNavItem as c2, Skeleton as c3, type SkeletonProps as c4, type SkeletonVariant as c5, Sparkline as c6, type SparklineProps as c7, Stack as c8, type StackProps as c9, type TitleLevel as cA, type TitleProps as cB, type ToastOptions as cC, type ToastPlacement as cD, Tooltip as cE, type TooltipProps as cF, TopNav as cG, type TopNavItem as cH, type TopNavProps as cI, VERSION as cJ, appendKey as cK, applyThemePrefs as cL, backspace as cM, confirm as cN, confirmDestructive as cO, formatDate as cP, glassStyle as cQ, inputClasses as cR, isMac as cS, isSeverityTone as cT, mediaFileName as cU, prompt as cV, resolveTheme as cW, severityOf as cX, toISODate as cY, toast as cZ, useClickOutside as c_, StatCard as ca, type StatCardProps as cb, Statistic as cc, type StatisticProps as cd, type StatisticSize as ce, type StatisticTone as cf, StatusBadge as cg, StatusBadgeProvider as ch, Switch as ci, type SwitchProps as cj, type SwitchSize as ck, type TabItem as cl, Tabs as cm, type TabsProps as cn, Text as co, type TextProps as cp, type TextSize as cq, type TextTone as cr, type TextWeight as cs, Textarea as ct, type TextareaProps as cu, type Theme as cv, TileButton as cw, type TileButtonProps as cx, type TileSize as cy, Title as cz, ALT_SHIFT_N as d, useFocusTrap as d0, useIsMobile as d1, useLocalStoragePrefs as d2, useScrollLock as d3, useShellPrefs as d4, useTheme as d5, Accordion as e, type AccordionItem as f, type AccordionProps as g, type Align as h, AuthScreen as i, type AuthScreenProps as j, Avatar as k, AvatarGroup as l, type AvatarGroupProps as m, type AvatarProps as n, type AvatarSize as o, type AvatarStatus as p, type BannerEmphasis as q, type BannerProps as r, type BannerTone as s, BarChart as t, type BarChartProps as u, type BreadcrumbItem as v, Breadcrumbs as w, type BreadcrumbsProps as x, Button as y, type ButtonProps as z };
2175
+ export { type CountBadgeProps as $, ALT as A, Banner as B, type ColumnDef as C, type ButtonSize as D, type ButtonVariant as E, CMD_A as F, CMD_DOT as G, CMD_ENTER as H, CMD_K as I, CMD_S as J, Card as K, type CardPadding as L, type CardProps as M, type CellStyle as N, ChatTemplate as O, type PaginatedResponse as P, Checkbox as Q, type CheckboxProps as R, type SearchConfig as S, CheckoutTemplate as T, ColoredBadge as U, type ColoredBadgeProps as V, ConfirmProvider as W, ContainerFillChart as X, type ContainerFillChartProps as Y, type ContainerFillItem as Z, CountBadge as _, type SortState as a, type InputProps as a$, type CountBadgeTone as a0, DashboardTemplate as a1, DataTable as a2, type DataTableColumn as a3, DataTablePage as a4, type DataTableProps as a5, DatePicker as a6, type DatePickerProps as a7, DateRangePicker as a8, type DateRangePickerProps as a9, type FilePickerProps as aA, FormField as aB, type FormFieldProps as aC, FormLayoutPage as aD, GLASS_DIVIDER as aE, GLASS_INPUT_BG as aF, GROUP_COLORS as aG, GalleryTemplate as aH, type Gap as aI, GlobalSearch as aJ, type GlobalSearchProps as aK, Grid as aL, type GridCols as aM, type GridColumn as aN, type GridProps as aO, HelpCenter as aP, type HelpCenterDoc as aQ, type HelpCenterProps as aR, INPUT_BASE as aS, INPUT_SIZES as aT, IconButton as aU, type IconButtonProps as aV, Inline as aW, type InlineProps as aX, Input as aY, InputNumber as aZ, type InputNumberProps as a_, type DescriptionColumns as aa, type DescriptionItem as ab, DescriptionList as ac, type DescriptionListProps as ad, Dialog as ae, type DialogProps as af, type DialogSize as ag, Divider as ah, type DividerProps as ai, type DividerSpacing as aj, DonutChart as ak, type DonutChartProps as al, type DonutSegment as am, Drawer as an, type DrawerProps as ao, type DrawerSide as ap, type DrawerSize as aq, ENTER as ar, EditableGrid as as, type EditableGridProps as at, EmailTemplate as au, EmptyState as av, type EmptyStateProps as aw, ErrorPage as ax, type ErrorPageProps as ay, FilePicker as az, ALT_SHIFT_D as b, type SidebarActionButtonProps as b$, type InputSize as b0, type Justify as b1, Kanban as b2, type KanbanColumn as b3, type KanbanProps as b4, Label as b5, type LabelProps as b6, ListFooter as b7, ListLoadError as b8, type ListLoadErrorProps as b9, PopupMenu as bA, PopupMenuDivider as bB, PopupMenuItem as bC, PopupMenuLabel as bD, Radio as bE, type RadioProps as bF, Result as bG, type ResultProps as bH, type ResultStatus as bI, SHIFT as bJ, type SearchProvider as bK, type SearchResult as bL, type SearchableOption as bM, SearchableSelect as bN, type SearchableSelectProps as bO, Segmented as bP, type SegmentedOption as bQ, type SegmentedProps as bR, type SegmentedSize as bS, Select as bT, type SelectOption as bU, type SelectProps as bV, type SemanticGroup as bW, type SeverityTone as bX, type ShellPrefsAdapter as bY, ShellPrefsProvider as bZ, SidebarActionButton as b_, LoadingSpinner as ba, type LoadingSpinnerProps as bb, MAX_FRACTION_DIGITS as bc, MOD as bd, Markdown as be, type MarkdownProps as bf, MediaUploadField as bg, type MediaUploadFieldProps as bh, MediaUploadGrid as bi, type MediaUploadGridItem as bj, type MediaUploadGridProps as bk, MetricBar as bl, type MetricBarProps as bm, type Milestone as bn, type MilestoneKind as bo, MilestoneTimeline as bp, type MilestoneTimelineProps as bq, NativeSelect as br, NumericKeypad as bs, type NumericKeypadProps as bt, PageHeader as bu, type PageHeaderProps as bv, Pagination as bw, type PaginationProps as bx, Paragraph as by, type ParagraphProps as bz, ALT_SHIFT_E as c, toISODate as c$, SidebarGroupLabel as c0, SidebarLayout as c1, type SidebarLayoutProps as c2, SidebarNavItem as c3, Skeleton as c4, type SkeletonProps as c5, type SkeletonVariant as c6, Sparkline as c7, type SparklineProps as c8, Stack as c9, Title as cA, type TitleLevel as cB, type TitleProps as cC, type ToastOptions as cD, type ToastPlacement as cE, Tooltip as cF, type TooltipProps as cG, TopNav as cH, type TopNavItem as cI, type TopNavProps as cJ, VERSION as cK, appendKey as cL, applyThemePrefs as cM, backspace as cN, confirm as cO, confirmDestructive as cP, formatDate as cQ, glassStyle as cR, inputClasses as cS, isMac as cT, isSeverityTone as cU, mediaFileName as cV, prompt as cW, resolveTheme as cX, severityOf as cY, tabButtonId as cZ, tabPanelId as c_, type StackProps as ca, StatCard as cb, type StatCardProps as cc, Statistic as cd, type StatisticProps as ce, type StatisticSize as cf, type StatisticTone as cg, StatusBadge as ch, StatusBadgeProvider as ci, Switch as cj, type SwitchProps as ck, type SwitchSize as cl, type TabItem as cm, Tabs as cn, type TabsProps as co, Text as cp, type TextProps as cq, type TextSize as cr, type TextTone as cs, type TextWeight as ct, Textarea as cu, type TextareaProps as cv, type Theme as cw, TileButton as cx, type TileButtonProps as cy, type TileSize as cz, ALT_SHIFT_N as d, toast as d0, useClickOutside as d1, useConfirm as d2, useFocusTrap as d3, useIsMobile as d4, useLocalStoragePrefs as d5, useScrollLock as d6, useShellPrefs as d7, useTheme as d8, Accordion as e, type AccordionItem as f, type AccordionProps as g, type Align as h, AuthScreen as i, type AuthScreenProps as j, Avatar as k, AvatarGroup as l, type AvatarGroupProps as m, type AvatarProps as n, type AvatarSize as o, type AvatarStatus as p, type BannerEmphasis as q, type BannerProps as r, type BannerTone as s, BarChart as t, type BarChartProps as u, type BreadcrumbItem as v, Breadcrumbs as w, type BreadcrumbsProps as x, Button as y, type ButtonProps as z };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { S as SearchConfig, C as ColumnDef, a as SortState, P as PaginatedResponse } from './index-CdxMm6Dk.js';
2
- export { A as ALT, b as ALT_SHIFT_D, c as ALT_SHIFT_E, d as ALT_SHIFT_N, e as Accordion, f as AccordionItem, g as AccordionProps, h as Align, i as AuthScreen, j as AuthScreenProps, k as Avatar, l as AvatarGroup, m as AvatarGroupProps, n as AvatarProps, o as AvatarSize, p as AvatarStatus, B as Banner, q as BannerEmphasis, r as BannerProps, s as BannerTone, t as BarChart, u as BarChartProps, v as BreadcrumbItem, w as Breadcrumbs, x as BreadcrumbsProps, y as Button, z as ButtonProps, D as ButtonSize, E as ButtonVariant, F as CMD_A, G as CMD_DOT, H as CMD_ENTER, I as CMD_K, J as CMD_S, K as Card, L as CardPadding, M as CardProps, N as CellStyle, O as ChatTemplate, Q as Checkbox, R as CheckboxProps, T as CheckoutTemplate, U as ColoredBadge, V as ColoredBadgeProps, W as ConfirmProvider, X as ContainerFillChart, Y as ContainerFillChartProps, Z as ContainerFillItem, _ as CountBadge, $ as CountBadgeProps, a0 as CountBadgeTone, a1 as DashboardTemplate, a2 as DataTable, a3 as DataTableColumn, a4 as DataTablePage, a5 as DataTableProps, a6 as DatePicker, a7 as DatePickerProps, a8 as DateRangePicker, a9 as DateRangePickerProps, aa as DescriptionColumns, ab as DescriptionItem, ac as DescriptionList, ad as DescriptionListProps, ae as Dialog, af as DialogProps, ag as DialogSize, ah as Divider, ai as DividerProps, aj as DividerSpacing, ak as DonutChart, al as DonutChartProps, am as DonutSegment, an as Drawer, ao as DrawerProps, ap as DrawerSide, aq as DrawerSize, ar as ENTER, as as EditableGrid, at as EditableGridProps, au as EmailTemplate, av as EmptyState, aw as EmptyStateProps, ax as ErrorPage, ay as ErrorPageProps, az as FilePicker, aA as FilePickerProps, aB as FormField, aC as FormFieldProps, aD as FormLayoutPage, aE as GLASS_DIVIDER, aF as GLASS_INPUT_BG, aG as GalleryTemplate, aH as Gap, aI as GlobalSearch, aJ as GlobalSearchProps, aK as Grid, aL as GridCols, aM as GridColumn, aN as GridProps, aO as HelpCenter, aP as HelpCenterDoc, aQ as HelpCenterProps, aR as INPUT_BASE, aS as INPUT_SIZES, aT as IconButton, aU as IconButtonProps, aV as Inline, aW as InlineProps, aX as Input, aY as InputNumber, aZ as InputNumberProps, a_ as InputProps, a$ as InputSize, b0 as Justify, b1 as Kanban, b2 as KanbanColumn, b3 as KanbanProps, b4 as Label, b5 as LabelProps, b6 as ListFooter, b7 as ListLoadError, b8 as ListLoadErrorProps, b9 as LoadingSpinner, ba as LoadingSpinnerProps, bb as MAX_FRACTION_DIGITS, bc as MOD, bd as Markdown, be as MarkdownProps, bf as MediaUploadField, bg as MediaUploadFieldProps, bh as MediaUploadGrid, bi as MediaUploadGridItem, bj as MediaUploadGridProps, bk as MetricBar, bl as MetricBarProps, bm as Milestone, bn as MilestoneKind, bo as MilestoneTimeline, bp as MilestoneTimelineProps, bq as NativeSelect, br as NumericKeypad, bs as NumericKeypadProps, bt as PageHeader, bu as PageHeaderProps, bv as Pagination, bw as PaginationProps, bx as Paragraph, by as ParagraphProps, bz as PopupMenu, bA as PopupMenuDivider, bB as PopupMenuItem, bC as PopupMenuLabel, bD as Radio, bE as RadioProps, bF as Result, bG as ResultProps, bH as ResultStatus, bI as SHIFT, bJ as SearchProvider, bK as SearchResult, bL as SearchableOption, bM as SearchableSelect, bN as SearchableSelectProps, bO as Segmented, bP as SegmentedOption, bQ as SegmentedProps, bR as SegmentedSize, bS as Select, bT as SelectOption, bU as SelectProps, bV as SemanticGroup, bW as SeverityTone, bX as ShellPrefsAdapter, bY as ShellPrefsProvider, bZ as SidebarActionButton, b_ as SidebarActionButtonProps, b$ as SidebarGroupLabel, c0 as SidebarLayout, c1 as SidebarLayoutProps, c2 as SidebarNavItem, c3 as Skeleton, c4 as SkeletonProps, c5 as SkeletonVariant, c6 as Sparkline, c7 as SparklineProps, c8 as Stack, c9 as StackProps, ca as StatCard, cb as StatCardProps, cc as Statistic, cd as StatisticProps, ce as StatisticSize, cf as StatisticTone, cg as StatusBadge, ch as StatusBadgeProvider, ci as Switch, cj as SwitchProps, ck as SwitchSize, cl as TabItem, cm as Tabs, cn as TabsProps, co as Text, cp as TextProps, cq as TextSize, cr as TextTone, cs as TextWeight, ct as Textarea, cu as TextareaProps, cv as Theme, cw as TileButton, cx as TileButtonProps, cy as TileSize, cz as Title, cA as TitleLevel, cB as TitleProps, cC as ToastOptions, cD as ToastPlacement, cE as Tooltip, cF as TooltipProps, cG as TopNav, cH as TopNavItem, cI as TopNavProps, cJ as VERSION, cK as appendKey, cL as applyThemePrefs, cM as backspace, cN as confirm, cO as confirmDestructive, cP as formatDate, cQ as glassStyle, cR as inputClasses, cS as isMac, cT as isSeverityTone, cU as mediaFileName, cV as prompt, cW as resolveTheme, cX as severityOf, cY as toISODate, cZ as toast, c_ as useClickOutside, c$ as useConfirm, d0 as useFocusTrap, d1 as useIsMobile, d2 as useLocalStoragePrefs, d3 as useScrollLock, d4 as useShellPrefs, d5 as useTheme } from './index-CdxMm6Dk.js';
1
+ import { S as SearchConfig, C as ColumnDef, a as SortState, P as PaginatedResponse } from './index-B4RRJ5bp.js';
2
+ export { A as ALT, b as ALT_SHIFT_D, c as ALT_SHIFT_E, d as ALT_SHIFT_N, e as Accordion, f as AccordionItem, g as AccordionProps, h as Align, i as AuthScreen, j as AuthScreenProps, k as Avatar, l as AvatarGroup, m as AvatarGroupProps, n as AvatarProps, o as AvatarSize, p as AvatarStatus, B as Banner, q as BannerEmphasis, r as BannerProps, s as BannerTone, t as BarChart, u as BarChartProps, v as BreadcrumbItem, w as Breadcrumbs, x as BreadcrumbsProps, y as Button, z as ButtonProps, D as ButtonSize, E as ButtonVariant, F as CMD_A, G as CMD_DOT, H as CMD_ENTER, I as CMD_K, J as CMD_S, K as Card, L as CardPadding, M as CardProps, N as CellStyle, O as ChatTemplate, Q as Checkbox, R as CheckboxProps, T as CheckoutTemplate, U as ColoredBadge, V as ColoredBadgeProps, W as ConfirmProvider, X as ContainerFillChart, Y as ContainerFillChartProps, Z as ContainerFillItem, _ as CountBadge, $ as CountBadgeProps, a0 as CountBadgeTone, a1 as DashboardTemplate, a2 as DataTable, a3 as DataTableColumn, a4 as DataTablePage, a5 as DataTableProps, a6 as DatePicker, a7 as DatePickerProps, a8 as DateRangePicker, a9 as DateRangePickerProps, aa as DescriptionColumns, ab as DescriptionItem, ac as DescriptionList, ad as DescriptionListProps, ae as Dialog, af as DialogProps, ag as DialogSize, ah as Divider, ai as DividerProps, aj as DividerSpacing, ak as DonutChart, al as DonutChartProps, am as DonutSegment, an as Drawer, ao as DrawerProps, ap as DrawerSide, aq as DrawerSize, ar as ENTER, as as EditableGrid, at as EditableGridProps, au as EmailTemplate, av as EmptyState, aw as EmptyStateProps, ax as ErrorPage, ay as ErrorPageProps, az as FilePicker, aA as FilePickerProps, aB as FormField, aC as FormFieldProps, aD as FormLayoutPage, aE as GLASS_DIVIDER, aF as GLASS_INPUT_BG, aG as GROUP_COLORS, aH as GalleryTemplate, aI as Gap, aJ as GlobalSearch, aK as GlobalSearchProps, aL as Grid, aM as GridCols, aN as GridColumn, aO as GridProps, aP as HelpCenter, aQ as HelpCenterDoc, aR as HelpCenterProps, aS as INPUT_BASE, aT as INPUT_SIZES, aU as IconButton, aV as IconButtonProps, aW as Inline, aX as InlineProps, aY as Input, aZ as InputNumber, a_ as InputNumberProps, a$ as InputProps, b0 as InputSize, b1 as Justify, b2 as Kanban, b3 as KanbanColumn, b4 as KanbanProps, b5 as Label, b6 as LabelProps, b7 as ListFooter, b8 as ListLoadError, b9 as ListLoadErrorProps, ba as LoadingSpinner, bb as LoadingSpinnerProps, bc as MAX_FRACTION_DIGITS, bd as MOD, be as Markdown, bf as MarkdownProps, bg as MediaUploadField, bh as MediaUploadFieldProps, bi as MediaUploadGrid, bj as MediaUploadGridItem, bk as MediaUploadGridProps, bl as MetricBar, bm as MetricBarProps, bn as Milestone, bo as MilestoneKind, bp as MilestoneTimeline, bq as MilestoneTimelineProps, br as NativeSelect, bs as NumericKeypad, bt as NumericKeypadProps, bu as PageHeader, bv as PageHeaderProps, bw as Pagination, bx as PaginationProps, by as Paragraph, bz as ParagraphProps, bA as PopupMenu, bB as PopupMenuDivider, bC as PopupMenuItem, bD as PopupMenuLabel, bE as Radio, bF as RadioProps, bG as Result, bH as ResultProps, bI as ResultStatus, bJ as SHIFT, bK as SearchProvider, bL as SearchResult, bM as SearchableOption, bN as SearchableSelect, bO as SearchableSelectProps, bP as Segmented, bQ as SegmentedOption, bR as SegmentedProps, bS as SegmentedSize, bT as Select, bU as SelectOption, bV as SelectProps, bW as SemanticGroup, bX as SeverityTone, bY as ShellPrefsAdapter, bZ as ShellPrefsProvider, b_ as SidebarActionButton, b$ as SidebarActionButtonProps, c0 as SidebarGroupLabel, c1 as SidebarLayout, c2 as SidebarLayoutProps, c3 as SidebarNavItem, c4 as Skeleton, c5 as SkeletonProps, c6 as SkeletonVariant, c7 as Sparkline, c8 as SparklineProps, c9 as Stack, ca as StackProps, cb as StatCard, cc as StatCardProps, cd as Statistic, ce as StatisticProps, cf as StatisticSize, cg as StatisticTone, ch as StatusBadge, ci as StatusBadgeProvider, cj as Switch, ck as SwitchProps, cl as SwitchSize, cm as TabItem, cn as Tabs, co as TabsProps, cp as Text, cq as TextProps, cr as TextSize, cs as TextTone, ct as TextWeight, cu as Textarea, cv as TextareaProps, cw as Theme, cx as TileButton, cy as TileButtonProps, cz as TileSize, cA as Title, cB as TitleLevel, cC as TitleProps, cD as ToastOptions, cE as ToastPlacement, cF as Tooltip, cG as TooltipProps, cH as TopNav, cI as TopNavItem, cJ as TopNavProps, cK as VERSION, cL as appendKey, cM as applyThemePrefs, cN as backspace, cO as confirm, cP as confirmDestructive, cQ as formatDate, cR as glassStyle, cS as inputClasses, cT as isMac, cU as isSeverityTone, cV as mediaFileName, cW as prompt, cX as resolveTheme, cY as severityOf, cZ as tabButtonId, c_ as tabPanelId, c$ as toISODate, d0 as toast, d1 as useClickOutside, d2 as useConfirm, d3 as useFocusTrap, d4 as useIsMobile, d5 as useLocalStoragePrefs, d6 as useScrollLock, d7 as useShellPrefs, d8 as useTheme } from './index-B4RRJ5bp.js';
3
3
  import { W as WindowRegistry } from './types-BHVq95fp.js';
4
4
  export { M as ModalRegistryEntry, P as PageRegistryEntry, a as WindowRegistryEntry, i as isEntityEntry, b as isPageEntry, s as setShellWindowRegistry } from './types-BHVq95fp.js';
5
5
  import * as react from 'react';
package/dist/index.js CHANGED
@@ -5,8 +5,8 @@ export { ImageAnnotator_default as ImageAnnotator } from './chunk-X5PZYTAK.js';
5
5
  import { publishDesktopFolders, requestFilesTrashView, FolderGlyph, requestFilesDesktopFolderView, FileIconTile } from './chunk-OQ7GRU7G.js';
6
6
  import './chunk-4SQU5YV6.js';
7
7
  import { setPdfPreview } from './chunk-BV6SQ46N.js';
8
- import { CMD_K, CMD_DOT, CMD_A, ALT_SHIFT_N, ALT_SHIFT_E, CMD_ENTER, CMD_S, ALT_SHIFT_D, CMD_Z, CMD_SHIFT_Z, formatDate, useTheme, GlobalSearch, resolveTheme, useClickOutside, ListLoadError, ListFooter, firstEnabledIndex, Button_default, FormField, Input_default, applyThemePrefs, lastEnabledIndex, nextEnabledIndex, matchTypeahead } from './chunk-7NIFBQUX.js';
9
- export { ALT, ALT_SHIFT_D, ALT_SHIFT_E, ALT_SHIFT_N, Accordion, AuthScreen, Avatar, AvatarGroup, Banner, BarChart, Button_default as Button, CMD_A, CMD_DOT, CMD_ENTER, CMD_K, CMD_S, Card, ChatTemplate, Checkbox_default as Checkbox, CheckoutTemplate, ColoredBadge, ContainerFillChart, CountBadge, DashboardTemplate, DataTable, DataTablePage, DatePicker_default as DatePicker, DateRangePicker, DescriptionList, Divider, DonutChart, Drawer, ENTER, EmailTemplate, EmptyState, ErrorPage, FilePicker, FormField, FormLayoutPage, GalleryTemplate, GlobalSearch, Grid, HelpCenter, INPUT_BASE, INPUT_SIZES, IconButton_default as IconButton, Inline, Input_default as Input, InputNumber_default as InputNumber, Kanban, Label, ListFooter, ListLoadError, LoadingSpinner, MAX_FRACTION_DIGITS, MOD, Markdown, MediaUploadField, MediaUploadGrid, MetricBar, MilestoneTimeline, NativeSelect, NumericKeypad, PageHeader, Pagination, Paragraph, Radio_default as Radio, Result, SHIFT, SearchableSelect, Segmented, Select_default as Select, SidebarActionButton, SidebarGroupLabel, SidebarNavItem, Skeleton, Sparkline, Stack, StatCard, Statistic, StatusBadge, StatusBadgeProvider, Switch_default as Switch, Tabs, Text, Textarea_default as Textarea, TileButton_default as TileButton, Title, Tooltip, TopNav, appendKey, applyThemePrefs, backspace, formatDate, inputClasses, isMac, isSeverityTone, mediaFileName, resolveTheme, severityOf, toISODate, useClickOutside, useTheme } from './chunk-7NIFBQUX.js';
8
+ import { CMD_K, CMD_DOT, CMD_A, ALT_SHIFT_N, ALT_SHIFT_E, CMD_ENTER, CMD_S, ALT_SHIFT_D, CMD_Z, CMD_SHIFT_Z, formatDate, useTheme, GlobalSearch, resolveTheme, useClickOutside, ListLoadError, ListFooter, firstEnabledIndex, Button_default, FormField, Input_default, applyThemePrefs, lastEnabledIndex, nextEnabledIndex, matchTypeahead } from './chunk-D4WFGAUW.js';
9
+ export { ALT, ALT_SHIFT_D, ALT_SHIFT_E, ALT_SHIFT_N, Accordion, AuthScreen, Avatar, AvatarGroup, Banner, BarChart, Button_default as Button, CMD_A, CMD_DOT, CMD_ENTER, CMD_K, CMD_S, Card, ChatTemplate, Checkbox_default as Checkbox, CheckoutTemplate, ColoredBadge, ContainerFillChart, CountBadge, DashboardTemplate, DataTable, DataTablePage, DatePicker_default as DatePicker, DateRangePicker, DescriptionList, Divider, DonutChart, Drawer, ENTER, EmailTemplate, EmptyState, ErrorPage, FilePicker, FormField, FormLayoutPage, GROUP_COLORS, GalleryTemplate, GlobalSearch, Grid, HelpCenter, INPUT_BASE, INPUT_SIZES, IconButton_default as IconButton, Inline, Input_default as Input, InputNumber_default as InputNumber, Kanban, Label, ListFooter, ListLoadError, LoadingSpinner, MAX_FRACTION_DIGITS, MOD, Markdown, MediaUploadField, MediaUploadGrid, MetricBar, MilestoneTimeline, NativeSelect, NumericKeypad, PageHeader, Pagination, Paragraph, Radio_default as Radio, Result, SHIFT, SearchableSelect, Segmented, Select_default as Select, SidebarActionButton, SidebarGroupLabel, SidebarNavItem, Skeleton, Sparkline, Stack, StatCard, Statistic, StatusBadge, StatusBadgeProvider, Switch_default as Switch, Tabs, Text, Textarea_default as Textarea, TileButton_default as TileButton, Title, Tooltip, TopNav, appendKey, applyThemePrefs, backspace, formatDate, inputClasses, isMac, isSeverityTone, mediaFileName, resolveTheme, severityOf, tabButtonId, tabPanelId, toISODate, useClickOutside, useTheme } from './chunk-D4WFGAUW.js';
10
10
  export { Breadcrumbs } from './chunk-HNH7FOYB.js';
11
11
  import { withSpareRow, EditableGrid } from './chunk-DC6BYGZ6.js';
12
12
  export { EditableGrid } from './chunk-DC6BYGZ6.js';
@@ -14,8 +14,8 @@ import { SidebarLayout } from './chunk-YG45DAUT.js';
14
14
  export { SidebarLayout } from './chunk-YG45DAUT.js';
15
15
  import { toast_default } from './chunk-4AKVHY4B.js';
16
16
  export { toast_default as toast } from './chunk-4AKVHY4B.js';
17
- import { APP_VERSION, VERSION } from './chunk-SGS3IQEL.js';
18
- export { VERSION } from './chunk-SGS3IQEL.js';
17
+ import { APP_VERSION, VERSION } from './chunk-TQFUNASX.js';
18
+ export { VERSION } from './chunk-TQFUNASX.js';
19
19
  import { playNotification, playStartup, soundsEnabled, getSoundConfig, SOUND_PACK_KEYS, SOUND_PACKS, SOUND_TYPES, SOUND_TYPE_LABELS, setSoundForType, previewSound, setAllSounds, playLogout } from './chunk-D7PYW2QS.js';
20
20
  import { useAuth } from './chunk-EWDYCO65.js';
21
21
  export { setShellAuthBridge } from './chunk-EWDYCO65.js';
@@ -1,3 +1,3 @@
1
- export { A as ALT, b as ALT_SHIFT_D, c as ALT_SHIFT_E, d as ALT_SHIFT_N, e as Accordion, f as AccordionItem, g as AccordionProps, h as Align, i as AuthScreen, j as AuthScreenProps, k as Avatar, l as AvatarGroup, m as AvatarGroupProps, n as AvatarProps, o as AvatarSize, p as AvatarStatus, B as Banner, q as BannerEmphasis, r as BannerProps, s as BannerTone, t as BarChart, u as BarChartProps, v as BreadcrumbItem, w as Breadcrumbs, x as BreadcrumbsProps, y as Button, z as ButtonProps, D as ButtonSize, E as ButtonVariant, F as CMD_A, G as CMD_DOT, H as CMD_ENTER, I as CMD_K, J as CMD_S, K as Card, L as CardPadding, M as CardProps, N as CellStyle, O as ChatTemplate, Q as Checkbox, R as CheckboxProps, T as CheckoutTemplate, U as ColoredBadge, V as ColoredBadgeProps, C as ColumnDef, W as ConfirmProvider, X as ContainerFillChart, Y as ContainerFillChartProps, Z as ContainerFillItem, _ as CountBadge, $ as CountBadgeProps, a0 as CountBadgeTone, a1 as DashboardTemplate, a2 as DataTable, a3 as DataTableColumn, a4 as DataTablePage, a5 as DataTableProps, a6 as DatePicker, a7 as DatePickerProps, a8 as DateRangePicker, a9 as DateRangePickerProps, aa as DescriptionColumns, ab as DescriptionItem, ac as DescriptionList, ad as DescriptionListProps, ae as Dialog, af as DialogProps, ag as DialogSize, ah as Divider, ai as DividerProps, aj as DividerSpacing, ak as DonutChart, al as DonutChartProps, am as DonutSegment, an as Drawer, ao as DrawerProps, ap as DrawerSide, aq as DrawerSize, ar as ENTER, as as EditableGrid, at as EditableGridProps, au as EmailTemplate, av as EmptyState, aw as EmptyStateProps, ax as ErrorPage, ay as ErrorPageProps, az as FilePicker, aA as FilePickerProps, aB as FormField, aC as FormFieldProps, aD as FormLayoutPage, aE as GLASS_DIVIDER, aG as GalleryTemplate, aH as Gap, aI as GlobalSearch, aJ as GlobalSearchProps, aK as Grid, aL as GridCols, aM as GridColumn, aN as GridProps, aO as HelpCenter, aP as HelpCenterDoc, aQ as HelpCenterProps, aR as INPUT_BASE, aS as INPUT_SIZES, aT as IconButton, aU as IconButtonProps, aV as Inline, aW as InlineProps, aX as Input, aY as InputNumber, aZ as InputNumberProps, a_ as InputProps, a$ as InputSize, b0 as Justify, b1 as Kanban, b2 as KanbanColumn, b3 as KanbanProps, b4 as Label, b5 as LabelProps, b6 as ListFooter, b7 as ListLoadError, b8 as ListLoadErrorProps, b9 as LoadingSpinner, ba as LoadingSpinnerProps, bb as MAX_FRACTION_DIGITS, bc as MOD, bd as Markdown, be as MarkdownProps, bf as MediaUploadField, bg as MediaUploadFieldProps, bh as MediaUploadGrid, bi as MediaUploadGridItem, bj as MediaUploadGridProps, bk as MetricBar, bl as MetricBarProps, bm as Milestone, bn as MilestoneKind, bo as MilestoneTimeline, bp as MilestoneTimelineProps, bq as NativeSelect, br as NumericKeypad, bs as NumericKeypadProps, bt as PageHeader, bu as PageHeaderProps, P as PaginatedResponse, bv as Pagination, bw as PaginationProps, bx as Paragraph, by as ParagraphProps, bz as PopupMenu, bA as PopupMenuDivider, bB as PopupMenuItem, bC as PopupMenuLabel, bD as Radio, bE as RadioProps, bF as Result, bG as ResultProps, bH as ResultStatus, bI as SHIFT, S as SearchConfig, bJ as SearchProvider, bK as SearchResult, bL as SearchableOption, bM as SearchableSelect, bN as SearchableSelectProps, bO as Segmented, bP as SegmentedOption, bQ as SegmentedProps, bR as SegmentedSize, bS as Select, bT as SelectOption, bU as SelectProps, bV as SemanticGroup, bW as SeverityTone, bX as ShellPrefsAdapter, bY as ShellPrefsProvider, bZ as SidebarActionButton, b_ as SidebarActionButtonProps, b$ as SidebarGroupLabel, c0 as SidebarLayout, c1 as SidebarLayoutProps, c2 as SidebarNavItem, c3 as Skeleton, c4 as SkeletonProps, c5 as SkeletonVariant, a as SortState, c6 as Sparkline, c7 as SparklineProps, c8 as Stack, c9 as StackProps, ca as StatCard, cb as StatCardProps, cc as Statistic, cd as StatisticProps, ce as StatisticSize, cf as StatisticTone, cg as StatusBadge, ch as StatusBadgeProvider, ci as Switch, cj as SwitchProps, ck as SwitchSize, cl as TabItem, cm as Tabs, cn as TabsProps, co as Text, cp as TextProps, cq as TextSize, cr as TextTone, cs as TextWeight, ct as Textarea, cu as TextareaProps, cv as Theme, cw as TileButton, cx as TileButtonProps, cy as TileSize, cz as Title, cA as TitleLevel, cB as TitleProps, cC as ToastOptions, cD as ToastPlacement, cE as Tooltip, cF as TooltipProps, cG as TopNav, cH as TopNavItem, cI as TopNavProps, cJ as VERSION, cK as appendKey, cL as applyThemePrefs, cM as backspace, cN as confirm, cO as confirmDestructive, cP as formatDate, cQ as glassStyle, cR as inputClasses, cS as isMac, cT as isSeverityTone, cU as mediaFileName, cV as prompt, cW as resolveTheme, cX as severityOf, cY as toISODate, cZ as toast, c_ as useClickOutside, c$ as useConfirm, d0 as useFocusTrap, d1 as useIsMobile, d2 as useLocalStoragePrefs, d3 as useScrollLock, d4 as useShellPrefs, d5 as useTheme } from '../index-CdxMm6Dk.js';
1
+ export { A as ALT, b as ALT_SHIFT_D, c as ALT_SHIFT_E, d as ALT_SHIFT_N, e as Accordion, f as AccordionItem, g as AccordionProps, h as Align, i as AuthScreen, j as AuthScreenProps, k as Avatar, l as AvatarGroup, m as AvatarGroupProps, n as AvatarProps, o as AvatarSize, p as AvatarStatus, B as Banner, q as BannerEmphasis, r as BannerProps, s as BannerTone, t as BarChart, u as BarChartProps, v as BreadcrumbItem, w as Breadcrumbs, x as BreadcrumbsProps, y as Button, z as ButtonProps, D as ButtonSize, E as ButtonVariant, F as CMD_A, G as CMD_DOT, H as CMD_ENTER, I as CMD_K, J as CMD_S, K as Card, L as CardPadding, M as CardProps, N as CellStyle, O as ChatTemplate, Q as Checkbox, R as CheckboxProps, T as CheckoutTemplate, U as ColoredBadge, V as ColoredBadgeProps, C as ColumnDef, W as ConfirmProvider, X as ContainerFillChart, Y as ContainerFillChartProps, Z as ContainerFillItem, _ as CountBadge, $ as CountBadgeProps, a0 as CountBadgeTone, a1 as DashboardTemplate, a2 as DataTable, a3 as DataTableColumn, a4 as DataTablePage, a5 as DataTableProps, a6 as DatePicker, a7 as DatePickerProps, a8 as DateRangePicker, a9 as DateRangePickerProps, aa as DescriptionColumns, ab as DescriptionItem, ac as DescriptionList, ad as DescriptionListProps, ae as Dialog, af as DialogProps, ag as DialogSize, ah as Divider, ai as DividerProps, aj as DividerSpacing, ak as DonutChart, al as DonutChartProps, am as DonutSegment, an as Drawer, ao as DrawerProps, ap as DrawerSide, aq as DrawerSize, ar as ENTER, as as EditableGrid, at as EditableGridProps, au as EmailTemplate, av as EmptyState, aw as EmptyStateProps, ax as ErrorPage, ay as ErrorPageProps, az as FilePicker, aA as FilePickerProps, aB as FormField, aC as FormFieldProps, aD as FormLayoutPage, aE as GLASS_DIVIDER, aG as GROUP_COLORS, aH as GalleryTemplate, aI as Gap, aJ as GlobalSearch, aK as GlobalSearchProps, aL as Grid, aM as GridCols, aN as GridColumn, aO as GridProps, aP as HelpCenter, aQ as HelpCenterDoc, aR as HelpCenterProps, aS as INPUT_BASE, aT as INPUT_SIZES, aU as IconButton, aV as IconButtonProps, aW as Inline, aX as InlineProps, aY as Input, aZ as InputNumber, a_ as InputNumberProps, a$ as InputProps, b0 as InputSize, b1 as Justify, b2 as Kanban, b3 as KanbanColumn, b4 as KanbanProps, b5 as Label, b6 as LabelProps, b7 as ListFooter, b8 as ListLoadError, b9 as ListLoadErrorProps, ba as LoadingSpinner, bb as LoadingSpinnerProps, bc as MAX_FRACTION_DIGITS, bd as MOD, be as Markdown, bf as MarkdownProps, bg as MediaUploadField, bh as MediaUploadFieldProps, bi as MediaUploadGrid, bj as MediaUploadGridItem, bk as MediaUploadGridProps, bl as MetricBar, bm as MetricBarProps, bn as Milestone, bo as MilestoneKind, bp as MilestoneTimeline, bq as MilestoneTimelineProps, br as NativeSelect, bs as NumericKeypad, bt as NumericKeypadProps, bu as PageHeader, bv as PageHeaderProps, P as PaginatedResponse, bw as Pagination, bx as PaginationProps, by as Paragraph, bz as ParagraphProps, bA as PopupMenu, bB as PopupMenuDivider, bC as PopupMenuItem, bD as PopupMenuLabel, bE as Radio, bF as RadioProps, bG as Result, bH as ResultProps, bI as ResultStatus, bJ as SHIFT, S as SearchConfig, bK as SearchProvider, bL as SearchResult, bM as SearchableOption, bN as SearchableSelect, bO as SearchableSelectProps, bP as Segmented, bQ as SegmentedOption, bR as SegmentedProps, bS as SegmentedSize, bT as Select, bU as SelectOption, bV as SelectProps, bW as SemanticGroup, bX as SeverityTone, bY as ShellPrefsAdapter, bZ as ShellPrefsProvider, b_ as SidebarActionButton, b$ as SidebarActionButtonProps, c0 as SidebarGroupLabel, c1 as SidebarLayout, c2 as SidebarLayoutProps, c3 as SidebarNavItem, c4 as Skeleton, c5 as SkeletonProps, c6 as SkeletonVariant, a as SortState, c7 as Sparkline, c8 as SparklineProps, c9 as Stack, ca as StackProps, cb as StatCard, cc as StatCardProps, cd as Statistic, ce as StatisticProps, cf as StatisticSize, cg as StatisticTone, ch as StatusBadge, ci as StatusBadgeProvider, cj as Switch, ck as SwitchProps, cl as SwitchSize, cm as TabItem, cn as Tabs, co as TabsProps, cp as Text, cq as TextProps, cr as TextSize, cs as TextTone, ct as TextWeight, cu as Textarea, cv as TextareaProps, cw as Theme, cx as TileButton, cy as TileButtonProps, cz as TileSize, cA as Title, cB as TitleLevel, cC as TitleProps, cD as ToastOptions, cE as ToastPlacement, cF as Tooltip, cG as TooltipProps, cH as TopNav, cI as TopNavItem, cJ as TopNavProps, cK as VERSION, cL as appendKey, cM as applyThemePrefs, cN as backspace, cO as confirm, cP as confirmDestructive, cQ as formatDate, cR as glassStyle, cS as inputClasses, cT as isMac, cU as isSeverityTone, cV as mediaFileName, cW as prompt, cX as resolveTheme, cY as severityOf, cZ as tabButtonId, c_ as tabPanelId, c$ as toISODate, d0 as toast, d1 as useClickOutside, d2 as useConfirm, d3 as useFocusTrap, d4 as useIsMobile, d5 as useLocalStoragePrefs, d6 as useScrollLock, d7 as useShellPrefs, d8 as useTheme } from '../index-B4RRJ5bp.js';
2
2
  import 'react';
3
3
  import 'react/jsx-runtime';
package/dist/ui/index.js CHANGED
@@ -1,9 +1,9 @@
1
- export { ALT, ALT_SHIFT_D, ALT_SHIFT_E, ALT_SHIFT_N, Accordion, AuthScreen, Avatar, AvatarGroup, Banner, BarChart, Button_default as Button, CMD_A, CMD_DOT, CMD_ENTER, CMD_K, CMD_S, Card, ChatTemplate, Checkbox_default as Checkbox, CheckoutTemplate, ColoredBadge, ContainerFillChart, CountBadge, DashboardTemplate, DataTable, DataTablePage, DatePicker_default as DatePicker, DateRangePicker, DescriptionList, Divider, DonutChart, Drawer, ENTER, EmailTemplate, EmptyState, ErrorPage, FilePicker, FormField, FormLayoutPage, GalleryTemplate, GlobalSearch, Grid, HelpCenter, INPUT_BASE, INPUT_SIZES, IconButton_default as IconButton, Inline, Input_default as Input, InputNumber_default as InputNumber, Kanban, Label, ListFooter, ListLoadError, LoadingSpinner, MAX_FRACTION_DIGITS, MOD, Markdown, MediaUploadField, MediaUploadGrid, MetricBar, MilestoneTimeline, NativeSelect, NumericKeypad, PageHeader, Pagination, Paragraph, Radio_default as Radio, Result, SHIFT, SearchableSelect, Segmented, Select_default as Select, SidebarActionButton, SidebarGroupLabel, SidebarNavItem, Skeleton, Sparkline, Stack, StatCard, Statistic, StatusBadge, StatusBadgeProvider, Switch_default as Switch, Tabs, Text, Textarea_default as Textarea, TileButton_default as TileButton, Title, Tooltip, TopNav, appendKey, applyThemePrefs, backspace, formatDate, inputClasses, isMac, isSeverityTone, mediaFileName, resolveTheme, severityOf, toISODate, useClickOutside, useTheme } from '../chunk-7NIFBQUX.js';
1
+ export { ALT, ALT_SHIFT_D, ALT_SHIFT_E, ALT_SHIFT_N, Accordion, AuthScreen, Avatar, AvatarGroup, Banner, BarChart, Button_default as Button, CMD_A, CMD_DOT, CMD_ENTER, CMD_K, CMD_S, Card, ChatTemplate, Checkbox_default as Checkbox, CheckoutTemplate, ColoredBadge, ContainerFillChart, CountBadge, DashboardTemplate, DataTable, DataTablePage, DatePicker_default as DatePicker, DateRangePicker, DescriptionList, Divider, DonutChart, Drawer, ENTER, EmailTemplate, EmptyState, ErrorPage, FilePicker, FormField, FormLayoutPage, GROUP_COLORS, GalleryTemplate, GlobalSearch, Grid, HelpCenter, INPUT_BASE, INPUT_SIZES, IconButton_default as IconButton, Inline, Input_default as Input, InputNumber_default as InputNumber, Kanban, Label, ListFooter, ListLoadError, LoadingSpinner, MAX_FRACTION_DIGITS, MOD, Markdown, MediaUploadField, MediaUploadGrid, MetricBar, MilestoneTimeline, NativeSelect, NumericKeypad, PageHeader, Pagination, Paragraph, Radio_default as Radio, Result, SHIFT, SearchableSelect, Segmented, Select_default as Select, SidebarActionButton, SidebarGroupLabel, SidebarNavItem, Skeleton, Sparkline, Stack, StatCard, Statistic, StatusBadge, StatusBadgeProvider, Switch_default as Switch, Tabs, Text, Textarea_default as Textarea, TileButton_default as TileButton, Title, Tooltip, TopNav, appendKey, applyThemePrefs, backspace, formatDate, inputClasses, isMac, isSeverityTone, mediaFileName, resolveTheme, severityOf, tabButtonId, tabPanelId, toISODate, useClickOutside, useTheme } from '../chunk-D4WFGAUW.js';
2
2
  export { Breadcrumbs } from '../chunk-HNH7FOYB.js';
3
3
  export { EditableGrid } from '../chunk-DC6BYGZ6.js';
4
4
  export { SidebarLayout } from '../chunk-YG45DAUT.js';
5
5
  export { toast_default as toast } from '../chunk-4AKVHY4B.js';
6
- export { VERSION } from '../chunk-SGS3IQEL.js';
6
+ export { VERSION } from '../chunk-TQFUNASX.js';
7
7
  export { PopupMenu, PopupMenuDivider, PopupMenuItem, PopupMenuLabel, ShellPrefsProvider, useIsMobile, useLocalStoragePrefs, useShellPrefs } from '../chunk-C22EFSND.js';
8
8
  export { ConfirmProvider, Dialog, confirm, confirmDestructive, prompt, useConfirm, useFocusTrap, useScrollLock } from '../chunk-OXLLRKBC.js';
9
9
  export { GLASS_DIVIDER, glassStyle } from '../chunk-3CUSBZWG.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-os-shell",
3
- "version": "4.31.0",
3
+ "version": "4.41.0",
4
4
  "description": "Desktop-style React UI shell — windows, taskbar, start menu, sticky notes, frosted glass theming, and bundled apps.",
5
5
  "license": "MIT",
6
6
  "author": "Victor Y. Mau",