@lumx/react 4.14.0 → 4.15.0-next.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/index.d.ts +29 -16
- package/index.js +270 -251
- package/index.js.map +1 -1
- package/package.json +4 -3
package/index.js
CHANGED
|
@@ -570,7 +570,7 @@ const {
|
|
|
570
570
|
/**
|
|
571
571
|
* Component default props.
|
|
572
572
|
*/
|
|
573
|
-
const DEFAULT_PROPS$
|
|
573
|
+
const DEFAULT_PROPS$1h = {
|
|
574
574
|
size: Size.tiny,
|
|
575
575
|
kind: Kind.info
|
|
576
576
|
};
|
|
@@ -592,8 +592,8 @@ const AlertDialog$1 = props => {
|
|
|
592
592
|
cancelProps,
|
|
593
593
|
confirmProps,
|
|
594
594
|
ref,
|
|
595
|
-
kind = DEFAULT_PROPS$
|
|
596
|
-
size = DEFAULT_PROPS$
|
|
595
|
+
kind = DEFAULT_PROPS$1h.kind,
|
|
596
|
+
size = DEFAULT_PROPS$1h.size,
|
|
597
597
|
dialogProps,
|
|
598
598
|
children,
|
|
599
599
|
DescriptionElement,
|
|
@@ -733,7 +733,7 @@ const AlertDialog = forwardRef((props, ref) => {
|
|
|
733
733
|
});
|
|
734
734
|
AlertDialog.displayName = COMPONENT_NAME$1A;
|
|
735
735
|
AlertDialog.className = CLASSNAME$1y;
|
|
736
|
-
AlertDialog.defaultProps = DEFAULT_PROPS$
|
|
736
|
+
AlertDialog.defaultProps = DEFAULT_PROPS$1h;
|
|
737
737
|
|
|
738
738
|
/**
|
|
739
739
|
* Hook focusing an element when defined and `focus` boolean `true`.
|
|
@@ -835,7 +835,7 @@ const CLASSNAME$1x = 'lumx-autocomplete';
|
|
|
835
835
|
/**
|
|
836
836
|
* Component default props.
|
|
837
837
|
*/
|
|
838
|
-
const DEFAULT_PROPS$
|
|
838
|
+
const DEFAULT_PROPS$1g = {
|
|
839
839
|
anchorToInput: false,
|
|
840
840
|
closeOnClick: false,
|
|
841
841
|
closeOnClickAway: true,
|
|
@@ -858,13 +858,13 @@ const Autocomplete = forwardRef((props, ref) => {
|
|
|
858
858
|
otherProps
|
|
859
859
|
} = useDisableStateProps(props);
|
|
860
860
|
const {
|
|
861
|
-
anchorToInput = DEFAULT_PROPS$
|
|
861
|
+
anchorToInput = DEFAULT_PROPS$1g.anchorToInput,
|
|
862
862
|
children,
|
|
863
863
|
chips,
|
|
864
864
|
className,
|
|
865
|
-
closeOnClick = DEFAULT_PROPS$
|
|
866
|
-
closeOnClickAway = DEFAULT_PROPS$
|
|
867
|
-
closeOnEscape = DEFAULT_PROPS$
|
|
865
|
+
closeOnClick = DEFAULT_PROPS$1g.closeOnClick,
|
|
866
|
+
closeOnClickAway = DEFAULT_PROPS$1g.closeOnClickAway,
|
|
867
|
+
closeOnEscape = DEFAULT_PROPS$1g.closeOnEscape,
|
|
868
868
|
error,
|
|
869
869
|
fitToAnchorWidth,
|
|
870
870
|
hasError,
|
|
@@ -885,7 +885,7 @@ const Autocomplete = forwardRef((props, ref) => {
|
|
|
885
885
|
onInfiniteScroll,
|
|
886
886
|
placeholder,
|
|
887
887
|
placement,
|
|
888
|
-
shouldFocusOnClose = DEFAULT_PROPS$
|
|
888
|
+
shouldFocusOnClose = DEFAULT_PROPS$1g.shouldFocusOnClose,
|
|
889
889
|
theme = defaultTheme,
|
|
890
890
|
value,
|
|
891
891
|
textFieldProps = {},
|
|
@@ -940,7 +940,7 @@ const Autocomplete = forwardRef((props, ref) => {
|
|
|
940
940
|
});
|
|
941
941
|
Autocomplete.displayName = COMPONENT_NAME$1z;
|
|
942
942
|
Autocomplete.className = CLASSNAME$1x;
|
|
943
|
-
Autocomplete.defaultProps = DEFAULT_PROPS$
|
|
943
|
+
Autocomplete.defaultProps = DEFAULT_PROPS$1g;
|
|
944
944
|
|
|
945
945
|
/**
|
|
946
946
|
* Component display name.
|
|
@@ -955,7 +955,7 @@ const CLASSNAME$1w = 'lumx-autocomplete-multiple';
|
|
|
955
955
|
/**
|
|
956
956
|
* Component default props.
|
|
957
957
|
*/
|
|
958
|
-
const DEFAULT_PROPS$
|
|
958
|
+
const DEFAULT_PROPS$1f = {
|
|
959
959
|
closeOnClickAway: true,
|
|
960
960
|
closeOnEscape: true,
|
|
961
961
|
selectedChipRender(choice, index, onClear, isDisabled) {
|
|
@@ -996,8 +996,8 @@ const AutocompleteMultiple = forwardRef((props, ref) => {
|
|
|
996
996
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
997
997
|
chipsAlignment,
|
|
998
998
|
className,
|
|
999
|
-
closeOnClickAway = DEFAULT_PROPS$
|
|
1000
|
-
closeOnEscape = DEFAULT_PROPS$
|
|
999
|
+
closeOnClickAway = DEFAULT_PROPS$1f.closeOnClickAway,
|
|
1000
|
+
closeOnEscape = DEFAULT_PROPS$1f.closeOnEscape,
|
|
1001
1001
|
fitToAnchorWidth,
|
|
1002
1002
|
hasError,
|
|
1003
1003
|
helper,
|
|
@@ -1019,12 +1019,12 @@ const AutocompleteMultiple = forwardRef((props, ref) => {
|
|
|
1019
1019
|
onKeyDown,
|
|
1020
1020
|
placeholder,
|
|
1021
1021
|
placement,
|
|
1022
|
-
selectedChipRender = DEFAULT_PROPS$
|
|
1022
|
+
selectedChipRender = DEFAULT_PROPS$1f.selectedChipRender,
|
|
1023
1023
|
shouldFocusOnClose,
|
|
1024
1024
|
theme = defaultTheme,
|
|
1025
1025
|
type,
|
|
1026
1026
|
value,
|
|
1027
|
-
values = DEFAULT_PROPS$
|
|
1027
|
+
values = DEFAULT_PROPS$1f.values,
|
|
1028
1028
|
...forwardedProps
|
|
1029
1029
|
} = otherProps;
|
|
1030
1030
|
return /*#__PURE__*/jsx(Autocomplete, {
|
|
@@ -1066,7 +1066,7 @@ const AutocompleteMultiple = forwardRef((props, ref) => {
|
|
|
1066
1066
|
});
|
|
1067
1067
|
AutocompleteMultiple.displayName = COMPONENT_NAME$1y;
|
|
1068
1068
|
AutocompleteMultiple.className = CLASSNAME$1w;
|
|
1069
|
-
AutocompleteMultiple.defaultProps = DEFAULT_PROPS$
|
|
1069
|
+
AutocompleteMultiple.defaultProps = DEFAULT_PROPS$1f;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
1072
|
* Component display name.
|
|
@@ -1085,7 +1085,7 @@ const {
|
|
|
1085
1085
|
/**
|
|
1086
1086
|
* Component default props.
|
|
1087
1087
|
*/
|
|
1088
|
-
const DEFAULT_PROPS$
|
|
1088
|
+
const DEFAULT_PROPS$1e = {
|
|
1089
1089
|
size: Size.m
|
|
1090
1090
|
};
|
|
1091
1091
|
|
|
@@ -1102,7 +1102,7 @@ const Avatar$1 = props => {
|
|
|
1102
1102
|
badge,
|
|
1103
1103
|
className,
|
|
1104
1104
|
image,
|
|
1105
|
-
size = DEFAULT_PROPS$
|
|
1105
|
+
size = DEFAULT_PROPS$1e.size,
|
|
1106
1106
|
theme,
|
|
1107
1107
|
ref,
|
|
1108
1108
|
...forwardedProps
|
|
@@ -1143,7 +1143,7 @@ const Avatar = forwardRef((props, ref) => {
|
|
|
1143
1143
|
linkAs,
|
|
1144
1144
|
onClick,
|
|
1145
1145
|
onKeyPress,
|
|
1146
|
-
size = DEFAULT_PROPS$
|
|
1146
|
+
size = DEFAULT_PROPS$1e.size,
|
|
1147
1147
|
theme = defaultTheme,
|
|
1148
1148
|
thumbnailProps,
|
|
1149
1149
|
...forwardedProps
|
|
@@ -1173,7 +1173,7 @@ const Avatar = forwardRef((props, ref) => {
|
|
|
1173
1173
|
});
|
|
1174
1174
|
Avatar.displayName = COMPONENT_NAME$1x;
|
|
1175
1175
|
Avatar.className = CLASSNAME$1v;
|
|
1176
|
-
Avatar.defaultProps = DEFAULT_PROPS$
|
|
1176
|
+
Avatar.defaultProps = DEFAULT_PROPS$1e;
|
|
1177
1177
|
|
|
1178
1178
|
/**
|
|
1179
1179
|
* Component display name.
|
|
@@ -1191,7 +1191,7 @@ const {
|
|
|
1191
1191
|
/**
|
|
1192
1192
|
* Component default props.
|
|
1193
1193
|
*/
|
|
1194
|
-
const DEFAULT_PROPS$
|
|
1194
|
+
const DEFAULT_PROPS$1d = {
|
|
1195
1195
|
color: ColorPalette.primary
|
|
1196
1196
|
};
|
|
1197
1197
|
|
|
@@ -1205,7 +1205,7 @@ const Badge$1 = props => {
|
|
|
1205
1205
|
const {
|
|
1206
1206
|
children,
|
|
1207
1207
|
className,
|
|
1208
|
-
color = DEFAULT_PROPS$
|
|
1208
|
+
color = DEFAULT_PROPS$1d.color,
|
|
1209
1209
|
ref,
|
|
1210
1210
|
...forwardedProps
|
|
1211
1211
|
} = props;
|
|
@@ -1220,7 +1220,7 @@ const Badge$1 = props => {
|
|
|
1220
1220
|
};
|
|
1221
1221
|
Badge$1.displayName = COMPONENT_NAME$1w;
|
|
1222
1222
|
Badge$1.className = CLASSNAME$1u;
|
|
1223
|
-
Badge$1.defaultProps = DEFAULT_PROPS$
|
|
1223
|
+
Badge$1.defaultProps = DEFAULT_PROPS$1d;
|
|
1224
1224
|
|
|
1225
1225
|
/**
|
|
1226
1226
|
* Defines the props of the component.
|
|
@@ -1446,7 +1446,7 @@ const {
|
|
|
1446
1446
|
/**
|
|
1447
1447
|
* Component default props.
|
|
1448
1448
|
*/
|
|
1449
|
-
const DEFAULT_PROPS$
|
|
1449
|
+
const DEFAULT_PROPS$1c = {
|
|
1450
1450
|
emphasis: Emphasis.high,
|
|
1451
1451
|
size: Size.m
|
|
1452
1452
|
};
|
|
@@ -1460,10 +1460,10 @@ const DEFAULT_PROPS$1b = {
|
|
|
1460
1460
|
const Button$1 = props => {
|
|
1461
1461
|
const {
|
|
1462
1462
|
className,
|
|
1463
|
-
emphasis = DEFAULT_PROPS$
|
|
1463
|
+
emphasis = DEFAULT_PROPS$1c.emphasis,
|
|
1464
1464
|
leftIcon,
|
|
1465
1465
|
rightIcon,
|
|
1466
|
-
size = DEFAULT_PROPS$
|
|
1466
|
+
size = DEFAULT_PROPS$1c.size,
|
|
1467
1467
|
...forwardedProps
|
|
1468
1468
|
} = props;
|
|
1469
1469
|
const buttonClassName = classnames(className, modifier({
|
|
@@ -1480,7 +1480,7 @@ const Button$1 = props => {
|
|
|
1480
1480
|
};
|
|
1481
1481
|
Button$1.displayName = COMPONENT_NAME$1t;
|
|
1482
1482
|
Button$1.className = CLASSNAME$1s;
|
|
1483
|
-
Button$1.defaultProps = DEFAULT_PROPS$
|
|
1483
|
+
Button$1.defaultProps = DEFAULT_PROPS$1c;
|
|
1484
1484
|
|
|
1485
1485
|
/**
|
|
1486
1486
|
* Properties of a component to use to determine it's name.
|
|
@@ -1555,7 +1555,7 @@ const Button = forwardRef((props, ref) => {
|
|
|
1555
1555
|
});
|
|
1556
1556
|
Button.displayName = COMPONENT_NAME$1t;
|
|
1557
1557
|
Button.className = CLASSNAME$1s;
|
|
1558
|
-
Button.defaultProps = DEFAULT_PROPS$
|
|
1558
|
+
Button.defaultProps = DEFAULT_PROPS$1c;
|
|
1559
1559
|
|
|
1560
1560
|
const COMPONENT_NAME$1s = 'Icon';
|
|
1561
1561
|
const IconClassName = 'lumx-icon';
|
|
@@ -1572,7 +1572,7 @@ const {
|
|
|
1572
1572
|
/**
|
|
1573
1573
|
* Component default props.
|
|
1574
1574
|
*/
|
|
1575
|
-
const DEFAULT_PROPS$
|
|
1575
|
+
const DEFAULT_PROPS$1b = {};
|
|
1576
1576
|
|
|
1577
1577
|
/**
|
|
1578
1578
|
* Icon component.
|
|
@@ -1652,7 +1652,7 @@ const Icon$1 = props => {
|
|
|
1652
1652
|
};
|
|
1653
1653
|
Icon$1.displayName = COMPONENT_NAME$1s;
|
|
1654
1654
|
Icon$1.className = CLASSNAME$1r;
|
|
1655
|
-
Icon$1.defaultProps = DEFAULT_PROPS$
|
|
1655
|
+
Icon$1.defaultProps = DEFAULT_PROPS$1b;
|
|
1656
1656
|
|
|
1657
1657
|
/**
|
|
1658
1658
|
* Component display name.
|
|
@@ -1667,7 +1667,7 @@ const CLASSNAME$1q = 'lumx-icon-button';
|
|
|
1667
1667
|
/**
|
|
1668
1668
|
* Component default props.
|
|
1669
1669
|
*/
|
|
1670
|
-
const DEFAULT_PROPS$
|
|
1670
|
+
const DEFAULT_PROPS$1a = {
|
|
1671
1671
|
emphasis: Emphasis.high,
|
|
1672
1672
|
size: Size.m
|
|
1673
1673
|
};
|
|
@@ -1680,11 +1680,11 @@ const DEFAULT_PROPS$19 = {
|
|
|
1680
1680
|
*/
|
|
1681
1681
|
const IconButton$1 = props => {
|
|
1682
1682
|
const {
|
|
1683
|
-
emphasis = DEFAULT_PROPS$
|
|
1683
|
+
emphasis = DEFAULT_PROPS$1a.emphasis,
|
|
1684
1684
|
image,
|
|
1685
1685
|
icon,
|
|
1686
1686
|
label,
|
|
1687
|
-
size = DEFAULT_PROPS$
|
|
1687
|
+
size = DEFAULT_PROPS$1a.size,
|
|
1688
1688
|
...forwardedProps
|
|
1689
1689
|
} = props;
|
|
1690
1690
|
const defaultChildren = image ? /*#__PURE__*/jsx("img", {
|
|
@@ -1705,7 +1705,7 @@ const IconButton$1 = props => {
|
|
|
1705
1705
|
};
|
|
1706
1706
|
IconButton$1.displayName = COMPONENT_NAME$1r;
|
|
1707
1707
|
IconButton$1.className = CLASSNAME$1q;
|
|
1708
|
-
IconButton$1.defaultProps = DEFAULT_PROPS$
|
|
1708
|
+
IconButton$1.defaultProps = DEFAULT_PROPS$1a;
|
|
1709
1709
|
|
|
1710
1710
|
/**
|
|
1711
1711
|
* IconButton component.
|
|
@@ -1750,7 +1750,7 @@ const IconButton = forwardRef((props, ref) => {
|
|
|
1750
1750
|
});
|
|
1751
1751
|
IconButton.displayName = COMPONENT_NAME$1r;
|
|
1752
1752
|
IconButton.className = CLASSNAME$1q;
|
|
1753
|
-
IconButton.defaultProps = DEFAULT_PROPS$
|
|
1753
|
+
IconButton.defaultProps = DEFAULT_PROPS$1a;
|
|
1754
1754
|
|
|
1755
1755
|
/**
|
|
1756
1756
|
* Component display name.
|
|
@@ -1765,7 +1765,7 @@ const CLASSNAME$1p = 'lumx-button-group';
|
|
|
1765
1765
|
/**
|
|
1766
1766
|
* Component default props.
|
|
1767
1767
|
*/
|
|
1768
|
-
const DEFAULT_PROPS$
|
|
1768
|
+
const DEFAULT_PROPS$19 = {};
|
|
1769
1769
|
|
|
1770
1770
|
/**
|
|
1771
1771
|
* ButtonGroup component.
|
|
@@ -1787,7 +1787,7 @@ const ButtonGroup$1 = props => {
|
|
|
1787
1787
|
};
|
|
1788
1788
|
ButtonGroup$1.displayName = COMPONENT_NAME$1q;
|
|
1789
1789
|
ButtonGroup$1.className = CLASSNAME$1p;
|
|
1790
|
-
ButtonGroup$1.defaultProps = DEFAULT_PROPS$
|
|
1790
|
+
ButtonGroup$1.defaultProps = DEFAULT_PROPS$19;
|
|
1791
1791
|
|
|
1792
1792
|
/**
|
|
1793
1793
|
* ButtonGroup component.
|
|
@@ -1804,7 +1804,7 @@ const ButtonGroup = forwardRef((props, ref) => {
|
|
|
1804
1804
|
});
|
|
1805
1805
|
ButtonGroup.displayName = COMPONENT_NAME$1q;
|
|
1806
1806
|
ButtonGroup.className = CLASSNAME$1p;
|
|
1807
|
-
ButtonGroup.defaultProps = DEFAULT_PROPS$
|
|
1807
|
+
ButtonGroup.defaultProps = DEFAULT_PROPS$19;
|
|
1808
1808
|
|
|
1809
1809
|
const COMPONENT_NAME$1p = 'InputLabel';
|
|
1810
1810
|
const InputLabelClassName = 'lumx-input-label';
|
|
@@ -1812,7 +1812,7 @@ const CLASSNAME$1o = InputLabelClassName;
|
|
|
1812
1812
|
const {
|
|
1813
1813
|
block: block$14
|
|
1814
1814
|
} = bem(CLASSNAME$1o);
|
|
1815
|
-
const DEFAULT_PROPS$
|
|
1815
|
+
const DEFAULT_PROPS$18 = {};
|
|
1816
1816
|
|
|
1817
1817
|
/**
|
|
1818
1818
|
* InputLabel component.
|
|
@@ -1844,7 +1844,7 @@ function InputLabel$1(props) {
|
|
|
1844
1844
|
}
|
|
1845
1845
|
InputLabel$1.displayName = COMPONENT_NAME$1p;
|
|
1846
1846
|
InputLabel$1.className = CLASSNAME$1o;
|
|
1847
|
-
InputLabel$1.defaultProps = DEFAULT_PROPS$
|
|
1847
|
+
InputLabel$1.defaultProps = DEFAULT_PROPS$18;
|
|
1848
1848
|
|
|
1849
1849
|
const INPUT_HELPER_CONFIGURATION = {
|
|
1850
1850
|
[Kind.error]: {
|
|
@@ -1873,7 +1873,7 @@ const {
|
|
|
1873
1873
|
/**
|
|
1874
1874
|
* Component default props.
|
|
1875
1875
|
*/
|
|
1876
|
-
const DEFAULT_PROPS$
|
|
1876
|
+
const DEFAULT_PROPS$17 = {
|
|
1877
1877
|
kind: Kind.info
|
|
1878
1878
|
};
|
|
1879
1879
|
|
|
@@ -1884,7 +1884,7 @@ function InputHelper$1(props) {
|
|
|
1884
1884
|
const {
|
|
1885
1885
|
children,
|
|
1886
1886
|
className,
|
|
1887
|
-
kind = DEFAULT_PROPS$
|
|
1887
|
+
kind = DEFAULT_PROPS$17.kind,
|
|
1888
1888
|
theme,
|
|
1889
1889
|
ref,
|
|
1890
1890
|
...forwardedProps
|
|
@@ -1904,7 +1904,7 @@ function InputHelper$1(props) {
|
|
|
1904
1904
|
}
|
|
1905
1905
|
InputHelper$1.displayName = COMPONENT_NAME$1o;
|
|
1906
1906
|
InputHelper$1.className = CLASSNAME$1n;
|
|
1907
|
-
InputHelper$1.defaultProps = DEFAULT_PROPS$
|
|
1907
|
+
InputHelper$1.defaultProps = DEFAULT_PROPS$17;
|
|
1908
1908
|
|
|
1909
1909
|
const INTERMEDIATE_STATE = 'intermediate';
|
|
1910
1910
|
|
|
@@ -2019,7 +2019,7 @@ const Checkbox$1 = props => {
|
|
|
2019
2019
|
/**
|
|
2020
2020
|
* Component default props.
|
|
2021
2021
|
*/
|
|
2022
|
-
const DEFAULT_PROPS$
|
|
2022
|
+
const DEFAULT_PROPS$16 = {};
|
|
2023
2023
|
|
|
2024
2024
|
/**
|
|
2025
2025
|
* Checkbox component.
|
|
@@ -2081,7 +2081,7 @@ const Checkbox = forwardRef((props, ref) => {
|
|
|
2081
2081
|
});
|
|
2082
2082
|
Checkbox.displayName = COMPONENT_NAME$1n;
|
|
2083
2083
|
Checkbox.className = CLASSNAME$1m;
|
|
2084
|
-
Checkbox.defaultProps = DEFAULT_PROPS$
|
|
2084
|
+
Checkbox.defaultProps = DEFAULT_PROPS$16;
|
|
2085
2085
|
|
|
2086
2086
|
/**
|
|
2087
2087
|
* Wrap mouse event handler to stop event propagation.
|
|
@@ -2116,7 +2116,7 @@ const {
|
|
|
2116
2116
|
/**
|
|
2117
2117
|
* Component default props.
|
|
2118
2118
|
*/
|
|
2119
|
-
const DEFAULT_PROPS$
|
|
2119
|
+
const DEFAULT_PROPS$15 = {
|
|
2120
2120
|
size: Size.m
|
|
2121
2121
|
};
|
|
2122
2122
|
|
|
@@ -2143,7 +2143,7 @@ const Chip$1 = props => {
|
|
|
2143
2143
|
hasAfterClick,
|
|
2144
2144
|
hasBeforeClick,
|
|
2145
2145
|
hasOnClick,
|
|
2146
|
-
size = DEFAULT_PROPS$
|
|
2146
|
+
size = DEFAULT_PROPS$15.size,
|
|
2147
2147
|
theme,
|
|
2148
2148
|
ref,
|
|
2149
2149
|
href,
|
|
@@ -2265,7 +2265,7 @@ const Chip = forwardRef((props, ref) => {
|
|
|
2265
2265
|
});
|
|
2266
2266
|
Chip.displayName = COMPONENT_NAME$1m;
|
|
2267
2267
|
Chip.className = CLASSNAME$1l;
|
|
2268
|
-
Chip.defaultProps = DEFAULT_PROPS$
|
|
2268
|
+
Chip.defaultProps = DEFAULT_PROPS$15;
|
|
2269
2269
|
|
|
2270
2270
|
/**
|
|
2271
2271
|
* Component display name.
|
|
@@ -2280,7 +2280,7 @@ const CLASSNAME$1k = 'lumx-chip-group';
|
|
|
2280
2280
|
/**
|
|
2281
2281
|
* Component default props.
|
|
2282
2282
|
*/
|
|
2283
|
-
const DEFAULT_PROPS$
|
|
2283
|
+
const DEFAULT_PROPS$14 = {};
|
|
2284
2284
|
|
|
2285
2285
|
/**
|
|
2286
2286
|
* ChipGroup component.
|
|
@@ -2378,7 +2378,7 @@ const InternalChipGroup = forwardRef((props, ref) => {
|
|
|
2378
2378
|
});
|
|
2379
2379
|
InternalChipGroup.displayName = COMPONENT_NAME$1l;
|
|
2380
2380
|
InternalChipGroup.className = CLASSNAME$1k;
|
|
2381
|
-
InternalChipGroup.defaultProps = DEFAULT_PROPS$
|
|
2381
|
+
InternalChipGroup.defaultProps = DEFAULT_PROPS$14;
|
|
2382
2382
|
const ChipGroup = Object.assign(InternalChipGroup, {
|
|
2383
2383
|
useChipGroupNavigation
|
|
2384
2384
|
});
|
|
@@ -2721,7 +2721,7 @@ const {
|
|
|
2721
2721
|
/**
|
|
2722
2722
|
* Component default props.
|
|
2723
2723
|
*/
|
|
2724
|
-
const DEFAULT_PROPS$
|
|
2724
|
+
const DEFAULT_PROPS$13 = {};
|
|
2725
2725
|
|
|
2726
2726
|
/**
|
|
2727
2727
|
* Text component common props
|
|
@@ -2808,7 +2808,7 @@ const Text = forwardRef((props, ref) => {
|
|
|
2808
2808
|
});
|
|
2809
2809
|
Text.displayName = COMPONENT_NAME$1j;
|
|
2810
2810
|
Text.className = CLASSNAME$1i;
|
|
2811
|
-
Text.defaultProps = DEFAULT_PROPS$
|
|
2811
|
+
Text.defaultProps = DEFAULT_PROPS$13;
|
|
2812
2812
|
|
|
2813
2813
|
/**
|
|
2814
2814
|
* Custom positioning reference element.
|
|
@@ -4890,7 +4890,7 @@ const TOOLTIP_ZINDEX = 10000;
|
|
|
4890
4890
|
/**
|
|
4891
4891
|
* Component default props.
|
|
4892
4892
|
*/
|
|
4893
|
-
const DEFAULT_PROPS$
|
|
4893
|
+
const DEFAULT_PROPS$12 = {
|
|
4894
4894
|
placement: 'bottom',
|
|
4895
4895
|
closeMode: 'unmount',
|
|
4896
4896
|
ariaLinkMode: 'aria-describedby',
|
|
@@ -5254,11 +5254,11 @@ const Tooltip = forwardRef((props, ref) => {
|
|
|
5254
5254
|
children,
|
|
5255
5255
|
className,
|
|
5256
5256
|
delay,
|
|
5257
|
-
placement = DEFAULT_PROPS$
|
|
5257
|
+
placement = DEFAULT_PROPS$12.placement,
|
|
5258
5258
|
forceOpen,
|
|
5259
|
-
closeMode = DEFAULT_PROPS$
|
|
5260
|
-
ariaLinkMode = DEFAULT_PROPS$
|
|
5261
|
-
zIndex = DEFAULT_PROPS$
|
|
5259
|
+
closeMode = DEFAULT_PROPS$12.closeMode,
|
|
5260
|
+
ariaLinkMode = DEFAULT_PROPS$12.ariaLinkMode,
|
|
5261
|
+
zIndex = DEFAULT_PROPS$12.zIndex,
|
|
5262
5262
|
...forwardedProps
|
|
5263
5263
|
} = props;
|
|
5264
5264
|
// Disable in SSR.
|
|
@@ -5323,7 +5323,7 @@ const Tooltip = forwardRef((props, ref) => {
|
|
|
5323
5323
|
});
|
|
5324
5324
|
Tooltip.displayName = COMPONENT_NAME$1i;
|
|
5325
5325
|
Tooltip.className = CLASSNAME$1h;
|
|
5326
|
-
Tooltip.defaultProps = DEFAULT_PROPS$
|
|
5326
|
+
Tooltip.defaultProps = DEFAULT_PROPS$12;
|
|
5327
5327
|
|
|
5328
5328
|
/**
|
|
5329
5329
|
* Transition the active item: deactivate the current one (if any) and activate the new one.
|
|
@@ -7725,7 +7725,7 @@ const {
|
|
|
7725
7725
|
/**
|
|
7726
7726
|
* Component default props.
|
|
7727
7727
|
*/
|
|
7728
|
-
const DEFAULT_PROPS$
|
|
7728
|
+
const DEFAULT_PROPS$11 = {
|
|
7729
7729
|
type: 'text'
|
|
7730
7730
|
};
|
|
7731
7731
|
|
|
@@ -7740,7 +7740,7 @@ const RawInputText$1 = props => {
|
|
|
7740
7740
|
value,
|
|
7741
7741
|
handleChange,
|
|
7742
7742
|
handleInput,
|
|
7743
|
-
type = DEFAULT_PROPS$
|
|
7743
|
+
type = DEFAULT_PROPS$11.type,
|
|
7744
7744
|
name,
|
|
7745
7745
|
ref,
|
|
7746
7746
|
...forwardedProps
|
|
@@ -7796,7 +7796,7 @@ const {
|
|
|
7796
7796
|
/**
|
|
7797
7797
|
* Component default props.
|
|
7798
7798
|
*/
|
|
7799
|
-
const DEFAULT_PROPS
|
|
7799
|
+
const DEFAULT_PROPS$10 = {
|
|
7800
7800
|
rows: 2
|
|
7801
7801
|
};
|
|
7802
7802
|
|
|
@@ -7811,7 +7811,7 @@ const RawInputTextarea$1 = props => {
|
|
|
7811
7811
|
value,
|
|
7812
7812
|
handleChange,
|
|
7813
7813
|
handleInput,
|
|
7814
|
-
rows = DEFAULT_PROPS
|
|
7814
|
+
rows = DEFAULT_PROPS$10.rows,
|
|
7815
7815
|
name,
|
|
7816
7816
|
ref,
|
|
7817
7817
|
...forwardedProps
|
|
@@ -7885,8 +7885,8 @@ function useFitRowsToContent(minimumRows, textareaRef, value) {
|
|
|
7885
7885
|
/**
|
|
7886
7886
|
* Component default props.
|
|
7887
7887
|
*/
|
|
7888
|
-
const DEFAULT_PROPS
|
|
7889
|
-
minimumRows: DEFAULT_PROPS
|
|
7888
|
+
const DEFAULT_PROPS$$ = {
|
|
7889
|
+
minimumRows: DEFAULT_PROPS$10.rows
|
|
7890
7890
|
};
|
|
7891
7891
|
|
|
7892
7892
|
/**
|
|
@@ -7897,7 +7897,7 @@ const RawInputTextarea = forwardRef((props, ref) => {
|
|
|
7897
7897
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
7898
7898
|
const {
|
|
7899
7899
|
theme = defaultTheme,
|
|
7900
|
-
minimumRows = DEFAULT_PROPS
|
|
7900
|
+
minimumRows = DEFAULT_PROPS$$.minimumRows,
|
|
7901
7901
|
value,
|
|
7902
7902
|
onChange,
|
|
7903
7903
|
...restOfProps
|
|
@@ -7917,7 +7917,7 @@ const RawInputTextarea = forwardRef((props, ref) => {
|
|
|
7917
7917
|
/**
|
|
7918
7918
|
* Component default props.
|
|
7919
7919
|
*/
|
|
7920
|
-
const DEFAULT_PROPS$
|
|
7920
|
+
const DEFAULT_PROPS$_ = {
|
|
7921
7921
|
type: 'text'
|
|
7922
7922
|
};
|
|
7923
7923
|
|
|
@@ -7961,7 +7961,7 @@ const TextField = forwardRef((props, ref) => {
|
|
|
7961
7961
|
placeholder,
|
|
7962
7962
|
textFieldRef,
|
|
7963
7963
|
theme = defaultTheme,
|
|
7964
|
-
type = DEFAULT_PROPS$
|
|
7964
|
+
type = DEFAULT_PROPS$_.type,
|
|
7965
7965
|
value,
|
|
7966
7966
|
afterElement,
|
|
7967
7967
|
...forwardedProps
|
|
@@ -8068,7 +8068,7 @@ const TextField = forwardRef((props, ref) => {
|
|
|
8068
8068
|
});
|
|
8069
8069
|
TextField.displayName = COMPONENT_NAME$1f;
|
|
8070
8070
|
TextField.className = CLASSNAME$1e;
|
|
8071
|
-
TextField.defaultProps = DEFAULT_PROPS$
|
|
8071
|
+
TextField.defaultProps = DEFAULT_PROPS$_;
|
|
8072
8072
|
|
|
8073
8073
|
/**
|
|
8074
8074
|
* Props for Combobox.Input component.
|
|
@@ -8164,7 +8164,7 @@ const {
|
|
|
8164
8164
|
/**
|
|
8165
8165
|
* Component default props.
|
|
8166
8166
|
*/
|
|
8167
|
-
const DEFAULT_PROPS$
|
|
8167
|
+
const DEFAULT_PROPS$Z = {};
|
|
8168
8168
|
|
|
8169
8169
|
/**
|
|
8170
8170
|
* List component.
|
|
@@ -8191,7 +8191,7 @@ const List$1 = props => {
|
|
|
8191
8191
|
};
|
|
8192
8192
|
List$1.displayName = COMPONENT_NAME$1e;
|
|
8193
8193
|
List$1.className = CLASSNAME$1d;
|
|
8194
|
-
List$1.defaultProps = DEFAULT_PROPS$
|
|
8194
|
+
List$1.defaultProps = DEFAULT_PROPS$Z;
|
|
8195
8195
|
|
|
8196
8196
|
/**
|
|
8197
8197
|
* Popup type for the combobox listbox.
|
|
@@ -8338,7 +8338,7 @@ const {
|
|
|
8338
8338
|
/**
|
|
8339
8339
|
* Component default props.
|
|
8340
8340
|
*/
|
|
8341
|
-
const DEFAULT_PROPS$
|
|
8341
|
+
const DEFAULT_PROPS$Y = {
|
|
8342
8342
|
size: Size.regular
|
|
8343
8343
|
};
|
|
8344
8344
|
|
|
@@ -8362,7 +8362,7 @@ const ListItem$1 = props => {
|
|
|
8362
8362
|
linkProps = {},
|
|
8363
8363
|
linkRef,
|
|
8364
8364
|
handleClick,
|
|
8365
|
-
size = DEFAULT_PROPS$
|
|
8365
|
+
size = DEFAULT_PROPS$Y.size,
|
|
8366
8366
|
ref,
|
|
8367
8367
|
...forwardedProps
|
|
8368
8368
|
} = props;
|
|
@@ -8402,7 +8402,7 @@ const ListItem$1 = props => {
|
|
|
8402
8402
|
};
|
|
8403
8403
|
ListItem$1.displayName = COMPONENT_NAME$1c;
|
|
8404
8404
|
ListItem$1.className = CLASSNAME$1b;
|
|
8405
|
-
ListItem$1.defaultProps = DEFAULT_PROPS$
|
|
8405
|
+
ListItem$1.defaultProps = DEFAULT_PROPS$Y;
|
|
8406
8406
|
|
|
8407
8407
|
/**
|
|
8408
8408
|
* ListItemAction props.
|
|
@@ -8417,7 +8417,7 @@ const COMPONENT_NAME$1b = 'ListItemAction';
|
|
|
8417
8417
|
* Component classname (used by action area CSS pattern).
|
|
8418
8418
|
*/
|
|
8419
8419
|
const CLASSNAME$1a = 'lumx-action-area__action';
|
|
8420
|
-
const DEFAULT_PROPS$
|
|
8420
|
+
const DEFAULT_PROPS$X = {};
|
|
8421
8421
|
|
|
8422
8422
|
/**
|
|
8423
8423
|
* ListItemAction component.
|
|
@@ -9078,7 +9078,7 @@ const {
|
|
|
9078
9078
|
/**
|
|
9079
9079
|
* Component default props (used by framework wrappers).
|
|
9080
9080
|
*/
|
|
9081
|
-
const DEFAULT_PROPS$
|
|
9081
|
+
const DEFAULT_PROPS$W = {
|
|
9082
9082
|
closeMode: 'unmount',
|
|
9083
9083
|
elevation: 3,
|
|
9084
9084
|
placement: Placement.AUTO,
|
|
@@ -9102,8 +9102,8 @@ const Popover$1 = (props, {
|
|
|
9102
9102
|
as: asTag = 'div',
|
|
9103
9103
|
children,
|
|
9104
9104
|
className,
|
|
9105
|
-
closeMode = DEFAULT_PROPS$
|
|
9106
|
-
elevation = DEFAULT_PROPS$
|
|
9105
|
+
closeMode = DEFAULT_PROPS$W.closeMode,
|
|
9106
|
+
elevation = DEFAULT_PROPS$W.elevation,
|
|
9107
9107
|
hasArrow,
|
|
9108
9108
|
isOpen,
|
|
9109
9109
|
position,
|
|
@@ -9113,7 +9113,7 @@ const Popover$1 = (props, {
|
|
|
9113
9113
|
// Framework-specific
|
|
9114
9114
|
ref,
|
|
9115
9115
|
arrowRef,
|
|
9116
|
-
usePortal = DEFAULT_PROPS$
|
|
9116
|
+
usePortal = DEFAULT_PROPS$W.usePortal,
|
|
9117
9117
|
clickAwayCallback,
|
|
9118
9118
|
clickAwayRefs,
|
|
9119
9119
|
unmountSentinel,
|
|
@@ -9445,27 +9445,27 @@ const _InnerPopover = forwardRef((props, ref) => {
|
|
|
9445
9445
|
as,
|
|
9446
9446
|
children,
|
|
9447
9447
|
className,
|
|
9448
|
-
closeMode = DEFAULT_PROPS$
|
|
9448
|
+
closeMode = DEFAULT_PROPS$W.closeMode,
|
|
9449
9449
|
closeOnClickAway,
|
|
9450
9450
|
closeOnEscape,
|
|
9451
|
-
elevation = DEFAULT_PROPS$
|
|
9451
|
+
elevation = DEFAULT_PROPS$W.elevation,
|
|
9452
9452
|
focusElement,
|
|
9453
9453
|
hasArrow,
|
|
9454
9454
|
isOpen,
|
|
9455
9455
|
onClose,
|
|
9456
9456
|
parentElement,
|
|
9457
|
-
usePortal = DEFAULT_PROPS$
|
|
9458
|
-
focusAnchorOnClose = DEFAULT_PROPS$
|
|
9457
|
+
usePortal = DEFAULT_PROPS$W.usePortal,
|
|
9458
|
+
focusAnchorOnClose = DEFAULT_PROPS$W.focusAnchorOnClose,
|
|
9459
9459
|
withFocusTrap,
|
|
9460
9460
|
boundaryRef,
|
|
9461
9461
|
fitToAnchorWidth,
|
|
9462
9462
|
fitWithinViewportHeight,
|
|
9463
9463
|
focusTrapZoneElement,
|
|
9464
9464
|
offset,
|
|
9465
|
-
placement = DEFAULT_PROPS$
|
|
9465
|
+
placement = DEFAULT_PROPS$W.placement,
|
|
9466
9466
|
style,
|
|
9467
9467
|
theme,
|
|
9468
|
-
zIndex = DEFAULT_PROPS$
|
|
9468
|
+
zIndex = DEFAULT_PROPS$W.zIndex,
|
|
9469
9469
|
...forwardedProps
|
|
9470
9470
|
} = props;
|
|
9471
9471
|
const popoverRef = useRef(null);
|
|
@@ -9539,7 +9539,7 @@ const Popover = skipRender(
|
|
|
9539
9539
|
() => Boolean(DOCUMENT), _InnerPopover);
|
|
9540
9540
|
Popover.displayName = COMPONENT_NAME$17;
|
|
9541
9541
|
Popover.className = CLASSNAME$16;
|
|
9542
|
-
Popover.defaultProps = DEFAULT_PROPS$
|
|
9542
|
+
Popover.defaultProps = DEFAULT_PROPS$W;
|
|
9543
9543
|
|
|
9544
9544
|
/**
|
|
9545
9545
|
* Props for Combobox.OptionMoreInfo component.
|
|
@@ -10022,7 +10022,7 @@ const {
|
|
|
10022
10022
|
/**
|
|
10023
10023
|
* Component default props.
|
|
10024
10024
|
*/
|
|
10025
|
-
const DEFAULT_PROPS$
|
|
10025
|
+
const DEFAULT_PROPS$V = {};
|
|
10026
10026
|
|
|
10027
10027
|
/**
|
|
10028
10028
|
* ListSection component.
|
|
@@ -10066,7 +10066,7 @@ const ListSection$1 = props => {
|
|
|
10066
10066
|
};
|
|
10067
10067
|
ListSection$1.displayName = COMPONENT_NAME$11;
|
|
10068
10068
|
ListSection$1.className = CLASSNAME$10;
|
|
10069
|
-
ListSection$1.defaultProps = DEFAULT_PROPS$
|
|
10069
|
+
ListSection$1.defaultProps = DEFAULT_PROPS$V;
|
|
10070
10070
|
|
|
10071
10071
|
/**
|
|
10072
10072
|
* Defines the props of the component.
|
|
@@ -10090,7 +10090,7 @@ const ListSection = forwardRef((props, ref) => {
|
|
|
10090
10090
|
});
|
|
10091
10091
|
ListSection.displayName = COMPONENT_NAME$11;
|
|
10092
10092
|
ListSection.className = CLASSNAME$10;
|
|
10093
|
-
ListSection.defaultProps = DEFAULT_PROPS$
|
|
10093
|
+
ListSection.defaultProps = DEFAULT_PROPS$V;
|
|
10094
10094
|
|
|
10095
10095
|
/**
|
|
10096
10096
|
* Props for Combobox.Section component.
|
|
@@ -10339,7 +10339,7 @@ const {
|
|
|
10339
10339
|
/**
|
|
10340
10340
|
* Component default props.
|
|
10341
10341
|
*/
|
|
10342
|
-
const DEFAULT_PROPS$
|
|
10342
|
+
const DEFAULT_PROPS$U = {
|
|
10343
10343
|
gap: Size.big,
|
|
10344
10344
|
orientation: Orientation.horizontal
|
|
10345
10345
|
};
|
|
@@ -10363,10 +10363,10 @@ const GenericBlock$1 = props => {
|
|
|
10363
10363
|
children,
|
|
10364
10364
|
actions,
|
|
10365
10365
|
actionsProps,
|
|
10366
|
-
gap = DEFAULT_PROPS$
|
|
10366
|
+
gap = DEFAULT_PROPS$U.gap,
|
|
10367
10367
|
ref,
|
|
10368
10368
|
content,
|
|
10369
|
-
orientation = DEFAULT_PROPS$
|
|
10369
|
+
orientation = DEFAULT_PROPS$U.orientation,
|
|
10370
10370
|
contentProps,
|
|
10371
10371
|
FlexBox,
|
|
10372
10372
|
...forwardedProps
|
|
@@ -10478,7 +10478,7 @@ const BaseGenericBlock = forwardRef((props, ref) => {
|
|
|
10478
10478
|
});
|
|
10479
10479
|
BaseGenericBlock.displayName = COMPONENT_NAME$$;
|
|
10480
10480
|
BaseGenericBlock.className = CLASSNAME$_;
|
|
10481
|
-
BaseGenericBlock.defaultProps = DEFAULT_PROPS$
|
|
10481
|
+
BaseGenericBlock.defaultProps = DEFAULT_PROPS$U;
|
|
10482
10482
|
const GenericBlock = Object.assign(BaseGenericBlock, {
|
|
10483
10483
|
Figure,
|
|
10484
10484
|
Content,
|
|
@@ -10572,7 +10572,7 @@ const CLASSNAME$Z = 'lumx-list-divider';
|
|
|
10572
10572
|
/**
|
|
10573
10573
|
* Component default props.
|
|
10574
10574
|
*/
|
|
10575
|
-
const DEFAULT_PROPS$
|
|
10575
|
+
const DEFAULT_PROPS$T = {};
|
|
10576
10576
|
|
|
10577
10577
|
/**
|
|
10578
10578
|
* ListDivider component.
|
|
@@ -10596,7 +10596,7 @@ const ListDivider$1 = props => {
|
|
|
10596
10596
|
};
|
|
10597
10597
|
ListDivider$1.displayName = COMPONENT_NAME$_;
|
|
10598
10598
|
ListDivider$1.className = CLASSNAME$Z;
|
|
10599
|
-
ListDivider$1.defaultProps = DEFAULT_PROPS$
|
|
10599
|
+
ListDivider$1.defaultProps = DEFAULT_PROPS$T;
|
|
10600
10600
|
|
|
10601
10601
|
/**
|
|
10602
10602
|
* Defines the props of the component.
|
|
@@ -10618,7 +10618,7 @@ const ListDivider = forwardRef((props, ref) => {
|
|
|
10618
10618
|
});
|
|
10619
10619
|
ListDivider.displayName = COMPONENT_NAME$_;
|
|
10620
10620
|
ListDivider.className = CLASSNAME$Z;
|
|
10621
|
-
ListDivider.defaultProps = DEFAULT_PROPS$
|
|
10621
|
+
ListDivider.defaultProps = DEFAULT_PROPS$T;
|
|
10622
10622
|
|
|
10623
10623
|
/**
|
|
10624
10624
|
* Combobox compound component namespace.
|
|
@@ -10681,7 +10681,7 @@ const {
|
|
|
10681
10681
|
/**
|
|
10682
10682
|
* Component default props.
|
|
10683
10683
|
*/
|
|
10684
|
-
const DEFAULT_PROPS$
|
|
10684
|
+
const DEFAULT_PROPS$S = {
|
|
10685
10685
|
variant: CommentBlockVariant.indented
|
|
10686
10686
|
};
|
|
10687
10687
|
|
|
@@ -10711,7 +10711,7 @@ const CommentBlock = forwardRef((props, ref) => {
|
|
|
10711
10711
|
onMouseLeave,
|
|
10712
10712
|
text,
|
|
10713
10713
|
theme = defaultTheme,
|
|
10714
|
-
variant = DEFAULT_PROPS$
|
|
10714
|
+
variant = DEFAULT_PROPS$S.variant,
|
|
10715
10715
|
...forwardedProps
|
|
10716
10716
|
} = props;
|
|
10717
10717
|
const hasChildren = Children.count(children) > 0;
|
|
@@ -10780,7 +10780,7 @@ const CommentBlock = forwardRef((props, ref) => {
|
|
|
10780
10780
|
});
|
|
10781
10781
|
CommentBlock.displayName = COMPONENT_NAME$Z;
|
|
10782
10782
|
CommentBlock.className = CLASSNAME$Y;
|
|
10783
|
-
CommentBlock.defaultProps = DEFAULT_PROPS$
|
|
10783
|
+
CommentBlock.defaultProps = DEFAULT_PROPS$S;
|
|
10784
10784
|
|
|
10785
10785
|
/**
|
|
10786
10786
|
* Add a number of months from a date while resetting the day to prevent month length mismatches.
|
|
@@ -11683,7 +11683,7 @@ const {
|
|
|
11683
11683
|
/**
|
|
11684
11684
|
* Component default props.
|
|
11685
11685
|
*/
|
|
11686
|
-
const DEFAULT_PROPS$
|
|
11686
|
+
const DEFAULT_PROPS$R = {
|
|
11687
11687
|
size: Size.big
|
|
11688
11688
|
};
|
|
11689
11689
|
|
|
@@ -11706,7 +11706,7 @@ const Dialog$1 = props => {
|
|
|
11706
11706
|
isOpen,
|
|
11707
11707
|
handleClose,
|
|
11708
11708
|
contentRef,
|
|
11709
|
-
size = DEFAULT_PROPS$
|
|
11709
|
+
size = DEFAULT_PROPS$R.size,
|
|
11710
11710
|
zIndex,
|
|
11711
11711
|
dialogProps,
|
|
11712
11712
|
headerChildContent,
|
|
@@ -11810,7 +11810,7 @@ const isFooter$1 = isComponent('footer');
|
|
|
11810
11810
|
/**
|
|
11811
11811
|
* Component default props.
|
|
11812
11812
|
*/
|
|
11813
|
-
const DEFAULT_PROPS$
|
|
11813
|
+
const DEFAULT_PROPS$Q = {
|
|
11814
11814
|
closeMode: 'unmount',
|
|
11815
11815
|
size: Size$1.big,
|
|
11816
11816
|
disableBodyScroll: true
|
|
@@ -11831,7 +11831,7 @@ const Dialog = forwardRef((props, ref) => {
|
|
|
11831
11831
|
const {
|
|
11832
11832
|
children,
|
|
11833
11833
|
className,
|
|
11834
|
-
closeMode = DEFAULT_PROPS$
|
|
11834
|
+
closeMode = DEFAULT_PROPS$Q.closeMode,
|
|
11835
11835
|
header,
|
|
11836
11836
|
focusElement,
|
|
11837
11837
|
forceFooterDivider,
|
|
@@ -11843,11 +11843,11 @@ const Dialog = forwardRef((props, ref) => {
|
|
|
11843
11843
|
parentElement,
|
|
11844
11844
|
contentRef,
|
|
11845
11845
|
preventAutoClose,
|
|
11846
|
-
size = DEFAULT_PROPS$
|
|
11846
|
+
size = DEFAULT_PROPS$Q.size,
|
|
11847
11847
|
zIndex,
|
|
11848
11848
|
dialogProps,
|
|
11849
11849
|
onVisibilityChange,
|
|
11850
|
-
disableBodyScroll = DEFAULT_PROPS$
|
|
11850
|
+
disableBodyScroll = DEFAULT_PROPS$Q.disableBodyScroll,
|
|
11851
11851
|
preventCloseOnClick,
|
|
11852
11852
|
preventCloseOnEscape,
|
|
11853
11853
|
...forwardedProps
|
|
@@ -11953,7 +11953,7 @@ const Dialog = forwardRef((props, ref) => {
|
|
|
11953
11953
|
});
|
|
11954
11954
|
Dialog.displayName = COMPONENT_NAME$V;
|
|
11955
11955
|
Dialog.className = CLASSNAME$W;
|
|
11956
|
-
Dialog.defaultProps = DEFAULT_PROPS$
|
|
11956
|
+
Dialog.defaultProps = DEFAULT_PROPS$Q;
|
|
11957
11957
|
|
|
11958
11958
|
/**
|
|
11959
11959
|
* Component display name.
|
|
@@ -11997,7 +11997,7 @@ const Divider$1 = props => {
|
|
|
11997
11997
|
/**
|
|
11998
11998
|
* Component default props.
|
|
11999
11999
|
*/
|
|
12000
|
-
const DEFAULT_PROPS$
|
|
12000
|
+
const DEFAULT_PROPS$P = {};
|
|
12001
12001
|
|
|
12002
12002
|
/**
|
|
12003
12003
|
* Divider component.
|
|
@@ -12020,7 +12020,7 @@ const Divider = forwardRef((props, ref) => {
|
|
|
12020
12020
|
});
|
|
12021
12021
|
Divider.displayName = COMPONENT_NAME$U;
|
|
12022
12022
|
Divider.className = CLASSNAME$V;
|
|
12023
|
-
Divider.defaultProps = DEFAULT_PROPS$
|
|
12023
|
+
Divider.defaultProps = DEFAULT_PROPS$P;
|
|
12024
12024
|
|
|
12025
12025
|
/**
|
|
12026
12026
|
* Component display name.
|
|
@@ -12069,7 +12069,7 @@ const DragHandle$1 = props => {
|
|
|
12069
12069
|
/**
|
|
12070
12070
|
* Component default props.
|
|
12071
12071
|
*/
|
|
12072
|
-
const DEFAULT_PROPS$
|
|
12072
|
+
const DEFAULT_PROPS$O = {};
|
|
12073
12073
|
|
|
12074
12074
|
/**
|
|
12075
12075
|
* DragHandle component.
|
|
@@ -12092,7 +12092,7 @@ const DragHandle = forwardRef((props, ref) => {
|
|
|
12092
12092
|
});
|
|
12093
12093
|
DragHandle.displayName = COMPONENT_NAME$T;
|
|
12094
12094
|
DragHandle.className = CLASSNAME$U;
|
|
12095
|
-
DragHandle.defaultProps = DEFAULT_PROPS$
|
|
12095
|
+
DragHandle.defaultProps = DEFAULT_PROPS$O;
|
|
12096
12096
|
|
|
12097
12097
|
const INITIAL_INDEX = -1;
|
|
12098
12098
|
|
|
@@ -12288,7 +12288,7 @@ const InternalList = forwardRef((props, ref) => {
|
|
|
12288
12288
|
});
|
|
12289
12289
|
InternalList.displayName = COMPONENT_NAME$1e;
|
|
12290
12290
|
InternalList.className = CLASSNAME$1d;
|
|
12291
|
-
InternalList.defaultProps = DEFAULT_PROPS$
|
|
12291
|
+
InternalList.defaultProps = DEFAULT_PROPS$Z;
|
|
12292
12292
|
const List = Object.assign(InternalList, {
|
|
12293
12293
|
useKeyboardListNavigation
|
|
12294
12294
|
});
|
|
@@ -12351,7 +12351,7 @@ const {
|
|
|
12351
12351
|
/**
|
|
12352
12352
|
* Component default props.
|
|
12353
12353
|
*/
|
|
12354
|
-
const DEFAULT_PROPS$
|
|
12354
|
+
const DEFAULT_PROPS$N = {
|
|
12355
12355
|
closeOnClick: true,
|
|
12356
12356
|
closeOnClickAway: true,
|
|
12357
12357
|
closeOnEscape: true,
|
|
@@ -12374,18 +12374,18 @@ const Dropdown = forwardRef((props, ref) => {
|
|
|
12374
12374
|
anchorRef,
|
|
12375
12375
|
children,
|
|
12376
12376
|
className,
|
|
12377
|
-
closeOnClick = DEFAULT_PROPS$
|
|
12378
|
-
closeOnClickAway = DEFAULT_PROPS$
|
|
12379
|
-
closeOnEscape = DEFAULT_PROPS$
|
|
12380
|
-
fitToAnchorWidth = DEFAULT_PROPS$
|
|
12381
|
-
fitWithinViewportHeight = DEFAULT_PROPS$
|
|
12377
|
+
closeOnClick = DEFAULT_PROPS$N.closeOnClick,
|
|
12378
|
+
closeOnClickAway = DEFAULT_PROPS$N.closeOnClickAway,
|
|
12379
|
+
closeOnEscape = DEFAULT_PROPS$N.closeOnEscape,
|
|
12380
|
+
fitToAnchorWidth = DEFAULT_PROPS$N.fitToAnchorWidth,
|
|
12381
|
+
fitWithinViewportHeight = DEFAULT_PROPS$N.fitWithinViewportHeight,
|
|
12382
12382
|
isOpen,
|
|
12383
12383
|
offset,
|
|
12384
|
-
focusAnchorOnClose = DEFAULT_PROPS$
|
|
12384
|
+
focusAnchorOnClose = DEFAULT_PROPS$N.focusAnchorOnClose,
|
|
12385
12385
|
onClose,
|
|
12386
12386
|
onInfiniteScroll,
|
|
12387
|
-
placement = DEFAULT_PROPS$
|
|
12388
|
-
shouldFocusOnOpen = DEFAULT_PROPS$
|
|
12387
|
+
placement = DEFAULT_PROPS$N.placement,
|
|
12388
|
+
shouldFocusOnOpen = DEFAULT_PROPS$N.shouldFocusOnOpen,
|
|
12389
12389
|
zIndex,
|
|
12390
12390
|
...forwardedProps
|
|
12391
12391
|
} = props;
|
|
@@ -12431,7 +12431,7 @@ const Dropdown = forwardRef((props, ref) => {
|
|
|
12431
12431
|
});
|
|
12432
12432
|
Dropdown.displayName = COMPONENT_NAME$S;
|
|
12433
12433
|
Dropdown.className = CLASSNAME$T;
|
|
12434
|
-
Dropdown.defaultProps = DEFAULT_PROPS$
|
|
12434
|
+
Dropdown.defaultProps = DEFAULT_PROPS$N;
|
|
12435
12435
|
|
|
12436
12436
|
/**
|
|
12437
12437
|
* Component display name.
|
|
@@ -12450,7 +12450,7 @@ const {
|
|
|
12450
12450
|
/**
|
|
12451
12451
|
* Component default props.
|
|
12452
12452
|
*/
|
|
12453
|
-
const DEFAULT_PROPS$
|
|
12453
|
+
const DEFAULT_PROPS$M = {
|
|
12454
12454
|
closeMode: 'unmount'
|
|
12455
12455
|
};
|
|
12456
12456
|
|
|
@@ -12563,7 +12563,7 @@ const isFooter = isComponent('footer');
|
|
|
12563
12563
|
const ExpansionPanel = forwardRef((props, ref) => {
|
|
12564
12564
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
12565
12565
|
const {
|
|
12566
|
-
closeMode = DEFAULT_PROPS$
|
|
12566
|
+
closeMode = DEFAULT_PROPS$M.closeMode,
|
|
12567
12567
|
children: anyChildren,
|
|
12568
12568
|
isOpen,
|
|
12569
12569
|
label,
|
|
@@ -12636,11 +12636,11 @@ const ExpansionPanel = forwardRef((props, ref) => {
|
|
|
12636
12636
|
});
|
|
12637
12637
|
ExpansionPanel.displayName = COMPONENT_NAME$R;
|
|
12638
12638
|
ExpansionPanel.className = CLASSNAME$S;
|
|
12639
|
-
ExpansionPanel.defaultProps = DEFAULT_PROPS$
|
|
12639
|
+
ExpansionPanel.defaultProps = DEFAULT_PROPS$M;
|
|
12640
12640
|
|
|
12641
12641
|
const COMPONENT_NAME$Q = 'Flag';
|
|
12642
12642
|
const CLASSNAME$R = 'lumx-flag';
|
|
12643
|
-
const DEFAULT_PROPS$
|
|
12643
|
+
const DEFAULT_PROPS$L = {};
|
|
12644
12644
|
const {
|
|
12645
12645
|
block: block$F,
|
|
12646
12646
|
element: element$w
|
|
@@ -12704,7 +12704,7 @@ const Flag = forwardRef((props, ref) => {
|
|
|
12704
12704
|
});
|
|
12705
12705
|
Flag.displayName = COMPONENT_NAME$Q;
|
|
12706
12706
|
Flag.className = CLASSNAME$R;
|
|
12707
|
-
Flag.defaultProps = DEFAULT_PROPS$
|
|
12707
|
+
Flag.defaultProps = DEFAULT_PROPS$L;
|
|
12708
12708
|
|
|
12709
12709
|
/** The maximum authorized heading level. */
|
|
12710
12710
|
const MAX_HEADING_LEVEL = 6;
|
|
@@ -12742,7 +12742,7 @@ const CLASSNAME$Q = 'lumx-heading';
|
|
|
12742
12742
|
/**
|
|
12743
12743
|
* Component default props.
|
|
12744
12744
|
*/
|
|
12745
|
-
const DEFAULT_PROPS$
|
|
12745
|
+
const DEFAULT_PROPS$K = {};
|
|
12746
12746
|
|
|
12747
12747
|
/**
|
|
12748
12748
|
* Get Heading component common props
|
|
@@ -12802,7 +12802,7 @@ const Heading = forwardRef((props, ref) => {
|
|
|
12802
12802
|
});
|
|
12803
12803
|
Heading.displayName = COMPONENT_NAME$P;
|
|
12804
12804
|
Heading.className = CLASSNAME$Q;
|
|
12805
|
-
Heading.defaultProps = DEFAULT_PROPS$
|
|
12805
|
+
Heading.defaultProps = DEFAULT_PROPS$K;
|
|
12806
12806
|
|
|
12807
12807
|
/**
|
|
12808
12808
|
* Computes the next heading level based on the optional prop level or the parent context level.
|
|
@@ -12853,7 +12853,7 @@ const {
|
|
|
12853
12853
|
/**
|
|
12854
12854
|
* Component default props.
|
|
12855
12855
|
*/
|
|
12856
|
-
const DEFAULT_PROPS$
|
|
12856
|
+
const DEFAULT_PROPS$J = {
|
|
12857
12857
|
orientation: Orientation$1.horizontal,
|
|
12858
12858
|
wrap: 'nowrap'
|
|
12859
12859
|
};
|
|
@@ -12871,9 +12871,9 @@ const Grid = forwardRef((props, ref) => {
|
|
|
12871
12871
|
className,
|
|
12872
12872
|
gutter,
|
|
12873
12873
|
hAlign,
|
|
12874
|
-
orientation = DEFAULT_PROPS$
|
|
12874
|
+
orientation = DEFAULT_PROPS$J.orientation,
|
|
12875
12875
|
vAlign,
|
|
12876
|
-
wrap = DEFAULT_PROPS$
|
|
12876
|
+
wrap = DEFAULT_PROPS$J.wrap,
|
|
12877
12877
|
...forwardedProps
|
|
12878
12878
|
} = props;
|
|
12879
12879
|
return /*#__PURE__*/jsx("div", {
|
|
@@ -12891,7 +12891,7 @@ const Grid = forwardRef((props, ref) => {
|
|
|
12891
12891
|
});
|
|
12892
12892
|
Grid.displayName = COMPONENT_NAME$O;
|
|
12893
12893
|
Grid.className = CLASSNAME$P;
|
|
12894
|
-
Grid.defaultProps = DEFAULT_PROPS$
|
|
12894
|
+
Grid.defaultProps = DEFAULT_PROPS$J;
|
|
12895
12895
|
|
|
12896
12896
|
/**
|
|
12897
12897
|
* Component display name.
|
|
@@ -12949,7 +12949,7 @@ const CLASSNAME$N = 'lumx-grid-column';
|
|
|
12949
12949
|
/**
|
|
12950
12950
|
* Component default props.
|
|
12951
12951
|
*/
|
|
12952
|
-
const DEFAULT_PROPS$
|
|
12952
|
+
const DEFAULT_PROPS$I = {};
|
|
12953
12953
|
|
|
12954
12954
|
/**
|
|
12955
12955
|
* The GridColumn is a layout component that can display children in a grid
|
|
@@ -12986,7 +12986,7 @@ const GridColumn$1 = props => {
|
|
|
12986
12986
|
};
|
|
12987
12987
|
GridColumn$1.displayName = COMPONENT_NAME$M;
|
|
12988
12988
|
GridColumn$1.className = CLASSNAME$N;
|
|
12989
|
-
GridColumn$1.defaultProps = DEFAULT_PROPS$
|
|
12989
|
+
GridColumn$1.defaultProps = DEFAULT_PROPS$I;
|
|
12990
12990
|
|
|
12991
12991
|
/**
|
|
12992
12992
|
* Defines the props of the component.
|
|
@@ -12997,7 +12997,7 @@ GridColumn$1.defaultProps = DEFAULT_PROPS$H;
|
|
|
12997
12997
|
/**
|
|
12998
12998
|
* Component default props.
|
|
12999
12999
|
*/
|
|
13000
|
-
const DEFAULT_PROPS$
|
|
13000
|
+
const DEFAULT_PROPS$H = {};
|
|
13001
13001
|
|
|
13002
13002
|
/**
|
|
13003
13003
|
* The GridColumn is a layout component that can display children in a grid
|
|
@@ -13016,7 +13016,7 @@ const GridColumn = forwardRef((props, ref) => {
|
|
|
13016
13016
|
});
|
|
13017
13017
|
GridColumn.displayName = COMPONENT_NAME$M;
|
|
13018
13018
|
GridColumn.className = CLASSNAME$N;
|
|
13019
|
-
GridColumn.defaultProps = DEFAULT_PROPS$
|
|
13019
|
+
GridColumn.defaultProps = DEFAULT_PROPS$H;
|
|
13020
13020
|
|
|
13021
13021
|
/**
|
|
13022
13022
|
* Image block variants.
|
|
@@ -13051,7 +13051,7 @@ const {
|
|
|
13051
13051
|
/**
|
|
13052
13052
|
* Component default props.
|
|
13053
13053
|
*/
|
|
13054
|
-
const DEFAULT_PROPS$
|
|
13054
|
+
const DEFAULT_PROPS$G = {
|
|
13055
13055
|
captionPosition: ImageBlockCaptionPosition.below,
|
|
13056
13056
|
align: Alignment.left
|
|
13057
13057
|
};
|
|
@@ -13066,9 +13066,9 @@ const DEFAULT_PROPS$F = {
|
|
|
13066
13066
|
const ImageBlock$1 = props => {
|
|
13067
13067
|
const {
|
|
13068
13068
|
actions,
|
|
13069
|
-
align = DEFAULT_PROPS$
|
|
13069
|
+
align = DEFAULT_PROPS$G.align,
|
|
13070
13070
|
alt,
|
|
13071
|
-
captionPosition = DEFAULT_PROPS$
|
|
13071
|
+
captionPosition = DEFAULT_PROPS$G.captionPosition,
|
|
13072
13072
|
captionStyle,
|
|
13073
13073
|
className,
|
|
13074
13074
|
description,
|
|
@@ -13240,7 +13240,7 @@ const ImageBlock = forwardRef((props, ref) => {
|
|
|
13240
13240
|
});
|
|
13241
13241
|
ImageBlock.displayName = COMPONENT_NAME$L;
|
|
13242
13242
|
ImageBlock.className = CLASSNAME$M;
|
|
13243
|
-
ImageBlock.defaultProps = DEFAULT_PROPS$
|
|
13243
|
+
ImageBlock.defaultProps = DEFAULT_PROPS$G;
|
|
13244
13244
|
|
|
13245
13245
|
/**
|
|
13246
13246
|
* Component display name.
|
|
@@ -13994,7 +13994,7 @@ const {
|
|
|
13994
13994
|
/**
|
|
13995
13995
|
* Component default props.
|
|
13996
13996
|
*/
|
|
13997
|
-
const DEFAULT_PROPS$
|
|
13997
|
+
const DEFAULT_PROPS$F = {};
|
|
13998
13998
|
|
|
13999
13999
|
/**
|
|
14000
14000
|
* InlineList component.
|
|
@@ -14043,7 +14043,7 @@ const InlineList$1 = props => {
|
|
|
14043
14043
|
};
|
|
14044
14044
|
InlineList$1.displayName = COMPONENT_NAME$J;
|
|
14045
14045
|
InlineList$1.className = CLASSNAME$K;
|
|
14046
|
-
InlineList$1.defaultProps = DEFAULT_PROPS$
|
|
14046
|
+
InlineList$1.defaultProps = DEFAULT_PROPS$F;
|
|
14047
14047
|
|
|
14048
14048
|
/**
|
|
14049
14049
|
* Defines the props of the component.
|
|
@@ -14069,7 +14069,7 @@ const InlineList = forwardRef((props, ref) => {
|
|
|
14069
14069
|
});
|
|
14070
14070
|
InlineList.displayName = COMPONENT_NAME$J;
|
|
14071
14071
|
InlineList.className = CLASSNAME$K;
|
|
14072
|
-
InlineList.defaultProps = DEFAULT_PROPS$
|
|
14072
|
+
InlineList.defaultProps = DEFAULT_PROPS$F;
|
|
14073
14073
|
|
|
14074
14074
|
/**
|
|
14075
14075
|
* InputHelper component.
|
|
@@ -14428,7 +14428,7 @@ const {
|
|
|
14428
14428
|
/**
|
|
14429
14429
|
* Component default props.
|
|
14430
14430
|
*/
|
|
14431
|
-
const DEFAULT_PROPS$
|
|
14431
|
+
const DEFAULT_PROPS$E = {
|
|
14432
14432
|
size: Size.regular,
|
|
14433
14433
|
titleHeading: 'h2'
|
|
14434
14434
|
};
|
|
@@ -14447,7 +14447,7 @@ const LinkPreview$1 = props => {
|
|
|
14447
14447
|
link,
|
|
14448
14448
|
linkAs,
|
|
14449
14449
|
linkProps,
|
|
14450
|
-
size = DEFAULT_PROPS$
|
|
14450
|
+
size = DEFAULT_PROPS$E.size,
|
|
14451
14451
|
theme,
|
|
14452
14452
|
thumbnailProps,
|
|
14453
14453
|
ref,
|
|
@@ -14535,7 +14535,7 @@ const LinkPreview = forwardRef((props, ref) => {
|
|
|
14535
14535
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
14536
14536
|
const {
|
|
14537
14537
|
theme = defaultTheme,
|
|
14538
|
-
titleHeading = DEFAULT_PROPS$
|
|
14538
|
+
titleHeading = DEFAULT_PROPS$E.titleHeading,
|
|
14539
14539
|
...forwardedProps
|
|
14540
14540
|
} = props;
|
|
14541
14541
|
// Use title heading as title wrapper (see DEFAULT_PROPS for the default value).
|
|
@@ -14551,7 +14551,7 @@ const LinkPreview = forwardRef((props, ref) => {
|
|
|
14551
14551
|
});
|
|
14552
14552
|
LinkPreview.displayName = COMPONENT_NAME$G;
|
|
14553
14553
|
LinkPreview.className = CLASSNAME$H;
|
|
14554
|
-
LinkPreview.defaultProps = DEFAULT_PROPS$
|
|
14554
|
+
LinkPreview.defaultProps = DEFAULT_PROPS$E;
|
|
14555
14555
|
|
|
14556
14556
|
/**
|
|
14557
14557
|
* ListItem.Action props.
|
|
@@ -14584,7 +14584,7 @@ const ListItemAction = Object.assign(forwardRefPolymorphic((props, ref) => {
|
|
|
14584
14584
|
}), {
|
|
14585
14585
|
displayName: COMPONENT_NAME$1b,
|
|
14586
14586
|
className: CLASSNAME$1a,
|
|
14587
|
-
defaultProps: DEFAULT_PROPS$
|
|
14587
|
+
defaultProps: DEFAULT_PROPS$X
|
|
14588
14588
|
});
|
|
14589
14589
|
|
|
14590
14590
|
/**
|
|
@@ -14624,7 +14624,7 @@ const _ListItem = forwardRef((props, ref) => {
|
|
|
14624
14624
|
});
|
|
14625
14625
|
_ListItem.displayName = COMPONENT_NAME$1c;
|
|
14626
14626
|
_ListItem.className = CLASSNAME$1b;
|
|
14627
|
-
_ListItem.defaultProps = DEFAULT_PROPS$
|
|
14627
|
+
_ListItem.defaultProps = DEFAULT_PROPS$Y;
|
|
14628
14628
|
|
|
14629
14629
|
/**
|
|
14630
14630
|
* ListItem component with Action sub-component.
|
|
@@ -14790,7 +14790,7 @@ const {
|
|
|
14790
14790
|
/**
|
|
14791
14791
|
* Component default props.
|
|
14792
14792
|
*/
|
|
14793
|
-
const DEFAULT_PROPS$
|
|
14793
|
+
const DEFAULT_PROPS$D = {};
|
|
14794
14794
|
|
|
14795
14795
|
/**
|
|
14796
14796
|
* Mosaic component.
|
|
@@ -14885,7 +14885,7 @@ const Mosaic = forwardRef((props, ref) => {
|
|
|
14885
14885
|
});
|
|
14886
14886
|
Mosaic.displayName = COMPONENT_NAME$D;
|
|
14887
14887
|
Mosaic.className = CLASSNAME$E;
|
|
14888
|
-
Mosaic.defaultProps = DEFAULT_PROPS$
|
|
14888
|
+
Mosaic.defaultProps = DEFAULT_PROPS$D;
|
|
14889
14889
|
|
|
14890
14890
|
const NavigationContext = /*#__PURE__*/createContext({
|
|
14891
14891
|
orientation: Orientation$1.vertical
|
|
@@ -15083,7 +15083,7 @@ const {
|
|
|
15083
15083
|
/**
|
|
15084
15084
|
* Component default props
|
|
15085
15085
|
*/
|
|
15086
|
-
const DEFAULT_PROPS$
|
|
15086
|
+
const DEFAULT_PROPS$C = {
|
|
15087
15087
|
orientation: Orientation$1.vertical
|
|
15088
15088
|
};
|
|
15089
15089
|
const Navigation = forwardRef((props, ref) => {
|
|
@@ -15092,7 +15092,7 @@ const Navigation = forwardRef((props, ref) => {
|
|
|
15092
15092
|
children,
|
|
15093
15093
|
className,
|
|
15094
15094
|
theme = defaultTheme,
|
|
15095
|
-
orientation = DEFAULT_PROPS$
|
|
15095
|
+
orientation = DEFAULT_PROPS$C.orientation,
|
|
15096
15096
|
...forwardedProps
|
|
15097
15097
|
} = props;
|
|
15098
15098
|
return /*#__PURE__*/jsx(ThemeProvider, {
|
|
@@ -15118,7 +15118,7 @@ const Navigation = forwardRef((props, ref) => {
|
|
|
15118
15118
|
});
|
|
15119
15119
|
Navigation.displayName = COMPONENT_NAME$B;
|
|
15120
15120
|
Navigation.className = CLASSNAME$C;
|
|
15121
|
-
Navigation.defaultProps = DEFAULT_PROPS$
|
|
15121
|
+
Navigation.defaultProps = DEFAULT_PROPS$C;
|
|
15122
15122
|
|
|
15123
15123
|
// Sub components
|
|
15124
15124
|
Navigation.Section = NavigationSection;
|
|
@@ -15163,7 +15163,7 @@ const {
|
|
|
15163
15163
|
/**
|
|
15164
15164
|
* Component default props.
|
|
15165
15165
|
*/
|
|
15166
|
-
const DEFAULT_PROPS$
|
|
15166
|
+
const DEFAULT_PROPS$B = {
|
|
15167
15167
|
zIndex: 9999,
|
|
15168
15168
|
usePortal: true
|
|
15169
15169
|
};
|
|
@@ -15187,8 +15187,8 @@ const Notification = forwardRef((props, ref) => {
|
|
|
15187
15187
|
onClick,
|
|
15188
15188
|
theme = defaultTheme,
|
|
15189
15189
|
type,
|
|
15190
|
-
zIndex = DEFAULT_PROPS$
|
|
15191
|
-
usePortal = DEFAULT_PROPS$
|
|
15190
|
+
zIndex = DEFAULT_PROPS$B.zIndex,
|
|
15191
|
+
usePortal = DEFAULT_PROPS$B.usePortal,
|
|
15192
15192
|
style,
|
|
15193
15193
|
...forwardedProps
|
|
15194
15194
|
} = props;
|
|
@@ -15253,7 +15253,7 @@ const Notification = forwardRef((props, ref) => {
|
|
|
15253
15253
|
});
|
|
15254
15254
|
Notification.displayName = COMPONENT_NAME$A;
|
|
15255
15255
|
Notification.className = CLASSNAME$B;
|
|
15256
|
-
Notification.defaultProps = DEFAULT_PROPS$
|
|
15256
|
+
Notification.defaultProps = DEFAULT_PROPS$B;
|
|
15257
15257
|
|
|
15258
15258
|
/**
|
|
15259
15259
|
* PopoverDialog props.
|
|
@@ -15273,7 +15273,7 @@ const CLASSNAME$A = 'lumx-popover-dialog';
|
|
|
15273
15273
|
/**
|
|
15274
15274
|
* Component default props.
|
|
15275
15275
|
*/
|
|
15276
|
-
const DEFAULT_PROPS$
|
|
15276
|
+
const DEFAULT_PROPS$A = {};
|
|
15277
15277
|
|
|
15278
15278
|
/**
|
|
15279
15279
|
* PopoverDialog component.
|
|
@@ -15313,7 +15313,7 @@ const PopoverDialog = forwardRef((props, ref) => {
|
|
|
15313
15313
|
});
|
|
15314
15314
|
PopoverDialog.displayName = COMPONENT_NAME$z;
|
|
15315
15315
|
PopoverDialog.className = CLASSNAME$A;
|
|
15316
|
-
PopoverDialog.defaultProps = DEFAULT_PROPS$
|
|
15316
|
+
PopoverDialog.defaultProps = DEFAULT_PROPS$A;
|
|
15317
15317
|
|
|
15318
15318
|
/**
|
|
15319
15319
|
* Component display name.
|
|
@@ -15332,7 +15332,7 @@ const {
|
|
|
15332
15332
|
/**
|
|
15333
15333
|
* Component default props.
|
|
15334
15334
|
*/
|
|
15335
|
-
const DEFAULT_PROPS$
|
|
15335
|
+
const DEFAULT_PROPS$z = {
|
|
15336
15336
|
orientation: Orientation$1.horizontal
|
|
15337
15337
|
};
|
|
15338
15338
|
|
|
@@ -15352,7 +15352,7 @@ const PostBlock = forwardRef((props, ref) => {
|
|
|
15352
15352
|
className,
|
|
15353
15353
|
meta,
|
|
15354
15354
|
onClick,
|
|
15355
|
-
orientation = DEFAULT_PROPS$
|
|
15355
|
+
orientation = DEFAULT_PROPS$z.orientation,
|
|
15356
15356
|
tags,
|
|
15357
15357
|
text,
|
|
15358
15358
|
theme = defaultTheme,
|
|
@@ -15414,7 +15414,7 @@ const PostBlock = forwardRef((props, ref) => {
|
|
|
15414
15414
|
});
|
|
15415
15415
|
PostBlock.displayName = COMPONENT_NAME$y;
|
|
15416
15416
|
PostBlock.className = CLASSNAME$z;
|
|
15417
|
-
PostBlock.defaultProps = DEFAULT_PROPS$
|
|
15417
|
+
PostBlock.defaultProps = DEFAULT_PROPS$z;
|
|
15418
15418
|
|
|
15419
15419
|
/**
|
|
15420
15420
|
* Component display name.
|
|
@@ -15433,7 +15433,7 @@ const {
|
|
|
15433
15433
|
/**
|
|
15434
15434
|
* Component default props.
|
|
15435
15435
|
*/
|
|
15436
|
-
const DEFAULT_PROPS$
|
|
15436
|
+
const DEFAULT_PROPS$y = {};
|
|
15437
15437
|
|
|
15438
15438
|
/**
|
|
15439
15439
|
* ProgressLinear component.
|
|
@@ -15487,7 +15487,7 @@ const ProgressLinear = forwardRef((props, ref) => {
|
|
|
15487
15487
|
});
|
|
15488
15488
|
ProgressLinear.displayName = COMPONENT_NAME$x;
|
|
15489
15489
|
ProgressLinear.className = CLASSNAME$y;
|
|
15490
|
-
ProgressLinear.defaultProps = DEFAULT_PROPS$
|
|
15490
|
+
ProgressLinear.defaultProps = DEFAULT_PROPS$y;
|
|
15491
15491
|
|
|
15492
15492
|
/* eslint-disable react/no-unknown-property */
|
|
15493
15493
|
|
|
@@ -15508,7 +15508,7 @@ const {
|
|
|
15508
15508
|
/**
|
|
15509
15509
|
* Component default props.
|
|
15510
15510
|
*/
|
|
15511
|
-
const DEFAULT_PROPS$
|
|
15511
|
+
const DEFAULT_PROPS$x = {
|
|
15512
15512
|
size: Size.m,
|
|
15513
15513
|
display: 'block'
|
|
15514
15514
|
};
|
|
@@ -15523,8 +15523,8 @@ const ProgressCircular$1 = props => {
|
|
|
15523
15523
|
const {
|
|
15524
15524
|
className,
|
|
15525
15525
|
theme,
|
|
15526
|
-
size = DEFAULT_PROPS$
|
|
15527
|
-
display = DEFAULT_PROPS$
|
|
15526
|
+
size = DEFAULT_PROPS$x.size,
|
|
15527
|
+
display = DEFAULT_PROPS$x.display,
|
|
15528
15528
|
ref,
|
|
15529
15529
|
circleProps,
|
|
15530
15530
|
svgProps,
|
|
@@ -15589,7 +15589,7 @@ const ProgressCircular = forwardRef((props, ref) => {
|
|
|
15589
15589
|
});
|
|
15590
15590
|
ProgressCircular.displayName = COMPONENT_NAME$w;
|
|
15591
15591
|
ProgressCircular.className = CLASSNAME$x;
|
|
15592
|
-
ProgressCircular.defaultProps = DEFAULT_PROPS$
|
|
15592
|
+
ProgressCircular.defaultProps = DEFAULT_PROPS$x;
|
|
15593
15593
|
|
|
15594
15594
|
const ProgressVariant = {
|
|
15595
15595
|
linear: 'linear',
|
|
@@ -15616,7 +15616,7 @@ const {
|
|
|
15616
15616
|
/**
|
|
15617
15617
|
* Component default props.
|
|
15618
15618
|
*/
|
|
15619
|
-
const DEFAULT_PROPS$
|
|
15619
|
+
const DEFAULT_PROPS$w = {
|
|
15620
15620
|
variant: ProgressVariant.circular
|
|
15621
15621
|
};
|
|
15622
15622
|
|
|
@@ -15633,7 +15633,7 @@ const Progress = forwardRef((props, ref) => {
|
|
|
15633
15633
|
const {
|
|
15634
15634
|
className,
|
|
15635
15635
|
theme = defaultTheme,
|
|
15636
|
-
variant = DEFAULT_PROPS$
|
|
15636
|
+
variant = DEFAULT_PROPS$w.variant,
|
|
15637
15637
|
...forwardedProps
|
|
15638
15638
|
} = props;
|
|
15639
15639
|
return /*#__PURE__*/jsxs("div", {
|
|
@@ -15652,7 +15652,7 @@ const Progress = forwardRef((props, ref) => {
|
|
|
15652
15652
|
});
|
|
15653
15653
|
Progress.displayName = COMPONENT_NAME$v;
|
|
15654
15654
|
Progress.className = CLASSNAME$w;
|
|
15655
|
-
Progress.defaultProps = DEFAULT_PROPS$
|
|
15655
|
+
Progress.defaultProps = DEFAULT_PROPS$w;
|
|
15656
15656
|
|
|
15657
15657
|
const INIT_STATE = {
|
|
15658
15658
|
isLazy: true,
|
|
@@ -15778,7 +15778,7 @@ const useTabProviderContextState = () => {
|
|
|
15778
15778
|
return context?.[0];
|
|
15779
15779
|
};
|
|
15780
15780
|
|
|
15781
|
-
const DEFAULT_PROPS$
|
|
15781
|
+
const DEFAULT_PROPS$v = {
|
|
15782
15782
|
isLazy: INIT_STATE.isLazy,
|
|
15783
15783
|
shouldActivateOnFocus: INIT_STATE.shouldActivateOnFocus
|
|
15784
15784
|
};
|
|
@@ -15807,7 +15807,7 @@ const ProgressTrackerProvider = props => {
|
|
|
15807
15807
|
dispatch({
|
|
15808
15808
|
type: 'update',
|
|
15809
15809
|
payload: {
|
|
15810
|
-
...DEFAULT_PROPS$
|
|
15810
|
+
...DEFAULT_PROPS$v,
|
|
15811
15811
|
...propState,
|
|
15812
15812
|
activeTabIndex: propState.activeStepIndex || INIT_STATE.activeTabIndex
|
|
15813
15813
|
}
|
|
@@ -15830,7 +15830,7 @@ const ProgressTrackerProvider = props => {
|
|
|
15830
15830
|
children: children
|
|
15831
15831
|
});
|
|
15832
15832
|
};
|
|
15833
|
-
ProgressTrackerProvider.defaultProps = DEFAULT_PROPS$
|
|
15833
|
+
ProgressTrackerProvider.defaultProps = DEFAULT_PROPS$v;
|
|
15834
15834
|
|
|
15835
15835
|
/**
|
|
15836
15836
|
* Component display name.
|
|
@@ -15849,7 +15849,7 @@ const {
|
|
|
15849
15849
|
/**
|
|
15850
15850
|
* Component default props.
|
|
15851
15851
|
*/
|
|
15852
|
-
const DEFAULT_PROPS$
|
|
15852
|
+
const DEFAULT_PROPS$u = {};
|
|
15853
15853
|
|
|
15854
15854
|
/**
|
|
15855
15855
|
* ProgressTracker component.
|
|
@@ -15903,7 +15903,7 @@ const ProgressTracker = forwardRef((props, ref) => {
|
|
|
15903
15903
|
});
|
|
15904
15904
|
ProgressTracker.displayName = COMPONENT_NAME$u;
|
|
15905
15905
|
ProgressTracker.className = CLASSNAME$v;
|
|
15906
|
-
ProgressTracker.defaultProps = DEFAULT_PROPS$
|
|
15906
|
+
ProgressTracker.defaultProps = DEFAULT_PROPS$u;
|
|
15907
15907
|
|
|
15908
15908
|
/**
|
|
15909
15909
|
* Component display name.
|
|
@@ -15922,7 +15922,7 @@ const {
|
|
|
15922
15922
|
/**
|
|
15923
15923
|
* Component default props.
|
|
15924
15924
|
*/
|
|
15925
|
-
const DEFAULT_PROPS$
|
|
15925
|
+
const DEFAULT_PROPS$t = {};
|
|
15926
15926
|
|
|
15927
15927
|
/**
|
|
15928
15928
|
* ProgressTrackerStep component.
|
|
@@ -16017,7 +16017,7 @@ const ProgressTrackerStep = forwardRef((props, ref) => {
|
|
|
16017
16017
|
});
|
|
16018
16018
|
ProgressTrackerStep.displayName = COMPONENT_NAME$t;
|
|
16019
16019
|
ProgressTrackerStep.className = CLASSNAME$u;
|
|
16020
|
-
ProgressTrackerStep.defaultProps = DEFAULT_PROPS$
|
|
16020
|
+
ProgressTrackerStep.defaultProps = DEFAULT_PROPS$t;
|
|
16021
16021
|
|
|
16022
16022
|
/**
|
|
16023
16023
|
* Component display name.
|
|
@@ -16035,7 +16035,7 @@ const {
|
|
|
16035
16035
|
/**
|
|
16036
16036
|
* Component default props.
|
|
16037
16037
|
*/
|
|
16038
|
-
const DEFAULT_PROPS$
|
|
16038
|
+
const DEFAULT_PROPS$s = {};
|
|
16039
16039
|
|
|
16040
16040
|
/**
|
|
16041
16041
|
* ProgressTrackerStepPanel component.
|
|
@@ -16071,7 +16071,7 @@ const ProgressTrackerStepPanel = forwardRef((props, ref) => {
|
|
|
16071
16071
|
});
|
|
16072
16072
|
ProgressTrackerStepPanel.displayName = COMPONENT_NAME$s;
|
|
16073
16073
|
ProgressTrackerStepPanel.className = CLASSNAME$t;
|
|
16074
|
-
ProgressTrackerStepPanel.defaultProps = DEFAULT_PROPS$
|
|
16074
|
+
ProgressTrackerStepPanel.defaultProps = DEFAULT_PROPS$s;
|
|
16075
16075
|
|
|
16076
16076
|
/**
|
|
16077
16077
|
* Component display name.
|
|
@@ -16174,7 +16174,7 @@ const RadioButton$1 = props => {
|
|
|
16174
16174
|
/**
|
|
16175
16175
|
* Component default props.
|
|
16176
16176
|
*/
|
|
16177
|
-
const DEFAULT_PROPS$
|
|
16177
|
+
const DEFAULT_PROPS$r = {};
|
|
16178
16178
|
|
|
16179
16179
|
/**
|
|
16180
16180
|
* RadioButton component.
|
|
@@ -16230,7 +16230,7 @@ const RadioButton = forwardRef((props, ref) => {
|
|
|
16230
16230
|
});
|
|
16231
16231
|
RadioButton.displayName = COMPONENT_NAME$r;
|
|
16232
16232
|
RadioButton.className = CLASSNAME$s;
|
|
16233
|
-
RadioButton.defaultProps = DEFAULT_PROPS$
|
|
16233
|
+
RadioButton.defaultProps = DEFAULT_PROPS$r;
|
|
16234
16234
|
|
|
16235
16235
|
/**
|
|
16236
16236
|
* Component display name.
|
|
@@ -16245,7 +16245,7 @@ const CLASSNAME$r = 'lumx-radio-group';
|
|
|
16245
16245
|
/**
|
|
16246
16246
|
* Component default props.
|
|
16247
16247
|
*/
|
|
16248
|
-
const DEFAULT_PROPS$
|
|
16248
|
+
const DEFAULT_PROPS$q = {};
|
|
16249
16249
|
|
|
16250
16250
|
/**
|
|
16251
16251
|
* RadioGroup component.
|
|
@@ -16269,7 +16269,7 @@ const RadioGroup$1 = props => {
|
|
|
16269
16269
|
};
|
|
16270
16270
|
RadioGroup$1.displayName = COMPONENT_NAME$q;
|
|
16271
16271
|
RadioGroup$1.className = CLASSNAME$r;
|
|
16272
|
-
RadioGroup$1.defaultProps = DEFAULT_PROPS$
|
|
16272
|
+
RadioGroup$1.defaultProps = DEFAULT_PROPS$q;
|
|
16273
16273
|
|
|
16274
16274
|
/**
|
|
16275
16275
|
* Defines the props of the component.
|
|
@@ -16453,7 +16453,7 @@ const {
|
|
|
16453
16453
|
} = classNames.bem(CLASSNAME$p);
|
|
16454
16454
|
|
|
16455
16455
|
/** The default value of props. */
|
|
16456
|
-
const DEFAULT_PROPS$
|
|
16456
|
+
const DEFAULT_PROPS$p = {
|
|
16457
16457
|
selectedValueRender: choice => choice,
|
|
16458
16458
|
variant: SelectVariant.input
|
|
16459
16459
|
};
|
|
@@ -16577,7 +16577,7 @@ const Select = forwardRef((props, ref) => {
|
|
|
16577
16577
|
const isEmpty$1 = isEmpty(props.value);
|
|
16578
16578
|
const hasInputClear = props.onClear && props.clearButtonProps && !isEmpty$1;
|
|
16579
16579
|
return WithSelectContext(SelectField, {
|
|
16580
|
-
...DEFAULT_PROPS$
|
|
16580
|
+
...DEFAULT_PROPS$p,
|
|
16581
16581
|
...props,
|
|
16582
16582
|
className: classNames.join(props.className, block$j({
|
|
16583
16583
|
'has-input-clear': hasInputClear,
|
|
@@ -16589,7 +16589,7 @@ const Select = forwardRef((props, ref) => {
|
|
|
16589
16589
|
});
|
|
16590
16590
|
Select.displayName = COMPONENT_NAME$p;
|
|
16591
16591
|
Select.className = CLASSNAME$p;
|
|
16592
|
-
Select.defaultProps = DEFAULT_PROPS$
|
|
16592
|
+
Select.defaultProps = DEFAULT_PROPS$p;
|
|
16593
16593
|
Select.className = CLASSNAME$p;
|
|
16594
16594
|
|
|
16595
16595
|
/** The display name of the component. */
|
|
@@ -16603,7 +16603,7 @@ const {
|
|
|
16603
16603
|
} = classNames.bem(CLASSNAME$o);
|
|
16604
16604
|
|
|
16605
16605
|
/** The default value of props. */
|
|
16606
|
-
const DEFAULT_PROPS$
|
|
16606
|
+
const DEFAULT_PROPS$o = {
|
|
16607
16607
|
selectedChipRender(choice, index, onClear, isDisabled, theme) {
|
|
16608
16608
|
const onClick = event => onClear && onClear(event, choice);
|
|
16609
16609
|
return /*#__PURE__*/jsx(Chip, {
|
|
@@ -16732,7 +16732,7 @@ const SelectMultipleField = props => {
|
|
|
16732
16732
|
*/
|
|
16733
16733
|
const SelectMultiple = forwardRef((props, ref) => {
|
|
16734
16734
|
return WithSelectContext(SelectMultipleField, {
|
|
16735
|
-
...DEFAULT_PROPS$
|
|
16735
|
+
...DEFAULT_PROPS$o,
|
|
16736
16736
|
...props,
|
|
16737
16737
|
className: classNames.join(props.className, block$i({
|
|
16738
16738
|
'has-multiple': !props.isEmpty
|
|
@@ -16743,7 +16743,7 @@ const SelectMultiple = forwardRef((props, ref) => {
|
|
|
16743
16743
|
});
|
|
16744
16744
|
SelectMultiple.displayName = COMPONENT_NAME$o;
|
|
16745
16745
|
SelectMultiple.className = CLASSNAME$o;
|
|
16746
|
-
SelectMultiple.defaultProps = DEFAULT_PROPS$
|
|
16746
|
+
SelectMultiple.defaultProps = DEFAULT_PROPS$o;
|
|
16747
16747
|
|
|
16748
16748
|
/**
|
|
16749
16749
|
* Find the option whose id matches the given value.
|
|
@@ -17587,7 +17587,7 @@ const {
|
|
|
17587
17587
|
/**
|
|
17588
17588
|
* Component default props.
|
|
17589
17589
|
*/
|
|
17590
|
-
const DEFAULT_PROPS$
|
|
17590
|
+
const DEFAULT_PROPS$n = {
|
|
17591
17591
|
emphasis: Emphasis$1.high,
|
|
17592
17592
|
closeMode: 'unmount'
|
|
17593
17593
|
};
|
|
@@ -17603,7 +17603,7 @@ const SideNavigationItem = forwardRef((props, ref) => {
|
|
|
17603
17603
|
const {
|
|
17604
17604
|
children,
|
|
17605
17605
|
className,
|
|
17606
|
-
emphasis = DEFAULT_PROPS$
|
|
17606
|
+
emphasis = DEFAULT_PROPS$n.emphasis,
|
|
17607
17607
|
icon,
|
|
17608
17608
|
isOpen,
|
|
17609
17609
|
isSelected,
|
|
@@ -17613,7 +17613,7 @@ const SideNavigationItem = forwardRef((props, ref) => {
|
|
|
17613
17613
|
onActionClick,
|
|
17614
17614
|
onClick,
|
|
17615
17615
|
toggleButtonProps,
|
|
17616
|
-
closeMode = DEFAULT_PROPS$
|
|
17616
|
+
closeMode = DEFAULT_PROPS$n.closeMode,
|
|
17617
17617
|
...forwardedProps
|
|
17618
17618
|
} = props;
|
|
17619
17619
|
const content = children && Children.toArray(children).filter(isComponent(SideNavigationItem));
|
|
@@ -17690,7 +17690,7 @@ const SideNavigationItem = forwardRef((props, ref) => {
|
|
|
17690
17690
|
});
|
|
17691
17691
|
SideNavigationItem.displayName = COMPONENT_NAME$k;
|
|
17692
17692
|
SideNavigationItem.className = CLASSNAME$k;
|
|
17693
|
-
SideNavigationItem.defaultProps = DEFAULT_PROPS$
|
|
17693
|
+
SideNavigationItem.defaultProps = DEFAULT_PROPS$n;
|
|
17694
17694
|
|
|
17695
17695
|
/**
|
|
17696
17696
|
* Component display name.
|
|
@@ -17761,7 +17761,7 @@ const {
|
|
|
17761
17761
|
/**
|
|
17762
17762
|
* Component default props.
|
|
17763
17763
|
*/
|
|
17764
|
-
const DEFAULT_PROPS$
|
|
17764
|
+
const DEFAULT_PROPS$m = {
|
|
17765
17765
|
variant: SkeletonRectangleVariant.squared
|
|
17766
17766
|
};
|
|
17767
17767
|
|
|
@@ -17777,7 +17777,7 @@ const SkeletonRectangle$1 = props => {
|
|
|
17777
17777
|
className,
|
|
17778
17778
|
height,
|
|
17779
17779
|
theme,
|
|
17780
|
-
variant = DEFAULT_PROPS$
|
|
17780
|
+
variant = DEFAULT_PROPS$m.variant,
|
|
17781
17781
|
width,
|
|
17782
17782
|
color,
|
|
17783
17783
|
ref,
|
|
@@ -17804,7 +17804,7 @@ const SkeletonRectangle$1 = props => {
|
|
|
17804
17804
|
* Defines the props of the component.
|
|
17805
17805
|
*/
|
|
17806
17806
|
|
|
17807
|
-
const DEFAULT_PROPS$
|
|
17807
|
+
const DEFAULT_PROPS$l = {};
|
|
17808
17808
|
|
|
17809
17809
|
/**
|
|
17810
17810
|
* SkeletonCircle component.
|
|
@@ -17832,14 +17832,14 @@ const SkeletonCircle = forwardRef((props, ref) => {
|
|
|
17832
17832
|
});
|
|
17833
17833
|
});
|
|
17834
17834
|
SkeletonCircle.displayName = COMPONENT_NAME$j;
|
|
17835
|
-
SkeletonCircle.defaultProps = DEFAULT_PROPS$
|
|
17835
|
+
SkeletonCircle.defaultProps = DEFAULT_PROPS$l;
|
|
17836
17836
|
SkeletonCircle.className = CLASSNAME$j;
|
|
17837
17837
|
|
|
17838
17838
|
/**
|
|
17839
17839
|
* Defines the props of the component.
|
|
17840
17840
|
*/
|
|
17841
17841
|
|
|
17842
|
-
const DEFAULT_PROPS$
|
|
17842
|
+
const DEFAULT_PROPS$k = DEFAULT_PROPS$m;
|
|
17843
17843
|
|
|
17844
17844
|
/**
|
|
17845
17845
|
* SkeletonRectangle component.
|
|
@@ -17855,7 +17855,7 @@ const SkeletonRectangle = forwardRef((props, ref) => {
|
|
|
17855
17855
|
className,
|
|
17856
17856
|
height,
|
|
17857
17857
|
theme = defaultTheme,
|
|
17858
|
-
variant = DEFAULT_PROPS$
|
|
17858
|
+
variant = DEFAULT_PROPS$k.variant,
|
|
17859
17859
|
width,
|
|
17860
17860
|
color,
|
|
17861
17861
|
...forwardedProps
|
|
@@ -17874,13 +17874,13 @@ const SkeletonRectangle = forwardRef((props, ref) => {
|
|
|
17874
17874
|
});
|
|
17875
17875
|
SkeletonRectangle.displayName = COMPONENT_NAME$i;
|
|
17876
17876
|
SkeletonRectangle.className = CLASSNAME$i;
|
|
17877
|
-
SkeletonRectangle.defaultProps = DEFAULT_PROPS$
|
|
17877
|
+
SkeletonRectangle.defaultProps = DEFAULT_PROPS$k;
|
|
17878
17878
|
|
|
17879
17879
|
/**
|
|
17880
17880
|
* Defines the props of the component.
|
|
17881
17881
|
*/
|
|
17882
17882
|
|
|
17883
|
-
const DEFAULT_PROPS$
|
|
17883
|
+
const DEFAULT_PROPS$j = {};
|
|
17884
17884
|
|
|
17885
17885
|
/**
|
|
17886
17886
|
* SkeletonTypography component.
|
|
@@ -17910,7 +17910,7 @@ const SkeletonTypography = forwardRef((props, ref) => {
|
|
|
17910
17910
|
});
|
|
17911
17911
|
});
|
|
17912
17912
|
SkeletonTypography.displayName = COMPONENT_NAME$16;
|
|
17913
|
-
SkeletonTypography.defaultProps = DEFAULT_PROPS$
|
|
17913
|
+
SkeletonTypography.defaultProps = DEFAULT_PROPS$j;
|
|
17914
17914
|
SkeletonTypography.className = CLASSNAME$15;
|
|
17915
17915
|
|
|
17916
17916
|
/**
|
|
@@ -17949,7 +17949,7 @@ const {
|
|
|
17949
17949
|
/**
|
|
17950
17950
|
* Component default props.
|
|
17951
17951
|
*/
|
|
17952
|
-
const DEFAULT_PROPS$
|
|
17952
|
+
const DEFAULT_PROPS$i = {
|
|
17953
17953
|
precision: 0,
|
|
17954
17954
|
steps: 0
|
|
17955
17955
|
};
|
|
@@ -18000,8 +18000,8 @@ const Slider = forwardRef((props, ref) => {
|
|
|
18000
18000
|
name,
|
|
18001
18001
|
onChange,
|
|
18002
18002
|
onMouseDown,
|
|
18003
|
-
precision = DEFAULT_PROPS$
|
|
18004
|
-
steps = DEFAULT_PROPS$
|
|
18003
|
+
precision = DEFAULT_PROPS$i.precision,
|
|
18004
|
+
steps = DEFAULT_PROPS$i.steps,
|
|
18005
18005
|
theme = defaultTheme,
|
|
18006
18006
|
value,
|
|
18007
18007
|
...forwardedProps
|
|
@@ -18204,7 +18204,7 @@ const Slider = forwardRef((props, ref) => {
|
|
|
18204
18204
|
});
|
|
18205
18205
|
Slider.displayName = COMPONENT_NAME$h;
|
|
18206
18206
|
Slider.className = CLASSNAME$h;
|
|
18207
|
-
Slider.defaultProps = DEFAULT_PROPS$
|
|
18207
|
+
Slider.defaultProps = DEFAULT_PROPS$i;
|
|
18208
18208
|
|
|
18209
18209
|
/**
|
|
18210
18210
|
* Making setInterval Declarative with React Hooks.
|
|
@@ -18582,7 +18582,7 @@ SlideshowItemGroup.className = CLASSNAME$g;
|
|
|
18582
18582
|
/**
|
|
18583
18583
|
* Component default props.
|
|
18584
18584
|
*/
|
|
18585
|
-
const DEFAULT_PROPS$
|
|
18585
|
+
const DEFAULT_PROPS$h = {
|
|
18586
18586
|
...DEFAULT_OPTIONS,
|
|
18587
18587
|
slideMode: SlideMode.transformTranslate
|
|
18588
18588
|
};
|
|
@@ -18598,19 +18598,19 @@ const Slideshow = forwardRef((props, ref) => {
|
|
|
18598
18598
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
18599
18599
|
const {
|
|
18600
18600
|
activeIndex,
|
|
18601
|
-
autoPlay = DEFAULT_PROPS$
|
|
18601
|
+
autoPlay = DEFAULT_PROPS$h.autoPlay,
|
|
18602
18602
|
children,
|
|
18603
18603
|
className,
|
|
18604
18604
|
fillHeight,
|
|
18605
18605
|
groupBy = DEFAULT_OPTIONS.groupBy,
|
|
18606
|
-
interval = DEFAULT_PROPS$
|
|
18606
|
+
interval = DEFAULT_PROPS$h.interval,
|
|
18607
18607
|
onChange,
|
|
18608
18608
|
slideshowControlsProps,
|
|
18609
18609
|
theme = defaultTheme,
|
|
18610
18610
|
id,
|
|
18611
18611
|
slidesId,
|
|
18612
18612
|
slideGroupLabel,
|
|
18613
|
-
slideMode = DEFAULT_PROPS$
|
|
18613
|
+
slideMode = DEFAULT_PROPS$h.slideMode,
|
|
18614
18614
|
...forwardedProps
|
|
18615
18615
|
} = props;
|
|
18616
18616
|
// Number of slideshow items.
|
|
@@ -18632,7 +18632,7 @@ const Slideshow = forwardRef((props, ref) => {
|
|
|
18632
18632
|
toggleForcePause
|
|
18633
18633
|
} = SlideshowControls.useSlideshowControls({
|
|
18634
18634
|
activeIndex,
|
|
18635
|
-
defaultActiveIndex: DEFAULT_PROPS$
|
|
18635
|
+
defaultActiveIndex: DEFAULT_PROPS$h.activeIndex,
|
|
18636
18636
|
autoPlay: Boolean(autoPlay),
|
|
18637
18637
|
itemsCount,
|
|
18638
18638
|
groupBy,
|
|
@@ -18702,7 +18702,7 @@ const Slideshow = forwardRef((props, ref) => {
|
|
|
18702
18702
|
});
|
|
18703
18703
|
});
|
|
18704
18704
|
Slideshow.displayName = 'Slideshow';
|
|
18705
|
-
Slideshow.defaultProps = DEFAULT_PROPS$
|
|
18705
|
+
Slideshow.defaultProps = DEFAULT_PROPS$h;
|
|
18706
18706
|
|
|
18707
18707
|
/**
|
|
18708
18708
|
* Component display name.
|
|
@@ -18811,7 +18811,7 @@ const {
|
|
|
18811
18811
|
/**
|
|
18812
18812
|
* Component default props.
|
|
18813
18813
|
*/
|
|
18814
|
-
const DEFAULT_PROPS$
|
|
18814
|
+
const DEFAULT_PROPS$g = {
|
|
18815
18815
|
activeIndex: 0
|
|
18816
18816
|
};
|
|
18817
18817
|
|
|
@@ -18825,7 +18825,7 @@ const DEFAULT_PROPS$f = {
|
|
|
18825
18825
|
const InternalSlideshowControls = forwardRef((props, ref) => {
|
|
18826
18826
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
18827
18827
|
const {
|
|
18828
|
-
activeIndex = DEFAULT_PROPS$
|
|
18828
|
+
activeIndex = DEFAULT_PROPS$g.activeIndex,
|
|
18829
18829
|
className,
|
|
18830
18830
|
nextButtonProps,
|
|
18831
18831
|
onNextClick,
|
|
@@ -18939,7 +18939,7 @@ const InternalSlideshowControls = forwardRef((props, ref) => {
|
|
|
18939
18939
|
});
|
|
18940
18940
|
InternalSlideshowControls.displayName = COMPONENT_NAME$e;
|
|
18941
18941
|
InternalSlideshowControls.className = CLASSNAME$e;
|
|
18942
|
-
InternalSlideshowControls.defaultProps = DEFAULT_PROPS$
|
|
18942
|
+
InternalSlideshowControls.defaultProps = DEFAULT_PROPS$g;
|
|
18943
18943
|
const SlideshowControls = Object.assign(InternalSlideshowControls, {
|
|
18944
18944
|
useSlideshowControls,
|
|
18945
18945
|
useSlideshowControlsDefaultOptions: DEFAULT_OPTIONS
|
|
@@ -19071,7 +19071,7 @@ const {
|
|
|
19071
19071
|
/**
|
|
19072
19072
|
* Component default props.
|
|
19073
19073
|
*/
|
|
19074
|
-
const DEFAULT_PROPS$
|
|
19074
|
+
const DEFAULT_PROPS$f = {
|
|
19075
19075
|
slideMode: SlideMode.transformTranslate
|
|
19076
19076
|
};
|
|
19077
19077
|
|
|
@@ -19098,7 +19098,7 @@ const Slides = forwardRef((props, ref) => {
|
|
|
19098
19098
|
afterSlides,
|
|
19099
19099
|
hasControls,
|
|
19100
19100
|
slideGroupLabel,
|
|
19101
|
-
slideMode = DEFAULT_PROPS$
|
|
19101
|
+
slideMode = DEFAULT_PROPS$f.slideMode,
|
|
19102
19102
|
onChange,
|
|
19103
19103
|
...forwardedProps
|
|
19104
19104
|
} = props;
|
|
@@ -19185,7 +19185,7 @@ const {
|
|
|
19185
19185
|
/**
|
|
19186
19186
|
* Component default props.
|
|
19187
19187
|
*/
|
|
19188
|
-
const DEFAULT_PROPS$
|
|
19188
|
+
const DEFAULT_PROPS$e = {
|
|
19189
19189
|
position: 'left'
|
|
19190
19190
|
};
|
|
19191
19191
|
|
|
@@ -19212,7 +19212,7 @@ const Switch$1 = props => {
|
|
|
19212
19212
|
inputProps = {},
|
|
19213
19213
|
isDisabled,
|
|
19214
19214
|
inputId,
|
|
19215
|
-
position = DEFAULT_PROPS$
|
|
19215
|
+
position = DEFAULT_PROPS$e.position,
|
|
19216
19216
|
...forwardedProps
|
|
19217
19217
|
} = props;
|
|
19218
19218
|
const handleOnChange = event => {
|
|
@@ -19280,7 +19280,7 @@ const Switch$1 = props => {
|
|
|
19280
19280
|
/**
|
|
19281
19281
|
* Component default props.
|
|
19282
19282
|
*/
|
|
19283
|
-
const DEFAULT_PROPS$
|
|
19283
|
+
const DEFAULT_PROPS$d = {
|
|
19284
19284
|
position: Alignment$1.left
|
|
19285
19285
|
};
|
|
19286
19286
|
|
|
@@ -19308,7 +19308,7 @@ const Switch = forwardRef((props, ref) => {
|
|
|
19308
19308
|
isChecked = checked,
|
|
19309
19309
|
name,
|
|
19310
19310
|
onChange,
|
|
19311
|
-
position = DEFAULT_PROPS$
|
|
19311
|
+
position = DEFAULT_PROPS$d.position,
|
|
19312
19312
|
theme = defaultTheme,
|
|
19313
19313
|
value,
|
|
19314
19314
|
inputProps = {},
|
|
@@ -19341,7 +19341,7 @@ const Switch = forwardRef((props, ref) => {
|
|
|
19341
19341
|
});
|
|
19342
19342
|
Switch.displayName = COMPONENT_NAME$c;
|
|
19343
19343
|
Switch.className = CLASSNAME$c;
|
|
19344
|
-
Switch.defaultProps = DEFAULT_PROPS$
|
|
19344
|
+
Switch.defaultProps = DEFAULT_PROPS$d;
|
|
19345
19345
|
|
|
19346
19346
|
/**
|
|
19347
19347
|
* Component display name.
|
|
@@ -19364,7 +19364,7 @@ const {
|
|
|
19364
19364
|
/**
|
|
19365
19365
|
* Component default props.
|
|
19366
19366
|
*/
|
|
19367
|
-
const DEFAULT_PROPS$
|
|
19367
|
+
const DEFAULT_PROPS$c = {};
|
|
19368
19368
|
|
|
19369
19369
|
/**
|
|
19370
19370
|
* Table component.
|
|
@@ -19421,7 +19421,7 @@ const Table = forwardRef((props, ref) => {
|
|
|
19421
19421
|
});
|
|
19422
19422
|
Table.displayName = COMPONENT_NAME$b;
|
|
19423
19423
|
Table.className = CLASSNAME$b;
|
|
19424
|
-
Table.defaultProps = DEFAULT_PROPS$
|
|
19424
|
+
Table.defaultProps = DEFAULT_PROPS$c;
|
|
19425
19425
|
|
|
19426
19426
|
/**
|
|
19427
19427
|
* Component display name.
|
|
@@ -19511,7 +19511,7 @@ const {
|
|
|
19511
19511
|
/**
|
|
19512
19512
|
* Component default props.
|
|
19513
19513
|
*/
|
|
19514
|
-
const DEFAULT_PROPS$
|
|
19514
|
+
const DEFAULT_PROPS$b = {
|
|
19515
19515
|
variant: TableCellVariant.body
|
|
19516
19516
|
};
|
|
19517
19517
|
|
|
@@ -19530,7 +19530,7 @@ const TableCell$1 = props => {
|
|
|
19530
19530
|
handleClick,
|
|
19531
19531
|
ref,
|
|
19532
19532
|
sortOrder,
|
|
19533
|
-
variant = DEFAULT_PROPS$
|
|
19533
|
+
variant = DEFAULT_PROPS$b.variant,
|
|
19534
19534
|
...forwardedProps
|
|
19535
19535
|
} = props;
|
|
19536
19536
|
|
|
@@ -19616,7 +19616,7 @@ const TableCell = forwardRef((props, ref) => {
|
|
|
19616
19616
|
});
|
|
19617
19617
|
TableCell.displayName = COMPONENT_NAME$9;
|
|
19618
19618
|
TableCell.className = CLASSNAME$9;
|
|
19619
|
-
TableCell.defaultProps = DEFAULT_PROPS$
|
|
19619
|
+
TableCell.defaultProps = DEFAULT_PROPS$b;
|
|
19620
19620
|
|
|
19621
19621
|
/**
|
|
19622
19622
|
* Component display name.
|
|
@@ -19631,7 +19631,7 @@ const CLASSNAME$8 = `${CLASSNAME$b}__header`;
|
|
|
19631
19631
|
/**
|
|
19632
19632
|
* Component default props.
|
|
19633
19633
|
*/
|
|
19634
|
-
const DEFAULT_PROPS$
|
|
19634
|
+
const DEFAULT_PROPS$a = {};
|
|
19635
19635
|
|
|
19636
19636
|
/**
|
|
19637
19637
|
* TableHeader component.
|
|
@@ -19678,7 +19678,7 @@ const TableHeader = forwardRef((props, ref) => {
|
|
|
19678
19678
|
});
|
|
19679
19679
|
TableHeader.displayName = COMPONENT_NAME$8;
|
|
19680
19680
|
TableHeader.className = CLASSNAME$8;
|
|
19681
|
-
TableHeader.defaultProps = DEFAULT_PROPS$
|
|
19681
|
+
TableHeader.defaultProps = DEFAULT_PROPS$a;
|
|
19682
19682
|
|
|
19683
19683
|
/**
|
|
19684
19684
|
* Component display name.
|
|
@@ -19696,7 +19696,7 @@ const {
|
|
|
19696
19696
|
/**
|
|
19697
19697
|
* Component default props.
|
|
19698
19698
|
*/
|
|
19699
|
-
const DEFAULT_PROPS$
|
|
19699
|
+
const DEFAULT_PROPS$9 = {};
|
|
19700
19700
|
|
|
19701
19701
|
/**
|
|
19702
19702
|
* TableRow component.
|
|
@@ -19768,9 +19768,9 @@ const TableRow = forwardRef((props, ref) => {
|
|
|
19768
19768
|
});
|
|
19769
19769
|
TableRow.displayName = COMPONENT_NAME$7;
|
|
19770
19770
|
TableRow.className = CLASSNAME$7;
|
|
19771
|
-
TableRow.defaultProps = DEFAULT_PROPS$
|
|
19771
|
+
TableRow.defaultProps = DEFAULT_PROPS$9;
|
|
19772
19772
|
|
|
19773
|
-
const DEFAULT_PROPS$
|
|
19773
|
+
const DEFAULT_PROPS$8 = {
|
|
19774
19774
|
isLazy: INIT_STATE.isLazy,
|
|
19775
19775
|
shouldActivateOnFocus: INIT_STATE.shouldActivateOnFocus
|
|
19776
19776
|
};
|
|
@@ -19792,7 +19792,7 @@ const TabProvider = props => {
|
|
|
19792
19792
|
} = props;
|
|
19793
19793
|
const [state, dispatch] = useReducer(reducer, {
|
|
19794
19794
|
...INIT_STATE,
|
|
19795
|
-
...DEFAULT_PROPS$
|
|
19795
|
+
...DEFAULT_PROPS$8,
|
|
19796
19796
|
...propState
|
|
19797
19797
|
});
|
|
19798
19798
|
|
|
@@ -19801,7 +19801,7 @@ const TabProvider = props => {
|
|
|
19801
19801
|
dispatch({
|
|
19802
19802
|
type: 'update',
|
|
19803
19803
|
payload: {
|
|
19804
|
-
...DEFAULT_PROPS$
|
|
19804
|
+
...DEFAULT_PROPS$8,
|
|
19805
19805
|
...propState
|
|
19806
19806
|
}
|
|
19807
19807
|
});
|
|
@@ -19830,7 +19830,7 @@ const TabProvider = props => {
|
|
|
19830
19830
|
children: children
|
|
19831
19831
|
});
|
|
19832
19832
|
};
|
|
19833
|
-
TabProvider.defaultProps = DEFAULT_PROPS$
|
|
19833
|
+
TabProvider.defaultProps = DEFAULT_PROPS$8;
|
|
19834
19834
|
|
|
19835
19835
|
/**
|
|
19836
19836
|
* Component default class name and class prefix.
|
|
@@ -19859,7 +19859,7 @@ const COMPONENT_NAME$6 = 'TabList';
|
|
|
19859
19859
|
/**
|
|
19860
19860
|
* Component default props.
|
|
19861
19861
|
*/
|
|
19862
|
-
const DEFAULT_PROPS$
|
|
19862
|
+
const DEFAULT_PROPS$7 = {
|
|
19863
19863
|
layout: TabListLayout.fixed,
|
|
19864
19864
|
position: Alignment.left
|
|
19865
19865
|
};
|
|
@@ -19878,8 +19878,8 @@ const TabList$1 = props => {
|
|
|
19878
19878
|
'aria-label': ariaLabel,
|
|
19879
19879
|
children,
|
|
19880
19880
|
className,
|
|
19881
|
-
layout = DEFAULT_PROPS$
|
|
19882
|
-
position = DEFAULT_PROPS$
|
|
19881
|
+
layout = DEFAULT_PROPS$7.layout,
|
|
19882
|
+
position = DEFAULT_PROPS$7.position,
|
|
19883
19883
|
theme,
|
|
19884
19884
|
ref,
|
|
19885
19885
|
...forwardedProps
|
|
@@ -19929,7 +19929,7 @@ const TabList = forwardRef((props, ref) => {
|
|
|
19929
19929
|
});
|
|
19930
19930
|
TabList.displayName = COMPONENT_NAME$6;
|
|
19931
19931
|
TabList.className = TABS_CLASSNAME;
|
|
19932
|
-
TabList.defaultProps = DEFAULT_PROPS$
|
|
19932
|
+
TabList.defaultProps = DEFAULT_PROPS$7;
|
|
19933
19933
|
|
|
19934
19934
|
/**
|
|
19935
19935
|
* Component display name.
|
|
@@ -19939,7 +19939,7 @@ const COMPONENT_NAME$5 = 'Tab';
|
|
|
19939
19939
|
/**
|
|
19940
19940
|
* Component default props.
|
|
19941
19941
|
*/
|
|
19942
|
-
const DEFAULT_PROPS$
|
|
19942
|
+
const DEFAULT_PROPS$6 = {};
|
|
19943
19943
|
|
|
19944
19944
|
/**
|
|
19945
19945
|
* Component default class name and class prefix.
|
|
@@ -20076,7 +20076,7 @@ const Tab = forwardRef((props, ref) => {
|
|
|
20076
20076
|
});
|
|
20077
20077
|
Tab.displayName = COMPONENT_NAME$5;
|
|
20078
20078
|
Tab.className = CLASSNAME$6;
|
|
20079
|
-
Tab.defaultProps = DEFAULT_PROPS$
|
|
20079
|
+
Tab.defaultProps = DEFAULT_PROPS$6;
|
|
20080
20080
|
|
|
20081
20081
|
/**
|
|
20082
20082
|
* Component display name.
|
|
@@ -20094,7 +20094,7 @@ const {
|
|
|
20094
20094
|
/**
|
|
20095
20095
|
* Component default props.
|
|
20096
20096
|
*/
|
|
20097
|
-
const DEFAULT_PROPS$
|
|
20097
|
+
const DEFAULT_PROPS$5 = {};
|
|
20098
20098
|
|
|
20099
20099
|
/**
|
|
20100
20100
|
* TabPanel component.
|
|
@@ -20163,7 +20163,7 @@ const TabPanel = forwardRef((props, ref) => {
|
|
|
20163
20163
|
});
|
|
20164
20164
|
TabPanel.displayName = COMPONENT_NAME$4;
|
|
20165
20165
|
TabPanel.className = CLASSNAME$5;
|
|
20166
|
-
TabPanel.defaultProps = DEFAULT_PROPS$
|
|
20166
|
+
TabPanel.defaultProps = DEFAULT_PROPS$5;
|
|
20167
20167
|
|
|
20168
20168
|
/**
|
|
20169
20169
|
* Determines the loading state of an HTML image element.
|
|
@@ -20326,7 +20326,7 @@ const {
|
|
|
20326
20326
|
/**
|
|
20327
20327
|
* Component default props.
|
|
20328
20328
|
*/
|
|
20329
|
-
const DEFAULT_PROPS$
|
|
20329
|
+
const DEFAULT_PROPS$4 = {
|
|
20330
20330
|
fallback: mdiImageBroken,
|
|
20331
20331
|
loading: 'lazy'
|
|
20332
20332
|
};
|
|
@@ -20347,7 +20347,7 @@ const Thumbnail$1 = props => {
|
|
|
20347
20347
|
className,
|
|
20348
20348
|
crossOrigin,
|
|
20349
20349
|
ref,
|
|
20350
|
-
fallback = DEFAULT_PROPS$
|
|
20350
|
+
fallback = DEFAULT_PROPS$4.fallback,
|
|
20351
20351
|
focusPointStyle,
|
|
20352
20352
|
fillHeight,
|
|
20353
20353
|
image,
|
|
@@ -20355,7 +20355,7 @@ const Thumbnail$1 = props => {
|
|
|
20355
20355
|
imgRef: propImgRef,
|
|
20356
20356
|
isLoading: isLoadingProp,
|
|
20357
20357
|
objectFit,
|
|
20358
|
-
loading = DEFAULT_PROPS$
|
|
20358
|
+
loading = DEFAULT_PROPS$4.loading,
|
|
20359
20359
|
loadingPlaceholderImageRef,
|
|
20360
20360
|
isAnyDisabled,
|
|
20361
20361
|
disabledStateProps,
|
|
@@ -20604,7 +20604,7 @@ const Thumbnail = forwardRef((props, ref) => {
|
|
|
20604
20604
|
});
|
|
20605
20605
|
Thumbnail.displayName = COMPONENT_NAME$3;
|
|
20606
20606
|
Thumbnail.className = CLASSNAME$4;
|
|
20607
|
-
Thumbnail.defaultProps = DEFAULT_PROPS$
|
|
20607
|
+
Thumbnail.defaultProps = DEFAULT_PROPS$4;
|
|
20608
20608
|
|
|
20609
20609
|
/**
|
|
20610
20610
|
* Focal point using vertical alignment, horizontal alignment or coordinates (from -1 to 1).
|
|
@@ -20656,11 +20656,30 @@ const {
|
|
|
20656
20656
|
block: block$3
|
|
20657
20657
|
} = bem(CLASSNAME$3);
|
|
20658
20658
|
|
|
20659
|
+
/**
|
|
20660
|
+
* Default values for `TimePickerFieldWrapperProps`.
|
|
20661
|
+
*/
|
|
20662
|
+
const DEFAULT_PROPS$3 = {
|
|
20663
|
+
step: 30
|
|
20664
|
+
};
|
|
20665
|
+
|
|
20659
20666
|
/**
|
|
20660
20667
|
* Translations consumed by `TimePickerField` (forwarded as-is to the underlying
|
|
20661
20668
|
* `SelectTextField`).
|
|
20662
20669
|
*/
|
|
20663
20670
|
|
|
20671
|
+
/**
|
|
20672
|
+
* Wrapper-level props shared by React and Vue `TimePickerField`.
|
|
20673
|
+
*
|
|
20674
|
+
* These represent the public API that framework wrappers expose to consumers
|
|
20675
|
+
* (as opposed to the core template props which use pre-computed `TimeOfDay` values).
|
|
20676
|
+
*/
|
|
20677
|
+
|
|
20678
|
+
/**
|
|
20679
|
+
* `SelectTextField` props managed internally by the `TimePickerField` wrappers
|
|
20680
|
+
* (omitted from the inherited `SelectTextField` props in both React and Vue).
|
|
20681
|
+
*/
|
|
20682
|
+
|
|
20664
20683
|
/**
|
|
20665
20684
|
* Core props for the `TimePickerField` template.
|
|
20666
20685
|
*/
|
|
@@ -20896,7 +20915,7 @@ const TimePickerField = props => {
|
|
|
20896
20915
|
value,
|
|
20897
20916
|
onChange,
|
|
20898
20917
|
locale = getCurrentLocale(),
|
|
20899
|
-
step =
|
|
20918
|
+
step = DEFAULT_PROPS$3.step,
|
|
20900
20919
|
minTime,
|
|
20901
20920
|
maxTime,
|
|
20902
20921
|
className,
|
|
@@ -21432,5 +21451,5 @@ UserBlock.displayName = COMPONENT_NAME;
|
|
|
21432
21451
|
UserBlock.className = CLASSNAME;
|
|
21433
21452
|
UserBlock.defaultProps = DEFAULT_PROPS;
|
|
21434
21453
|
|
|
21435
|
-
export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, Button, ButtonGroup, CLASSNAME$1s as CLASSNAME, COMPONENT_NAME$1t as COMPONENT_NAME, Checkbox, Chip, ChipGroup, Combobox, CommentBlock, CommentBlockVariant, DEFAULT_PROPS$
|
|
21454
|
+
export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, Button, ButtonGroup, CLASSNAME$1s as CLASSNAME, COMPONENT_NAME$1t as COMPONENT_NAME, Checkbox, Chip, ChipGroup, Combobox, CommentBlock, CommentBlockVariant, DEFAULT_PROPS$1c as DEFAULT_PROPS, DatePicker, DatePickerControlled, DatePickerField, Dialog, Divider, DragHandle, Dropdown, ExpansionPanel, Flag, FlexBox, GenericBlock, GenericBlockGapSize, Grid, GridColumn, GridItem, Heading, HeadingLevelProvider, Icon, IconButton, ImageBlock, ImageBlockCaptionPosition, ImageLightbox, InlineList, InputHelper, InputLabel, Lightbox, Link, LinkPreview, List, ListDivider, ListItem, ListSection, ListSubheader, Message, Mosaic, Navigation, Notification, Placement, Popover, PopoverDialog, PostBlock, Progress, ProgressCircular, ProgressLinear, ProgressTracker, ProgressTrackerProvider, ProgressTrackerStep, ProgressTrackerStepPanel, ProgressVariant, RadioButton, RadioGroup, RawInputText, RawInputTextarea, Select, SelectButton, SelectMultiple, SelectMultipleField, SelectTextField, SelectVariant, SelectionChipGroup, SideNavigation, SideNavigationItem, SkeletonCircle, SkeletonRectangle, SkeletonRectangleVariant, SkeletonTypography, Slider, Slides, Slideshow, SlideshowControls, SlideshowItem, Switch, CLASSNAME$3 as TIME_PICKER_FIELD_CLASSNAME, COMPONENT_NAME$2 as TIME_PICKER_FIELD_COMPONENT_NAME, Tab, TabList, TabListLayout, TabPanel, TabProvider, Table, TableBody, TableCell, TableCellVariant, TableHeader, TableRow, Text, TextField, ThOrder, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, ThumbnailVariant, TimePickerField, Toolbar, Tooltip, Uploader, UploaderVariant, UserBlock, clamp, useFocusPointStyle, useHeadingLevel, useTheme };
|
|
21436
21455
|
//# sourceMappingURL=index.js.map
|