@mmb-digital/design-system-web 0.1.344-alpha.1 → 0.1.345
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +17 -13
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +59 -59
package/dist/index.d.ts
CHANGED
|
@@ -544,7 +544,7 @@ declare enum Spacing {
|
|
|
544
544
|
xxxxl = "xxxxl",
|
|
545
545
|
xxxxxl = "xxxxxl"
|
|
546
546
|
}
|
|
547
|
-
declare const resolveSpacingValue: (theme: Theme$1, spacing: Spacing) => "
|
|
547
|
+
declare const resolveSpacingValue: (theme: Theme$1, spacing: Spacing) => "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "40px" | "48px" | "56px" | "64px" | "0";
|
|
548
548
|
|
|
549
549
|
declare enum WhiteSpace {
|
|
550
550
|
inherit = "inherit",
|
|
@@ -1127,7 +1127,7 @@ declare enum BorderRadius {
|
|
|
1127
1127
|
xl = "xl",
|
|
1128
1128
|
full = "full"
|
|
1129
1129
|
}
|
|
1130
|
-
declare const resolveBorderRadiusValue: (theme: Theme$1, borderRadius: BorderRadius) => "
|
|
1130
|
+
declare const resolveBorderRadiusValue: (theme: Theme$1, borderRadius: BorderRadius) => "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "9999px" | "0";
|
|
1131
1131
|
|
|
1132
1132
|
declare enum FlexWrap {
|
|
1133
1133
|
noWrap = "noWrap",
|
|
@@ -1252,6 +1252,8 @@ declare enum IconProductType {
|
|
|
1252
1252
|
check = "check",
|
|
1253
1253
|
coinsStack = "coinsStack",
|
|
1254
1254
|
creditCard = "creditCard",
|
|
1255
|
+
diceQuestion = "diceQuestion",
|
|
1256
|
+
graphBarIncrease = "graphBarIncrease",
|
|
1255
1257
|
graphIncrease = "graphIncrease",
|
|
1256
1258
|
helpChat = "helpChat",
|
|
1257
1259
|
houseRefresh = "houseRefresh",
|
|
@@ -1261,9 +1263,11 @@ declare enum IconProductType {
|
|
|
1261
1263
|
mobilePhone = "mobilePhone",
|
|
1262
1264
|
moneta = "moneta",
|
|
1263
1265
|
moneyBag = "moneyBag",
|
|
1266
|
+
openUmbrella = "openUmbrella",
|
|
1264
1267
|
passwordLock = "passwordLock",
|
|
1265
1268
|
people = "people",
|
|
1266
1269
|
piggyBank = "piggyBank",
|
|
1270
|
+
propertiesMortgage = "propertiesMortgage",
|
|
1267
1271
|
reward = "reward",
|
|
1268
1272
|
shieldCheck = "shieldCheck",
|
|
1269
1273
|
suitcase = "suitcase",
|
|
@@ -1444,9 +1448,9 @@ declare const DatePickerControl: react.ForwardRefExoticComponent<DatePickerContr
|
|
|
1444
1448
|
declare const DatePicker: react.ForwardRefExoticComponent<DatePickerControlProps & {
|
|
1445
1449
|
label?: react.ReactNode;
|
|
1446
1450
|
name?: string | undefined;
|
|
1451
|
+
errorMessage?: react.ReactNode;
|
|
1447
1452
|
colorScheme?: ColorScheme | undefined;
|
|
1448
1453
|
invalid?: boolean | undefined;
|
|
1449
|
-
errorMessage?: react.ReactNode;
|
|
1450
1454
|
labelAs?: react.ElementType | undefined;
|
|
1451
1455
|
labelHiddenText?: string | undefined;
|
|
1452
1456
|
labelId?: string | undefined;
|
|
@@ -1479,9 +1483,9 @@ interface EmailInputControlProps extends InputProps {
|
|
|
1479
1483
|
declare const EmailInput: react.ForwardRefExoticComponent<EmailInputControlProps & {
|
|
1480
1484
|
label?: react.ReactNode;
|
|
1481
1485
|
name?: string | undefined;
|
|
1486
|
+
errorMessage?: react.ReactNode;
|
|
1482
1487
|
colorScheme?: ColorScheme | undefined;
|
|
1483
1488
|
invalid?: boolean | undefined;
|
|
1484
|
-
errorMessage?: react.ReactNode;
|
|
1485
1489
|
labelAs?: react.ElementType | undefined;
|
|
1486
1490
|
labelHiddenText?: string | undefined;
|
|
1487
1491
|
labelId?: string | undefined;
|
|
@@ -1581,9 +1585,9 @@ declare const FileInputControl: react.ForwardRefExoticComponent<FileInputControl
|
|
|
1581
1585
|
declare const FileInput: react.ForwardRefExoticComponent<Omit<FileInputControlProps & {
|
|
1582
1586
|
label?: react.ReactNode;
|
|
1583
1587
|
name?: string | undefined;
|
|
1588
|
+
errorMessage?: react.ReactNode;
|
|
1584
1589
|
colorScheme?: ColorScheme | undefined;
|
|
1585
1590
|
invalid?: boolean | undefined;
|
|
1586
|
-
errorMessage?: react.ReactNode;
|
|
1587
1591
|
labelAs?: react.ElementType | undefined;
|
|
1588
1592
|
labelHiddenText?: string | undefined;
|
|
1589
1593
|
labelId?: string | undefined;
|
|
@@ -1850,9 +1854,9 @@ declare const MaskedInputBase: react.ForwardRefExoticComponent<Omit<MaskedInputB
|
|
|
1850
1854
|
declare const MaskedInput: react.ForwardRefExoticComponent<Omit<MaskedInputBaseProps & {
|
|
1851
1855
|
label?: react.ReactNode;
|
|
1852
1856
|
name?: string | undefined;
|
|
1857
|
+
errorMessage?: react.ReactNode;
|
|
1853
1858
|
colorScheme?: ColorScheme | undefined;
|
|
1854
1859
|
invalid?: boolean | undefined;
|
|
1855
|
-
errorMessage?: react.ReactNode;
|
|
1856
1860
|
labelAs?: react.ElementType | undefined;
|
|
1857
1861
|
labelHiddenText?: string | undefined;
|
|
1858
1862
|
labelId?: string | undefined;
|
|
@@ -1880,9 +1884,9 @@ declare const withMaskedInputField: <TProps extends ManagedMaskedInputProps>(Com
|
|
|
1880
1884
|
declare const MaskedInputField: <TFieldValues extends FieldValues>(props: Omit<MaskedInputBaseProps & {
|
|
1881
1885
|
label?: react.ReactNode;
|
|
1882
1886
|
name?: string | undefined;
|
|
1887
|
+
errorMessage?: react.ReactNode;
|
|
1883
1888
|
colorScheme?: ColorScheme | undefined;
|
|
1884
1889
|
invalid?: boolean | undefined;
|
|
1885
|
-
errorMessage?: react.ReactNode;
|
|
1886
1890
|
labelAs?: react.ElementType | undefined;
|
|
1887
1891
|
labelHiddenText?: string | undefined;
|
|
1888
1892
|
labelId?: string | undefined;
|
|
@@ -2085,9 +2089,9 @@ declare const RadioButtonGroupControl: react.ForwardRefExoticComponent<RadioButt
|
|
|
2085
2089
|
declare const RadioButtonGroup: react.ForwardRefExoticComponent<Omit<RadioButtonGroupControlProps & {
|
|
2086
2090
|
label?: react.ReactNode;
|
|
2087
2091
|
name?: string | undefined;
|
|
2092
|
+
errorMessage?: react.ReactNode;
|
|
2088
2093
|
colorScheme?: ColorScheme | undefined;
|
|
2089
2094
|
invalid?: boolean | undefined;
|
|
2090
|
-
errorMessage?: react.ReactNode;
|
|
2091
2095
|
labelAs?: react.ElementType | undefined;
|
|
2092
2096
|
labelHiddenText?: string | undefined;
|
|
2093
2097
|
labelId?: string | undefined;
|
|
@@ -2161,9 +2165,9 @@ declare const RadioGroupControl: react.ForwardRefExoticComponent<RadioGroupContr
|
|
|
2161
2165
|
declare const RadioGroup: react.ForwardRefExoticComponent<Omit<RadioGroupControlProps & {
|
|
2162
2166
|
label?: react.ReactNode;
|
|
2163
2167
|
name?: string | undefined;
|
|
2168
|
+
errorMessage?: react.ReactNode;
|
|
2164
2169
|
colorScheme?: ColorScheme | undefined;
|
|
2165
2170
|
invalid?: boolean | undefined;
|
|
2166
|
-
errorMessage?: react.ReactNode;
|
|
2167
2171
|
labelAs?: react.ElementType | undefined;
|
|
2168
2172
|
labelHiddenText?: string | undefined;
|
|
2169
2173
|
labelId?: string | undefined;
|
|
@@ -2198,9 +2202,9 @@ interface SearchInputControlProps extends InputProps {
|
|
|
2198
2202
|
declare const SearchInput: react.ForwardRefExoticComponent<SearchInputControlProps & {
|
|
2199
2203
|
label?: ReactNode;
|
|
2200
2204
|
name?: string | undefined;
|
|
2205
|
+
errorMessage?: ReactNode;
|
|
2201
2206
|
colorScheme?: ColorScheme | undefined;
|
|
2202
2207
|
invalid?: boolean | undefined;
|
|
2203
|
-
errorMessage?: ReactNode;
|
|
2204
2208
|
labelAs?: react.ElementType | undefined;
|
|
2205
2209
|
labelHiddenText?: string | undefined;
|
|
2206
2210
|
labelId?: string | undefined;
|
|
@@ -2647,9 +2651,9 @@ interface TextAreaControlProps extends TextareaHTMLAttributes<HTMLTextAreaElemen
|
|
|
2647
2651
|
declare const TextArea: react.ForwardRefExoticComponent<TextAreaControlProps & {
|
|
2648
2652
|
label?: react.ReactNode;
|
|
2649
2653
|
name?: string | undefined;
|
|
2654
|
+
errorMessage?: react.ReactNode;
|
|
2650
2655
|
colorScheme?: ColorScheme | undefined;
|
|
2651
2656
|
invalid?: boolean | undefined;
|
|
2652
|
-
errorMessage?: react.ReactNode;
|
|
2653
2657
|
labelAs?: react.ElementType | undefined;
|
|
2654
2658
|
labelHiddenText?: string | undefined;
|
|
2655
2659
|
labelId?: string | undefined;
|
|
@@ -2682,9 +2686,9 @@ interface TextInputControlProps extends InputProps {
|
|
|
2682
2686
|
declare const TextInput: react.ForwardRefExoticComponent<TextInputControlProps & {
|
|
2683
2687
|
label?: react.ReactNode;
|
|
2684
2688
|
name?: string | undefined;
|
|
2689
|
+
errorMessage?: react.ReactNode;
|
|
2685
2690
|
colorScheme?: ColorScheme | undefined;
|
|
2686
2691
|
invalid?: boolean | undefined;
|
|
2687
|
-
errorMessage?: react.ReactNode;
|
|
2688
2692
|
labelAs?: react.ElementType | undefined;
|
|
2689
2693
|
labelHiddenText?: string | undefined;
|
|
2690
2694
|
labelId?: string | undefined;
|
|
@@ -2729,9 +2733,9 @@ interface TrailingTextInputControlProps extends InputProps {
|
|
|
2729
2733
|
declare const TrailingTextInput: react.ForwardRefExoticComponent<TrailingTextInputControlProps & {
|
|
2730
2734
|
label?: ReactNode;
|
|
2731
2735
|
name?: string | undefined;
|
|
2736
|
+
errorMessage?: ReactNode;
|
|
2732
2737
|
colorScheme?: ColorScheme | undefined;
|
|
2733
2738
|
invalid?: boolean | undefined;
|
|
2734
|
-
errorMessage?: ReactNode;
|
|
2735
2739
|
labelAs?: react.ElementType | undefined;
|
|
2736
2740
|
labelHiddenText?: string | undefined;
|
|
2737
2741
|
labelId?: string | undefined;
|