@vygruppen/spor-react 10.4.1 → 10.6.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 +15 -0
- package/dist/{CountryCodeSelect-QNKQE3C6.mjs → CountryCodeSelect-R27DZ2PB.mjs} +1 -1
- package/dist/{chunk-PH4RK5L3.mjs → chunk-WSGO53OP.mjs} +723 -535
- package/dist/index.d.mts +109 -4
- package/dist/index.d.ts +109 -4
- package/dist/index.js +859 -654
- 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/input/PhoneNumberInput.tsx +12 -1
- 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/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
|
};
|
@@ -1324,6 +1356,7 @@ type PhoneNumberInputProps = Omit<BoxProps, "onChange"> & {
|
|
1324
1356
|
/** The optional value of the country code and phone number */
|
1325
1357
|
value?: CountryCodeAndPhoneNumber;
|
1326
1358
|
variant?: "base" | "floating";
|
1359
|
+
isOptional?: boolean;
|
1327
1360
|
};
|
1328
1361
|
/**
|
1329
1362
|
* A component for entering phone numbers.
|
@@ -2493,10 +2526,16 @@ declare const theme: {
|
|
2493
2526
|
backgroundColor: string;
|
2494
2527
|
};
|
2495
2528
|
};
|
2529
|
+
service: {
|
2530
|
+
container: {
|
2531
|
+
backgroundColor: string;
|
2532
|
+
color: string;
|
2533
|
+
};
|
2534
|
+
};
|
2496
2535
|
} | undefined;
|
2497
2536
|
defaultProps?: {
|
2498
2537
|
size?: string | number | undefined;
|
2499
|
-
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
|
2538
|
+
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | "service" | undefined;
|
2500
2539
|
colorScheme?: string | undefined;
|
2501
2540
|
} | undefined;
|
2502
2541
|
parts: ("container" | "icon" | "closeButton")[];
|
@@ -2573,14 +2612,80 @@ declare const theme: {
|
|
2573
2612
|
};
|
2574
2613
|
};
|
2575
2614
|
};
|
2615
|
+
service: {
|
2616
|
+
container: {
|
2617
|
+
_hover: {
|
2618
|
+
outlineColor: string;
|
2619
|
+
};
|
2620
|
+
_active: {
|
2621
|
+
backgroundColor: string;
|
2622
|
+
};
|
2623
|
+
};
|
2624
|
+
};
|
2576
2625
|
} | undefined;
|
2577
2626
|
defaultProps?: {
|
2578
2627
|
size?: string | number | undefined;
|
2579
|
-
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
|
2628
|
+
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | "service" | undefined;
|
2580
2629
|
colorScheme?: string | undefined;
|
2581
2630
|
} | undefined;
|
2582
2631
|
parts: "container"[];
|
2583
2632
|
};
|
2633
|
+
AlertService: {
|
2634
|
+
baseStyle?: {
|
2635
|
+
container: {
|
2636
|
+
paddingX: number;
|
2637
|
+
paddingY: number;
|
2638
|
+
fontSize: string;
|
2639
|
+
transitionProperty: string;
|
2640
|
+
transitionDuration: string;
|
2641
|
+
borderTopRadius: string;
|
2642
|
+
borderBottomRadius: string;
|
2643
|
+
_hover: {
|
2644
|
+
outline: string;
|
2645
|
+
outlineColor: string;
|
2646
|
+
};
|
2647
|
+
_active: {
|
2648
|
+
backgroundColor: string;
|
2649
|
+
outlineColor: string;
|
2650
|
+
};
|
2651
|
+
};
|
2652
|
+
box: {
|
2653
|
+
outline: string;
|
2654
|
+
outlineColor: string;
|
2655
|
+
backgroundColor: string;
|
2656
|
+
borderBottomRadius: string;
|
2657
|
+
borderTopRadius: string;
|
2658
|
+
};
|
2659
|
+
notificationText: {
|
2660
|
+
color: string;
|
2661
|
+
fontWeight: string;
|
2662
|
+
fontSize: string;
|
2663
|
+
pr: string;
|
2664
|
+
};
|
2665
|
+
serviceMessageContent: {
|
2666
|
+
paddingX: string;
|
2667
|
+
paddingTop: string;
|
2668
|
+
paddingBottom: string;
|
2669
|
+
color: string;
|
2670
|
+
};
|
2671
|
+
} | undefined;
|
2672
|
+
sizes?: {
|
2673
|
+
[key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
|
2674
|
+
keys: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2675
|
+
}>;
|
2676
|
+
} | undefined;
|
2677
|
+
variants?: {
|
2678
|
+
[key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
|
2679
|
+
keys: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2680
|
+
}>;
|
2681
|
+
} | undefined;
|
2682
|
+
defaultProps?: {
|
2683
|
+
size?: string | number | undefined;
|
2684
|
+
variant?: string | number | undefined;
|
2685
|
+
colorScheme?: string | undefined;
|
2686
|
+
} | undefined;
|
2687
|
+
parts: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2688
|
+
};
|
2584
2689
|
Badge: {
|
2585
2690
|
baseStyle?: (({ colorScheme }: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2586
2691
|
backgroundColor: string;
|
@@ -9265,4 +9370,4 @@ declare const Text: _chakra_ui_system_dist_system_types.ComponentWithAs<"p", Tex
|
|
9265
9370
|
**/
|
9266
9371
|
declare function slugify(text: string | string[], maxLength?: number): string;
|
9267
9372
|
|
9268
|
-
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 };
|
9373
|
+
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
|
};
|
@@ -1324,6 +1356,7 @@ type PhoneNumberInputProps = Omit<BoxProps, "onChange"> & {
|
|
1324
1356
|
/** The optional value of the country code and phone number */
|
1325
1357
|
value?: CountryCodeAndPhoneNumber;
|
1326
1358
|
variant?: "base" | "floating";
|
1359
|
+
isOptional?: boolean;
|
1327
1360
|
};
|
1328
1361
|
/**
|
1329
1362
|
* A component for entering phone numbers.
|
@@ -2493,10 +2526,16 @@ declare const theme: {
|
|
2493
2526
|
backgroundColor: string;
|
2494
2527
|
};
|
2495
2528
|
};
|
2529
|
+
service: {
|
2530
|
+
container: {
|
2531
|
+
backgroundColor: string;
|
2532
|
+
color: string;
|
2533
|
+
};
|
2534
|
+
};
|
2496
2535
|
} | undefined;
|
2497
2536
|
defaultProps?: {
|
2498
2537
|
size?: string | number | undefined;
|
2499
|
-
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
|
2538
|
+
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | "service" | undefined;
|
2500
2539
|
colorScheme?: string | undefined;
|
2501
2540
|
} | undefined;
|
2502
2541
|
parts: ("container" | "icon" | "closeButton")[];
|
@@ -2573,14 +2612,80 @@ declare const theme: {
|
|
2573
2612
|
};
|
2574
2613
|
};
|
2575
2614
|
};
|
2615
|
+
service: {
|
2616
|
+
container: {
|
2617
|
+
_hover: {
|
2618
|
+
outlineColor: string;
|
2619
|
+
};
|
2620
|
+
_active: {
|
2621
|
+
backgroundColor: string;
|
2622
|
+
};
|
2623
|
+
};
|
2624
|
+
};
|
2576
2625
|
} | undefined;
|
2577
2626
|
defaultProps?: {
|
2578
2627
|
size?: string | number | undefined;
|
2579
|
-
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
|
2628
|
+
variant?: "error" | "info" | "success" | "warning" | "alt-transport" | "service" | undefined;
|
2580
2629
|
colorScheme?: string | undefined;
|
2581
2630
|
} | undefined;
|
2582
2631
|
parts: "container"[];
|
2583
2632
|
};
|
2633
|
+
AlertService: {
|
2634
|
+
baseStyle?: {
|
2635
|
+
container: {
|
2636
|
+
paddingX: number;
|
2637
|
+
paddingY: number;
|
2638
|
+
fontSize: string;
|
2639
|
+
transitionProperty: string;
|
2640
|
+
transitionDuration: string;
|
2641
|
+
borderTopRadius: string;
|
2642
|
+
borderBottomRadius: string;
|
2643
|
+
_hover: {
|
2644
|
+
outline: string;
|
2645
|
+
outlineColor: string;
|
2646
|
+
};
|
2647
|
+
_active: {
|
2648
|
+
backgroundColor: string;
|
2649
|
+
outlineColor: string;
|
2650
|
+
};
|
2651
|
+
};
|
2652
|
+
box: {
|
2653
|
+
outline: string;
|
2654
|
+
outlineColor: string;
|
2655
|
+
backgroundColor: string;
|
2656
|
+
borderBottomRadius: string;
|
2657
|
+
borderTopRadius: string;
|
2658
|
+
};
|
2659
|
+
notificationText: {
|
2660
|
+
color: string;
|
2661
|
+
fontWeight: string;
|
2662
|
+
fontSize: string;
|
2663
|
+
pr: string;
|
2664
|
+
};
|
2665
|
+
serviceMessageContent: {
|
2666
|
+
paddingX: string;
|
2667
|
+
paddingTop: string;
|
2668
|
+
paddingBottom: string;
|
2669
|
+
color: string;
|
2670
|
+
};
|
2671
|
+
} | undefined;
|
2672
|
+
sizes?: {
|
2673
|
+
[key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
|
2674
|
+
keys: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2675
|
+
}>;
|
2676
|
+
} | undefined;
|
2677
|
+
variants?: {
|
2678
|
+
[key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
|
2679
|
+
keys: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2680
|
+
}>;
|
2681
|
+
} | undefined;
|
2682
|
+
defaultProps?: {
|
2683
|
+
size?: string | number | undefined;
|
2684
|
+
variant?: string | number | undefined;
|
2685
|
+
colorScheme?: string | undefined;
|
2686
|
+
} | undefined;
|
2687
|
+
parts: ("container" | "box" | "serviceMessageContent" | "notificationText")[];
|
2688
|
+
};
|
2584
2689
|
Badge: {
|
2585
2690
|
baseStyle?: (({ colorScheme }: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2586
2691
|
backgroundColor: string;
|
@@ -9265,4 +9370,4 @@ declare const Text: _chakra_ui_system_dist_system_types.ComponentWithAs<"p", Tex
|
|
9265
9370
|
**/
|
9266
9371
|
declare function slugify(text: string | string[], maxLength?: number): string;
|
9267
9372
|
|
9268
|
-
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 };
|
9373
|
+
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 };
|