@mmb-digital/design-system-web 0.1.111 → 0.1.113
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/index.cjs.js +161 -185
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +168 -160
- package/dist/index.esm.js +195 -219
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { Options, Props, SelectComponentsConfig, PropsValue, SingleValue as Sing
|
|
|
11
11
|
import * as react_hook_form from 'react-hook-form';
|
|
12
12
|
import { FieldValues, Control, FieldPath, RegisterOptions } from 'react-hook-form';
|
|
13
13
|
import { FactoryOpts } from 'imask';
|
|
14
|
+
import { DefaultTheme } from 'styled-components';
|
|
14
15
|
|
|
15
16
|
interface AccordionItemType {
|
|
16
17
|
content: ReactNode;
|
|
@@ -343,40 +344,6 @@ declare enum ReasonForClosing {
|
|
|
343
344
|
|
|
344
345
|
declare const Modal: React__default.FC<ModalProps>;
|
|
345
346
|
|
|
346
|
-
type TooltipRenderParent = (getParentProps: (userProps?: HTMLProps<Element>) => Record<string, unknown>) => ReactElement;
|
|
347
|
-
declare enum TooltipPlacement {
|
|
348
|
-
bottom = "bottom",
|
|
349
|
-
left = "left",
|
|
350
|
-
right = "right",
|
|
351
|
-
top = "top"
|
|
352
|
-
}
|
|
353
|
-
interface TooltipFloatingElement {
|
|
354
|
-
body: ReactElement | string;
|
|
355
|
-
title?: ReactElement | string | undefined;
|
|
356
|
-
}
|
|
357
|
-
declare enum TooltipInfoDisplayMethod {
|
|
358
|
-
ONLY_TOOLTIP = "onlyTooltip",
|
|
359
|
-
WITH_NBSP = "withNbsp"
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
interface TooltipInfoProps {
|
|
363
|
-
readonly colorScheme?: ColorScheme;
|
|
364
|
-
readonly floatingElement: TooltipFloatingElement;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
declare const TooltipInfo: React__default.FC<TooltipInfoProps>;
|
|
368
|
-
|
|
369
|
-
interface TooltipGeneralProps {
|
|
370
|
-
readonly colorScheme: ColorScheme;
|
|
371
|
-
readonly floatingElement: TooltipFloatingElement;
|
|
372
|
-
readonly onClose?: (() => void) | undefined;
|
|
373
|
-
readonly onOpen?: (() => void) | undefined;
|
|
374
|
-
readonly placement?: TooltipPlacement | undefined;
|
|
375
|
-
readonly renderParent: TooltipRenderParent;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
declare const TooltipGeneral: React__default.FC<TooltipGeneralProps>;
|
|
379
|
-
|
|
380
347
|
interface FormattedMessageTypes extends MessageDescriptor {
|
|
381
348
|
values?: Record<string, PrimitiveType>;
|
|
382
349
|
}
|
|
@@ -393,6 +360,22 @@ type IsMessageDisplayableHookReturnFunction = (messageDescriptor: MessageDescrip
|
|
|
393
360
|
|
|
394
361
|
declare const useIsMessageDisplayable: () => IsMessageDisplayableHookReturnFunction;
|
|
395
362
|
|
|
363
|
+
type TooltipRenderParent = (getParentProps: (userProps?: HTMLProps<Element>) => Record<string, unknown>) => ReactElement;
|
|
364
|
+
declare enum TooltipPlacement {
|
|
365
|
+
bottom = "bottom",
|
|
366
|
+
left = "left",
|
|
367
|
+
right = "right",
|
|
368
|
+
top = "top"
|
|
369
|
+
}
|
|
370
|
+
interface TooltipFloatingElement {
|
|
371
|
+
body: ReactElement | string;
|
|
372
|
+
title?: ReactElement | string | undefined;
|
|
373
|
+
}
|
|
374
|
+
declare enum TooltipInfoDisplayMethod {
|
|
375
|
+
onlyTooltip = "onlyTooltip",
|
|
376
|
+
withNbsp = "withNbsp"
|
|
377
|
+
}
|
|
378
|
+
|
|
396
379
|
interface TooltipInfoDisplayableCheckProps {
|
|
397
380
|
body: FormattedMessageTypes;
|
|
398
381
|
colorScheme?: ColorScheme;
|
|
@@ -414,6 +397,24 @@ type CreateTooltipFloatingElementHookReturnFunction = (body: FormattedMessageTyp
|
|
|
414
397
|
|
|
415
398
|
declare const useCreateTooltipFloatingElement: () => CreateTooltipFloatingElementHookReturnFunction;
|
|
416
399
|
|
|
400
|
+
interface TooltipInfoProps {
|
|
401
|
+
readonly colorScheme?: ColorScheme;
|
|
402
|
+
readonly floatingElement: TooltipFloatingElement;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
declare const TooltipInfo: React__default.FC<TooltipInfoProps>;
|
|
406
|
+
|
|
407
|
+
interface TooltipGeneralProps {
|
|
408
|
+
readonly colorScheme?: ColorScheme;
|
|
409
|
+
readonly floatingElement: TooltipFloatingElement;
|
|
410
|
+
readonly onClose?: (() => void) | undefined;
|
|
411
|
+
readonly onOpen?: (() => void) | undefined;
|
|
412
|
+
readonly placement?: TooltipPlacement | undefined;
|
|
413
|
+
readonly renderParent: TooltipRenderParent;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
declare const TooltipGeneral: React__default.FC<TooltipGeneralProps>;
|
|
417
|
+
|
|
417
418
|
interface CalculatorResultHeader {
|
|
418
419
|
bottom?: ReactElement | string | undefined;
|
|
419
420
|
main?: ReactElement | string | undefined;
|
|
@@ -537,6 +538,7 @@ declare const DatePicker: React__default.ForwardRefExoticComponent<DatePickerPro
|
|
|
537
538
|
|
|
538
539
|
interface CheckboxBaseProps extends RefAttributes<HTMLInputElement> {
|
|
539
540
|
readonly checked?: boolean | undefined;
|
|
541
|
+
readonly colorScheme?: ColorScheme;
|
|
540
542
|
readonly disabled?: boolean | undefined;
|
|
541
543
|
readonly id?: string | undefined;
|
|
542
544
|
readonly isError?: boolean | undefined;
|
|
@@ -554,6 +556,7 @@ interface CheckboxLabel {
|
|
|
554
556
|
readonly tooltip?: TooltipFloatingElement | undefined;
|
|
555
557
|
}
|
|
556
558
|
interface CheckboxProps extends CheckboxBaseProps {
|
|
559
|
+
readonly colorScheme?: ColorScheme;
|
|
557
560
|
readonly errorMessage?: React__default.ReactElement | string | undefined;
|
|
558
561
|
readonly label?: CheckboxLabel | undefined;
|
|
559
562
|
readonly labelColor?: string | undefined;
|
|
@@ -804,6 +807,7 @@ declare enum InputLabelSize {
|
|
|
804
807
|
xs = "xs"
|
|
805
808
|
}
|
|
806
809
|
interface InputLabelProps {
|
|
810
|
+
colorScheme?: ColorScheme;
|
|
807
811
|
hasError?: boolean;
|
|
808
812
|
id?: string;
|
|
809
813
|
label?: ReactNode;
|
|
@@ -1029,7 +1033,15 @@ interface TagProps {
|
|
|
1029
1033
|
|
|
1030
1034
|
declare const Tag: FC<TagProps>;
|
|
1031
1035
|
|
|
1032
|
-
declare enum
|
|
1036
|
+
declare enum StackDirection {
|
|
1037
|
+
column = "column",
|
|
1038
|
+
columnReverse = "columnReverse",
|
|
1039
|
+
row = "row",
|
|
1040
|
+
rowReverse = "rowReverse"
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
declare enum Spacing {
|
|
1044
|
+
none = "none",
|
|
1033
1045
|
xxs = "xxs",
|
|
1034
1046
|
xs = "xs",
|
|
1035
1047
|
sm = "sm",
|
|
@@ -1041,130 +1053,7 @@ declare enum StackGapSize {
|
|
|
1041
1053
|
xxxxl = "xxxxl",
|
|
1042
1054
|
xxxxxl = "xxxxxl"
|
|
1043
1055
|
}
|
|
1044
|
-
declare
|
|
1045
|
-
column = "column",
|
|
1046
|
-
columnReverse = "columnReverse",
|
|
1047
|
-
row = "row",
|
|
1048
|
-
rowReverse = "rowReverse"
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1051
|
-
interface StackProps {
|
|
1052
|
-
children?: ReactNode;
|
|
1053
|
-
className?: string;
|
|
1054
|
-
direction?: StackDirection;
|
|
1055
|
-
gap?: StackGapSize;
|
|
1056
|
-
}
|
|
1057
|
-
declare const Stack: React__default.FC<StackProps>;
|
|
1058
|
-
|
|
1059
|
-
declare enum PaperShadow {
|
|
1060
|
-
lg = "lg",
|
|
1061
|
-
md = "md",
|
|
1062
|
-
sm = "sm"
|
|
1063
|
-
}
|
|
1064
|
-
|
|
1065
|
-
interface DesignSystemBaseProps {
|
|
1066
|
-
colorScheme?: ColorScheme;
|
|
1067
|
-
mediaType?: MediaType;
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
interface PaperProps extends DesignSystemBaseProps {
|
|
1071
|
-
children: ReactNode;
|
|
1072
|
-
className?: string;
|
|
1073
|
-
shadow?: PaperShadow;
|
|
1074
|
-
}
|
|
1075
|
-
declare const Paper: React__default.FC<PaperProps>;
|
|
1076
|
-
|
|
1077
|
-
interface ProgressDefinition {
|
|
1078
|
-
activeStepIndex: number;
|
|
1079
|
-
numberOfSteps: number;
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
interface ProgressPaperProps extends PaperProps {
|
|
1083
|
-
progressDefinition: ProgressDefinition;
|
|
1084
|
-
}
|
|
1085
|
-
declare const ProgressPaper: React__default.FC<ProgressPaperProps>;
|
|
1086
|
-
|
|
1087
|
-
interface MediaTypeProviderProps {
|
|
1088
|
-
children: ReactNode;
|
|
1089
|
-
mediaType: MediaType;
|
|
1090
|
-
}
|
|
1091
|
-
declare const MediaTypeProvider: React__default.FC<MediaTypeProviderProps>;
|
|
1092
|
-
|
|
1093
|
-
type UseMediaTypeParam = MediaType | {
|
|
1094
|
-
mediaType?: MediaType | undefined;
|
|
1095
|
-
};
|
|
1096
|
-
interface UseMediaTypeOptions {
|
|
1097
|
-
defaultMediaType?: MediaType;
|
|
1098
|
-
}
|
|
1099
|
-
/**
|
|
1100
|
-
* priorities:
|
|
1101
|
-
*
|
|
1102
|
-
* 1. value passed to the hook
|
|
1103
|
-
* 2. value passed from the nearest provider
|
|
1104
|
-
* 3. defaultValue passed in the options object to the hook
|
|
1105
|
-
* 4. fallbackMediaType
|
|
1106
|
-
*/
|
|
1107
|
-
declare const useMediaType: (param?: UseMediaTypeParam, options?: UseMediaTypeOptions) => MediaType;
|
|
1108
|
-
|
|
1109
|
-
interface ColorSchemeProviderProps {
|
|
1110
|
-
children: ReactNode;
|
|
1111
|
-
colorScheme: ColorScheme;
|
|
1112
|
-
}
|
|
1113
|
-
declare const ColorSchemeProvider: React__default.FC<ColorSchemeProviderProps>;
|
|
1114
|
-
|
|
1115
|
-
type UseColorSchemeParam = ColorScheme | {
|
|
1116
|
-
colorScheme?: ColorScheme | undefined;
|
|
1117
|
-
};
|
|
1118
|
-
interface UseColorSchemeOptions {
|
|
1119
|
-
defaultColorScheme?: ColorScheme;
|
|
1120
|
-
}
|
|
1121
|
-
/**
|
|
1122
|
-
* priorities:
|
|
1123
|
-
*
|
|
1124
|
-
* 1. value passed to the hook
|
|
1125
|
-
* 2. value passed from the nearest provider
|
|
1126
|
-
* 3. defaultValue passed in the options object to the hook
|
|
1127
|
-
* 4. fallbackColorScheme
|
|
1128
|
-
*/
|
|
1129
|
-
declare const useColorScheme: (param?: UseColorSchemeParam, options?: UseColorSchemeOptions) => ColorScheme;
|
|
1130
|
-
|
|
1131
|
-
interface DesignSystemProviderProps {
|
|
1132
|
-
children: ReactNode;
|
|
1133
|
-
colorScheme?: ColorScheme;
|
|
1134
|
-
mediaType?: MediaType;
|
|
1135
|
-
}
|
|
1136
|
-
/**
|
|
1137
|
-
* It is recommended to use this provider only once in a component tree, ideally near the root.
|
|
1138
|
-
* It is possible to override every provider for a subpart of the component tree.
|
|
1139
|
-
*/
|
|
1140
|
-
declare const DesignSystemProvider: React__default.FC<DesignSystemProviderProps>;
|
|
1141
|
-
|
|
1142
|
-
interface UseDesignSystemParam {
|
|
1143
|
-
colorScheme?: ColorScheme | undefined;
|
|
1144
|
-
mediaType?: MediaType | undefined;
|
|
1145
|
-
}
|
|
1146
|
-
interface UseDesignSystemOptions extends UseColorSchemeOptions, UseMediaTypeOptions {
|
|
1147
|
-
}
|
|
1148
|
-
declare const useDesignSystem: (param?: UseDesignSystemParam, options?: UseDesignSystemOptions) => {
|
|
1149
|
-
colorScheme: ColorScheme;
|
|
1150
|
-
mediaType: MediaType;
|
|
1151
|
-
chooseColor: ChooseColor;
|
|
1152
|
-
};
|
|
1153
|
-
|
|
1154
|
-
interface FieldLabelStoreProviderProps {
|
|
1155
|
-
children: ReactNode;
|
|
1156
|
-
}
|
|
1157
|
-
/**
|
|
1158
|
-
* The purpose of this provider is to make labels passed to `FieldWrapper` accessible elsewhere,
|
|
1159
|
-
* e.g. in a validation error summary.
|
|
1160
|
-
*
|
|
1161
|
-
* Field labels can be registered via the `useRegisterFieldLabel` hook, and consumed via the `useFieldLabels` hook.
|
|
1162
|
-
**/
|
|
1163
|
-
declare const FieldLabelStoreProvider: (props: FieldLabelStoreProviderProps) => React__default.JSX.Element;
|
|
1164
|
-
declare const useFieldLabels: () => Record<string, React__default.ReactNode>;
|
|
1165
|
-
declare const useRegisterFieldLabel: () => (name: string, label: ReactNode) => void;
|
|
1166
|
-
|
|
1167
|
-
declare const isRenderable: (node: ReactNode) => node is Exclude<ReactNode, boolean | null | undefined>;
|
|
1056
|
+
declare const resolveSpacingValue: (theme: DefaultTheme, spacing: Spacing) => "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "40px" | "48px" | "56px" | "64px" | "0";
|
|
1168
1057
|
|
|
1169
1058
|
declare const theme: {
|
|
1170
1059
|
readonly palette: {
|
|
@@ -1706,5 +1595,124 @@ declare const theme: {
|
|
|
1706
1595
|
readonly tooltip: 1080;
|
|
1707
1596
|
};
|
|
1708
1597
|
};
|
|
1598
|
+
type Theme = typeof theme;
|
|
1599
|
+
|
|
1600
|
+
interface StackProps {
|
|
1601
|
+
children?: ReactNode;
|
|
1602
|
+
className?: string;
|
|
1603
|
+
direction?: StackDirection;
|
|
1604
|
+
gap?: Spacing;
|
|
1605
|
+
}
|
|
1606
|
+
declare const Stack: React__default.FC<StackProps>;
|
|
1607
|
+
|
|
1608
|
+
declare enum PaperShadow {
|
|
1609
|
+
lg = "lg",
|
|
1610
|
+
md = "md",
|
|
1611
|
+
sm = "sm"
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
interface DesignSystemBaseProps {
|
|
1615
|
+
colorScheme?: ColorScheme;
|
|
1616
|
+
mediaType?: MediaType;
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
interface PaperProps extends DesignSystemBaseProps {
|
|
1620
|
+
children: ReactNode;
|
|
1621
|
+
className?: string;
|
|
1622
|
+
shadow?: PaperShadow;
|
|
1623
|
+
}
|
|
1624
|
+
declare const Paper: React__default.FC<PaperProps>;
|
|
1625
|
+
|
|
1626
|
+
interface ProgressDefinition {
|
|
1627
|
+
activeStepIndex: number;
|
|
1628
|
+
numberOfSteps: number;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
interface ProgressPaperProps extends PaperProps {
|
|
1632
|
+
progressDefinition: ProgressDefinition;
|
|
1633
|
+
}
|
|
1634
|
+
declare const ProgressPaper: React__default.FC<ProgressPaperProps>;
|
|
1635
|
+
|
|
1636
|
+
interface MediaTypeProviderProps {
|
|
1637
|
+
children: ReactNode;
|
|
1638
|
+
mediaType: MediaType;
|
|
1639
|
+
}
|
|
1640
|
+
declare const MediaTypeProvider: React__default.FC<MediaTypeProviderProps>;
|
|
1641
|
+
|
|
1642
|
+
type UseMediaTypeParam = MediaType | {
|
|
1643
|
+
mediaType?: MediaType | undefined;
|
|
1644
|
+
};
|
|
1645
|
+
interface UseMediaTypeOptions {
|
|
1646
|
+
defaultMediaType?: MediaType;
|
|
1647
|
+
}
|
|
1648
|
+
/**
|
|
1649
|
+
* priorities:
|
|
1650
|
+
*
|
|
1651
|
+
* 1. value passed to the hook
|
|
1652
|
+
* 2. value passed from the nearest provider
|
|
1653
|
+
* 3. defaultValue passed in the options object to the hook
|
|
1654
|
+
* 4. fallbackMediaType
|
|
1655
|
+
*/
|
|
1656
|
+
declare const useMediaType: (param?: UseMediaTypeParam, options?: UseMediaTypeOptions) => MediaType;
|
|
1657
|
+
|
|
1658
|
+
interface ColorSchemeProviderProps {
|
|
1659
|
+
children: ReactNode;
|
|
1660
|
+
colorScheme: ColorScheme;
|
|
1661
|
+
}
|
|
1662
|
+
declare const ColorSchemeProvider: React__default.FC<ColorSchemeProviderProps>;
|
|
1663
|
+
|
|
1664
|
+
type UseColorSchemeParam = ColorScheme | {
|
|
1665
|
+
colorScheme?: ColorScheme | undefined;
|
|
1666
|
+
};
|
|
1667
|
+
interface UseColorSchemeOptions {
|
|
1668
|
+
defaultColorScheme?: ColorScheme;
|
|
1669
|
+
}
|
|
1670
|
+
/**
|
|
1671
|
+
* priorities:
|
|
1672
|
+
*
|
|
1673
|
+
* 1. value passed to the hook
|
|
1674
|
+
* 2. value passed from the nearest provider
|
|
1675
|
+
* 3. defaultValue passed in the options object to the hook
|
|
1676
|
+
* 4. fallbackColorScheme
|
|
1677
|
+
*/
|
|
1678
|
+
declare const useColorScheme: (param?: UseColorSchemeParam, options?: UseColorSchemeOptions) => ColorScheme;
|
|
1679
|
+
|
|
1680
|
+
interface DesignSystemProviderProps {
|
|
1681
|
+
children: ReactNode;
|
|
1682
|
+
colorScheme?: ColorScheme;
|
|
1683
|
+
mediaType?: MediaType;
|
|
1684
|
+
}
|
|
1685
|
+
/**
|
|
1686
|
+
* It is recommended to use this provider only once in a component tree, ideally near the root.
|
|
1687
|
+
* It is possible to override every provider for a subpart of the component tree.
|
|
1688
|
+
*/
|
|
1689
|
+
declare const DesignSystemProvider: React__default.FC<DesignSystemProviderProps>;
|
|
1690
|
+
|
|
1691
|
+
interface UseDesignSystemParam {
|
|
1692
|
+
colorScheme?: ColorScheme | undefined;
|
|
1693
|
+
mediaType?: MediaType | undefined;
|
|
1694
|
+
}
|
|
1695
|
+
interface UseDesignSystemOptions extends UseColorSchemeOptions, UseMediaTypeOptions {
|
|
1696
|
+
}
|
|
1697
|
+
declare const useDesignSystem: (param?: UseDesignSystemParam, options?: UseDesignSystemOptions) => {
|
|
1698
|
+
colorScheme: ColorScheme;
|
|
1699
|
+
mediaType: MediaType;
|
|
1700
|
+
chooseColor: ChooseColor;
|
|
1701
|
+
};
|
|
1702
|
+
|
|
1703
|
+
interface FieldLabelStoreProviderProps {
|
|
1704
|
+
children: ReactNode;
|
|
1705
|
+
}
|
|
1706
|
+
/**
|
|
1707
|
+
* The purpose of this provider is to make labels passed to `FieldWrapper` accessible elsewhere,
|
|
1708
|
+
* e.g. in a validation error summary.
|
|
1709
|
+
*
|
|
1710
|
+
* Field labels can be registered via the `useRegisterFieldLabel` hook, and consumed via the `useFieldLabels` hook.
|
|
1711
|
+
**/
|
|
1712
|
+
declare const FieldLabelStoreProvider: (props: FieldLabelStoreProviderProps) => React__default.JSX.Element;
|
|
1713
|
+
declare const useFieldLabels: () => Record<string, React__default.ReactNode>;
|
|
1714
|
+
declare const useRegisterFieldLabel: () => (name: string, label: ReactNode) => void;
|
|
1715
|
+
|
|
1716
|
+
declare const isRenderable: (node: ReactNode) => node is Exclude<ReactNode, boolean | null | undefined>;
|
|
1709
1717
|
|
|
1710
|
-
export { Accordion, AccordionContent, AccordionItem, type AccordionItemProps, AccordionKeyValue, type AccordionProps, AsyncSelect, Button, type ButtonProps, ButtonSize, ButtonStyle, ButtonType, CalculatorResult, CalculatorResultBox, type CalculatorResultBoxModal, type CalculatorResultBoxProps, type CalculatorResultProps, Checkbox, type CheckboxLabel, CheckboxPosition, type CheckboxProps, type ChooseColor, type ColorObject, ColorScheme, ColorSchemeProvider, type ColorSchemeProviderProps, DatePicker, type DatePickerProps, type DesignSystemBaseProps, DesignSystemProvider, type DesignSystemProviderProps, EmailInput, type EmailInputProps, ErrorBox, type ErrorBoxItem, type ErrorBoxProps, FieldLabelStoreProvider, type FieldLabelStoreProviderProps, FieldWrapper, FieldWrapperContext, FieldWrapperLayout, type FieldWrapperProps, type FieldWrapperValues, _default as FormattedAmount, FormattedHtmlMessage, type FormattedHtmlMessageProps, FormattedMessage, type FormattedMessageProps, type FormattedMessageTypes, _default$1 as FormattedPercentage, type GetColor, IconProduct, IconProductSize, IconProductType, IconSystem, IconSystemSize, IconSystemType,
|
|
1718
|
+
export { Accordion, AccordionContent, AccordionItem, type AccordionItemProps, AccordionKeyValue, type AccordionProps, AsyncSelect, Button, type ButtonProps, ButtonSize, ButtonStyle, ButtonType, CalculatorResult, CalculatorResultBox, type CalculatorResultBoxModal, type CalculatorResultBoxProps, type CalculatorResultProps, Checkbox, type CheckboxLabel, CheckboxPosition, type CheckboxProps, type ChooseColor, type ColorObject, ColorScheme, ColorSchemeProvider, type ColorSchemeProviderProps, DatePicker, type DatePickerProps, type DesignSystemBaseProps, DesignSystemProvider, type DesignSystemProviderProps, EmailInput, type EmailInputProps, ErrorBox, type ErrorBoxItem, type ErrorBoxProps, FieldLabelStoreProvider, type FieldLabelStoreProviderProps, FieldWrapper, FieldWrapperContext, FieldWrapperLayout, type FieldWrapperProps, type FieldWrapperValues, _default as FormattedAmount, FormattedHtmlMessage, type FormattedHtmlMessageProps, FormattedMessage, type FormattedMessageProps, type FormattedMessageTypes, _default$1 as FormattedPercentage, type GetColor, IconProduct, IconProductSize, IconProductType, IconSystem, IconSystemSize, IconSystemType, Infobox, type InfoboxProps, InfoboxSize, type InfoboxTextContent, InfoboxVariant, InputBase, type InputBaseProps, InputLabel, type InputLabelProps, InputLabelSize, InputSize, InputTextAlign, InputWeight, Loader, LoaderOverlayBox, type LoaderOverlayBoxProps, type LoaderProps, LoaderSize, MaskedInput, MaskedInputBase, type MaskedInputBaseProps, MaskedInputField, type MaskedInputProps, MediaType, MediaTypeProvider, type MediaTypeProviderProps, Modal, type ModalOnClose, type ModalProps, ModalVerticalPosition, ModalWidthType, NumberInput, NumberInputField, type NumberInputProps, Paper, type PaperProps, PaperShadow, PhoneInput, PhoneInputField, PhoneInputNext, type PhoneInputNextProps, type PhoneInputProps, ProgressPaper, type ProgressPaperProps, Radio, type RadioBaseWithLabelProps, RadioButton, type RadioButtonLabel, RadioButtonLayout, type RadioButtonProps, RadioButtonsHorizontal, type RadioButtonsHorizontalItem, type RadioButtonsHorizontalLabel, type RadioButtonsHorizontalProps, type RadioLabel, RadioPosition, ReasonForClosing, SearchInput, type SearchInputProps, Select, SelectBase, SelectField, type SelectOption, type SelectProps, type SingleValue, Slider, type SliderBreakpoint, SliderInput, type SliderInputLabel, type SliderInputMinMax, type SliderInputProps, SliderInputRoundingType, type SliderProps, SliderStepType, type SliderSteps, Spacing, Stack, StackDirection, type StackProps, type TabItemType, Table, TableBody, TableData, TableHead, TableHeadData, TableRow, TableVariant, Tabs, TabsActiveTabDefaultPosition, TabsItem, type TabsProps, TabsSize, type TabsType, TabsVariant, Tag, TagFontWeight, TagIconPosition, type TagProps, TagSize, TagTextTransform, TagType, TextArea, type TextAreaProps, TextInput, type TextInputProps, type Theme, Toggle, type ToggleProps, type TooltipFloatingElement, TooltipGeneral, type TooltipGeneralProps, TooltipInfo, TooltipInfoConditional, type TooltipInfoConditionalProps, TooltipInfoDisplayMethod, TooltipInfoDisplayableCheck, type TooltipInfoDisplayableCheckProps, type TooltipInfoProps, TooltipPlacement, type TooltipRenderParent, TrailingTextInput, type TrailingTextInputProps, Typography, type TypographyProps, TypographyTextAlign, TypographyVariant, TypographyWeight, type UseColorSchemeOptions, type UseColorSchemeParam, type UseDesignSystemOptions, type UseDesignSystemParam, type UseMediaTypeOptions, type UseMediaTypeParam, getColor, isRenderable, resolveFieldWrapperHasError, resolveSpacingValue, theme, useChooseColor, useColorScheme, useCreateTooltipFloatingElement, useDesignSystem, useFieldLabels, useFormatAmount, useFormattedPercentage, useIsMessageDisplayable, useMediaType, useRegisterFieldLabel, withFieldWrapper, withMaskedInputField };
|