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.
- package/dist/{Browser-63NYU74S.js → Browser-TKBH4DZ3.js} +4 -4
- package/dist/{Browser-63NYU74S.js.map → Browser-TKBH4DZ3.js.map} +1 -1
- package/dist/{Documents-YP4GBBRF.js → Documents-YRTLDTLX.js} +4 -4
- package/dist/{Documents-YP4GBBRF.js.map → Documents-YRTLDTLX.js.map} +1 -1
- package/dist/{Files-6JWIE3VH.js → Files-WHYCDRYU.js} +4 -4
- package/dist/{Files-6JWIE3VH.js.map → Files-WHYCDRYU.js.map} +1 -1
- package/dist/{Notepad-EHO56UNK.js → Notepad-6UAWRNZH.js} +4 -4
- package/dist/{Notepad-EHO56UNK.js.map → Notepad-6UAWRNZH.js.map} +1 -1
- package/dist/{Preview-67IPCMSN.js → Preview-VBIWWJLK.js} +4 -4
- package/dist/{Preview-67IPCMSN.js.map → Preview-VBIWWJLK.js.map} +1 -1
- package/dist/{Spreadsheet-HVXBAFR7.js → Spreadsheet-GRD4P3OI.js} +4 -4
- package/dist/{Spreadsheet-HVXBAFR7.js.map → Spreadsheet-GRD4P3OI.js.map} +1 -1
- package/dist/apps/index.js +8 -8
- package/dist/{chunk-BT3EQNH3.js → chunk-COTCIYLS.js} +3 -3
- package/dist/{chunk-BT3EQNH3.js.map → chunk-COTCIYLS.js.map} +1 -1
- package/dist/{chunk-7NIFBQUX.js → chunk-D4WFGAUW.js} +217 -61
- package/dist/chunk-D4WFGAUW.js.map +1 -0
- package/dist/chunk-TQFUNASX.js +7 -0
- package/dist/{chunk-SGS3IQEL.js.map → chunk-TQFUNASX.js.map} +1 -1
- package/dist/{index-CdxMm6Dk.d.ts → index-B4RRJ5bp.d.ts} +127 -31
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/dist/ui/index.d.ts +1 -1
- package/dist/ui/index.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-7NIFBQUX.js.map +0 -1
- package/dist/chunk-SGS3IQEL.js +0 -7
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/version.ts"],"names":[],"mappings":";AAIO,IAAM,OAAA,GAAwD,QAAA;AAG9D,IAAM,WAAA,GAAc","file":"chunk-
|
|
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
|
-
|
|
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`
|
|
79
|
-
* for why
|
|
80
|
-
|
|
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`
|
|
86
|
-
* `INPUT_BASE`, so every existing caller is
|
|
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
|
-
*
|
|
870
|
-
colorClass
|
|
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
|
|
881
|
-
*
|
|
882
|
-
*
|
|
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
|
-
/**
|
|
912
|
-
|
|
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
|
|
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-
|
|
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
|
|
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-
|
|
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-
|
|
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-
|
|
18
|
-
export { VERSION } from './chunk-
|
|
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';
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -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
|
|
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-
|
|
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-
|
|
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