sage-nexus-ui 1.0.21 → 1.0.23
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/components/Box.d.ts +3 -0
- package/dist/components/ButtonBase.d.ts +3 -0
- package/dist/components/Chip.d.ts +3 -0
- package/dist/components/Dialog.d.ts +7 -0
- package/dist/components/Divider.d.ts +3 -0
- package/dist/components/IconButton.d.ts +3 -0
- package/dist/components/LoadingSpinner.d.ts +5 -0
- package/dist/components/LoadingSpinnerNexus.d.ts +4 -0
- package/dist/components/RagDot.d.ts +1 -1
- package/dist/components/Stack.d.ts +3 -0
- package/dist/components/Tab.d.ts +3 -0
- package/dist/components/Tabs.d.ts +3 -0
- package/dist/components/TextField.d.ts +3 -0
- package/dist/components/index.d.ts +37 -13
- package/dist/index.d.ts +88 -53
- package/dist/index.mjs +1 -1
- package/dist/stories/Accordion.stories.d.ts +1 -1
- package/dist/stories/Dialog.stories.d.ts +19 -0
- package/dist/stories/LoadingSpinner.stories.d.ts +15 -0
- package/dist/stories/LoadingSpinnerNexus.stories.d.ts +15 -0
- package/dist/stories/Typography.stories.d.ts +12 -12
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type DialogProps, type DialogTitleProps, type DialogContentProps, type DialogActionsProps, type DialogContentTextProps } from "@mui/material";
|
|
2
|
+
export type { DialogProps, DialogTitleProps, DialogContentProps, DialogActionsProps, DialogContentTextProps, };
|
|
3
|
+
export declare const Dialog: (props: DialogProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare const DialogTitle: (props: DialogTitleProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const DialogContent: (props: DialogContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const DialogActions: (props: DialogActionsProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const DialogContentText: (props: DialogContentTextProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,5 +2,5 @@ type RagStatus = "On Track" | "At Risk" | "Off Track" | string;
|
|
|
2
2
|
interface RagDotProps {
|
|
3
3
|
status: RagStatus;
|
|
4
4
|
}
|
|
5
|
-
export
|
|
5
|
+
export declare const RagDot: ({ status }: RagDotProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -1,45 +1,69 @@
|
|
|
1
1
|
export * from "./DateFormats";
|
|
2
|
+
export { H1, H2, H3, H4, ActionBarTitle, Body1, Body2, Caption, } from "./Typography";
|
|
2
3
|
export { ActionBar } from "./ActionBar";
|
|
3
4
|
export { AccordionGroup, AccordionGroupItem } from "./AccordionGroup";
|
|
4
5
|
export type { AccordionGroupProps, AccordionGroupItemProps, } from "./AccordionGroup";
|
|
5
6
|
export { AccordionSingle } from "./AccordionSingle";
|
|
6
7
|
export type { AccordionSingleProps } from "./AccordionSingle";
|
|
7
|
-
export { H1, H2, H3, H4, ActionBarTitle, Body1, Body2, Caption, } from "./Typography";
|
|
8
8
|
export { AiButton } from "./AiButton";
|
|
9
9
|
export type { AiButtonProps } from "./AiButton";
|
|
10
|
+
export { AiCard } from "./AiCard";
|
|
11
|
+
export type { AiCardProps } from "./AiCard";
|
|
12
|
+
export { AiGlassCard } from "./AiGlassCard";
|
|
13
|
+
export type { AiGlassCardProps } from "./AiGlassCard";
|
|
10
14
|
export { AiPaper } from "./AiPaper";
|
|
11
15
|
export type { AiPaperProps } from "./AiPaper";
|
|
12
16
|
export { AiGlassPaper } from "./AiGlassPaper";
|
|
13
17
|
export type { AiGlassPaperProps } from "./AiGlassPaper";
|
|
18
|
+
export { Box } from "./Box";
|
|
19
|
+
export type { BoxProps } from "./Box";
|
|
20
|
+
export { ButtonBase } from "./ButtonBase";
|
|
21
|
+
export type { ButtonBaseProps } from "./ButtonBase";
|
|
14
22
|
export { Card } from "./Card";
|
|
15
23
|
export type { CardProps, CardTrend } from "./Card";
|
|
24
|
+
export { CheckboxGroup } from "./CheckboxGroup";
|
|
25
|
+
export { Chip } from "./Chip";
|
|
26
|
+
export type { ChipProps } from "./Chip";
|
|
27
|
+
export { Dialog, DialogTitle, DialogContent, DialogActions, DialogContentText, } from "./Dialog";
|
|
28
|
+
export type { DialogProps, DialogTitleProps, DialogContentProps, DialogActionsProps, DialogContentTextProps, } from "./Dialog";
|
|
29
|
+
export { Divider } from "./Divider";
|
|
30
|
+
export type { DividerProps } from "./Divider";
|
|
16
31
|
export { GlassCard } from "./GlassCard";
|
|
17
32
|
export type { GlassCardProps } from "./GlassCard";
|
|
18
|
-
export { AiCard } from "./AiCard";
|
|
19
|
-
export type { AiCardProps } from "./AiCard";
|
|
20
|
-
export { AiGlassCard } from "./AiGlassCard";
|
|
21
|
-
export type { AiGlassCardProps } from "./AiGlassCard";
|
|
22
|
-
export { CheckboxGroup } from "./CheckboxGroup";
|
|
23
|
-
export { Paper } from "./Paper";
|
|
24
|
-
export type { PaperProps } from "./Paper";
|
|
25
33
|
export { GlassPaper } from "./GlassPaper";
|
|
26
34
|
export { GreenWaveBackground } from "./GreenWaveBackground";
|
|
27
35
|
export type { GreenWaveBackgroundProps } from "./GreenWaveBackground";
|
|
36
|
+
export { IconButton } from "./IconButton";
|
|
37
|
+
export type { IconButtonProps } from "./IconButton";
|
|
28
38
|
export { LocationMultiSelect } from "./LocationMultiSelect";
|
|
39
|
+
export { LoadingSpinner } from "./LoadingSpinner";
|
|
40
|
+
export type { LoadingSpinnerProps } from "./LoadingSpinner";
|
|
41
|
+
export { LoadingSpinnerNexus } from "./LoadingSpinnerNexus";
|
|
42
|
+
export type { LoadingSpinnerNexusProps } from "./LoadingSpinnerNexus";
|
|
29
43
|
export { NexusHome } from "./NexusHome";
|
|
30
44
|
export { NexusLogo } from "./NexusLogo";
|
|
45
|
+
export { Paper } from "./Paper";
|
|
46
|
+
export type { PaperProps } from "./Paper";
|
|
31
47
|
export { PrimaryButton } from "./PrimaryButton";
|
|
32
48
|
export type { PrimaryButtonProps } from "./PrimaryButton";
|
|
33
|
-
export { SecondaryButton } from "./SecondaryButton";
|
|
34
|
-
export type { SecondaryButtonProps } from "./SecondaryButton";
|
|
35
49
|
export { PrimaryButtonLink } from "./PrimaryButtonLink";
|
|
36
50
|
export type { PrimaryButtonLinkProps } from "./PrimaryButtonLink";
|
|
51
|
+
export { SecondaryButton } from "./SecondaryButton";
|
|
52
|
+
export type { SecondaryButtonProps } from "./SecondaryButton";
|
|
53
|
+
export { RagDot } from "./RagDot";
|
|
37
54
|
export { SecondaryButtonLink } from "./SecondaryButtonLink";
|
|
38
55
|
export type { SecondaryButtonLinkProps } from "./SecondaryButtonLink";
|
|
39
|
-
export { default as RagDot } from "./RagDot";
|
|
40
56
|
export { SearchInput } from "./SearchInput";
|
|
57
|
+
export { Skeleton } from "./Skeleton";
|
|
58
|
+
export type { SkeletonProps } from "./Skeleton";
|
|
41
59
|
export { SkillChip } from "./SkillChip";
|
|
60
|
+
export { Stack } from "./Stack";
|
|
61
|
+
export type { StackProps } from "./Stack";
|
|
42
62
|
export { StatusChip } from "./StatusChip";
|
|
63
|
+
export { Tab } from "./Tab";
|
|
64
|
+
export type { TabProps } from "./Tab";
|
|
65
|
+
export { Tabs } from "./Tabs";
|
|
66
|
+
export type { TabsProps } from "./Tabs";
|
|
67
|
+
export { TextField } from "./TextField";
|
|
68
|
+
export type { TextFieldProps } from "./TextField";
|
|
43
69
|
export { ThemeToggle } from "./ThemeToggle";
|
|
44
|
-
export { Skeleton } from "./Skeleton";
|
|
45
|
-
export type { SkeletonProps } from "./Skeleton";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import react__default, { ReactNode, ReactElement, CSSProperties, PropsWithChildren } from 'react';
|
|
3
|
+
import { TypographyProps, SxProps, Theme, ButtonProps, CardProps as CardProps$1, PaperProps, BoxProps, ButtonBaseProps, ChipProps, DialogProps, DialogActionsProps, DialogContentProps, DialogContentTextProps, DialogTitleProps, DividerProps, IconButtonProps, SkeletonProps as SkeletonProps$1, StackProps, TabProps, TabsProps, TextFieldProps } from '@mui/material';
|
|
4
|
+
export { BoxProps, ButtonBaseProps, ChipProps, DialogActionsProps, DialogContentProps, DialogContentTextProps, DialogProps, DialogTitleProps, DividerProps, IconButtonProps, PaperProps, StackProps, TabProps, TabsProps, TextFieldProps, Theme, alpha, useTheme } from '@mui/material';
|
|
3
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
-
import { SxProps, Theme, TypographyProps, ButtonProps, PaperProps, CardProps as CardProps$1, BoxProps, ChipProps, SkeletonProps as SkeletonProps$1 } from '@mui/material';
|
|
5
|
-
export { PaperProps } from '@mui/material';
|
|
6
6
|
import { SxProps as SxProps$1 } from '@mui/system';
|
|
7
7
|
import { Theme as Theme$1, SxProps as SxProps$2 } from '@mui/material/styles';
|
|
8
8
|
|
|
@@ -13,6 +13,21 @@ declare const getFiscalPeriod: (date: Date) => {
|
|
|
13
13
|
};
|
|
14
14
|
declare const formatDate: (date: Date) => string;
|
|
15
15
|
|
|
16
|
+
/**
|
|
17
|
+
* Typed wrappers around MUI Typography that fix the `variant` prop and
|
|
18
|
+
* inherit colour from the sageTheme TYPOGRAPHY_COLOURS map.
|
|
19
|
+
* All other TypographyProps (sx, component, className, children, …) are forwarded.
|
|
20
|
+
*/
|
|
21
|
+
type Props = Omit<TypographyProps, "variant">;
|
|
22
|
+
declare const H1: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
23
|
+
declare const H2: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
24
|
+
declare const H3: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
25
|
+
declare const H4: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
26
|
+
declare const ActionBarTitle: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
27
|
+
declare const Body1: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
28
|
+
declare const Body2: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
29
|
+
declare const Caption: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
30
|
+
|
|
16
31
|
interface ActionBarProps {
|
|
17
32
|
title?: ReactNode;
|
|
18
33
|
extraLeft?: ReactNode;
|
|
@@ -49,21 +64,6 @@ interface AccordionSingleProps {
|
|
|
49
64
|
}
|
|
50
65
|
declare const AccordionSingle: ({ summary, children, defaultExpanded, disabled, summaryProps, expandIcon, sx, detailsSx, }: AccordionSingleProps) => react_jsx_runtime.JSX.Element;
|
|
51
66
|
|
|
52
|
-
/**
|
|
53
|
-
* Typed wrappers around MUI Typography that fix the `variant` prop and
|
|
54
|
-
* inherit colour from the sageTheme TYPOGRAPHY_COLOURS map.
|
|
55
|
-
* All other TypographyProps (sx, component, className, children, …) are forwarded.
|
|
56
|
-
*/
|
|
57
|
-
type Props = Omit<TypographyProps, "variant">;
|
|
58
|
-
declare const H1: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
59
|
-
declare const H2: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
60
|
-
declare const H3: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
61
|
-
declare const H4: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
62
|
-
declare const ActionBarTitle: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
63
|
-
declare const Body1: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
64
|
-
declare const Body2: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
65
|
-
declare const Caption: react.ForwardRefExoticComponent<Omit<Props, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
66
|
-
|
|
67
67
|
interface SecondaryButtonProps extends Omit<ButtonProps, "variant" | "color"> {
|
|
68
68
|
size?: "small" | "medium" | "large";
|
|
69
69
|
}
|
|
@@ -77,17 +77,6 @@ interface AiButtonProps extends Omit<SecondaryButtonProps, "color" | "children"
|
|
|
77
77
|
}
|
|
78
78
|
declare const AiButton: React.FC<AiButtonProps>;
|
|
79
79
|
|
|
80
|
-
declare const Paper: ({ children, ...rest }: PaperProps) => react_jsx_runtime.JSX.Element;
|
|
81
|
-
|
|
82
|
-
type AiPaperProps = PaperProps;
|
|
83
|
-
declare const AiPaper: ({ sx, children, ...rest }: AiPaperProps) => react_jsx_runtime.JSX.Element;
|
|
84
|
-
|
|
85
|
-
type GlassPaperProps = PaperProps;
|
|
86
|
-
declare const GlassPaper: ({ sx, children, ...rest }: GlassPaperProps) => react_jsx_runtime.JSX.Element;
|
|
87
|
-
|
|
88
|
-
type AiGlassPaperProps = GlassPaperProps;
|
|
89
|
-
declare const AiGlassPaper: ({ sx, children, ...rest }: AiGlassPaperProps) => react_jsx_runtime.JSX.Element;
|
|
90
|
-
|
|
91
80
|
type CardTrend = "up" | "flat" | "down";
|
|
92
81
|
interface CardProps extends CardProps$1 {
|
|
93
82
|
/** Small icon displayed beside the label. Pass an MUI SvgIcon element. */
|
|
@@ -103,15 +92,30 @@ interface CardProps extends CardProps$1 {
|
|
|
103
92
|
}
|
|
104
93
|
declare const Card: ({ icon, label, value, subtext, trend, sx, children, ...rest }: CardProps) => react_jsx_runtime.JSX.Element;
|
|
105
94
|
|
|
106
|
-
type GlassCardProps = CardProps;
|
|
107
|
-
declare const GlassCard: ({ sx, ...rest }: GlassCardProps) => react_jsx_runtime.JSX.Element;
|
|
108
|
-
|
|
109
95
|
type AiCardProps = CardProps;
|
|
110
96
|
declare const AiCard: ({ sx, children, ...rest }: AiCardProps) => react_jsx_runtime.JSX.Element;
|
|
111
97
|
|
|
98
|
+
type GlassCardProps = CardProps;
|
|
99
|
+
declare const GlassCard: ({ sx, ...rest }: GlassCardProps) => react_jsx_runtime.JSX.Element;
|
|
100
|
+
|
|
112
101
|
type AiGlassCardProps = GlassCardProps;
|
|
113
102
|
declare const AiGlassCard: ({ sx, children, ...rest }: AiGlassCardProps) => react_jsx_runtime.JSX.Element;
|
|
114
103
|
|
|
104
|
+
declare const Paper: ({ children, ...rest }: PaperProps) => react_jsx_runtime.JSX.Element;
|
|
105
|
+
|
|
106
|
+
type AiPaperProps = PaperProps;
|
|
107
|
+
declare const AiPaper: ({ sx, children, ...rest }: AiPaperProps) => react_jsx_runtime.JSX.Element;
|
|
108
|
+
|
|
109
|
+
type GlassPaperProps = PaperProps;
|
|
110
|
+
declare const GlassPaper: ({ sx, children, ...rest }: GlassPaperProps) => react_jsx_runtime.JSX.Element;
|
|
111
|
+
|
|
112
|
+
type AiGlassPaperProps = GlassPaperProps;
|
|
113
|
+
declare const AiGlassPaper: ({ sx, children, ...rest }: AiGlassPaperProps) => react_jsx_runtime.JSX.Element;
|
|
114
|
+
|
|
115
|
+
declare const Box: ({ children, ...rest }: BoxProps) => react_jsx_runtime.JSX.Element;
|
|
116
|
+
|
|
117
|
+
declare const ButtonBase: (props: ButtonBaseProps) => react_jsx_runtime.JSX.Element;
|
|
118
|
+
|
|
115
119
|
interface CheckboxGroupProps {
|
|
116
120
|
title?: React.ReactNode;
|
|
117
121
|
labels?: string[];
|
|
@@ -123,9 +127,21 @@ interface CheckboxGroupProps {
|
|
|
123
127
|
}
|
|
124
128
|
declare const CheckboxGroup: React.FC<CheckboxGroupProps>;
|
|
125
129
|
|
|
130
|
+
declare const Chip: (props: ChipProps) => react_jsx_runtime.JSX.Element;
|
|
131
|
+
|
|
132
|
+
declare const Dialog: (props: DialogProps) => react_jsx_runtime.JSX.Element;
|
|
133
|
+
declare const DialogTitle: (props: DialogTitleProps) => react_jsx_runtime.JSX.Element;
|
|
134
|
+
declare const DialogContent: (props: DialogContentProps) => react_jsx_runtime.JSX.Element;
|
|
135
|
+
declare const DialogActions: (props: DialogActionsProps) => react_jsx_runtime.JSX.Element;
|
|
136
|
+
declare const DialogContentText: (props: DialogContentTextProps) => react_jsx_runtime.JSX.Element;
|
|
137
|
+
|
|
138
|
+
declare const Divider: ({ children, ...rest }: DividerProps) => react_jsx_runtime.JSX.Element;
|
|
139
|
+
|
|
126
140
|
type GreenWaveBackgroundProps = BoxProps;
|
|
127
141
|
declare const GreenWaveBackground: ({ sx, children, ...rest }: GreenWaveBackgroundProps) => react_jsx_runtime.JSX.Element;
|
|
128
142
|
|
|
143
|
+
declare const IconButton: ({ children, ...rest }: IconButtonProps) => react_jsx_runtime.JSX.Element;
|
|
144
|
+
|
|
129
145
|
interface LocationMultiSelectProps {
|
|
130
146
|
ariaLabel?: string;
|
|
131
147
|
availableLocations?: string[];
|
|
@@ -138,6 +154,17 @@ interface LocationMultiSelectProps {
|
|
|
138
154
|
}
|
|
139
155
|
declare const LocationMultiSelect: react__default.FC<LocationMultiSelectProps>;
|
|
140
156
|
|
|
157
|
+
interface LoadingSpinnerProps {
|
|
158
|
+
variant?: "small" | "large";
|
|
159
|
+
color?: string;
|
|
160
|
+
}
|
|
161
|
+
declare const LoadingSpinner: ({ variant, color, }: LoadingSpinnerProps) => react_jsx_runtime.JSX.Element;
|
|
162
|
+
|
|
163
|
+
interface LoadingSpinnerNexusProps {
|
|
164
|
+
variant?: "small" | "large";
|
|
165
|
+
}
|
|
166
|
+
declare const LoadingSpinnerNexus: ({ variant, }: LoadingSpinnerNexusProps) => react_jsx_runtime.JSX.Element;
|
|
167
|
+
|
|
141
168
|
interface NexusHomeProps {
|
|
142
169
|
href?: string;
|
|
143
170
|
}
|
|
@@ -162,6 +189,12 @@ interface PrimaryButtonLinkProps extends Omit<PrimaryButtonProps, "href" | "comp
|
|
|
162
189
|
}
|
|
163
190
|
declare const PrimaryButtonLink: React.FC<PrimaryButtonLinkProps>;
|
|
164
191
|
|
|
192
|
+
type RagStatus = "On Track" | "At Risk" | "Off Track" | string;
|
|
193
|
+
interface RagDotProps {
|
|
194
|
+
status: RagStatus;
|
|
195
|
+
}
|
|
196
|
+
declare const RagDot: ({ status }: RagDotProps) => react_jsx_runtime.JSX.Element;
|
|
197
|
+
|
|
165
198
|
interface SecondaryButtonLinkProps extends Omit<SecondaryButtonProps, "href" | "component"> {
|
|
166
199
|
href: string;
|
|
167
200
|
color?: string;
|
|
@@ -172,12 +205,6 @@ interface SecondaryButtonLinkProps extends Omit<SecondaryButtonProps, "href" | "
|
|
|
172
205
|
}
|
|
173
206
|
declare const SecondaryButtonLink: React.FC<SecondaryButtonLinkProps>;
|
|
174
207
|
|
|
175
|
-
type RagStatus = "On Track" | "At Risk" | "Off Track" | string;
|
|
176
|
-
interface RagDotProps {
|
|
177
|
-
status: RagStatus;
|
|
178
|
-
}
|
|
179
|
-
declare function RagDot({ status }: RagDotProps): react_jsx_runtime.JSX.Element;
|
|
180
|
-
|
|
181
208
|
interface SearchInputProps {
|
|
182
209
|
ariaLabel?: string;
|
|
183
210
|
onSearchChange: (value: string) => void;
|
|
@@ -188,12 +215,28 @@ interface SearchInputProps {
|
|
|
188
215
|
}
|
|
189
216
|
declare const SearchInput: react__default.FC<SearchInputProps>;
|
|
190
217
|
|
|
218
|
+
type SkeletonProps = SkeletonProps$1;
|
|
219
|
+
/**
|
|
220
|
+
* A themed wrapper around MUI Skeleton.
|
|
221
|
+
*
|
|
222
|
+
* - `variant="text"` (default) — height is inferred from the surrounding font
|
|
223
|
+
* size, no explicit height needed. Width defaults to 100%.
|
|
224
|
+
* - `variant="rectangular"` / `"rounded"` — fills `width="100%"` by default;
|
|
225
|
+
* pass an explicit `height` (e.g. `height={120}`) when the container has no
|
|
226
|
+
* intrinsic size.
|
|
227
|
+
* - `variant="circular"` — pass explicit `width` and `height` for an avatar
|
|
228
|
+
* placeholder.
|
|
229
|
+
*/
|
|
230
|
+
declare const Skeleton: ({ variant, width, ...rest }: SkeletonProps) => react_jsx_runtime.JSX.Element;
|
|
231
|
+
|
|
191
232
|
interface SkillChipProps extends ChipProps {
|
|
192
233
|
label?: react__default.ReactNode;
|
|
193
234
|
tone?: "default" | "matched" | "accent" | string;
|
|
194
235
|
}
|
|
195
236
|
declare const SkillChip: react__default.FC<SkillChipProps>;
|
|
196
237
|
|
|
238
|
+
declare const Stack: ({ children, ...rest }: StackProps) => react_jsx_runtime.JSX.Element;
|
|
239
|
+
|
|
197
240
|
type ChipSize = "default" | "small";
|
|
198
241
|
interface StatusChipProps extends ChipProps {
|
|
199
242
|
status?: string;
|
|
@@ -202,21 +245,13 @@ interface StatusChipProps extends ChipProps {
|
|
|
202
245
|
}
|
|
203
246
|
declare const StatusChip: React.FC<StatusChipProps>;
|
|
204
247
|
|
|
205
|
-
declare const
|
|
248
|
+
declare const Tab: (props: TabProps) => react_jsx_runtime.JSX.Element;
|
|
206
249
|
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
* size, no explicit height needed. Width defaults to 100%.
|
|
213
|
-
* - `variant="rectangular"` / `"rounded"` — fills `width="100%"` by default;
|
|
214
|
-
* pass an explicit `height` (e.g. `height={120}`) when the container has no
|
|
215
|
-
* intrinsic size.
|
|
216
|
-
* - `variant="circular"` — pass explicit `width` and `height` for an avatar
|
|
217
|
-
* placeholder.
|
|
218
|
-
*/
|
|
219
|
-
declare const Skeleton: ({ variant, width, ...rest }: SkeletonProps) => react_jsx_runtime.JSX.Element;
|
|
250
|
+
declare const Tabs: (props: TabsProps) => react_jsx_runtime.JSX.Element;
|
|
251
|
+
|
|
252
|
+
declare const TextField: (props: TextFieldProps) => react_jsx_runtime.JSX.Element;
|
|
253
|
+
|
|
254
|
+
declare const ThemeToggle: React.FC;
|
|
220
255
|
|
|
221
256
|
type ThemeMode = "light" | "dark";
|
|
222
257
|
type ModeTokens = {
|
|
@@ -322,5 +357,5 @@ declare const getGradientBorderStyles: (theme: Theme$1, options?: GradientBorder
|
|
|
322
357
|
declare const leftPipe: SxProps$2<Theme$1>;
|
|
323
358
|
declare const expandableText: (isExpanded: boolean) => SxProps$2<Theme$1>;
|
|
324
359
|
|
|
325
|
-
export { AccordionGroup, AccordionGroupItem, AccordionSingle, ActionBar, ActionBarTitle, AiButton, AiCard, AiGlassCard, AiGlassPaper, AiPaper, Body1, Body2, Caption, Card, CheckboxGroup, GlassCard, GlassPaper, GreenWaveBackground, H1, H2, H3, H4, LocationMultiSelect, MuiAppThemeProvider, NexusHome, NexusLogo, Paper, PrimaryButton, PrimaryButtonLink, RagDot, SearchInput, SecondaryButton, SecondaryButtonLink, Skeleton, SkillChip, StatusChip, ThemeModeProvider, ThemeToggle, colours, createSageTheme, expandableText, fontSageText, fontSageUI, formatDate, getFiscalPeriod, getGradientBorderStyles, getModeTokens, gradients, leftPipe, useThemeMode, useTokens };
|
|
326
|
-
export type { AccordionGroupItemProps, AccordionGroupProps, AccordionSingleProps, AiButtonProps, AiCardProps, AiGlassCardProps, AiGlassPaperProps, AiPaperProps, CardProps, CardTrend, GlassCardProps, GradientBorderOptions, GreenWaveBackgroundProps, ModeTokens, PrimaryButtonLinkProps, PrimaryButtonProps, SecondaryButtonLinkProps, SecondaryButtonProps, SkeletonProps, ThemeMode };
|
|
360
|
+
export { AccordionGroup, AccordionGroupItem, AccordionSingle, ActionBar, ActionBarTitle, AiButton, AiCard, AiGlassCard, AiGlassPaper, AiPaper, Body1, Body2, Box, ButtonBase, Caption, Card, CheckboxGroup, Chip, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, GlassCard, GlassPaper, GreenWaveBackground, H1, H2, H3, H4, IconButton, LoadingSpinner, LoadingSpinnerNexus, LocationMultiSelect, MuiAppThemeProvider, NexusHome, NexusLogo, Paper, PrimaryButton, PrimaryButtonLink, RagDot, SearchInput, SecondaryButton, SecondaryButtonLink, Skeleton, SkillChip, Stack, StatusChip, Tab, Tabs, TextField, ThemeModeProvider, ThemeToggle, colours, createSageTheme, expandableText, fontSageText, fontSageUI, formatDate, getFiscalPeriod, getGradientBorderStyles, getModeTokens, gradients, leftPipe, useThemeMode, useTokens };
|
|
361
|
+
export type { AccordionGroupItemProps, AccordionGroupProps, AccordionSingleProps, AiButtonProps, AiCardProps, AiGlassCardProps, AiGlassPaperProps, AiPaperProps, CardProps, CardTrend, GlassCardProps, GradientBorderOptions, GreenWaveBackgroundProps, LoadingSpinnerNexusProps, LoadingSpinnerProps, ModeTokens, PrimaryButtonLinkProps, PrimaryButtonProps, SecondaryButtonLinkProps, SecondaryButtonProps, SkeletonProps, ThemeMode };
|