@lumx/react 3.10.1-alpha.5 → 3.10.1-alpha.7
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/_internal/Falsy.d.ts +7 -0
- package/index.d.ts +291 -5
- package/index.js +167 -267
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/src/components/alert-dialog/AlertDialog.tsx +3 -2
- package/src/components/autocomplete/Autocomplete.tsx +2 -2
- package/src/components/autocomplete/AutocompleteMultiple.tsx +2 -2
- package/src/components/avatar/Avatar.tsx +3 -3
- package/src/components/badge/Badge.tsx +3 -3
- package/src/components/badge/BadgeWrapper.tsx +2 -3
- package/src/components/button/Button.tsx +4 -4
- package/src/components/button/ButtonGroup.tsx +2 -3
- package/src/components/button/IconButton.tsx +2 -2
- package/src/components/checkbox/Checkbox.tsx +3 -3
- package/src/components/chip/Chip.tsx +3 -3
- package/src/components/chip/ChipGroup.tsx +2 -3
- package/src/components/comment-block/CommentBlock.tsx +3 -3
- package/src/components/date-picker/constants.ts +2 -2
- package/src/components/dialog/Dialog.tsx +5 -5
- package/src/components/divider/Divider.tsx +3 -3
- package/src/components/drag-handle/DragHandle.tsx +3 -3
- package/src/components/dropdown/Dropdown.tsx +3 -4
- package/src/components/expansion-panel/ExpansionPanel.tsx +6 -6
- package/src/components/flag/Flag.tsx +3 -3
- package/src/components/flex-box/FlexBox.tsx +3 -3
- package/src/components/generic-block/GenericBlock.tsx +2 -3
- package/src/components/grid/Grid.tsx +3 -3
- package/src/components/grid/GridItem.tsx +3 -3
- package/src/components/grid-column/GridColumn.tsx +2 -3
- package/src/components/heading/Heading.tsx +2 -3
- package/src/components/icon/Icon.tsx +3 -3
- package/src/components/image-block/ImageBlock.tsx +3 -3
- package/src/components/image-lightbox/constants.ts +2 -2
- package/src/components/inline-list/InlineList.tsx +3 -3
- package/src/components/input-helper/InputHelper.tsx +3 -3
- package/src/components/input-label/InputLabel.tsx +3 -3
- package/src/components/lightbox/Lightbox.tsx +3 -3
- package/src/components/link/Link.tsx +3 -3
- package/src/components/link-preview/LinkPreview.tsx +3 -3
- package/src/components/list/List.tsx +3 -3
- package/src/components/list/ListDivider.tsx +2 -3
- package/src/components/list/ListItem.tsx +3 -3
- package/src/components/list/ListSubheader.tsx +2 -3
- package/src/components/list/useInteractiveList.tsx +3 -3
- package/src/components/message/Message.tsx +3 -3
- package/src/components/mosaic/Mosaic.tsx +3 -3
- package/src/components/navigation/Navigation.tsx +3 -3
- package/src/components/navigation/NavigationItem.tsx +9 -3
- package/src/components/navigation/NavigationSection.tsx +3 -3
- package/src/components/notification/Notification.tsx +3 -3
- package/src/components/popover/Popover.tsx +3 -3
- package/src/components/popover-dialog/PopoverDialog.tsx +2 -3
- package/src/components/post-block/PostBlock.tsx +3 -3
- package/src/components/progress/Progress.tsx +3 -3
- package/src/components/progress/ProgressCircular.tsx +3 -3
- package/src/components/progress/ProgressLinear.tsx +3 -3
- package/src/components/progress-tracker/ProgressTracker.tsx +2 -3
- package/src/components/progress-tracker/ProgressTrackerStep.tsx +3 -3
- package/src/components/radio-button/RadioButton.tsx +3 -3
- package/src/components/radio-button/RadioGroup.tsx +2 -3
- package/src/components/select/Select.tsx +3 -2
- package/src/components/select/SelectMultiple.tsx +3 -2
- package/src/components/select/WithSelectContext.tsx +3 -2
- package/src/components/side-navigation/SideNavigation.tsx +3 -4
- package/src/components/side-navigation/SideNavigationItem.tsx +4 -4
- package/src/components/skeleton/SkeletonCircle.tsx +3 -3
- package/src/components/skeleton/SkeletonRectangle.tsx +3 -3
- package/src/components/skeleton/SkeletonTypography.tsx +3 -3
- package/src/components/slider/Slider.tsx +3 -3
- package/src/components/slideshow/Slides.tsx +3 -3
- package/src/components/slideshow/SlideshowControls.tsx +3 -3
- package/src/components/slideshow/SlideshowItem.tsx +2 -3
- package/src/components/slideshow/SlideshowItemGroup.tsx +2 -3
- package/src/components/switch/Switch.tsx +3 -3
- package/src/components/table/Table.tsx +3 -3
- package/src/components/table/TableBody.tsx +2 -3
- package/src/components/table/TableCell.tsx +3 -3
- package/src/components/table/TableHeader.tsx +2 -3
- package/src/components/table/TableRow.tsx +3 -3
- package/src/components/text/Text.tsx +4 -9
- package/src/components/text-field/TextField.tsx +3 -3
- package/src/components/thumbnail/Thumbnail.tsx +3 -3
- package/src/components/toolbar/Toolbar.tsx +3 -3
- package/src/components/tooltip/Tooltip.tsx +3 -3
- package/src/components/uploader/Uploader.tsx +3 -3
- package/src/components/user-block/UserBlock.tsx +3 -3
- package/src/utils/className/index.ts +0 -1
- package/src/utils/className.test.js +41 -0
- package/src/utils/type/Callback.ts +4 -0
- package/src/utils/type/Comp.ts +14 -0
- package/src/utils/type/ComponentClassName.ts +7 -0
- package/src/utils/type/ComponentRef.ts +16 -0
- package/src/utils/type/Falsy.ts +5 -0
- package/src/utils/type/GenericProps.ts +11 -0
- package/src/utils/type/HasAriaLabelOrLabelledBy.ts +19 -0
- package/src/utils/type/HasClassName.ts +6 -0
- package/src/utils/type/HasCloseMode.ts +7 -0
- package/src/utils/type/HasPolymorphicAs.ts +8 -0
- package/src/utils/type/HasTheme.ts +8 -0
- package/src/utils/type/HeadingElement.ts +2 -0
- package/src/utils/type/KebabCase.ts +6 -0
- package/src/utils/type/MaybeElementOrRef.ts +6 -0
- package/src/utils/type/Point.ts +4 -0
- package/src/utils/type/Predicate.ts +2 -0
- package/src/utils/type/RectSize.ts +4 -0
- package/src/utils/type/TextElement.ts +4 -0
- package/src/utils/type/ValueOf.ts +2 -0
- package/src/utils/type/index.ts +19 -0
- package/src/utils/type/isComponentType.ts +9 -0
- package/utils/index.d.ts +1 -1
- package/_internal/index.d.ts +0 -285
- package/src/utils/className/getRootClassName.test.ts +0 -11
- package/src/utils/className/getRootClassName.ts +0 -24
- package/src/utils/type.ts +0 -164
package/index.d.ts
CHANGED
|
@@ -1,6 +1,292 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import React, { Ref, ReactElement, ReactNode, SyntheticEvent, MouseEventHandler, KeyboardEventHandler, AriaAttributes, DetailedHTMLProps, ButtonHTMLAttributes, InputHTMLAttributes, RefObject, ImgHTMLAttributes, CSSProperties, SetStateAction, Key } from 'react';
|
|
2
|
+
import { F as Falsy } from './_internal/Falsy.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Callback function type alias (use for readability)
|
|
6
|
+
*/
|
|
7
|
+
type Callback = () => void;
|
|
8
|
+
|
|
9
|
+
/** LumX Component Type. */
|
|
10
|
+
type Comp<P, T = HTMLElement> = {
|
|
11
|
+
(props: P & {
|
|
12
|
+
ref?: Ref<T>;
|
|
13
|
+
}): ReactElement | null;
|
|
14
|
+
/** React component type. */
|
|
15
|
+
readonly $$typeof: symbol;
|
|
16
|
+
/** Component default props. */
|
|
17
|
+
defaultProps?: Partial<P>;
|
|
18
|
+
/** Component name. */
|
|
19
|
+
displayName?: string;
|
|
20
|
+
/** Component base class name. */
|
|
21
|
+
className?: string;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Extract ref type for a component or JSX intrinsic element
|
|
26
|
+
*
|
|
27
|
+
* @example ComponentRef<'div'> => React.Ref<HTMLDivElement>
|
|
28
|
+
* @example ComponentRef<Button> => React.Ref<HTMLButtonElement
|
|
29
|
+
*/
|
|
30
|
+
type ComponentRef<C> = C extends keyof JSX.IntrinsicElements ? JSX.IntrinsicElements[C]['ref'] : C extends Comp<any, infer T> ? React.Ref<T> : C extends React.JSXElementConstructor<{
|
|
31
|
+
ref?: infer R;
|
|
32
|
+
}> ? R : never;
|
|
33
|
+
|
|
34
|
+
interface HasClassName {
|
|
35
|
+
/**
|
|
36
|
+
* Class name forwarded to the root element of the component.
|
|
37
|
+
*/
|
|
38
|
+
className?: string;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Define a generic props types.
|
|
43
|
+
*/
|
|
44
|
+
interface GenericProps extends HasClassName {
|
|
45
|
+
/**
|
|
46
|
+
* Any prop (particularly any supported prop for a HTML element).
|
|
47
|
+
*/
|
|
48
|
+
[propName: string]: any;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Require either `aria-label` or `arial-labelledby` prop.
|
|
53
|
+
* If none are set, the order will prioritize `aria-labelledby` over `aria-label` as it
|
|
54
|
+
* needs a visible element.
|
|
55
|
+
*/
|
|
56
|
+
type HasAriaLabelOrLabelledBy<T = string | undefined> = T extends string ? {
|
|
57
|
+
/**
|
|
58
|
+
* The id of the element to use as title of the dialog. Can be within or out of the dialog.
|
|
59
|
+
* Although it is not recommended, aria-label can be used instead if no visible element is available.
|
|
60
|
+
*/
|
|
61
|
+
'aria-labelledby': T;
|
|
62
|
+
/** The label of the dialog. */
|
|
63
|
+
'aria-label'?: undefined;
|
|
64
|
+
} : {
|
|
65
|
+
'aria-label': string;
|
|
66
|
+
'aria-labelledby'?: undefined;
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
interface HasCloseMode {
|
|
70
|
+
/**
|
|
71
|
+
* Choose how the children are hidden when closed
|
|
72
|
+
* ('hide' keeps the children in DOM but hide them, 'unmount' remove the children from the DOM).
|
|
73
|
+
*/
|
|
74
|
+
closeMode?: 'hide' | 'unmount';
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
interface HasTheme {
|
|
78
|
+
/**
|
|
79
|
+
* Theme adapting the component to light or dark background.
|
|
80
|
+
*/
|
|
81
|
+
theme?: Theme;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/** Union type of all heading elements */
|
|
85
|
+
type HeadingElement = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
86
|
+
|
|
87
|
+
/** Union type of all text elements */
|
|
88
|
+
type TextElement = 'span' | 'p' | HeadingElement;
|
|
89
|
+
|
|
90
|
+
/** Get types of the values of a record. */
|
|
91
|
+
type ValueOf<T extends Record<any, any>> = T[keyof T];
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Alignments.
|
|
95
|
+
*/
|
|
96
|
+
declare const Alignment: {
|
|
97
|
+
readonly bottom: "bottom";
|
|
98
|
+
readonly center: "center";
|
|
99
|
+
readonly end: "end";
|
|
100
|
+
readonly left: "left";
|
|
101
|
+
readonly right: "right";
|
|
102
|
+
readonly spaceAround: "space-around";
|
|
103
|
+
readonly spaceBetween: "space-between";
|
|
104
|
+
readonly spaceEvenly: "space-evenly";
|
|
105
|
+
readonly start: "start";
|
|
106
|
+
readonly top: "top";
|
|
107
|
+
};
|
|
108
|
+
type Alignment = ValueOf<typeof Alignment>;
|
|
109
|
+
type VerticalAlignment = Extract<Alignment, 'top' | 'center' | 'bottom'>;
|
|
110
|
+
type HorizontalAlignment = Extract<Alignment, 'right' | 'center' | 'left'>;
|
|
111
|
+
/**
|
|
112
|
+
* See SCSS variable $lumx-color-palette
|
|
113
|
+
*/
|
|
114
|
+
declare const ColorPalette: {
|
|
115
|
+
readonly primary: "primary";
|
|
116
|
+
readonly secondary: "secondary";
|
|
117
|
+
readonly blue: "blue";
|
|
118
|
+
readonly dark: "dark";
|
|
119
|
+
readonly green: "green";
|
|
120
|
+
readonly yellow: "yellow";
|
|
121
|
+
readonly red: "red";
|
|
122
|
+
readonly light: "light";
|
|
123
|
+
readonly grey: "grey";
|
|
124
|
+
};
|
|
125
|
+
type ColorPalette = ValueOf<typeof ColorPalette>;
|
|
126
|
+
type Color = ColorPalette | string;
|
|
127
|
+
/**
|
|
128
|
+
* See SCSS variable $lumx-color-variants
|
|
129
|
+
*/
|
|
130
|
+
declare const ColorVariant: {
|
|
131
|
+
readonly D1: "D1";
|
|
132
|
+
readonly D2: "D2";
|
|
133
|
+
readonly L1: "L1";
|
|
134
|
+
readonly L2: "L2";
|
|
135
|
+
readonly L3: "L3";
|
|
136
|
+
readonly L4: "L4";
|
|
137
|
+
readonly L5: "L5";
|
|
138
|
+
readonly L6: "L6";
|
|
139
|
+
readonly N: "N";
|
|
140
|
+
};
|
|
141
|
+
type ColorVariant = ValueOf<typeof ColorVariant>;
|
|
142
|
+
declare const Theme: {
|
|
143
|
+
readonly light: "light";
|
|
144
|
+
readonly dark: "dark";
|
|
145
|
+
};
|
|
146
|
+
type Theme = ValueOf<typeof Theme>;
|
|
147
|
+
declare const Size: {
|
|
148
|
+
readonly xxs: "xxs";
|
|
149
|
+
readonly xs: "xs";
|
|
150
|
+
readonly s: "s";
|
|
151
|
+
readonly m: "m";
|
|
152
|
+
readonly l: "l";
|
|
153
|
+
readonly xl: "xl";
|
|
154
|
+
readonly xxl: "xxl";
|
|
155
|
+
readonly tiny: "tiny";
|
|
156
|
+
readonly regular: "regular";
|
|
157
|
+
readonly medium: "medium";
|
|
158
|
+
readonly big: "big";
|
|
159
|
+
readonly huge: "huge";
|
|
160
|
+
};
|
|
161
|
+
type Size = ValueOf<typeof Size>;
|
|
162
|
+
type GlobalSize = Extract<Size, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
|
|
163
|
+
declare const Orientation: {
|
|
164
|
+
readonly horizontal: "horizontal";
|
|
165
|
+
readonly vertical: "vertical";
|
|
166
|
+
};
|
|
167
|
+
type Orientation = ValueOf<typeof Orientation>;
|
|
168
|
+
declare const Emphasis: {
|
|
169
|
+
readonly low: "low";
|
|
170
|
+
readonly medium: "medium";
|
|
171
|
+
readonly high: "high";
|
|
172
|
+
};
|
|
173
|
+
type Emphasis = ValueOf<typeof Emphasis>;
|
|
174
|
+
/**
|
|
175
|
+
* List of typographies that can't be customized.
|
|
176
|
+
*/
|
|
177
|
+
declare const TypographyInterface: {
|
|
178
|
+
readonly overline: "overline";
|
|
179
|
+
readonly caption: "caption";
|
|
180
|
+
readonly body1: "body1";
|
|
181
|
+
readonly body2: "body2";
|
|
182
|
+
readonly subtitle1: "subtitle1";
|
|
183
|
+
readonly subtitle2: "subtitle2";
|
|
184
|
+
readonly title: "title";
|
|
185
|
+
readonly headline: "headline";
|
|
186
|
+
readonly display1: "display1";
|
|
187
|
+
};
|
|
188
|
+
type TypographyInterface = ValueOf<typeof TypographyInterface>;
|
|
189
|
+
/**
|
|
190
|
+
* List of title typographies that can be customized (via CSS variables).
|
|
191
|
+
*/
|
|
192
|
+
declare const TypographyTitleCustom: {
|
|
193
|
+
readonly title1: "custom-title1";
|
|
194
|
+
readonly title2: "custom-title2";
|
|
195
|
+
readonly title3: "custom-title3";
|
|
196
|
+
readonly title4: "custom-title4";
|
|
197
|
+
readonly title5: "custom-title5";
|
|
198
|
+
readonly title6: "custom-title6";
|
|
199
|
+
};
|
|
200
|
+
type TypographyTitleCustom = ValueOf<typeof TypographyTitleCustom>;
|
|
201
|
+
/**
|
|
202
|
+
* List of typographies that can be customized (via CSS variables).
|
|
203
|
+
*/
|
|
204
|
+
declare const TypographyCustom: {
|
|
205
|
+
readonly intro: "custom-intro";
|
|
206
|
+
readonly 'body-large': "custom-body-large";
|
|
207
|
+
readonly body: "custom-body";
|
|
208
|
+
readonly quote: "custom-quote";
|
|
209
|
+
readonly 'publish-info': "custom-publish-info";
|
|
210
|
+
readonly button: "custom-button";
|
|
211
|
+
readonly title1: "custom-title1";
|
|
212
|
+
readonly title2: "custom-title2";
|
|
213
|
+
readonly title3: "custom-title3";
|
|
214
|
+
readonly title4: "custom-title4";
|
|
215
|
+
readonly title5: "custom-title5";
|
|
216
|
+
readonly title6: "custom-title6";
|
|
217
|
+
};
|
|
218
|
+
type TypographyCustom = ValueOf<typeof TypographyCustom>;
|
|
219
|
+
/**
|
|
220
|
+
* List of all typographies.
|
|
221
|
+
*/
|
|
222
|
+
declare const Typography: {
|
|
223
|
+
readonly custom: {
|
|
224
|
+
readonly intro: "custom-intro";
|
|
225
|
+
readonly 'body-large': "custom-body-large";
|
|
226
|
+
readonly body: "custom-body";
|
|
227
|
+
readonly quote: "custom-quote";
|
|
228
|
+
readonly 'publish-info': "custom-publish-info";
|
|
229
|
+
readonly button: "custom-button";
|
|
230
|
+
readonly title1: "custom-title1";
|
|
231
|
+
readonly title2: "custom-title2";
|
|
232
|
+
readonly title3: "custom-title3";
|
|
233
|
+
readonly title4: "custom-title4";
|
|
234
|
+
readonly title5: "custom-title5";
|
|
235
|
+
readonly title6: "custom-title6";
|
|
236
|
+
};
|
|
237
|
+
readonly overline: "overline";
|
|
238
|
+
readonly caption: "caption";
|
|
239
|
+
readonly body1: "body1";
|
|
240
|
+
readonly body2: "body2";
|
|
241
|
+
readonly subtitle1: "subtitle1";
|
|
242
|
+
readonly subtitle2: "subtitle2";
|
|
243
|
+
readonly title: "title";
|
|
244
|
+
readonly headline: "headline";
|
|
245
|
+
readonly display1: "display1";
|
|
246
|
+
};
|
|
247
|
+
type Typography = TypographyInterface | TypographyCustom;
|
|
248
|
+
/**
|
|
249
|
+
* All available aspect ratios.
|
|
250
|
+
*/
|
|
251
|
+
declare const AspectRatio: {
|
|
252
|
+
/** Intrinsic content ratio. */
|
|
253
|
+
readonly original: "original";
|
|
254
|
+
/** Ratio 3:1 */
|
|
255
|
+
readonly panoramic: "panoramic";
|
|
256
|
+
/** Ratio 16:9 */
|
|
257
|
+
readonly wide: "wide";
|
|
258
|
+
/** Ratio 3:2 */
|
|
259
|
+
readonly horizontal: "horizontal";
|
|
260
|
+
/** Ratio 3:2 */
|
|
261
|
+
readonly vertical: "vertical";
|
|
262
|
+
/** Ratio 1:1 */
|
|
263
|
+
readonly square: "square";
|
|
264
|
+
/** Ratio constrained by the parent. */
|
|
265
|
+
readonly free: "free";
|
|
266
|
+
};
|
|
267
|
+
type AspectRatio = ValueOf<typeof AspectRatio>;
|
|
268
|
+
/**
|
|
269
|
+
* Semantic info about the purpose of the component
|
|
270
|
+
*/
|
|
271
|
+
declare const Kind: {
|
|
272
|
+
readonly info: "info";
|
|
273
|
+
readonly success: "success";
|
|
274
|
+
readonly warning: "warning";
|
|
275
|
+
readonly error: "error";
|
|
276
|
+
};
|
|
277
|
+
type Kind = ValueOf<typeof Kind>;
|
|
278
|
+
/**
|
|
279
|
+
* All available white-space values
|
|
280
|
+
* */
|
|
281
|
+
declare const WhiteSpace: {
|
|
282
|
+
normal: string;
|
|
283
|
+
nowrap: string;
|
|
284
|
+
pre: string;
|
|
285
|
+
'pre-wrap': string;
|
|
286
|
+
'pre-line': string;
|
|
287
|
+
'break-spaces': string;
|
|
288
|
+
};
|
|
289
|
+
type WhiteSpace = ValueOf<typeof WhiteSpace>;
|
|
4
290
|
|
|
5
291
|
interface AlertDialogProps extends Omit<DialogProps, 'header' | 'footer'> {
|
|
6
292
|
/** Message variant. */
|
|
@@ -1837,7 +2123,7 @@ declare const NavigationItem: (<E extends React.ElementType = "a">(props: React.
|
|
|
1837
2123
|
ref?: ComponentRef<E> | undefined;
|
|
1838
2124
|
}) => React.JSX.Element) & {
|
|
1839
2125
|
displayName: string;
|
|
1840
|
-
className:
|
|
2126
|
+
className: "lumx-navigation-item";
|
|
1841
2127
|
};
|
|
1842
2128
|
|
|
1843
2129
|
type NavigationProps = React.ComponentProps<'nav'> & HasClassName & HasTheme & {
|
|
@@ -3021,4 +3307,4 @@ declare const ThemeProvider: React.FC<{
|
|
|
3021
3307
|
/** Get the theme in the current context. */
|
|
3022
3308
|
declare function useTheme(): ThemeContextValue;
|
|
3023
3309
|
|
|
3024
|
-
export { AlertDialog, type AlertDialogProps, Alignment, AspectRatio, Autocomplete, AutocompleteMultiple, type AutocompleteMultipleProps, type AutocompleteProps, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, BadgeWrapper, type BadgeWrapperProps, type BaseButtonProps, Button, ButtonEmphasis, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonSize, Checkbox, type CheckboxProps, Chip, ChipGroup, type ChipGroupProps, type ChipProps, ColorPalette, ColorVariant, CommentBlock, type CommentBlockProps, CommentBlockVariant, DatePicker, DatePickerControlled, type DatePickerControlledProps, DatePickerField, type DatePickerFieldProps, type DatePickerProps, Dialog, type DialogProps, type DialogSizes, Divider, type DividerProps, DragHandle, type DragHandleProps, Dropdown, type DropdownProps, type Elevation, Emphasis, ExpansionPanel, type ExpansionPanelProps, Flag, type FlagProps, FlexBox, type FlexBoxProps, type FlexHorizontalAlignment, type FlexVerticalAlignment, type FocusPoint, type GapSize, GenericBlock, GenericBlockGapSize, type GenericBlockProps, GenericProps, GlobalSize, Grid, GridColumn, type GridColumnGapSize, type GridColumnProps, GridItem, type GridItemProps, type GridProps, Heading, HeadingElement, HeadingLevelProvider, type HeadingLevelProviderProps, type HeadingProps, HorizontalAlignment, Icon, IconButton, type IconButtonProps, type IconProps, type IconSizes, ImageBlock, ImageBlockCaptionPosition, type ImageBlockProps, type ImageBlockSize, ImageLightbox, type ImageLightboxProps, InlineList, type InlineListProps, InputHelper, type InputHelperProps, InputLabel, type InputLabelProps, Kind, Lightbox, type LightboxProps, Link, LinkPreview, type LinkPreviewProps, type LinkProps, List, ListDivider, type ListDividerProps, ListItem, type ListItemProps, type ListItemSize, type ListProps, ListSubheader, type ListSubheaderProps, type MarginAutoAlignment, Message, type MessageProps, Mosaic, type MosaicProps, Navigation, type NavigationProps, Notification, type NotificationProps, type Offset, Orientation, Placement, Popover, PopoverDialog, type PopoverDialogProps, type PopoverProps, PostBlock, type PostBlockProps, Progress, ProgressCircular, type ProgressCircularProps, type ProgressCircularSize, ProgressLinear, type ProgressLinearProps, type ProgressProps, ProgressTracker, type ProgressTrackerProps, ProgressTrackerProvider, type ProgressTrackerProviderProps, ProgressTrackerStep, ProgressTrackerStepPanel, type ProgressTrackerStepPanelProps, type ProgressTrackerStepProps, ProgressVariant, RadioButton, type RadioButtonProps, RadioGroup, type RadioGroupProps, Select, SelectMultiple, SelectMultipleField, type SelectMultipleProps, type SelectProps, SelectVariant, SideNavigation, SideNavigationItem, type SideNavigationItemProps, type SideNavigationProps, Size, SkeletonCircle, type SkeletonCircleProps, SkeletonRectangle, type SkeletonRectangleProps, SkeletonRectangleVariant, SkeletonTypography, type SkeletonTypographyProps, Slider, type SliderProps, Slides, type SlidesProps, Slideshow, SlideshowControls, type SlideshowControlsProps, SlideshowItem, type SlideshowItemProps, type SlideshowProps, Switch, type SwitchProps, Tab, TabList, TabListLayout, type TabListProps, TabPanel, type TabPanelProps, type TabProps, TabProvider, type TabProviderProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableCellVariant, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Text, TextElement, TextField, type TextFieldProps, type TextProps, ThOrder, Theme, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, type ThumbnailProps, type ThumbnailSize, ThumbnailVariant, Toolbar, type ToolbarProps, Tooltip, type TooltipPlacement, type TooltipProps, Typography, TypographyInterface, Uploader, type UploaderProps, type UploaderSize, UploaderVariant, UserBlock, type UserBlockProps, type UserBlockSize, VerticalAlignment, WhiteSpace, clamp, isClickable, useFocusPointStyle, useHeadingLevel, useTheme };
|
|
3310
|
+
export { AlertDialog, type AlertDialogProps, Alignment, AspectRatio, Autocomplete, AutocompleteMultiple, type AutocompleteMultipleProps, type AutocompleteProps, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, BadgeWrapper, type BadgeWrapperProps, type BaseButtonProps, Button, ButtonEmphasis, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonSize, type Callback, Checkbox, type CheckboxProps, Chip, ChipGroup, type ChipGroupProps, type ChipProps, type Color, ColorPalette, ColorVariant, CommentBlock, type CommentBlockProps, CommentBlockVariant, DatePicker, DatePickerControlled, type DatePickerControlledProps, DatePickerField, type DatePickerFieldProps, type DatePickerProps, Dialog, type DialogProps, type DialogSizes, Divider, type DividerProps, DragHandle, type DragHandleProps, Dropdown, type DropdownProps, type Elevation, Emphasis, ExpansionPanel, type ExpansionPanelProps, Flag, type FlagProps, FlexBox, type FlexBoxProps, type FlexHorizontalAlignment, type FlexVerticalAlignment, type FocusPoint, type GapSize, GenericBlock, GenericBlockGapSize, type GenericBlockProps, type GenericProps, type GlobalSize, Grid, GridColumn, type GridColumnGapSize, type GridColumnProps, GridItem, type GridItemProps, type GridProps, Heading, type HeadingElement, HeadingLevelProvider, type HeadingLevelProviderProps, type HeadingProps, type HorizontalAlignment, Icon, IconButton, type IconButtonProps, type IconProps, type IconSizes, ImageBlock, ImageBlockCaptionPosition, type ImageBlockProps, type ImageBlockSize, ImageLightbox, type ImageLightboxProps, InlineList, type InlineListProps, InputHelper, type InputHelperProps, InputLabel, type InputLabelProps, Kind, Lightbox, type LightboxProps, Link, LinkPreview, type LinkPreviewProps, type LinkProps, List, ListDivider, type ListDividerProps, ListItem, type ListItemProps, type ListItemSize, type ListProps, ListSubheader, type ListSubheaderProps, type MarginAutoAlignment, Message, type MessageProps, Mosaic, type MosaicProps, Navigation, type NavigationProps, Notification, type NotificationProps, type Offset, Orientation, Placement, Popover, PopoverDialog, type PopoverDialogProps, type PopoverProps, PostBlock, type PostBlockProps, Progress, ProgressCircular, type ProgressCircularProps, type ProgressCircularSize, ProgressLinear, type ProgressLinearProps, type ProgressProps, ProgressTracker, type ProgressTrackerProps, ProgressTrackerProvider, type ProgressTrackerProviderProps, ProgressTrackerStep, ProgressTrackerStepPanel, type ProgressTrackerStepPanelProps, type ProgressTrackerStepProps, ProgressVariant, RadioButton, type RadioButtonProps, RadioGroup, type RadioGroupProps, Select, SelectMultiple, SelectMultipleField, type SelectMultipleProps, type SelectProps, SelectVariant, SideNavigation, SideNavigationItem, type SideNavigationItemProps, type SideNavigationProps, Size, SkeletonCircle, type SkeletonCircleProps, SkeletonRectangle, type SkeletonRectangleProps, SkeletonRectangleVariant, SkeletonTypography, type SkeletonTypographyProps, Slider, type SliderProps, Slides, type SlidesProps, Slideshow, SlideshowControls, type SlideshowControlsProps, SlideshowItem, type SlideshowItemProps, type SlideshowProps, Switch, type SwitchProps, Tab, TabList, TabListLayout, type TabListProps, TabPanel, type TabPanelProps, type TabProps, TabProvider, type TabProviderProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableCellVariant, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Text, type TextElement, TextField, type TextFieldProps, type TextProps, ThOrder, Theme, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, type ThumbnailProps, type ThumbnailSize, ThumbnailVariant, Toolbar, type ToolbarProps, Tooltip, type TooltipPlacement, type TooltipProps, Typography, TypographyCustom, TypographyInterface, TypographyTitleCustom, Uploader, type UploaderProps, type UploaderSize, UploaderVariant, UserBlock, type UserBlockProps, type UserBlockSize, type VerticalAlignment, WhiteSpace, clamp, isClickable, useFocusPointStyle, useHeadingLevel, useTheme };
|