@vygruppen/spor-react 10.4.0 → 10.5.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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +16 -0
- package/dist/{CountryCodeSelect-XMQTDWRD.mjs → CountryCodeSelect-QMX6VHNM.mjs} +1 -1
- package/dist/{chunk-T4CLCBB5.mjs → chunk-CHJ6LT66.mjs} +716 -538
- package/dist/index.d.mts +110 -8
- package/dist/index.d.ts +110 -8
- package/dist/index.js +852 -657
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/alert/AlertIcon.tsx +9 -0
- package/src/alert/BaseAlert.tsx +7 -1
- package/src/alert/ExpandableAlert.tsx +7 -3
- package/src/alert/ServiceAlert.tsx +162 -0
- package/src/alert/index.tsx +1 -0
- package/src/input/Input.tsx +1 -0
- package/src/theme/components/alert-expandable.ts +10 -0
- package/src/theme/components/alert-service.ts +53 -0
- package/src/theme/components/alert.ts +6 -0
- package/src/theme/components/index.ts +1 -0
- package/src/theme/components/travel-tag.ts +1 -4
package/dist/index.d.mts
CHANGED
@@ -296,7 +296,7 @@ declare const ExpandableItem: ({ children, title, headingLevel, leftIcon, ...res
|
|
296
296
|
|
297
297
|
type BaseAlertProps = BoxProps & {
|
298
298
|
/** The color scheme and icon of the alert */
|
299
|
-
variant: "info" | "success" | "warning" | "alt-transport" | "error";
|
299
|
+
variant: "info" | "success" | "warning" | "alt-transport" | "error" | "service";
|
300
300
|
/** The body content of the alert */
|
301
301
|
children: React.ReactNode;
|
302
302
|
/** The title of the alert */
|
@@ -371,6 +371,38 @@ type StaticAlertProps = BaseAlertProps;
|
|
371
371
|
*/
|
372
372
|
declare const StaticAlert: ({ children, title, ...props }: StaticAlertProps) => React.JSX.Element;
|
373
373
|
|
374
|
+
type ServiceAlertProps = BaseAlertProps & {
|
375
|
+
/** The title string */
|
376
|
+
title: string;
|
377
|
+
/** The number of notifications when there is a list of multiple alerts */
|
378
|
+
notification: number;
|
379
|
+
/** The maximum width to display the service message
|
380
|
+
*
|
381
|
+
* Defaults to container.md */
|
382
|
+
contentWidth: string;
|
383
|
+
/** Callback for when the expandable panel is opened or closed */
|
384
|
+
onToggle?: (isOpen: boolean) => void;
|
385
|
+
/** Whether or not the default state of the alert is open */
|
386
|
+
defaultOpen?: boolean;
|
387
|
+
/**
|
388
|
+
* The HTML element used for the `title` prop.
|
389
|
+
*
|
390
|
+
* Defaults to h3 */
|
391
|
+
headingLevel?: "h2" | "h3" | "h4" | "h5" | "h6";
|
392
|
+
};
|
393
|
+
/**
|
394
|
+
* A service alert component.
|
395
|
+
*
|
396
|
+
* A regular alert with an expandable body, used to show service messages. The expandable body can be used to provide more information about the alert(s).
|
397
|
+
*
|
398
|
+
* ```tsx
|
399
|
+
* <ServiceAlert title="Error with Vipps" notification={1} contentWidth="container.md">
|
400
|
+
* <Text>Some customers are experiencing issues logging in with Vipps. Vipps is working to resolve the issue. Try logging in with email instead.</Text>
|
401
|
+
* </ServiceAlert>
|
402
|
+
* ```
|
403
|
+
*/
|
404
|
+
declare const ServiceAlert: ({ variant, children, title, notification, contentWidth, headingLevel, defaultOpen, onToggle, ...boxProps }: ServiceAlertProps) => React.JSX.Element;
|
405
|
+
|
374
406
|
type BreadcrumbProps = Omit<BreadcrumbProps$1, "variant"> & {
|
375
407
|
variant?: "base" | "ghost";
|
376
408
|
};
|
@@ -2493,10 +2525,16 @@ declare const theme: {
|
|
2493
2525
|
backgroundColor: string;
|
2494
2526
|
};
|
2495
2527
|
};
|
2528
|
+
service: {
|
2529
|
+
container: {
|
2530
|
+
backgroundColor: string;
|
2531
|
+
color: string;
|
2532
|
+
};
|
2533
|
+
};
|
2496
2534
|
} | undefined;
|
2497
2535
|
defaultProps?: {
|
2498
2536
|
size?: string | number | undefined;
|
2499
|
-
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
|
2537
|
+
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | "service" | undefined;
|
2500
2538
|
colorScheme?: string | undefined;
|
2501
2539
|
} | undefined;
|
2502
2540
|
parts: ("container" | "icon" | "closeButton")[];
|
@@ -2573,14 +2611,80 @@ declare const theme: {
|
|
2573
2611
|
};
|
2574
2612
|
};
|
2575
2613
|
};
|
2614
|
+
service: {
|
2615
|
+
container: {
|
2616
|
+
_hover: {
|
2617
|
+
outlineColor: string;
|
2618
|
+
};
|
2619
|
+
_active: {
|
2620
|
+
backgroundColor: string;
|
2621
|
+
};
|
2622
|
+
};
|
2623
|
+
};
|
2576
2624
|
} | undefined;
|
2577
2625
|
defaultProps?: {
|
2578
2626
|
size?: string | number | undefined;
|
2579
|
-
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
|
2627
|
+
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | "service" | undefined;
|
2580
2628
|
colorScheme?: string | undefined;
|
2581
2629
|
} | undefined;
|
2582
2630
|
parts: "container"[];
|
2583
2631
|
};
|
2632
|
+
AlertService: {
|
2633
|
+
baseStyle?: {
|
2634
|
+
container: {
|
2635
|
+
paddingX: number;
|
2636
|
+
paddingY: number;
|
2637
|
+
fontSize: string;
|
2638
|
+
transitionProperty: string;
|
2639
|
+
transitionDuration: string;
|
2640
|
+
borderTopRadius: string;
|
2641
|
+
borderBottomRadius: string;
|
2642
|
+
_hover: {
|
2643
|
+
outline: string;
|
2644
|
+
outlineColor: string;
|
2645
|
+
};
|
2646
|
+
_active: {
|
2647
|
+
backgroundColor: string;
|
2648
|
+
outlineColor: string;
|
2649
|
+
};
|
2650
|
+
};
|
2651
|
+
box: {
|
2652
|
+
outline: string;
|
2653
|
+
outlineColor: string;
|
2654
|
+
backgroundColor: string;
|
2655
|
+
borderBottomRadius: string;
|
2656
|
+
borderTopRadius: string;
|
2657
|
+
};
|
2658
|
+
notificationText: {
|
2659
|
+
color: string;
|
2660
|
+
fontWeight: string;
|
2661
|
+
fontSize: string;
|
2662
|
+
pr: string;
|
2663
|
+
};
|
2664
|
+
serviceMessageContent: {
|
2665
|
+
paddingX: string;
|
2666
|
+
paddingTop: string;
|
2667
|
+
paddingBottom: string;
|
2668
|
+
color: string;
|
2669
|
+
};
|
2670
|
+
} | undefined;
|
2671
|
+
sizes?: {
|
2672
|
+
[key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
|
2673
|
+
keys: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2674
|
+
}>;
|
2675
|
+
} | undefined;
|
2676
|
+
variants?: {
|
2677
|
+
[key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
|
2678
|
+
keys: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2679
|
+
}>;
|
2680
|
+
} | undefined;
|
2681
|
+
defaultProps?: {
|
2682
|
+
size?: string | number | undefined;
|
2683
|
+
variant?: string | number | undefined;
|
2684
|
+
colorScheme?: string | undefined;
|
2685
|
+
} | undefined;
|
2686
|
+
parts: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2687
|
+
};
|
2584
2688
|
Badge: {
|
2585
2689
|
baseStyle?: (({ colorScheme }: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2586
2690
|
backgroundColor: string;
|
@@ -4289,8 +4393,7 @@ declare const theme: {
|
|
4289
4393
|
right: string;
|
4290
4394
|
transform: string;
|
4291
4395
|
zIndex: string;
|
4292
|
-
|
4293
|
-
color: "brightRed" | "golden" | "ocean";
|
4396
|
+
color: "brightRed" | "ocean";
|
4294
4397
|
};
|
4295
4398
|
}) | undefined;
|
4296
4399
|
sizes?: {
|
@@ -7191,8 +7294,7 @@ declare const theme: {
|
|
7191
7294
|
right: string;
|
7192
7295
|
transform: string;
|
7193
7296
|
zIndex: string;
|
7194
|
-
|
7195
|
-
color: "brightRed" | "golden" | "ocean";
|
7297
|
+
color: "brightRed" | "ocean";
|
7196
7298
|
};
|
7197
7299
|
}) | undefined;
|
7198
7300
|
sizes?: {
|
@@ -9267,4 +9369,4 @@ declare const Text: _chakra_ui_system_dist_system_types.ComponentWithAs<"p", Tex
|
|
9267
9369
|
**/
|
9268
9370
|
declare function slugify(text: string | string[], maxLength?: number): string;
|
9269
9371
|
|
9270
|
-
export { Accordion, AccordionProps, AttachedInputs, Badge, BadgeProps, Brand, Breadcrumb, BreadcrumbItem, BreadcrumbLink, Button, ButtonGroup, ButtonGroupProps, ButtonProps, CardSelect, CargonetLogo, CargonetLogoProps, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChoiceChip, ChoiceChipProps, ClosableAlert, CloseButton, CloseButtonProps, Code, CodeProps, ColorInlineLoader, ColorInlineLoaderProps, ColorSpinner, ColorSpinnerProps, Combobox, ComboboxProps, ContentLoader, ContentLoaderProps, DarkFullScreenLoader, DarkInlineLoader, DarkInlineLoaderProps, DarkSpinner, DarkSpinnerProps, DatePicker, DateRangePicker, Divider, DividerProps, Drawer, DrawerBodyProps, DrawerContent, ModalHeader as DrawerHeader, Expandable, ExpandableAlert, ExpandableItem, ExpandableItemProps, FloatingActionButton, FormControl, FormControlProps, FormErrorMessage, FormErrorMessageProps, FormLabel, FormLabelProps, FullScreenDrawer, Heading, HeadingProps, IconButton, IconButtonProps, InfoSelect, InfoTag, InfoTagProps, Input, InputElementProps, InputLeftElement, InputProps, InputRightElement, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, LightInlineLoaderProps, LightSpinner, LightSpinnerProps, LineIcon, LineIconProps, ListBox, ModalHeader, ModalHeaderProps, NativeSelect, NativeSelectProps, Nudge, NudgeProps, NumericStepper, Pagination, PasswordInput, PasswordInputProps, PhoneNumberInput, PlayPauseButton, PressableCard, ProgressBar, ProgressIndicator, ProgressLoader, Radio, RadioCard, RadioCardGroup, RadioCardGroupContext, RadioCardProps, RadioGroup, RadioGroupProps, RadioProps, SearchInput, SearchInputProps, SimpleDrawer, SimpleDrawerProps, Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps, SkipButton, SpinnerProps, SporProvider, Stack, StackProps, StaticAlert, StaticCard, StaticCardProps, Stepper, StepperStep, Switch, SwitchProps, Table, TableProps, Tabs, TabsProps, Text, TextLink, TextProps, Textarea, TextareaProps, TimePicker, ToastOptions, Tooltip, TooltipProps, Translations, TravelTag, TravelTagProps, VyLogo, VyLogoPride, VyLogoPrideProps, VyLogoProps, WizardNudge, WizardNudgeProps, brandTheme, createTexts, fontFaces, slugify, theme, useToast, useTranslation };
|
9372
|
+
export { Accordion, AccordionProps, AttachedInputs, Badge, BadgeProps, Brand, Breadcrumb, BreadcrumbItem, BreadcrumbLink, Button, ButtonGroup, ButtonGroupProps, ButtonProps, CardSelect, CargonetLogo, CargonetLogoProps, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChoiceChip, ChoiceChipProps, ClosableAlert, CloseButton, CloseButtonProps, Code, CodeProps, ColorInlineLoader, ColorInlineLoaderProps, ColorSpinner, ColorSpinnerProps, Combobox, ComboboxProps, ContentLoader, ContentLoaderProps, DarkFullScreenLoader, DarkInlineLoader, DarkInlineLoaderProps, DarkSpinner, DarkSpinnerProps, DatePicker, DateRangePicker, Divider, DividerProps, Drawer, DrawerBodyProps, DrawerContent, ModalHeader as DrawerHeader, Expandable, ExpandableAlert, ExpandableItem, ExpandableItemProps, FloatingActionButton, FormControl, FormControlProps, FormErrorMessage, FormErrorMessageProps, FormLabel, FormLabelProps, FullScreenDrawer, Heading, HeadingProps, IconButton, IconButtonProps, InfoSelect, InfoTag, InfoTagProps, Input, InputElementProps, InputLeftElement, InputProps, InputRightElement, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, LightInlineLoaderProps, LightSpinner, LightSpinnerProps, LineIcon, LineIconProps, ListBox, ModalHeader, ModalHeaderProps, NativeSelect, NativeSelectProps, Nudge, NudgeProps, NumericStepper, Pagination, PasswordInput, PasswordInputProps, PhoneNumberInput, PlayPauseButton, PressableCard, ProgressBar, ProgressIndicator, ProgressLoader, Radio, RadioCard, RadioCardGroup, RadioCardGroupContext, RadioCardProps, RadioGroup, RadioGroupProps, RadioProps, SearchInput, SearchInputProps, ServiceAlert, SimpleDrawer, SimpleDrawerProps, Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps, SkipButton, SpinnerProps, SporProvider, Stack, StackProps, StaticAlert, StaticCard, StaticCardProps, Stepper, StepperStep, Switch, SwitchProps, Table, TableProps, Tabs, TabsProps, Text, TextLink, TextProps, Textarea, TextareaProps, TimePicker, ToastOptions, Tooltip, TooltipProps, Translations, TravelTag, TravelTagProps, VyLogo, VyLogoPride, VyLogoPrideProps, VyLogoProps, WizardNudge, WizardNudgeProps, brandTheme, createTexts, fontFaces, slugify, theme, useToast, useTranslation };
|
package/dist/index.d.ts
CHANGED
@@ -296,7 +296,7 @@ declare const ExpandableItem: ({ children, title, headingLevel, leftIcon, ...res
|
|
296
296
|
|
297
297
|
type BaseAlertProps = BoxProps & {
|
298
298
|
/** The color scheme and icon of the alert */
|
299
|
-
variant: "info" | "success" | "warning" | "alt-transport" | "error";
|
299
|
+
variant: "info" | "success" | "warning" | "alt-transport" | "error" | "service";
|
300
300
|
/** The body content of the alert */
|
301
301
|
children: React.ReactNode;
|
302
302
|
/** The title of the alert */
|
@@ -371,6 +371,38 @@ type StaticAlertProps = BaseAlertProps;
|
|
371
371
|
*/
|
372
372
|
declare const StaticAlert: ({ children, title, ...props }: StaticAlertProps) => React.JSX.Element;
|
373
373
|
|
374
|
+
type ServiceAlertProps = BaseAlertProps & {
|
375
|
+
/** The title string */
|
376
|
+
title: string;
|
377
|
+
/** The number of notifications when there is a list of multiple alerts */
|
378
|
+
notification: number;
|
379
|
+
/** The maximum width to display the service message
|
380
|
+
*
|
381
|
+
* Defaults to container.md */
|
382
|
+
contentWidth: string;
|
383
|
+
/** Callback for when the expandable panel is opened or closed */
|
384
|
+
onToggle?: (isOpen: boolean) => void;
|
385
|
+
/** Whether or not the default state of the alert is open */
|
386
|
+
defaultOpen?: boolean;
|
387
|
+
/**
|
388
|
+
* The HTML element used for the `title` prop.
|
389
|
+
*
|
390
|
+
* Defaults to h3 */
|
391
|
+
headingLevel?: "h2" | "h3" | "h4" | "h5" | "h6";
|
392
|
+
};
|
393
|
+
/**
|
394
|
+
* A service alert component.
|
395
|
+
*
|
396
|
+
* A regular alert with an expandable body, used to show service messages. The expandable body can be used to provide more information about the alert(s).
|
397
|
+
*
|
398
|
+
* ```tsx
|
399
|
+
* <ServiceAlert title="Error with Vipps" notification={1} contentWidth="container.md">
|
400
|
+
* <Text>Some customers are experiencing issues logging in with Vipps. Vipps is working to resolve the issue. Try logging in with email instead.</Text>
|
401
|
+
* </ServiceAlert>
|
402
|
+
* ```
|
403
|
+
*/
|
404
|
+
declare const ServiceAlert: ({ variant, children, title, notification, contentWidth, headingLevel, defaultOpen, onToggle, ...boxProps }: ServiceAlertProps) => React.JSX.Element;
|
405
|
+
|
374
406
|
type BreadcrumbProps = Omit<BreadcrumbProps$1, "variant"> & {
|
375
407
|
variant?: "base" | "ghost";
|
376
408
|
};
|
@@ -2493,10 +2525,16 @@ declare const theme: {
|
|
2493
2525
|
backgroundColor: string;
|
2494
2526
|
};
|
2495
2527
|
};
|
2528
|
+
service: {
|
2529
|
+
container: {
|
2530
|
+
backgroundColor: string;
|
2531
|
+
color: string;
|
2532
|
+
};
|
2533
|
+
};
|
2496
2534
|
} | undefined;
|
2497
2535
|
defaultProps?: {
|
2498
2536
|
size?: string | number | undefined;
|
2499
|
-
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
|
2537
|
+
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | "service" | undefined;
|
2500
2538
|
colorScheme?: string | undefined;
|
2501
2539
|
} | undefined;
|
2502
2540
|
parts: ("container" | "icon" | "closeButton")[];
|
@@ -2573,14 +2611,80 @@ declare const theme: {
|
|
2573
2611
|
};
|
2574
2612
|
};
|
2575
2613
|
};
|
2614
|
+
service: {
|
2615
|
+
container: {
|
2616
|
+
_hover: {
|
2617
|
+
outlineColor: string;
|
2618
|
+
};
|
2619
|
+
_active: {
|
2620
|
+
backgroundColor: string;
|
2621
|
+
};
|
2622
|
+
};
|
2623
|
+
};
|
2576
2624
|
} | undefined;
|
2577
2625
|
defaultProps?: {
|
2578
2626
|
size?: string | number | undefined;
|
2579
|
-
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
|
2627
|
+
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | "service" | undefined;
|
2580
2628
|
colorScheme?: string | undefined;
|
2581
2629
|
} | undefined;
|
2582
2630
|
parts: "container"[];
|
2583
2631
|
};
|
2632
|
+
AlertService: {
|
2633
|
+
baseStyle?: {
|
2634
|
+
container: {
|
2635
|
+
paddingX: number;
|
2636
|
+
paddingY: number;
|
2637
|
+
fontSize: string;
|
2638
|
+
transitionProperty: string;
|
2639
|
+
transitionDuration: string;
|
2640
|
+
borderTopRadius: string;
|
2641
|
+
borderBottomRadius: string;
|
2642
|
+
_hover: {
|
2643
|
+
outline: string;
|
2644
|
+
outlineColor: string;
|
2645
|
+
};
|
2646
|
+
_active: {
|
2647
|
+
backgroundColor: string;
|
2648
|
+
outlineColor: string;
|
2649
|
+
};
|
2650
|
+
};
|
2651
|
+
box: {
|
2652
|
+
outline: string;
|
2653
|
+
outlineColor: string;
|
2654
|
+
backgroundColor: string;
|
2655
|
+
borderBottomRadius: string;
|
2656
|
+
borderTopRadius: string;
|
2657
|
+
};
|
2658
|
+
notificationText: {
|
2659
|
+
color: string;
|
2660
|
+
fontWeight: string;
|
2661
|
+
fontSize: string;
|
2662
|
+
pr: string;
|
2663
|
+
};
|
2664
|
+
serviceMessageContent: {
|
2665
|
+
paddingX: string;
|
2666
|
+
paddingTop: string;
|
2667
|
+
paddingBottom: string;
|
2668
|
+
color: string;
|
2669
|
+
};
|
2670
|
+
} | undefined;
|
2671
|
+
sizes?: {
|
2672
|
+
[key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
|
2673
|
+
keys: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2674
|
+
}>;
|
2675
|
+
} | undefined;
|
2676
|
+
variants?: {
|
2677
|
+
[key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
|
2678
|
+
keys: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2679
|
+
}>;
|
2680
|
+
} | undefined;
|
2681
|
+
defaultProps?: {
|
2682
|
+
size?: string | number | undefined;
|
2683
|
+
variant?: string | number | undefined;
|
2684
|
+
colorScheme?: string | undefined;
|
2685
|
+
} | undefined;
|
2686
|
+
parts: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2687
|
+
};
|
2584
2688
|
Badge: {
|
2585
2689
|
baseStyle?: (({ colorScheme }: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2586
2690
|
backgroundColor: string;
|
@@ -4289,8 +4393,7 @@ declare const theme: {
|
|
4289
4393
|
right: string;
|
4290
4394
|
transform: string;
|
4291
4395
|
zIndex: string;
|
4292
|
-
|
4293
|
-
color: "brightRed" | "golden" | "ocean";
|
4396
|
+
color: "brightRed" | "ocean";
|
4294
4397
|
};
|
4295
4398
|
}) | undefined;
|
4296
4399
|
sizes?: {
|
@@ -7191,8 +7294,7 @@ declare const theme: {
|
|
7191
7294
|
right: string;
|
7192
7295
|
transform: string;
|
7193
7296
|
zIndex: string;
|
7194
|
-
|
7195
|
-
color: "brightRed" | "golden" | "ocean";
|
7297
|
+
color: "brightRed" | "ocean";
|
7196
7298
|
};
|
7197
7299
|
}) | undefined;
|
7198
7300
|
sizes?: {
|
@@ -9267,4 +9369,4 @@ declare const Text: _chakra_ui_system_dist_system_types.ComponentWithAs<"p", Tex
|
|
9267
9369
|
**/
|
9268
9370
|
declare function slugify(text: string | string[], maxLength?: number): string;
|
9269
9371
|
|
9270
|
-
export { Accordion, AccordionProps, AttachedInputs, Badge, BadgeProps, Brand, Breadcrumb, BreadcrumbItem, BreadcrumbLink, Button, ButtonGroup, ButtonGroupProps, ButtonProps, CardSelect, CargonetLogo, CargonetLogoProps, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChoiceChip, ChoiceChipProps, ClosableAlert, CloseButton, CloseButtonProps, Code, CodeProps, ColorInlineLoader, ColorInlineLoaderProps, ColorSpinner, ColorSpinnerProps, Combobox, ComboboxProps, ContentLoader, ContentLoaderProps, DarkFullScreenLoader, DarkInlineLoader, DarkInlineLoaderProps, DarkSpinner, DarkSpinnerProps, DatePicker, DateRangePicker, Divider, DividerProps, Drawer, DrawerBodyProps, DrawerContent, ModalHeader as DrawerHeader, Expandable, ExpandableAlert, ExpandableItem, ExpandableItemProps, FloatingActionButton, FormControl, FormControlProps, FormErrorMessage, FormErrorMessageProps, FormLabel, FormLabelProps, FullScreenDrawer, Heading, HeadingProps, IconButton, IconButtonProps, InfoSelect, InfoTag, InfoTagProps, Input, InputElementProps, InputLeftElement, InputProps, InputRightElement, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, LightInlineLoaderProps, LightSpinner, LightSpinnerProps, LineIcon, LineIconProps, ListBox, ModalHeader, ModalHeaderProps, NativeSelect, NativeSelectProps, Nudge, NudgeProps, NumericStepper, Pagination, PasswordInput, PasswordInputProps, PhoneNumberInput, PlayPauseButton, PressableCard, ProgressBar, ProgressIndicator, ProgressLoader, Radio, RadioCard, RadioCardGroup, RadioCardGroupContext, RadioCardProps, RadioGroup, RadioGroupProps, RadioProps, SearchInput, SearchInputProps, SimpleDrawer, SimpleDrawerProps, Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps, SkipButton, SpinnerProps, SporProvider, Stack, StackProps, StaticAlert, StaticCard, StaticCardProps, Stepper, StepperStep, Switch, SwitchProps, Table, TableProps, Tabs, TabsProps, Text, TextLink, TextProps, Textarea, TextareaProps, TimePicker, ToastOptions, Tooltip, TooltipProps, Translations, TravelTag, TravelTagProps, VyLogo, VyLogoPride, VyLogoPrideProps, VyLogoProps, WizardNudge, WizardNudgeProps, brandTheme, createTexts, fontFaces, slugify, theme, useToast, useTranslation };
|
9372
|
+
export { Accordion, AccordionProps, AttachedInputs, Badge, BadgeProps, Brand, Breadcrumb, BreadcrumbItem, BreadcrumbLink, Button, ButtonGroup, ButtonGroupProps, ButtonProps, CardSelect, CargonetLogo, CargonetLogoProps, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChoiceChip, ChoiceChipProps, ClosableAlert, CloseButton, CloseButtonProps, Code, CodeProps, ColorInlineLoader, ColorInlineLoaderProps, ColorSpinner, ColorSpinnerProps, Combobox, ComboboxProps, ContentLoader, ContentLoaderProps, DarkFullScreenLoader, DarkInlineLoader, DarkInlineLoaderProps, DarkSpinner, DarkSpinnerProps, DatePicker, DateRangePicker, Divider, DividerProps, Drawer, DrawerBodyProps, DrawerContent, ModalHeader as DrawerHeader, Expandable, ExpandableAlert, ExpandableItem, ExpandableItemProps, FloatingActionButton, FormControl, FormControlProps, FormErrorMessage, FormErrorMessageProps, FormLabel, FormLabelProps, FullScreenDrawer, Heading, HeadingProps, IconButton, IconButtonProps, InfoSelect, InfoTag, InfoTagProps, Input, InputElementProps, InputLeftElement, InputProps, InputRightElement, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, LightInlineLoaderProps, LightSpinner, LightSpinnerProps, LineIcon, LineIconProps, ListBox, ModalHeader, ModalHeaderProps, NativeSelect, NativeSelectProps, Nudge, NudgeProps, NumericStepper, Pagination, PasswordInput, PasswordInputProps, PhoneNumberInput, PlayPauseButton, PressableCard, ProgressBar, ProgressIndicator, ProgressLoader, Radio, RadioCard, RadioCardGroup, RadioCardGroupContext, RadioCardProps, RadioGroup, RadioGroupProps, RadioProps, SearchInput, SearchInputProps, ServiceAlert, SimpleDrawer, SimpleDrawerProps, Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps, SkipButton, SpinnerProps, SporProvider, Stack, StackProps, StaticAlert, StaticCard, StaticCardProps, Stepper, StepperStep, Switch, SwitchProps, Table, TableProps, Tabs, TabsProps, Text, TextLink, TextProps, Textarea, TextareaProps, TimePicker, ToastOptions, Tooltip, TooltipProps, Translations, TravelTag, TravelTagProps, VyLogo, VyLogoPride, VyLogoPrideProps, VyLogoProps, WizardNudge, WizardNudgeProps, brandTheme, createTexts, fontFaces, slugify, theme, useToast, useTranslation };
|