@lumx/react 4.14.0 → 4.15.0-alpha.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 +277 -254
- 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,14 +1680,14 @@ 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
|
-
const
|
|
1690
|
+
const iconNode = image ? /*#__PURE__*/jsx("img", {
|
|
1691
1691
|
// no need to set alt as an aria-label is already set on the button
|
|
1692
1692
|
alt: "",
|
|
1693
1693
|
src: image
|
|
@@ -1698,14 +1698,18 @@ const IconButton$1 = props => {
|
|
|
1698
1698
|
emphasis,
|
|
1699
1699
|
size,
|
|
1700
1700
|
...forwardedProps,
|
|
1701
|
-
'aria-label': label,
|
|
1702
1701
|
variant: 'icon',
|
|
1703
|
-
children:
|
|
1702
|
+
children: /*#__PURE__*/jsxs(Fragment, {
|
|
1703
|
+
children: [iconNode, /*#__PURE__*/jsx("span", {
|
|
1704
|
+
className: visuallyHidden(),
|
|
1705
|
+
children: label
|
|
1706
|
+
})]
|
|
1707
|
+
})
|
|
1704
1708
|
});
|
|
1705
1709
|
};
|
|
1706
1710
|
IconButton$1.displayName = COMPONENT_NAME$1r;
|
|
1707
1711
|
IconButton$1.className = CLASSNAME$1q;
|
|
1708
|
-
IconButton$1.defaultProps = DEFAULT_PROPS$
|
|
1712
|
+
IconButton$1.defaultProps = DEFAULT_PROPS$1a;
|
|
1709
1713
|
|
|
1710
1714
|
/**
|
|
1711
1715
|
* IconButton component.
|
|
@@ -1750,7 +1754,7 @@ const IconButton = forwardRef((props, ref) => {
|
|
|
1750
1754
|
});
|
|
1751
1755
|
IconButton.displayName = COMPONENT_NAME$1r;
|
|
1752
1756
|
IconButton.className = CLASSNAME$1q;
|
|
1753
|
-
IconButton.defaultProps = DEFAULT_PROPS$
|
|
1757
|
+
IconButton.defaultProps = DEFAULT_PROPS$1a;
|
|
1754
1758
|
|
|
1755
1759
|
/**
|
|
1756
1760
|
* Component display name.
|
|
@@ -1765,7 +1769,7 @@ const CLASSNAME$1p = 'lumx-button-group';
|
|
|
1765
1769
|
/**
|
|
1766
1770
|
* Component default props.
|
|
1767
1771
|
*/
|
|
1768
|
-
const DEFAULT_PROPS$
|
|
1772
|
+
const DEFAULT_PROPS$19 = {};
|
|
1769
1773
|
|
|
1770
1774
|
/**
|
|
1771
1775
|
* ButtonGroup component.
|
|
@@ -1787,7 +1791,7 @@ const ButtonGroup$1 = props => {
|
|
|
1787
1791
|
};
|
|
1788
1792
|
ButtonGroup$1.displayName = COMPONENT_NAME$1q;
|
|
1789
1793
|
ButtonGroup$1.className = CLASSNAME$1p;
|
|
1790
|
-
ButtonGroup$1.defaultProps = DEFAULT_PROPS$
|
|
1794
|
+
ButtonGroup$1.defaultProps = DEFAULT_PROPS$19;
|
|
1791
1795
|
|
|
1792
1796
|
/**
|
|
1793
1797
|
* ButtonGroup component.
|
|
@@ -1804,7 +1808,7 @@ const ButtonGroup = forwardRef((props, ref) => {
|
|
|
1804
1808
|
});
|
|
1805
1809
|
ButtonGroup.displayName = COMPONENT_NAME$1q;
|
|
1806
1810
|
ButtonGroup.className = CLASSNAME$1p;
|
|
1807
|
-
ButtonGroup.defaultProps = DEFAULT_PROPS$
|
|
1811
|
+
ButtonGroup.defaultProps = DEFAULT_PROPS$19;
|
|
1808
1812
|
|
|
1809
1813
|
const COMPONENT_NAME$1p = 'InputLabel';
|
|
1810
1814
|
const InputLabelClassName = 'lumx-input-label';
|
|
@@ -1812,7 +1816,7 @@ const CLASSNAME$1o = InputLabelClassName;
|
|
|
1812
1816
|
const {
|
|
1813
1817
|
block: block$14
|
|
1814
1818
|
} = bem(CLASSNAME$1o);
|
|
1815
|
-
const DEFAULT_PROPS$
|
|
1819
|
+
const DEFAULT_PROPS$18 = {};
|
|
1816
1820
|
|
|
1817
1821
|
/**
|
|
1818
1822
|
* InputLabel component.
|
|
@@ -1844,7 +1848,7 @@ function InputLabel$1(props) {
|
|
|
1844
1848
|
}
|
|
1845
1849
|
InputLabel$1.displayName = COMPONENT_NAME$1p;
|
|
1846
1850
|
InputLabel$1.className = CLASSNAME$1o;
|
|
1847
|
-
InputLabel$1.defaultProps = DEFAULT_PROPS$
|
|
1851
|
+
InputLabel$1.defaultProps = DEFAULT_PROPS$18;
|
|
1848
1852
|
|
|
1849
1853
|
const INPUT_HELPER_CONFIGURATION = {
|
|
1850
1854
|
[Kind.error]: {
|
|
@@ -1873,7 +1877,7 @@ const {
|
|
|
1873
1877
|
/**
|
|
1874
1878
|
* Component default props.
|
|
1875
1879
|
*/
|
|
1876
|
-
const DEFAULT_PROPS$
|
|
1880
|
+
const DEFAULT_PROPS$17 = {
|
|
1877
1881
|
kind: Kind.info
|
|
1878
1882
|
};
|
|
1879
1883
|
|
|
@@ -1884,7 +1888,7 @@ function InputHelper$1(props) {
|
|
|
1884
1888
|
const {
|
|
1885
1889
|
children,
|
|
1886
1890
|
className,
|
|
1887
|
-
kind = DEFAULT_PROPS$
|
|
1891
|
+
kind = DEFAULT_PROPS$17.kind,
|
|
1888
1892
|
theme,
|
|
1889
1893
|
ref,
|
|
1890
1894
|
...forwardedProps
|
|
@@ -1904,7 +1908,7 @@ function InputHelper$1(props) {
|
|
|
1904
1908
|
}
|
|
1905
1909
|
InputHelper$1.displayName = COMPONENT_NAME$1o;
|
|
1906
1910
|
InputHelper$1.className = CLASSNAME$1n;
|
|
1907
|
-
InputHelper$1.defaultProps = DEFAULT_PROPS$
|
|
1911
|
+
InputHelper$1.defaultProps = DEFAULT_PROPS$17;
|
|
1908
1912
|
|
|
1909
1913
|
const INTERMEDIATE_STATE = 'intermediate';
|
|
1910
1914
|
|
|
@@ -2019,7 +2023,7 @@ const Checkbox$1 = props => {
|
|
|
2019
2023
|
/**
|
|
2020
2024
|
* Component default props.
|
|
2021
2025
|
*/
|
|
2022
|
-
const DEFAULT_PROPS$
|
|
2026
|
+
const DEFAULT_PROPS$16 = {};
|
|
2023
2027
|
|
|
2024
2028
|
/**
|
|
2025
2029
|
* Checkbox component.
|
|
@@ -2081,7 +2085,7 @@ const Checkbox = forwardRef((props, ref) => {
|
|
|
2081
2085
|
});
|
|
2082
2086
|
Checkbox.displayName = COMPONENT_NAME$1n;
|
|
2083
2087
|
Checkbox.className = CLASSNAME$1m;
|
|
2084
|
-
Checkbox.defaultProps = DEFAULT_PROPS$
|
|
2088
|
+
Checkbox.defaultProps = DEFAULT_PROPS$16;
|
|
2085
2089
|
|
|
2086
2090
|
/**
|
|
2087
2091
|
* Wrap mouse event handler to stop event propagation.
|
|
@@ -2116,7 +2120,7 @@ const {
|
|
|
2116
2120
|
/**
|
|
2117
2121
|
* Component default props.
|
|
2118
2122
|
*/
|
|
2119
|
-
const DEFAULT_PROPS$
|
|
2123
|
+
const DEFAULT_PROPS$15 = {
|
|
2120
2124
|
size: Size.m
|
|
2121
2125
|
};
|
|
2122
2126
|
|
|
@@ -2143,7 +2147,7 @@ const Chip$1 = props => {
|
|
|
2143
2147
|
hasAfterClick,
|
|
2144
2148
|
hasBeforeClick,
|
|
2145
2149
|
hasOnClick,
|
|
2146
|
-
size = DEFAULT_PROPS$
|
|
2150
|
+
size = DEFAULT_PROPS$15.size,
|
|
2147
2151
|
theme,
|
|
2148
2152
|
ref,
|
|
2149
2153
|
href,
|
|
@@ -2265,7 +2269,7 @@ const Chip = forwardRef((props, ref) => {
|
|
|
2265
2269
|
});
|
|
2266
2270
|
Chip.displayName = COMPONENT_NAME$1m;
|
|
2267
2271
|
Chip.className = CLASSNAME$1l;
|
|
2268
|
-
Chip.defaultProps = DEFAULT_PROPS$
|
|
2272
|
+
Chip.defaultProps = DEFAULT_PROPS$15;
|
|
2269
2273
|
|
|
2270
2274
|
/**
|
|
2271
2275
|
* Component display name.
|
|
@@ -2280,7 +2284,7 @@ const CLASSNAME$1k = 'lumx-chip-group';
|
|
|
2280
2284
|
/**
|
|
2281
2285
|
* Component default props.
|
|
2282
2286
|
*/
|
|
2283
|
-
const DEFAULT_PROPS$
|
|
2287
|
+
const DEFAULT_PROPS$14 = {};
|
|
2284
2288
|
|
|
2285
2289
|
/**
|
|
2286
2290
|
* ChipGroup component.
|
|
@@ -2378,7 +2382,7 @@ const InternalChipGroup = forwardRef((props, ref) => {
|
|
|
2378
2382
|
});
|
|
2379
2383
|
InternalChipGroup.displayName = COMPONENT_NAME$1l;
|
|
2380
2384
|
InternalChipGroup.className = CLASSNAME$1k;
|
|
2381
|
-
InternalChipGroup.defaultProps = DEFAULT_PROPS$
|
|
2385
|
+
InternalChipGroup.defaultProps = DEFAULT_PROPS$14;
|
|
2382
2386
|
const ChipGroup = Object.assign(InternalChipGroup, {
|
|
2383
2387
|
useChipGroupNavigation
|
|
2384
2388
|
});
|
|
@@ -2721,7 +2725,7 @@ const {
|
|
|
2721
2725
|
/**
|
|
2722
2726
|
* Component default props.
|
|
2723
2727
|
*/
|
|
2724
|
-
const DEFAULT_PROPS$
|
|
2728
|
+
const DEFAULT_PROPS$13 = {};
|
|
2725
2729
|
|
|
2726
2730
|
/**
|
|
2727
2731
|
* Text component common props
|
|
@@ -2808,7 +2812,7 @@ const Text = forwardRef((props, ref) => {
|
|
|
2808
2812
|
});
|
|
2809
2813
|
Text.displayName = COMPONENT_NAME$1j;
|
|
2810
2814
|
Text.className = CLASSNAME$1i;
|
|
2811
|
-
Text.defaultProps = DEFAULT_PROPS$
|
|
2815
|
+
Text.defaultProps = DEFAULT_PROPS$13;
|
|
2812
2816
|
|
|
2813
2817
|
/**
|
|
2814
2818
|
* Custom positioning reference element.
|
|
@@ -4890,7 +4894,7 @@ const TOOLTIP_ZINDEX = 10000;
|
|
|
4890
4894
|
/**
|
|
4891
4895
|
* Component default props.
|
|
4892
4896
|
*/
|
|
4893
|
-
const DEFAULT_PROPS$
|
|
4897
|
+
const DEFAULT_PROPS$12 = {
|
|
4894
4898
|
placement: 'bottom',
|
|
4895
4899
|
closeMode: 'unmount',
|
|
4896
4900
|
ariaLinkMode: 'aria-describedby',
|
|
@@ -5254,11 +5258,11 @@ const Tooltip = forwardRef((props, ref) => {
|
|
|
5254
5258
|
children,
|
|
5255
5259
|
className,
|
|
5256
5260
|
delay,
|
|
5257
|
-
placement = DEFAULT_PROPS$
|
|
5261
|
+
placement = DEFAULT_PROPS$12.placement,
|
|
5258
5262
|
forceOpen,
|
|
5259
|
-
closeMode = DEFAULT_PROPS$
|
|
5260
|
-
ariaLinkMode = DEFAULT_PROPS$
|
|
5261
|
-
zIndex = DEFAULT_PROPS$
|
|
5263
|
+
closeMode = DEFAULT_PROPS$12.closeMode,
|
|
5264
|
+
ariaLinkMode = DEFAULT_PROPS$12.ariaLinkMode,
|
|
5265
|
+
zIndex = DEFAULT_PROPS$12.zIndex,
|
|
5262
5266
|
...forwardedProps
|
|
5263
5267
|
} = props;
|
|
5264
5268
|
// Disable in SSR.
|
|
@@ -5323,7 +5327,7 @@ const Tooltip = forwardRef((props, ref) => {
|
|
|
5323
5327
|
});
|
|
5324
5328
|
Tooltip.displayName = COMPONENT_NAME$1i;
|
|
5325
5329
|
Tooltip.className = CLASSNAME$1h;
|
|
5326
|
-
Tooltip.defaultProps = DEFAULT_PROPS$
|
|
5330
|
+
Tooltip.defaultProps = DEFAULT_PROPS$12;
|
|
5327
5331
|
|
|
5328
5332
|
/**
|
|
5329
5333
|
* Transition the active item: deactivate the current one (if any) and activate the new one.
|
|
@@ -7725,7 +7729,7 @@ const {
|
|
|
7725
7729
|
/**
|
|
7726
7730
|
* Component default props.
|
|
7727
7731
|
*/
|
|
7728
|
-
const DEFAULT_PROPS$
|
|
7732
|
+
const DEFAULT_PROPS$11 = {
|
|
7729
7733
|
type: 'text'
|
|
7730
7734
|
};
|
|
7731
7735
|
|
|
@@ -7740,7 +7744,7 @@ const RawInputText$1 = props => {
|
|
|
7740
7744
|
value,
|
|
7741
7745
|
handleChange,
|
|
7742
7746
|
handleInput,
|
|
7743
|
-
type = DEFAULT_PROPS$
|
|
7747
|
+
type = DEFAULT_PROPS$11.type,
|
|
7744
7748
|
name,
|
|
7745
7749
|
ref,
|
|
7746
7750
|
...forwardedProps
|
|
@@ -7796,7 +7800,7 @@ const {
|
|
|
7796
7800
|
/**
|
|
7797
7801
|
* Component default props.
|
|
7798
7802
|
*/
|
|
7799
|
-
const DEFAULT_PROPS
|
|
7803
|
+
const DEFAULT_PROPS$10 = {
|
|
7800
7804
|
rows: 2
|
|
7801
7805
|
};
|
|
7802
7806
|
|
|
@@ -7811,7 +7815,7 @@ const RawInputTextarea$1 = props => {
|
|
|
7811
7815
|
value,
|
|
7812
7816
|
handleChange,
|
|
7813
7817
|
handleInput,
|
|
7814
|
-
rows = DEFAULT_PROPS
|
|
7818
|
+
rows = DEFAULT_PROPS$10.rows,
|
|
7815
7819
|
name,
|
|
7816
7820
|
ref,
|
|
7817
7821
|
...forwardedProps
|
|
@@ -7885,8 +7889,8 @@ function useFitRowsToContent(minimumRows, textareaRef, value) {
|
|
|
7885
7889
|
/**
|
|
7886
7890
|
* Component default props.
|
|
7887
7891
|
*/
|
|
7888
|
-
const DEFAULT_PROPS
|
|
7889
|
-
minimumRows: DEFAULT_PROPS
|
|
7892
|
+
const DEFAULT_PROPS$$ = {
|
|
7893
|
+
minimumRows: DEFAULT_PROPS$10.rows
|
|
7890
7894
|
};
|
|
7891
7895
|
|
|
7892
7896
|
/**
|
|
@@ -7897,7 +7901,7 @@ const RawInputTextarea = forwardRef((props, ref) => {
|
|
|
7897
7901
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
7898
7902
|
const {
|
|
7899
7903
|
theme = defaultTheme,
|
|
7900
|
-
minimumRows = DEFAULT_PROPS
|
|
7904
|
+
minimumRows = DEFAULT_PROPS$$.minimumRows,
|
|
7901
7905
|
value,
|
|
7902
7906
|
onChange,
|
|
7903
7907
|
...restOfProps
|
|
@@ -7917,7 +7921,7 @@ const RawInputTextarea = forwardRef((props, ref) => {
|
|
|
7917
7921
|
/**
|
|
7918
7922
|
* Component default props.
|
|
7919
7923
|
*/
|
|
7920
|
-
const DEFAULT_PROPS$
|
|
7924
|
+
const DEFAULT_PROPS$_ = {
|
|
7921
7925
|
type: 'text'
|
|
7922
7926
|
};
|
|
7923
7927
|
|
|
@@ -7961,7 +7965,7 @@ const TextField = forwardRef((props, ref) => {
|
|
|
7961
7965
|
placeholder,
|
|
7962
7966
|
textFieldRef,
|
|
7963
7967
|
theme = defaultTheme,
|
|
7964
|
-
type = DEFAULT_PROPS$
|
|
7968
|
+
type = DEFAULT_PROPS$_.type,
|
|
7965
7969
|
value,
|
|
7966
7970
|
afterElement,
|
|
7967
7971
|
...forwardedProps
|
|
@@ -8068,7 +8072,7 @@ const TextField = forwardRef((props, ref) => {
|
|
|
8068
8072
|
});
|
|
8069
8073
|
TextField.displayName = COMPONENT_NAME$1f;
|
|
8070
8074
|
TextField.className = CLASSNAME$1e;
|
|
8071
|
-
TextField.defaultProps = DEFAULT_PROPS$
|
|
8075
|
+
TextField.defaultProps = DEFAULT_PROPS$_;
|
|
8072
8076
|
|
|
8073
8077
|
/**
|
|
8074
8078
|
* Props for Combobox.Input component.
|
|
@@ -8164,7 +8168,7 @@ const {
|
|
|
8164
8168
|
/**
|
|
8165
8169
|
* Component default props.
|
|
8166
8170
|
*/
|
|
8167
|
-
const DEFAULT_PROPS$
|
|
8171
|
+
const DEFAULT_PROPS$Z = {};
|
|
8168
8172
|
|
|
8169
8173
|
/**
|
|
8170
8174
|
* List component.
|
|
@@ -8191,7 +8195,7 @@ const List$1 = props => {
|
|
|
8191
8195
|
};
|
|
8192
8196
|
List$1.displayName = COMPONENT_NAME$1e;
|
|
8193
8197
|
List$1.className = CLASSNAME$1d;
|
|
8194
|
-
List$1.defaultProps = DEFAULT_PROPS$
|
|
8198
|
+
List$1.defaultProps = DEFAULT_PROPS$Z;
|
|
8195
8199
|
|
|
8196
8200
|
/**
|
|
8197
8201
|
* Popup type for the combobox listbox.
|
|
@@ -8338,7 +8342,7 @@ const {
|
|
|
8338
8342
|
/**
|
|
8339
8343
|
* Component default props.
|
|
8340
8344
|
*/
|
|
8341
|
-
const DEFAULT_PROPS$
|
|
8345
|
+
const DEFAULT_PROPS$Y = {
|
|
8342
8346
|
size: Size.regular
|
|
8343
8347
|
};
|
|
8344
8348
|
|
|
@@ -8362,7 +8366,7 @@ const ListItem$1 = props => {
|
|
|
8362
8366
|
linkProps = {},
|
|
8363
8367
|
linkRef,
|
|
8364
8368
|
handleClick,
|
|
8365
|
-
size = DEFAULT_PROPS$
|
|
8369
|
+
size = DEFAULT_PROPS$Y.size,
|
|
8366
8370
|
ref,
|
|
8367
8371
|
...forwardedProps
|
|
8368
8372
|
} = props;
|
|
@@ -8402,7 +8406,7 @@ const ListItem$1 = props => {
|
|
|
8402
8406
|
};
|
|
8403
8407
|
ListItem$1.displayName = COMPONENT_NAME$1c;
|
|
8404
8408
|
ListItem$1.className = CLASSNAME$1b;
|
|
8405
|
-
ListItem$1.defaultProps = DEFAULT_PROPS$
|
|
8409
|
+
ListItem$1.defaultProps = DEFAULT_PROPS$Y;
|
|
8406
8410
|
|
|
8407
8411
|
/**
|
|
8408
8412
|
* ListItemAction props.
|
|
@@ -8417,7 +8421,7 @@ const COMPONENT_NAME$1b = 'ListItemAction';
|
|
|
8417
8421
|
* Component classname (used by action area CSS pattern).
|
|
8418
8422
|
*/
|
|
8419
8423
|
const CLASSNAME$1a = 'lumx-action-area__action';
|
|
8420
|
-
const DEFAULT_PROPS$
|
|
8424
|
+
const DEFAULT_PROPS$X = {};
|
|
8421
8425
|
|
|
8422
8426
|
/**
|
|
8423
8427
|
* ListItemAction component.
|
|
@@ -9078,7 +9082,7 @@ const {
|
|
|
9078
9082
|
/**
|
|
9079
9083
|
* Component default props (used by framework wrappers).
|
|
9080
9084
|
*/
|
|
9081
|
-
const DEFAULT_PROPS$
|
|
9085
|
+
const DEFAULT_PROPS$W = {
|
|
9082
9086
|
closeMode: 'unmount',
|
|
9083
9087
|
elevation: 3,
|
|
9084
9088
|
placement: Placement.AUTO,
|
|
@@ -9102,8 +9106,8 @@ const Popover$1 = (props, {
|
|
|
9102
9106
|
as: asTag = 'div',
|
|
9103
9107
|
children,
|
|
9104
9108
|
className,
|
|
9105
|
-
closeMode = DEFAULT_PROPS$
|
|
9106
|
-
elevation = DEFAULT_PROPS$
|
|
9109
|
+
closeMode = DEFAULT_PROPS$W.closeMode,
|
|
9110
|
+
elevation = DEFAULT_PROPS$W.elevation,
|
|
9107
9111
|
hasArrow,
|
|
9108
9112
|
isOpen,
|
|
9109
9113
|
position,
|
|
@@ -9113,7 +9117,7 @@ const Popover$1 = (props, {
|
|
|
9113
9117
|
// Framework-specific
|
|
9114
9118
|
ref,
|
|
9115
9119
|
arrowRef,
|
|
9116
|
-
usePortal = DEFAULT_PROPS$
|
|
9120
|
+
usePortal = DEFAULT_PROPS$W.usePortal,
|
|
9117
9121
|
clickAwayCallback,
|
|
9118
9122
|
clickAwayRefs,
|
|
9119
9123
|
unmountSentinel,
|
|
@@ -9445,27 +9449,27 @@ const _InnerPopover = forwardRef((props, ref) => {
|
|
|
9445
9449
|
as,
|
|
9446
9450
|
children,
|
|
9447
9451
|
className,
|
|
9448
|
-
closeMode = DEFAULT_PROPS$
|
|
9452
|
+
closeMode = DEFAULT_PROPS$W.closeMode,
|
|
9449
9453
|
closeOnClickAway,
|
|
9450
9454
|
closeOnEscape,
|
|
9451
|
-
elevation = DEFAULT_PROPS$
|
|
9455
|
+
elevation = DEFAULT_PROPS$W.elevation,
|
|
9452
9456
|
focusElement,
|
|
9453
9457
|
hasArrow,
|
|
9454
9458
|
isOpen,
|
|
9455
9459
|
onClose,
|
|
9456
9460
|
parentElement,
|
|
9457
|
-
usePortal = DEFAULT_PROPS$
|
|
9458
|
-
focusAnchorOnClose = DEFAULT_PROPS$
|
|
9461
|
+
usePortal = DEFAULT_PROPS$W.usePortal,
|
|
9462
|
+
focusAnchorOnClose = DEFAULT_PROPS$W.focusAnchorOnClose,
|
|
9459
9463
|
withFocusTrap,
|
|
9460
9464
|
boundaryRef,
|
|
9461
9465
|
fitToAnchorWidth,
|
|
9462
9466
|
fitWithinViewportHeight,
|
|
9463
9467
|
focusTrapZoneElement,
|
|
9464
9468
|
offset,
|
|
9465
|
-
placement = DEFAULT_PROPS$
|
|
9469
|
+
placement = DEFAULT_PROPS$W.placement,
|
|
9466
9470
|
style,
|
|
9467
9471
|
theme,
|
|
9468
|
-
zIndex = DEFAULT_PROPS$
|
|
9472
|
+
zIndex = DEFAULT_PROPS$W.zIndex,
|
|
9469
9473
|
...forwardedProps
|
|
9470
9474
|
} = props;
|
|
9471
9475
|
const popoverRef = useRef(null);
|
|
@@ -9539,7 +9543,7 @@ const Popover = skipRender(
|
|
|
9539
9543
|
() => Boolean(DOCUMENT), _InnerPopover);
|
|
9540
9544
|
Popover.displayName = COMPONENT_NAME$17;
|
|
9541
9545
|
Popover.className = CLASSNAME$16;
|
|
9542
|
-
Popover.defaultProps = DEFAULT_PROPS$
|
|
9546
|
+
Popover.defaultProps = DEFAULT_PROPS$W;
|
|
9543
9547
|
|
|
9544
9548
|
/**
|
|
9545
9549
|
* Props for Combobox.OptionMoreInfo component.
|
|
@@ -10022,7 +10026,7 @@ const {
|
|
|
10022
10026
|
/**
|
|
10023
10027
|
* Component default props.
|
|
10024
10028
|
*/
|
|
10025
|
-
const DEFAULT_PROPS$
|
|
10029
|
+
const DEFAULT_PROPS$V = {};
|
|
10026
10030
|
|
|
10027
10031
|
/**
|
|
10028
10032
|
* ListSection component.
|
|
@@ -10066,7 +10070,7 @@ const ListSection$1 = props => {
|
|
|
10066
10070
|
};
|
|
10067
10071
|
ListSection$1.displayName = COMPONENT_NAME$11;
|
|
10068
10072
|
ListSection$1.className = CLASSNAME$10;
|
|
10069
|
-
ListSection$1.defaultProps = DEFAULT_PROPS$
|
|
10073
|
+
ListSection$1.defaultProps = DEFAULT_PROPS$V;
|
|
10070
10074
|
|
|
10071
10075
|
/**
|
|
10072
10076
|
* Defines the props of the component.
|
|
@@ -10090,7 +10094,7 @@ const ListSection = forwardRef((props, ref) => {
|
|
|
10090
10094
|
});
|
|
10091
10095
|
ListSection.displayName = COMPONENT_NAME$11;
|
|
10092
10096
|
ListSection.className = CLASSNAME$10;
|
|
10093
|
-
ListSection.defaultProps = DEFAULT_PROPS$
|
|
10097
|
+
ListSection.defaultProps = DEFAULT_PROPS$V;
|
|
10094
10098
|
|
|
10095
10099
|
/**
|
|
10096
10100
|
* Props for Combobox.Section component.
|
|
@@ -10339,7 +10343,7 @@ const {
|
|
|
10339
10343
|
/**
|
|
10340
10344
|
* Component default props.
|
|
10341
10345
|
*/
|
|
10342
|
-
const DEFAULT_PROPS$
|
|
10346
|
+
const DEFAULT_PROPS$U = {
|
|
10343
10347
|
gap: Size.big,
|
|
10344
10348
|
orientation: Orientation.horizontal
|
|
10345
10349
|
};
|
|
@@ -10363,10 +10367,10 @@ const GenericBlock$1 = props => {
|
|
|
10363
10367
|
children,
|
|
10364
10368
|
actions,
|
|
10365
10369
|
actionsProps,
|
|
10366
|
-
gap = DEFAULT_PROPS$
|
|
10370
|
+
gap = DEFAULT_PROPS$U.gap,
|
|
10367
10371
|
ref,
|
|
10368
10372
|
content,
|
|
10369
|
-
orientation = DEFAULT_PROPS$
|
|
10373
|
+
orientation = DEFAULT_PROPS$U.orientation,
|
|
10370
10374
|
contentProps,
|
|
10371
10375
|
FlexBox,
|
|
10372
10376
|
...forwardedProps
|
|
@@ -10478,7 +10482,7 @@ const BaseGenericBlock = forwardRef((props, ref) => {
|
|
|
10478
10482
|
});
|
|
10479
10483
|
BaseGenericBlock.displayName = COMPONENT_NAME$$;
|
|
10480
10484
|
BaseGenericBlock.className = CLASSNAME$_;
|
|
10481
|
-
BaseGenericBlock.defaultProps = DEFAULT_PROPS$
|
|
10485
|
+
BaseGenericBlock.defaultProps = DEFAULT_PROPS$U;
|
|
10482
10486
|
const GenericBlock = Object.assign(BaseGenericBlock, {
|
|
10483
10487
|
Figure,
|
|
10484
10488
|
Content,
|
|
@@ -10572,7 +10576,7 @@ const CLASSNAME$Z = 'lumx-list-divider';
|
|
|
10572
10576
|
/**
|
|
10573
10577
|
* Component default props.
|
|
10574
10578
|
*/
|
|
10575
|
-
const DEFAULT_PROPS$
|
|
10579
|
+
const DEFAULT_PROPS$T = {};
|
|
10576
10580
|
|
|
10577
10581
|
/**
|
|
10578
10582
|
* ListDivider component.
|
|
@@ -10596,7 +10600,7 @@ const ListDivider$1 = props => {
|
|
|
10596
10600
|
};
|
|
10597
10601
|
ListDivider$1.displayName = COMPONENT_NAME$_;
|
|
10598
10602
|
ListDivider$1.className = CLASSNAME$Z;
|
|
10599
|
-
ListDivider$1.defaultProps = DEFAULT_PROPS$
|
|
10603
|
+
ListDivider$1.defaultProps = DEFAULT_PROPS$T;
|
|
10600
10604
|
|
|
10601
10605
|
/**
|
|
10602
10606
|
* Defines the props of the component.
|
|
@@ -10618,7 +10622,7 @@ const ListDivider = forwardRef((props, ref) => {
|
|
|
10618
10622
|
});
|
|
10619
10623
|
ListDivider.displayName = COMPONENT_NAME$_;
|
|
10620
10624
|
ListDivider.className = CLASSNAME$Z;
|
|
10621
|
-
ListDivider.defaultProps = DEFAULT_PROPS$
|
|
10625
|
+
ListDivider.defaultProps = DEFAULT_PROPS$T;
|
|
10622
10626
|
|
|
10623
10627
|
/**
|
|
10624
10628
|
* Combobox compound component namespace.
|
|
@@ -10681,7 +10685,7 @@ const {
|
|
|
10681
10685
|
/**
|
|
10682
10686
|
* Component default props.
|
|
10683
10687
|
*/
|
|
10684
|
-
const DEFAULT_PROPS$
|
|
10688
|
+
const DEFAULT_PROPS$S = {
|
|
10685
10689
|
variant: CommentBlockVariant.indented
|
|
10686
10690
|
};
|
|
10687
10691
|
|
|
@@ -10711,7 +10715,7 @@ const CommentBlock = forwardRef((props, ref) => {
|
|
|
10711
10715
|
onMouseLeave,
|
|
10712
10716
|
text,
|
|
10713
10717
|
theme = defaultTheme,
|
|
10714
|
-
variant = DEFAULT_PROPS$
|
|
10718
|
+
variant = DEFAULT_PROPS$S.variant,
|
|
10715
10719
|
...forwardedProps
|
|
10716
10720
|
} = props;
|
|
10717
10721
|
const hasChildren = Children.count(children) > 0;
|
|
@@ -10780,7 +10784,7 @@ const CommentBlock = forwardRef((props, ref) => {
|
|
|
10780
10784
|
});
|
|
10781
10785
|
CommentBlock.displayName = COMPONENT_NAME$Z;
|
|
10782
10786
|
CommentBlock.className = CLASSNAME$Y;
|
|
10783
|
-
CommentBlock.defaultProps = DEFAULT_PROPS$
|
|
10787
|
+
CommentBlock.defaultProps = DEFAULT_PROPS$S;
|
|
10784
10788
|
|
|
10785
10789
|
/**
|
|
10786
10790
|
* Add a number of months from a date while resetting the day to prevent month length mismatches.
|
|
@@ -11683,7 +11687,7 @@ const {
|
|
|
11683
11687
|
/**
|
|
11684
11688
|
* Component default props.
|
|
11685
11689
|
*/
|
|
11686
|
-
const DEFAULT_PROPS$
|
|
11690
|
+
const DEFAULT_PROPS$R = {
|
|
11687
11691
|
size: Size.big
|
|
11688
11692
|
};
|
|
11689
11693
|
|
|
@@ -11706,7 +11710,7 @@ const Dialog$1 = props => {
|
|
|
11706
11710
|
isOpen,
|
|
11707
11711
|
handleClose,
|
|
11708
11712
|
contentRef,
|
|
11709
|
-
size = DEFAULT_PROPS$
|
|
11713
|
+
size = DEFAULT_PROPS$R.size,
|
|
11710
11714
|
zIndex,
|
|
11711
11715
|
dialogProps,
|
|
11712
11716
|
headerChildContent,
|
|
@@ -11810,7 +11814,7 @@ const isFooter$1 = isComponent('footer');
|
|
|
11810
11814
|
/**
|
|
11811
11815
|
* Component default props.
|
|
11812
11816
|
*/
|
|
11813
|
-
const DEFAULT_PROPS$
|
|
11817
|
+
const DEFAULT_PROPS$Q = {
|
|
11814
11818
|
closeMode: 'unmount',
|
|
11815
11819
|
size: Size$1.big,
|
|
11816
11820
|
disableBodyScroll: true
|
|
@@ -11831,7 +11835,7 @@ const Dialog = forwardRef((props, ref) => {
|
|
|
11831
11835
|
const {
|
|
11832
11836
|
children,
|
|
11833
11837
|
className,
|
|
11834
|
-
closeMode = DEFAULT_PROPS$
|
|
11838
|
+
closeMode = DEFAULT_PROPS$Q.closeMode,
|
|
11835
11839
|
header,
|
|
11836
11840
|
focusElement,
|
|
11837
11841
|
forceFooterDivider,
|
|
@@ -11843,11 +11847,11 @@ const Dialog = forwardRef((props, ref) => {
|
|
|
11843
11847
|
parentElement,
|
|
11844
11848
|
contentRef,
|
|
11845
11849
|
preventAutoClose,
|
|
11846
|
-
size = DEFAULT_PROPS$
|
|
11850
|
+
size = DEFAULT_PROPS$Q.size,
|
|
11847
11851
|
zIndex,
|
|
11848
11852
|
dialogProps,
|
|
11849
11853
|
onVisibilityChange,
|
|
11850
|
-
disableBodyScroll = DEFAULT_PROPS$
|
|
11854
|
+
disableBodyScroll = DEFAULT_PROPS$Q.disableBodyScroll,
|
|
11851
11855
|
preventCloseOnClick,
|
|
11852
11856
|
preventCloseOnEscape,
|
|
11853
11857
|
...forwardedProps
|
|
@@ -11953,7 +11957,7 @@ const Dialog = forwardRef((props, ref) => {
|
|
|
11953
11957
|
});
|
|
11954
11958
|
Dialog.displayName = COMPONENT_NAME$V;
|
|
11955
11959
|
Dialog.className = CLASSNAME$W;
|
|
11956
|
-
Dialog.defaultProps = DEFAULT_PROPS$
|
|
11960
|
+
Dialog.defaultProps = DEFAULT_PROPS$Q;
|
|
11957
11961
|
|
|
11958
11962
|
/**
|
|
11959
11963
|
* Component display name.
|
|
@@ -11997,7 +12001,7 @@ const Divider$1 = props => {
|
|
|
11997
12001
|
/**
|
|
11998
12002
|
* Component default props.
|
|
11999
12003
|
*/
|
|
12000
|
-
const DEFAULT_PROPS$
|
|
12004
|
+
const DEFAULT_PROPS$P = {};
|
|
12001
12005
|
|
|
12002
12006
|
/**
|
|
12003
12007
|
* Divider component.
|
|
@@ -12020,7 +12024,7 @@ const Divider = forwardRef((props, ref) => {
|
|
|
12020
12024
|
});
|
|
12021
12025
|
Divider.displayName = COMPONENT_NAME$U;
|
|
12022
12026
|
Divider.className = CLASSNAME$V;
|
|
12023
|
-
Divider.defaultProps = DEFAULT_PROPS$
|
|
12027
|
+
Divider.defaultProps = DEFAULT_PROPS$P;
|
|
12024
12028
|
|
|
12025
12029
|
/**
|
|
12026
12030
|
* Component display name.
|
|
@@ -12069,7 +12073,7 @@ const DragHandle$1 = props => {
|
|
|
12069
12073
|
/**
|
|
12070
12074
|
* Component default props.
|
|
12071
12075
|
*/
|
|
12072
|
-
const DEFAULT_PROPS$
|
|
12076
|
+
const DEFAULT_PROPS$O = {};
|
|
12073
12077
|
|
|
12074
12078
|
/**
|
|
12075
12079
|
* DragHandle component.
|
|
@@ -12092,7 +12096,7 @@ const DragHandle = forwardRef((props, ref) => {
|
|
|
12092
12096
|
});
|
|
12093
12097
|
DragHandle.displayName = COMPONENT_NAME$T;
|
|
12094
12098
|
DragHandle.className = CLASSNAME$U;
|
|
12095
|
-
DragHandle.defaultProps = DEFAULT_PROPS$
|
|
12099
|
+
DragHandle.defaultProps = DEFAULT_PROPS$O;
|
|
12096
12100
|
|
|
12097
12101
|
const INITIAL_INDEX = -1;
|
|
12098
12102
|
|
|
@@ -12288,7 +12292,7 @@ const InternalList = forwardRef((props, ref) => {
|
|
|
12288
12292
|
});
|
|
12289
12293
|
InternalList.displayName = COMPONENT_NAME$1e;
|
|
12290
12294
|
InternalList.className = CLASSNAME$1d;
|
|
12291
|
-
InternalList.defaultProps = DEFAULT_PROPS$
|
|
12295
|
+
InternalList.defaultProps = DEFAULT_PROPS$Z;
|
|
12292
12296
|
const List = Object.assign(InternalList, {
|
|
12293
12297
|
useKeyboardListNavigation
|
|
12294
12298
|
});
|
|
@@ -12351,7 +12355,7 @@ const {
|
|
|
12351
12355
|
/**
|
|
12352
12356
|
* Component default props.
|
|
12353
12357
|
*/
|
|
12354
|
-
const DEFAULT_PROPS$
|
|
12358
|
+
const DEFAULT_PROPS$N = {
|
|
12355
12359
|
closeOnClick: true,
|
|
12356
12360
|
closeOnClickAway: true,
|
|
12357
12361
|
closeOnEscape: true,
|
|
@@ -12374,18 +12378,18 @@ const Dropdown = forwardRef((props, ref) => {
|
|
|
12374
12378
|
anchorRef,
|
|
12375
12379
|
children,
|
|
12376
12380
|
className,
|
|
12377
|
-
closeOnClick = DEFAULT_PROPS$
|
|
12378
|
-
closeOnClickAway = DEFAULT_PROPS$
|
|
12379
|
-
closeOnEscape = DEFAULT_PROPS$
|
|
12380
|
-
fitToAnchorWidth = DEFAULT_PROPS$
|
|
12381
|
-
fitWithinViewportHeight = DEFAULT_PROPS$
|
|
12381
|
+
closeOnClick = DEFAULT_PROPS$N.closeOnClick,
|
|
12382
|
+
closeOnClickAway = DEFAULT_PROPS$N.closeOnClickAway,
|
|
12383
|
+
closeOnEscape = DEFAULT_PROPS$N.closeOnEscape,
|
|
12384
|
+
fitToAnchorWidth = DEFAULT_PROPS$N.fitToAnchorWidth,
|
|
12385
|
+
fitWithinViewportHeight = DEFAULT_PROPS$N.fitWithinViewportHeight,
|
|
12382
12386
|
isOpen,
|
|
12383
12387
|
offset,
|
|
12384
|
-
focusAnchorOnClose = DEFAULT_PROPS$
|
|
12388
|
+
focusAnchorOnClose = DEFAULT_PROPS$N.focusAnchorOnClose,
|
|
12385
12389
|
onClose,
|
|
12386
12390
|
onInfiniteScroll,
|
|
12387
|
-
placement = DEFAULT_PROPS$
|
|
12388
|
-
shouldFocusOnOpen = DEFAULT_PROPS$
|
|
12391
|
+
placement = DEFAULT_PROPS$N.placement,
|
|
12392
|
+
shouldFocusOnOpen = DEFAULT_PROPS$N.shouldFocusOnOpen,
|
|
12389
12393
|
zIndex,
|
|
12390
12394
|
...forwardedProps
|
|
12391
12395
|
} = props;
|
|
@@ -12431,7 +12435,7 @@ const Dropdown = forwardRef((props, ref) => {
|
|
|
12431
12435
|
});
|
|
12432
12436
|
Dropdown.displayName = COMPONENT_NAME$S;
|
|
12433
12437
|
Dropdown.className = CLASSNAME$T;
|
|
12434
|
-
Dropdown.defaultProps = DEFAULT_PROPS$
|
|
12438
|
+
Dropdown.defaultProps = DEFAULT_PROPS$N;
|
|
12435
12439
|
|
|
12436
12440
|
/**
|
|
12437
12441
|
* Component display name.
|
|
@@ -12450,7 +12454,7 @@ const {
|
|
|
12450
12454
|
/**
|
|
12451
12455
|
* Component default props.
|
|
12452
12456
|
*/
|
|
12453
|
-
const DEFAULT_PROPS$
|
|
12457
|
+
const DEFAULT_PROPS$M = {
|
|
12454
12458
|
closeMode: 'unmount'
|
|
12455
12459
|
};
|
|
12456
12460
|
|
|
@@ -12563,7 +12567,7 @@ const isFooter = isComponent('footer');
|
|
|
12563
12567
|
const ExpansionPanel = forwardRef((props, ref) => {
|
|
12564
12568
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
12565
12569
|
const {
|
|
12566
|
-
closeMode = DEFAULT_PROPS$
|
|
12570
|
+
closeMode = DEFAULT_PROPS$M.closeMode,
|
|
12567
12571
|
children: anyChildren,
|
|
12568
12572
|
isOpen,
|
|
12569
12573
|
label,
|
|
@@ -12636,11 +12640,11 @@ const ExpansionPanel = forwardRef((props, ref) => {
|
|
|
12636
12640
|
});
|
|
12637
12641
|
ExpansionPanel.displayName = COMPONENT_NAME$R;
|
|
12638
12642
|
ExpansionPanel.className = CLASSNAME$S;
|
|
12639
|
-
ExpansionPanel.defaultProps = DEFAULT_PROPS$
|
|
12643
|
+
ExpansionPanel.defaultProps = DEFAULT_PROPS$M;
|
|
12640
12644
|
|
|
12641
12645
|
const COMPONENT_NAME$Q = 'Flag';
|
|
12642
12646
|
const CLASSNAME$R = 'lumx-flag';
|
|
12643
|
-
const DEFAULT_PROPS$
|
|
12647
|
+
const DEFAULT_PROPS$L = {};
|
|
12644
12648
|
const {
|
|
12645
12649
|
block: block$F,
|
|
12646
12650
|
element: element$w
|
|
@@ -12704,7 +12708,7 @@ const Flag = forwardRef((props, ref) => {
|
|
|
12704
12708
|
});
|
|
12705
12709
|
Flag.displayName = COMPONENT_NAME$Q;
|
|
12706
12710
|
Flag.className = CLASSNAME$R;
|
|
12707
|
-
Flag.defaultProps = DEFAULT_PROPS$
|
|
12711
|
+
Flag.defaultProps = DEFAULT_PROPS$L;
|
|
12708
12712
|
|
|
12709
12713
|
/** The maximum authorized heading level. */
|
|
12710
12714
|
const MAX_HEADING_LEVEL = 6;
|
|
@@ -12742,7 +12746,7 @@ const CLASSNAME$Q = 'lumx-heading';
|
|
|
12742
12746
|
/**
|
|
12743
12747
|
* Component default props.
|
|
12744
12748
|
*/
|
|
12745
|
-
const DEFAULT_PROPS$
|
|
12749
|
+
const DEFAULT_PROPS$K = {};
|
|
12746
12750
|
|
|
12747
12751
|
/**
|
|
12748
12752
|
* Get Heading component common props
|
|
@@ -12802,7 +12806,7 @@ const Heading = forwardRef((props, ref) => {
|
|
|
12802
12806
|
});
|
|
12803
12807
|
Heading.displayName = COMPONENT_NAME$P;
|
|
12804
12808
|
Heading.className = CLASSNAME$Q;
|
|
12805
|
-
Heading.defaultProps = DEFAULT_PROPS$
|
|
12809
|
+
Heading.defaultProps = DEFAULT_PROPS$K;
|
|
12806
12810
|
|
|
12807
12811
|
/**
|
|
12808
12812
|
* Computes the next heading level based on the optional prop level or the parent context level.
|
|
@@ -12853,7 +12857,7 @@ const {
|
|
|
12853
12857
|
/**
|
|
12854
12858
|
* Component default props.
|
|
12855
12859
|
*/
|
|
12856
|
-
const DEFAULT_PROPS$
|
|
12860
|
+
const DEFAULT_PROPS$J = {
|
|
12857
12861
|
orientation: Orientation$1.horizontal,
|
|
12858
12862
|
wrap: 'nowrap'
|
|
12859
12863
|
};
|
|
@@ -12871,9 +12875,9 @@ const Grid = forwardRef((props, ref) => {
|
|
|
12871
12875
|
className,
|
|
12872
12876
|
gutter,
|
|
12873
12877
|
hAlign,
|
|
12874
|
-
orientation = DEFAULT_PROPS$
|
|
12878
|
+
orientation = DEFAULT_PROPS$J.orientation,
|
|
12875
12879
|
vAlign,
|
|
12876
|
-
wrap = DEFAULT_PROPS$
|
|
12880
|
+
wrap = DEFAULT_PROPS$J.wrap,
|
|
12877
12881
|
...forwardedProps
|
|
12878
12882
|
} = props;
|
|
12879
12883
|
return /*#__PURE__*/jsx("div", {
|
|
@@ -12891,7 +12895,7 @@ const Grid = forwardRef((props, ref) => {
|
|
|
12891
12895
|
});
|
|
12892
12896
|
Grid.displayName = COMPONENT_NAME$O;
|
|
12893
12897
|
Grid.className = CLASSNAME$P;
|
|
12894
|
-
Grid.defaultProps = DEFAULT_PROPS$
|
|
12898
|
+
Grid.defaultProps = DEFAULT_PROPS$J;
|
|
12895
12899
|
|
|
12896
12900
|
/**
|
|
12897
12901
|
* Component display name.
|
|
@@ -12949,7 +12953,7 @@ const CLASSNAME$N = 'lumx-grid-column';
|
|
|
12949
12953
|
/**
|
|
12950
12954
|
* Component default props.
|
|
12951
12955
|
*/
|
|
12952
|
-
const DEFAULT_PROPS$
|
|
12956
|
+
const DEFAULT_PROPS$I = {};
|
|
12953
12957
|
|
|
12954
12958
|
/**
|
|
12955
12959
|
* The GridColumn is a layout component that can display children in a grid
|
|
@@ -12986,7 +12990,7 @@ const GridColumn$1 = props => {
|
|
|
12986
12990
|
};
|
|
12987
12991
|
GridColumn$1.displayName = COMPONENT_NAME$M;
|
|
12988
12992
|
GridColumn$1.className = CLASSNAME$N;
|
|
12989
|
-
GridColumn$1.defaultProps = DEFAULT_PROPS$
|
|
12993
|
+
GridColumn$1.defaultProps = DEFAULT_PROPS$I;
|
|
12990
12994
|
|
|
12991
12995
|
/**
|
|
12992
12996
|
* Defines the props of the component.
|
|
@@ -12997,7 +13001,7 @@ GridColumn$1.defaultProps = DEFAULT_PROPS$H;
|
|
|
12997
13001
|
/**
|
|
12998
13002
|
* Component default props.
|
|
12999
13003
|
*/
|
|
13000
|
-
const DEFAULT_PROPS$
|
|
13004
|
+
const DEFAULT_PROPS$H = {};
|
|
13001
13005
|
|
|
13002
13006
|
/**
|
|
13003
13007
|
* The GridColumn is a layout component that can display children in a grid
|
|
@@ -13016,7 +13020,7 @@ const GridColumn = forwardRef((props, ref) => {
|
|
|
13016
13020
|
});
|
|
13017
13021
|
GridColumn.displayName = COMPONENT_NAME$M;
|
|
13018
13022
|
GridColumn.className = CLASSNAME$N;
|
|
13019
|
-
GridColumn.defaultProps = DEFAULT_PROPS$
|
|
13023
|
+
GridColumn.defaultProps = DEFAULT_PROPS$H;
|
|
13020
13024
|
|
|
13021
13025
|
/**
|
|
13022
13026
|
* Image block variants.
|
|
@@ -13051,7 +13055,7 @@ const {
|
|
|
13051
13055
|
/**
|
|
13052
13056
|
* Component default props.
|
|
13053
13057
|
*/
|
|
13054
|
-
const DEFAULT_PROPS$
|
|
13058
|
+
const DEFAULT_PROPS$G = {
|
|
13055
13059
|
captionPosition: ImageBlockCaptionPosition.below,
|
|
13056
13060
|
align: Alignment.left
|
|
13057
13061
|
};
|
|
@@ -13066,9 +13070,9 @@ const DEFAULT_PROPS$F = {
|
|
|
13066
13070
|
const ImageBlock$1 = props => {
|
|
13067
13071
|
const {
|
|
13068
13072
|
actions,
|
|
13069
|
-
align = DEFAULT_PROPS$
|
|
13073
|
+
align = DEFAULT_PROPS$G.align,
|
|
13070
13074
|
alt,
|
|
13071
|
-
captionPosition = DEFAULT_PROPS$
|
|
13075
|
+
captionPosition = DEFAULT_PROPS$G.captionPosition,
|
|
13072
13076
|
captionStyle,
|
|
13073
13077
|
className,
|
|
13074
13078
|
description,
|
|
@@ -13240,7 +13244,7 @@ const ImageBlock = forwardRef((props, ref) => {
|
|
|
13240
13244
|
});
|
|
13241
13245
|
ImageBlock.displayName = COMPONENT_NAME$L;
|
|
13242
13246
|
ImageBlock.className = CLASSNAME$M;
|
|
13243
|
-
ImageBlock.defaultProps = DEFAULT_PROPS$
|
|
13247
|
+
ImageBlock.defaultProps = DEFAULT_PROPS$G;
|
|
13244
13248
|
|
|
13245
13249
|
/**
|
|
13246
13250
|
* Component display name.
|
|
@@ -13994,7 +13998,7 @@ const {
|
|
|
13994
13998
|
/**
|
|
13995
13999
|
* Component default props.
|
|
13996
14000
|
*/
|
|
13997
|
-
const DEFAULT_PROPS$
|
|
14001
|
+
const DEFAULT_PROPS$F = {};
|
|
13998
14002
|
|
|
13999
14003
|
/**
|
|
14000
14004
|
* InlineList component.
|
|
@@ -14043,7 +14047,7 @@ const InlineList$1 = props => {
|
|
|
14043
14047
|
};
|
|
14044
14048
|
InlineList$1.displayName = COMPONENT_NAME$J;
|
|
14045
14049
|
InlineList$1.className = CLASSNAME$K;
|
|
14046
|
-
InlineList$1.defaultProps = DEFAULT_PROPS$
|
|
14050
|
+
InlineList$1.defaultProps = DEFAULT_PROPS$F;
|
|
14047
14051
|
|
|
14048
14052
|
/**
|
|
14049
14053
|
* Defines the props of the component.
|
|
@@ -14069,7 +14073,7 @@ const InlineList = forwardRef((props, ref) => {
|
|
|
14069
14073
|
});
|
|
14070
14074
|
InlineList.displayName = COMPONENT_NAME$J;
|
|
14071
14075
|
InlineList.className = CLASSNAME$K;
|
|
14072
|
-
InlineList.defaultProps = DEFAULT_PROPS$
|
|
14076
|
+
InlineList.defaultProps = DEFAULT_PROPS$F;
|
|
14073
14077
|
|
|
14074
14078
|
/**
|
|
14075
14079
|
* InputHelper component.
|
|
@@ -14428,7 +14432,7 @@ const {
|
|
|
14428
14432
|
/**
|
|
14429
14433
|
* Component default props.
|
|
14430
14434
|
*/
|
|
14431
|
-
const DEFAULT_PROPS$
|
|
14435
|
+
const DEFAULT_PROPS$E = {
|
|
14432
14436
|
size: Size.regular,
|
|
14433
14437
|
titleHeading: 'h2'
|
|
14434
14438
|
};
|
|
@@ -14447,7 +14451,7 @@ const LinkPreview$1 = props => {
|
|
|
14447
14451
|
link,
|
|
14448
14452
|
linkAs,
|
|
14449
14453
|
linkProps,
|
|
14450
|
-
size = DEFAULT_PROPS$
|
|
14454
|
+
size = DEFAULT_PROPS$E.size,
|
|
14451
14455
|
theme,
|
|
14452
14456
|
thumbnailProps,
|
|
14453
14457
|
ref,
|
|
@@ -14535,7 +14539,7 @@ const LinkPreview = forwardRef((props, ref) => {
|
|
|
14535
14539
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
14536
14540
|
const {
|
|
14537
14541
|
theme = defaultTheme,
|
|
14538
|
-
titleHeading = DEFAULT_PROPS$
|
|
14542
|
+
titleHeading = DEFAULT_PROPS$E.titleHeading,
|
|
14539
14543
|
...forwardedProps
|
|
14540
14544
|
} = props;
|
|
14541
14545
|
// Use title heading as title wrapper (see DEFAULT_PROPS for the default value).
|
|
@@ -14551,7 +14555,7 @@ const LinkPreview = forwardRef((props, ref) => {
|
|
|
14551
14555
|
});
|
|
14552
14556
|
LinkPreview.displayName = COMPONENT_NAME$G;
|
|
14553
14557
|
LinkPreview.className = CLASSNAME$H;
|
|
14554
|
-
LinkPreview.defaultProps = DEFAULT_PROPS$
|
|
14558
|
+
LinkPreview.defaultProps = DEFAULT_PROPS$E;
|
|
14555
14559
|
|
|
14556
14560
|
/**
|
|
14557
14561
|
* ListItem.Action props.
|
|
@@ -14584,7 +14588,7 @@ const ListItemAction = Object.assign(forwardRefPolymorphic((props, ref) => {
|
|
|
14584
14588
|
}), {
|
|
14585
14589
|
displayName: COMPONENT_NAME$1b,
|
|
14586
14590
|
className: CLASSNAME$1a,
|
|
14587
|
-
defaultProps: DEFAULT_PROPS$
|
|
14591
|
+
defaultProps: DEFAULT_PROPS$X
|
|
14588
14592
|
});
|
|
14589
14593
|
|
|
14590
14594
|
/**
|
|
@@ -14624,7 +14628,7 @@ const _ListItem = forwardRef((props, ref) => {
|
|
|
14624
14628
|
});
|
|
14625
14629
|
_ListItem.displayName = COMPONENT_NAME$1c;
|
|
14626
14630
|
_ListItem.className = CLASSNAME$1b;
|
|
14627
|
-
_ListItem.defaultProps = DEFAULT_PROPS$
|
|
14631
|
+
_ListItem.defaultProps = DEFAULT_PROPS$Y;
|
|
14628
14632
|
|
|
14629
14633
|
/**
|
|
14630
14634
|
* ListItem component with Action sub-component.
|
|
@@ -14790,7 +14794,7 @@ const {
|
|
|
14790
14794
|
/**
|
|
14791
14795
|
* Component default props.
|
|
14792
14796
|
*/
|
|
14793
|
-
const DEFAULT_PROPS$
|
|
14797
|
+
const DEFAULT_PROPS$D = {};
|
|
14794
14798
|
|
|
14795
14799
|
/**
|
|
14796
14800
|
* Mosaic component.
|
|
@@ -14885,7 +14889,7 @@ const Mosaic = forwardRef((props, ref) => {
|
|
|
14885
14889
|
});
|
|
14886
14890
|
Mosaic.displayName = COMPONENT_NAME$D;
|
|
14887
14891
|
Mosaic.className = CLASSNAME$E;
|
|
14888
|
-
Mosaic.defaultProps = DEFAULT_PROPS$
|
|
14892
|
+
Mosaic.defaultProps = DEFAULT_PROPS$D;
|
|
14889
14893
|
|
|
14890
14894
|
const NavigationContext = /*#__PURE__*/createContext({
|
|
14891
14895
|
orientation: Orientation$1.vertical
|
|
@@ -15083,7 +15087,7 @@ const {
|
|
|
15083
15087
|
/**
|
|
15084
15088
|
* Component default props
|
|
15085
15089
|
*/
|
|
15086
|
-
const DEFAULT_PROPS$
|
|
15090
|
+
const DEFAULT_PROPS$C = {
|
|
15087
15091
|
orientation: Orientation$1.vertical
|
|
15088
15092
|
};
|
|
15089
15093
|
const Navigation = forwardRef((props, ref) => {
|
|
@@ -15092,7 +15096,7 @@ const Navigation = forwardRef((props, ref) => {
|
|
|
15092
15096
|
children,
|
|
15093
15097
|
className,
|
|
15094
15098
|
theme = defaultTheme,
|
|
15095
|
-
orientation = DEFAULT_PROPS$
|
|
15099
|
+
orientation = DEFAULT_PROPS$C.orientation,
|
|
15096
15100
|
...forwardedProps
|
|
15097
15101
|
} = props;
|
|
15098
15102
|
return /*#__PURE__*/jsx(ThemeProvider, {
|
|
@@ -15118,7 +15122,7 @@ const Navigation = forwardRef((props, ref) => {
|
|
|
15118
15122
|
});
|
|
15119
15123
|
Navigation.displayName = COMPONENT_NAME$B;
|
|
15120
15124
|
Navigation.className = CLASSNAME$C;
|
|
15121
|
-
Navigation.defaultProps = DEFAULT_PROPS$
|
|
15125
|
+
Navigation.defaultProps = DEFAULT_PROPS$C;
|
|
15122
15126
|
|
|
15123
15127
|
// Sub components
|
|
15124
15128
|
Navigation.Section = NavigationSection;
|
|
@@ -15163,7 +15167,7 @@ const {
|
|
|
15163
15167
|
/**
|
|
15164
15168
|
* Component default props.
|
|
15165
15169
|
*/
|
|
15166
|
-
const DEFAULT_PROPS$
|
|
15170
|
+
const DEFAULT_PROPS$B = {
|
|
15167
15171
|
zIndex: 9999,
|
|
15168
15172
|
usePortal: true
|
|
15169
15173
|
};
|
|
@@ -15187,8 +15191,8 @@ const Notification = forwardRef((props, ref) => {
|
|
|
15187
15191
|
onClick,
|
|
15188
15192
|
theme = defaultTheme,
|
|
15189
15193
|
type,
|
|
15190
|
-
zIndex = DEFAULT_PROPS$
|
|
15191
|
-
usePortal = DEFAULT_PROPS$
|
|
15194
|
+
zIndex = DEFAULT_PROPS$B.zIndex,
|
|
15195
|
+
usePortal = DEFAULT_PROPS$B.usePortal,
|
|
15192
15196
|
style,
|
|
15193
15197
|
...forwardedProps
|
|
15194
15198
|
} = props;
|
|
@@ -15253,7 +15257,7 @@ const Notification = forwardRef((props, ref) => {
|
|
|
15253
15257
|
});
|
|
15254
15258
|
Notification.displayName = COMPONENT_NAME$A;
|
|
15255
15259
|
Notification.className = CLASSNAME$B;
|
|
15256
|
-
Notification.defaultProps = DEFAULT_PROPS$
|
|
15260
|
+
Notification.defaultProps = DEFAULT_PROPS$B;
|
|
15257
15261
|
|
|
15258
15262
|
/**
|
|
15259
15263
|
* PopoverDialog props.
|
|
@@ -15273,7 +15277,7 @@ const CLASSNAME$A = 'lumx-popover-dialog';
|
|
|
15273
15277
|
/**
|
|
15274
15278
|
* Component default props.
|
|
15275
15279
|
*/
|
|
15276
|
-
const DEFAULT_PROPS$
|
|
15280
|
+
const DEFAULT_PROPS$A = {};
|
|
15277
15281
|
|
|
15278
15282
|
/**
|
|
15279
15283
|
* PopoverDialog component.
|
|
@@ -15313,7 +15317,7 @@ const PopoverDialog = forwardRef((props, ref) => {
|
|
|
15313
15317
|
});
|
|
15314
15318
|
PopoverDialog.displayName = COMPONENT_NAME$z;
|
|
15315
15319
|
PopoverDialog.className = CLASSNAME$A;
|
|
15316
|
-
PopoverDialog.defaultProps = DEFAULT_PROPS$
|
|
15320
|
+
PopoverDialog.defaultProps = DEFAULT_PROPS$A;
|
|
15317
15321
|
|
|
15318
15322
|
/**
|
|
15319
15323
|
* Component display name.
|
|
@@ -15332,7 +15336,7 @@ const {
|
|
|
15332
15336
|
/**
|
|
15333
15337
|
* Component default props.
|
|
15334
15338
|
*/
|
|
15335
|
-
const DEFAULT_PROPS$
|
|
15339
|
+
const DEFAULT_PROPS$z = {
|
|
15336
15340
|
orientation: Orientation$1.horizontal
|
|
15337
15341
|
};
|
|
15338
15342
|
|
|
@@ -15352,7 +15356,7 @@ const PostBlock = forwardRef((props, ref) => {
|
|
|
15352
15356
|
className,
|
|
15353
15357
|
meta,
|
|
15354
15358
|
onClick,
|
|
15355
|
-
orientation = DEFAULT_PROPS$
|
|
15359
|
+
orientation = DEFAULT_PROPS$z.orientation,
|
|
15356
15360
|
tags,
|
|
15357
15361
|
text,
|
|
15358
15362
|
theme = defaultTheme,
|
|
@@ -15414,7 +15418,7 @@ const PostBlock = forwardRef((props, ref) => {
|
|
|
15414
15418
|
});
|
|
15415
15419
|
PostBlock.displayName = COMPONENT_NAME$y;
|
|
15416
15420
|
PostBlock.className = CLASSNAME$z;
|
|
15417
|
-
PostBlock.defaultProps = DEFAULT_PROPS$
|
|
15421
|
+
PostBlock.defaultProps = DEFAULT_PROPS$z;
|
|
15418
15422
|
|
|
15419
15423
|
/**
|
|
15420
15424
|
* Component display name.
|
|
@@ -15433,7 +15437,7 @@ const {
|
|
|
15433
15437
|
/**
|
|
15434
15438
|
* Component default props.
|
|
15435
15439
|
*/
|
|
15436
|
-
const DEFAULT_PROPS$
|
|
15440
|
+
const DEFAULT_PROPS$y = {};
|
|
15437
15441
|
|
|
15438
15442
|
/**
|
|
15439
15443
|
* ProgressLinear component.
|
|
@@ -15487,7 +15491,7 @@ const ProgressLinear = forwardRef((props, ref) => {
|
|
|
15487
15491
|
});
|
|
15488
15492
|
ProgressLinear.displayName = COMPONENT_NAME$x;
|
|
15489
15493
|
ProgressLinear.className = CLASSNAME$y;
|
|
15490
|
-
ProgressLinear.defaultProps = DEFAULT_PROPS$
|
|
15494
|
+
ProgressLinear.defaultProps = DEFAULT_PROPS$y;
|
|
15491
15495
|
|
|
15492
15496
|
/* eslint-disable react/no-unknown-property */
|
|
15493
15497
|
|
|
@@ -15508,7 +15512,7 @@ const {
|
|
|
15508
15512
|
/**
|
|
15509
15513
|
* Component default props.
|
|
15510
15514
|
*/
|
|
15511
|
-
const DEFAULT_PROPS$
|
|
15515
|
+
const DEFAULT_PROPS$x = {
|
|
15512
15516
|
size: Size.m,
|
|
15513
15517
|
display: 'block'
|
|
15514
15518
|
};
|
|
@@ -15523,8 +15527,8 @@ const ProgressCircular$1 = props => {
|
|
|
15523
15527
|
const {
|
|
15524
15528
|
className,
|
|
15525
15529
|
theme,
|
|
15526
|
-
size = DEFAULT_PROPS$
|
|
15527
|
-
display = DEFAULT_PROPS$
|
|
15530
|
+
size = DEFAULT_PROPS$x.size,
|
|
15531
|
+
display = DEFAULT_PROPS$x.display,
|
|
15528
15532
|
ref,
|
|
15529
15533
|
circleProps,
|
|
15530
15534
|
svgProps,
|
|
@@ -15589,7 +15593,7 @@ const ProgressCircular = forwardRef((props, ref) => {
|
|
|
15589
15593
|
});
|
|
15590
15594
|
ProgressCircular.displayName = COMPONENT_NAME$w;
|
|
15591
15595
|
ProgressCircular.className = CLASSNAME$x;
|
|
15592
|
-
ProgressCircular.defaultProps = DEFAULT_PROPS$
|
|
15596
|
+
ProgressCircular.defaultProps = DEFAULT_PROPS$x;
|
|
15593
15597
|
|
|
15594
15598
|
const ProgressVariant = {
|
|
15595
15599
|
linear: 'linear',
|
|
@@ -15616,7 +15620,7 @@ const {
|
|
|
15616
15620
|
/**
|
|
15617
15621
|
* Component default props.
|
|
15618
15622
|
*/
|
|
15619
|
-
const DEFAULT_PROPS$
|
|
15623
|
+
const DEFAULT_PROPS$w = {
|
|
15620
15624
|
variant: ProgressVariant.circular
|
|
15621
15625
|
};
|
|
15622
15626
|
|
|
@@ -15633,7 +15637,7 @@ const Progress = forwardRef((props, ref) => {
|
|
|
15633
15637
|
const {
|
|
15634
15638
|
className,
|
|
15635
15639
|
theme = defaultTheme,
|
|
15636
|
-
variant = DEFAULT_PROPS$
|
|
15640
|
+
variant = DEFAULT_PROPS$w.variant,
|
|
15637
15641
|
...forwardedProps
|
|
15638
15642
|
} = props;
|
|
15639
15643
|
return /*#__PURE__*/jsxs("div", {
|
|
@@ -15652,7 +15656,7 @@ const Progress = forwardRef((props, ref) => {
|
|
|
15652
15656
|
});
|
|
15653
15657
|
Progress.displayName = COMPONENT_NAME$v;
|
|
15654
15658
|
Progress.className = CLASSNAME$w;
|
|
15655
|
-
Progress.defaultProps = DEFAULT_PROPS$
|
|
15659
|
+
Progress.defaultProps = DEFAULT_PROPS$w;
|
|
15656
15660
|
|
|
15657
15661
|
const INIT_STATE = {
|
|
15658
15662
|
isLazy: true,
|
|
@@ -15778,7 +15782,7 @@ const useTabProviderContextState = () => {
|
|
|
15778
15782
|
return context?.[0];
|
|
15779
15783
|
};
|
|
15780
15784
|
|
|
15781
|
-
const DEFAULT_PROPS$
|
|
15785
|
+
const DEFAULT_PROPS$v = {
|
|
15782
15786
|
isLazy: INIT_STATE.isLazy,
|
|
15783
15787
|
shouldActivateOnFocus: INIT_STATE.shouldActivateOnFocus
|
|
15784
15788
|
};
|
|
@@ -15807,7 +15811,7 @@ const ProgressTrackerProvider = props => {
|
|
|
15807
15811
|
dispatch({
|
|
15808
15812
|
type: 'update',
|
|
15809
15813
|
payload: {
|
|
15810
|
-
...DEFAULT_PROPS$
|
|
15814
|
+
...DEFAULT_PROPS$v,
|
|
15811
15815
|
...propState,
|
|
15812
15816
|
activeTabIndex: propState.activeStepIndex || INIT_STATE.activeTabIndex
|
|
15813
15817
|
}
|
|
@@ -15830,7 +15834,7 @@ const ProgressTrackerProvider = props => {
|
|
|
15830
15834
|
children: children
|
|
15831
15835
|
});
|
|
15832
15836
|
};
|
|
15833
|
-
ProgressTrackerProvider.defaultProps = DEFAULT_PROPS$
|
|
15837
|
+
ProgressTrackerProvider.defaultProps = DEFAULT_PROPS$v;
|
|
15834
15838
|
|
|
15835
15839
|
/**
|
|
15836
15840
|
* Component display name.
|
|
@@ -15849,7 +15853,7 @@ const {
|
|
|
15849
15853
|
/**
|
|
15850
15854
|
* Component default props.
|
|
15851
15855
|
*/
|
|
15852
|
-
const DEFAULT_PROPS$
|
|
15856
|
+
const DEFAULT_PROPS$u = {};
|
|
15853
15857
|
|
|
15854
15858
|
/**
|
|
15855
15859
|
* ProgressTracker component.
|
|
@@ -15903,7 +15907,7 @@ const ProgressTracker = forwardRef((props, ref) => {
|
|
|
15903
15907
|
});
|
|
15904
15908
|
ProgressTracker.displayName = COMPONENT_NAME$u;
|
|
15905
15909
|
ProgressTracker.className = CLASSNAME$v;
|
|
15906
|
-
ProgressTracker.defaultProps = DEFAULT_PROPS$
|
|
15910
|
+
ProgressTracker.defaultProps = DEFAULT_PROPS$u;
|
|
15907
15911
|
|
|
15908
15912
|
/**
|
|
15909
15913
|
* Component display name.
|
|
@@ -15922,7 +15926,7 @@ const {
|
|
|
15922
15926
|
/**
|
|
15923
15927
|
* Component default props.
|
|
15924
15928
|
*/
|
|
15925
|
-
const DEFAULT_PROPS$
|
|
15929
|
+
const DEFAULT_PROPS$t = {};
|
|
15926
15930
|
|
|
15927
15931
|
/**
|
|
15928
15932
|
* ProgressTrackerStep component.
|
|
@@ -16017,7 +16021,7 @@ const ProgressTrackerStep = forwardRef((props, ref) => {
|
|
|
16017
16021
|
});
|
|
16018
16022
|
ProgressTrackerStep.displayName = COMPONENT_NAME$t;
|
|
16019
16023
|
ProgressTrackerStep.className = CLASSNAME$u;
|
|
16020
|
-
ProgressTrackerStep.defaultProps = DEFAULT_PROPS$
|
|
16024
|
+
ProgressTrackerStep.defaultProps = DEFAULT_PROPS$t;
|
|
16021
16025
|
|
|
16022
16026
|
/**
|
|
16023
16027
|
* Component display name.
|
|
@@ -16035,7 +16039,7 @@ const {
|
|
|
16035
16039
|
/**
|
|
16036
16040
|
* Component default props.
|
|
16037
16041
|
*/
|
|
16038
|
-
const DEFAULT_PROPS$
|
|
16042
|
+
const DEFAULT_PROPS$s = {};
|
|
16039
16043
|
|
|
16040
16044
|
/**
|
|
16041
16045
|
* ProgressTrackerStepPanel component.
|
|
@@ -16071,7 +16075,7 @@ const ProgressTrackerStepPanel = forwardRef((props, ref) => {
|
|
|
16071
16075
|
});
|
|
16072
16076
|
ProgressTrackerStepPanel.displayName = COMPONENT_NAME$s;
|
|
16073
16077
|
ProgressTrackerStepPanel.className = CLASSNAME$t;
|
|
16074
|
-
ProgressTrackerStepPanel.defaultProps = DEFAULT_PROPS$
|
|
16078
|
+
ProgressTrackerStepPanel.defaultProps = DEFAULT_PROPS$s;
|
|
16075
16079
|
|
|
16076
16080
|
/**
|
|
16077
16081
|
* Component display name.
|
|
@@ -16174,7 +16178,7 @@ const RadioButton$1 = props => {
|
|
|
16174
16178
|
/**
|
|
16175
16179
|
* Component default props.
|
|
16176
16180
|
*/
|
|
16177
|
-
const DEFAULT_PROPS$
|
|
16181
|
+
const DEFAULT_PROPS$r = {};
|
|
16178
16182
|
|
|
16179
16183
|
/**
|
|
16180
16184
|
* RadioButton component.
|
|
@@ -16230,7 +16234,7 @@ const RadioButton = forwardRef((props, ref) => {
|
|
|
16230
16234
|
});
|
|
16231
16235
|
RadioButton.displayName = COMPONENT_NAME$r;
|
|
16232
16236
|
RadioButton.className = CLASSNAME$s;
|
|
16233
|
-
RadioButton.defaultProps = DEFAULT_PROPS$
|
|
16237
|
+
RadioButton.defaultProps = DEFAULT_PROPS$r;
|
|
16234
16238
|
|
|
16235
16239
|
/**
|
|
16236
16240
|
* Component display name.
|
|
@@ -16245,7 +16249,7 @@ const CLASSNAME$r = 'lumx-radio-group';
|
|
|
16245
16249
|
/**
|
|
16246
16250
|
* Component default props.
|
|
16247
16251
|
*/
|
|
16248
|
-
const DEFAULT_PROPS$
|
|
16252
|
+
const DEFAULT_PROPS$q = {};
|
|
16249
16253
|
|
|
16250
16254
|
/**
|
|
16251
16255
|
* RadioGroup component.
|
|
@@ -16269,7 +16273,7 @@ const RadioGroup$1 = props => {
|
|
|
16269
16273
|
};
|
|
16270
16274
|
RadioGroup$1.displayName = COMPONENT_NAME$q;
|
|
16271
16275
|
RadioGroup$1.className = CLASSNAME$r;
|
|
16272
|
-
RadioGroup$1.defaultProps = DEFAULT_PROPS$
|
|
16276
|
+
RadioGroup$1.defaultProps = DEFAULT_PROPS$q;
|
|
16273
16277
|
|
|
16274
16278
|
/**
|
|
16275
16279
|
* Defines the props of the component.
|
|
@@ -16453,7 +16457,7 @@ const {
|
|
|
16453
16457
|
} = classNames.bem(CLASSNAME$p);
|
|
16454
16458
|
|
|
16455
16459
|
/** The default value of props. */
|
|
16456
|
-
const DEFAULT_PROPS$
|
|
16460
|
+
const DEFAULT_PROPS$p = {
|
|
16457
16461
|
selectedValueRender: choice => choice,
|
|
16458
16462
|
variant: SelectVariant.input
|
|
16459
16463
|
};
|
|
@@ -16577,7 +16581,7 @@ const Select = forwardRef((props, ref) => {
|
|
|
16577
16581
|
const isEmpty$1 = isEmpty(props.value);
|
|
16578
16582
|
const hasInputClear = props.onClear && props.clearButtonProps && !isEmpty$1;
|
|
16579
16583
|
return WithSelectContext(SelectField, {
|
|
16580
|
-
...DEFAULT_PROPS$
|
|
16584
|
+
...DEFAULT_PROPS$p,
|
|
16581
16585
|
...props,
|
|
16582
16586
|
className: classNames.join(props.className, block$j({
|
|
16583
16587
|
'has-input-clear': hasInputClear,
|
|
@@ -16589,7 +16593,7 @@ const Select = forwardRef((props, ref) => {
|
|
|
16589
16593
|
});
|
|
16590
16594
|
Select.displayName = COMPONENT_NAME$p;
|
|
16591
16595
|
Select.className = CLASSNAME$p;
|
|
16592
|
-
Select.defaultProps = DEFAULT_PROPS$
|
|
16596
|
+
Select.defaultProps = DEFAULT_PROPS$p;
|
|
16593
16597
|
Select.className = CLASSNAME$p;
|
|
16594
16598
|
|
|
16595
16599
|
/** The display name of the component. */
|
|
@@ -16603,7 +16607,7 @@ const {
|
|
|
16603
16607
|
} = classNames.bem(CLASSNAME$o);
|
|
16604
16608
|
|
|
16605
16609
|
/** The default value of props. */
|
|
16606
|
-
const DEFAULT_PROPS$
|
|
16610
|
+
const DEFAULT_PROPS$o = {
|
|
16607
16611
|
selectedChipRender(choice, index, onClear, isDisabled, theme) {
|
|
16608
16612
|
const onClick = event => onClear && onClear(event, choice);
|
|
16609
16613
|
return /*#__PURE__*/jsx(Chip, {
|
|
@@ -16732,7 +16736,7 @@ const SelectMultipleField = props => {
|
|
|
16732
16736
|
*/
|
|
16733
16737
|
const SelectMultiple = forwardRef((props, ref) => {
|
|
16734
16738
|
return WithSelectContext(SelectMultipleField, {
|
|
16735
|
-
...DEFAULT_PROPS$
|
|
16739
|
+
...DEFAULT_PROPS$o,
|
|
16736
16740
|
...props,
|
|
16737
16741
|
className: classNames.join(props.className, block$i({
|
|
16738
16742
|
'has-multiple': !props.isEmpty
|
|
@@ -16743,7 +16747,7 @@ const SelectMultiple = forwardRef((props, ref) => {
|
|
|
16743
16747
|
});
|
|
16744
16748
|
SelectMultiple.displayName = COMPONENT_NAME$o;
|
|
16745
16749
|
SelectMultiple.className = CLASSNAME$o;
|
|
16746
|
-
SelectMultiple.defaultProps = DEFAULT_PROPS$
|
|
16750
|
+
SelectMultiple.defaultProps = DEFAULT_PROPS$o;
|
|
16747
16751
|
|
|
16748
16752
|
/**
|
|
16749
16753
|
* Find the option whose id matches the given value.
|
|
@@ -17587,7 +17591,7 @@ const {
|
|
|
17587
17591
|
/**
|
|
17588
17592
|
* Component default props.
|
|
17589
17593
|
*/
|
|
17590
|
-
const DEFAULT_PROPS$
|
|
17594
|
+
const DEFAULT_PROPS$n = {
|
|
17591
17595
|
emphasis: Emphasis$1.high,
|
|
17592
17596
|
closeMode: 'unmount'
|
|
17593
17597
|
};
|
|
@@ -17603,7 +17607,7 @@ const SideNavigationItem = forwardRef((props, ref) => {
|
|
|
17603
17607
|
const {
|
|
17604
17608
|
children,
|
|
17605
17609
|
className,
|
|
17606
|
-
emphasis = DEFAULT_PROPS$
|
|
17610
|
+
emphasis = DEFAULT_PROPS$n.emphasis,
|
|
17607
17611
|
icon,
|
|
17608
17612
|
isOpen,
|
|
17609
17613
|
isSelected,
|
|
@@ -17613,7 +17617,7 @@ const SideNavigationItem = forwardRef((props, ref) => {
|
|
|
17613
17617
|
onActionClick,
|
|
17614
17618
|
onClick,
|
|
17615
17619
|
toggleButtonProps,
|
|
17616
|
-
closeMode = DEFAULT_PROPS$
|
|
17620
|
+
closeMode = DEFAULT_PROPS$n.closeMode,
|
|
17617
17621
|
...forwardedProps
|
|
17618
17622
|
} = props;
|
|
17619
17623
|
const content = children && Children.toArray(children).filter(isComponent(SideNavigationItem));
|
|
@@ -17690,7 +17694,7 @@ const SideNavigationItem = forwardRef((props, ref) => {
|
|
|
17690
17694
|
});
|
|
17691
17695
|
SideNavigationItem.displayName = COMPONENT_NAME$k;
|
|
17692
17696
|
SideNavigationItem.className = CLASSNAME$k;
|
|
17693
|
-
SideNavigationItem.defaultProps = DEFAULT_PROPS$
|
|
17697
|
+
SideNavigationItem.defaultProps = DEFAULT_PROPS$n;
|
|
17694
17698
|
|
|
17695
17699
|
/**
|
|
17696
17700
|
* Component display name.
|
|
@@ -17761,7 +17765,7 @@ const {
|
|
|
17761
17765
|
/**
|
|
17762
17766
|
* Component default props.
|
|
17763
17767
|
*/
|
|
17764
|
-
const DEFAULT_PROPS$
|
|
17768
|
+
const DEFAULT_PROPS$m = {
|
|
17765
17769
|
variant: SkeletonRectangleVariant.squared
|
|
17766
17770
|
};
|
|
17767
17771
|
|
|
@@ -17777,7 +17781,7 @@ const SkeletonRectangle$1 = props => {
|
|
|
17777
17781
|
className,
|
|
17778
17782
|
height,
|
|
17779
17783
|
theme,
|
|
17780
|
-
variant = DEFAULT_PROPS$
|
|
17784
|
+
variant = DEFAULT_PROPS$m.variant,
|
|
17781
17785
|
width,
|
|
17782
17786
|
color,
|
|
17783
17787
|
ref,
|
|
@@ -17804,7 +17808,7 @@ const SkeletonRectangle$1 = props => {
|
|
|
17804
17808
|
* Defines the props of the component.
|
|
17805
17809
|
*/
|
|
17806
17810
|
|
|
17807
|
-
const DEFAULT_PROPS$
|
|
17811
|
+
const DEFAULT_PROPS$l = {};
|
|
17808
17812
|
|
|
17809
17813
|
/**
|
|
17810
17814
|
* SkeletonCircle component.
|
|
@@ -17832,14 +17836,14 @@ const SkeletonCircle = forwardRef((props, ref) => {
|
|
|
17832
17836
|
});
|
|
17833
17837
|
});
|
|
17834
17838
|
SkeletonCircle.displayName = COMPONENT_NAME$j;
|
|
17835
|
-
SkeletonCircle.defaultProps = DEFAULT_PROPS$
|
|
17839
|
+
SkeletonCircle.defaultProps = DEFAULT_PROPS$l;
|
|
17836
17840
|
SkeletonCircle.className = CLASSNAME$j;
|
|
17837
17841
|
|
|
17838
17842
|
/**
|
|
17839
17843
|
* Defines the props of the component.
|
|
17840
17844
|
*/
|
|
17841
17845
|
|
|
17842
|
-
const DEFAULT_PROPS$
|
|
17846
|
+
const DEFAULT_PROPS$k = DEFAULT_PROPS$m;
|
|
17843
17847
|
|
|
17844
17848
|
/**
|
|
17845
17849
|
* SkeletonRectangle component.
|
|
@@ -17855,7 +17859,7 @@ const SkeletonRectangle = forwardRef((props, ref) => {
|
|
|
17855
17859
|
className,
|
|
17856
17860
|
height,
|
|
17857
17861
|
theme = defaultTheme,
|
|
17858
|
-
variant = DEFAULT_PROPS$
|
|
17862
|
+
variant = DEFAULT_PROPS$k.variant,
|
|
17859
17863
|
width,
|
|
17860
17864
|
color,
|
|
17861
17865
|
...forwardedProps
|
|
@@ -17874,13 +17878,13 @@ const SkeletonRectangle = forwardRef((props, ref) => {
|
|
|
17874
17878
|
});
|
|
17875
17879
|
SkeletonRectangle.displayName = COMPONENT_NAME$i;
|
|
17876
17880
|
SkeletonRectangle.className = CLASSNAME$i;
|
|
17877
|
-
SkeletonRectangle.defaultProps = DEFAULT_PROPS$
|
|
17881
|
+
SkeletonRectangle.defaultProps = DEFAULT_PROPS$k;
|
|
17878
17882
|
|
|
17879
17883
|
/**
|
|
17880
17884
|
* Defines the props of the component.
|
|
17881
17885
|
*/
|
|
17882
17886
|
|
|
17883
|
-
const DEFAULT_PROPS$
|
|
17887
|
+
const DEFAULT_PROPS$j = {};
|
|
17884
17888
|
|
|
17885
17889
|
/**
|
|
17886
17890
|
* SkeletonTypography component.
|
|
@@ -17910,7 +17914,7 @@ const SkeletonTypography = forwardRef((props, ref) => {
|
|
|
17910
17914
|
});
|
|
17911
17915
|
});
|
|
17912
17916
|
SkeletonTypography.displayName = COMPONENT_NAME$16;
|
|
17913
|
-
SkeletonTypography.defaultProps = DEFAULT_PROPS$
|
|
17917
|
+
SkeletonTypography.defaultProps = DEFAULT_PROPS$j;
|
|
17914
17918
|
SkeletonTypography.className = CLASSNAME$15;
|
|
17915
17919
|
|
|
17916
17920
|
/**
|
|
@@ -17949,7 +17953,7 @@ const {
|
|
|
17949
17953
|
/**
|
|
17950
17954
|
* Component default props.
|
|
17951
17955
|
*/
|
|
17952
|
-
const DEFAULT_PROPS$
|
|
17956
|
+
const DEFAULT_PROPS$i = {
|
|
17953
17957
|
precision: 0,
|
|
17954
17958
|
steps: 0
|
|
17955
17959
|
};
|
|
@@ -18000,8 +18004,8 @@ const Slider = forwardRef((props, ref) => {
|
|
|
18000
18004
|
name,
|
|
18001
18005
|
onChange,
|
|
18002
18006
|
onMouseDown,
|
|
18003
|
-
precision = DEFAULT_PROPS$
|
|
18004
|
-
steps = DEFAULT_PROPS$
|
|
18007
|
+
precision = DEFAULT_PROPS$i.precision,
|
|
18008
|
+
steps = DEFAULT_PROPS$i.steps,
|
|
18005
18009
|
theme = defaultTheme,
|
|
18006
18010
|
value,
|
|
18007
18011
|
...forwardedProps
|
|
@@ -18204,7 +18208,7 @@ const Slider = forwardRef((props, ref) => {
|
|
|
18204
18208
|
});
|
|
18205
18209
|
Slider.displayName = COMPONENT_NAME$h;
|
|
18206
18210
|
Slider.className = CLASSNAME$h;
|
|
18207
|
-
Slider.defaultProps = DEFAULT_PROPS$
|
|
18211
|
+
Slider.defaultProps = DEFAULT_PROPS$i;
|
|
18208
18212
|
|
|
18209
18213
|
/**
|
|
18210
18214
|
* Making setInterval Declarative with React Hooks.
|
|
@@ -18582,7 +18586,7 @@ SlideshowItemGroup.className = CLASSNAME$g;
|
|
|
18582
18586
|
/**
|
|
18583
18587
|
* Component default props.
|
|
18584
18588
|
*/
|
|
18585
|
-
const DEFAULT_PROPS$
|
|
18589
|
+
const DEFAULT_PROPS$h = {
|
|
18586
18590
|
...DEFAULT_OPTIONS,
|
|
18587
18591
|
slideMode: SlideMode.transformTranslate
|
|
18588
18592
|
};
|
|
@@ -18598,19 +18602,19 @@ const Slideshow = forwardRef((props, ref) => {
|
|
|
18598
18602
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
18599
18603
|
const {
|
|
18600
18604
|
activeIndex,
|
|
18601
|
-
autoPlay = DEFAULT_PROPS$
|
|
18605
|
+
autoPlay = DEFAULT_PROPS$h.autoPlay,
|
|
18602
18606
|
children,
|
|
18603
18607
|
className,
|
|
18604
18608
|
fillHeight,
|
|
18605
18609
|
groupBy = DEFAULT_OPTIONS.groupBy,
|
|
18606
|
-
interval = DEFAULT_PROPS$
|
|
18610
|
+
interval = DEFAULT_PROPS$h.interval,
|
|
18607
18611
|
onChange,
|
|
18608
18612
|
slideshowControlsProps,
|
|
18609
18613
|
theme = defaultTheme,
|
|
18610
18614
|
id,
|
|
18611
18615
|
slidesId,
|
|
18612
18616
|
slideGroupLabel,
|
|
18613
|
-
slideMode = DEFAULT_PROPS$
|
|
18617
|
+
slideMode = DEFAULT_PROPS$h.slideMode,
|
|
18614
18618
|
...forwardedProps
|
|
18615
18619
|
} = props;
|
|
18616
18620
|
// Number of slideshow items.
|
|
@@ -18632,7 +18636,7 @@ const Slideshow = forwardRef((props, ref) => {
|
|
|
18632
18636
|
toggleForcePause
|
|
18633
18637
|
} = SlideshowControls.useSlideshowControls({
|
|
18634
18638
|
activeIndex,
|
|
18635
|
-
defaultActiveIndex: DEFAULT_PROPS$
|
|
18639
|
+
defaultActiveIndex: DEFAULT_PROPS$h.activeIndex,
|
|
18636
18640
|
autoPlay: Boolean(autoPlay),
|
|
18637
18641
|
itemsCount,
|
|
18638
18642
|
groupBy,
|
|
@@ -18702,7 +18706,7 @@ const Slideshow = forwardRef((props, ref) => {
|
|
|
18702
18706
|
});
|
|
18703
18707
|
});
|
|
18704
18708
|
Slideshow.displayName = 'Slideshow';
|
|
18705
|
-
Slideshow.defaultProps = DEFAULT_PROPS$
|
|
18709
|
+
Slideshow.defaultProps = DEFAULT_PROPS$h;
|
|
18706
18710
|
|
|
18707
18711
|
/**
|
|
18708
18712
|
* Component display name.
|
|
@@ -18811,7 +18815,7 @@ const {
|
|
|
18811
18815
|
/**
|
|
18812
18816
|
* Component default props.
|
|
18813
18817
|
*/
|
|
18814
|
-
const DEFAULT_PROPS$
|
|
18818
|
+
const DEFAULT_PROPS$g = {
|
|
18815
18819
|
activeIndex: 0
|
|
18816
18820
|
};
|
|
18817
18821
|
|
|
@@ -18825,7 +18829,7 @@ const DEFAULT_PROPS$f = {
|
|
|
18825
18829
|
const InternalSlideshowControls = forwardRef((props, ref) => {
|
|
18826
18830
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
18827
18831
|
const {
|
|
18828
|
-
activeIndex = DEFAULT_PROPS$
|
|
18832
|
+
activeIndex = DEFAULT_PROPS$g.activeIndex,
|
|
18829
18833
|
className,
|
|
18830
18834
|
nextButtonProps,
|
|
18831
18835
|
onNextClick,
|
|
@@ -18939,7 +18943,7 @@ const InternalSlideshowControls = forwardRef((props, ref) => {
|
|
|
18939
18943
|
});
|
|
18940
18944
|
InternalSlideshowControls.displayName = COMPONENT_NAME$e;
|
|
18941
18945
|
InternalSlideshowControls.className = CLASSNAME$e;
|
|
18942
|
-
InternalSlideshowControls.defaultProps = DEFAULT_PROPS$
|
|
18946
|
+
InternalSlideshowControls.defaultProps = DEFAULT_PROPS$g;
|
|
18943
18947
|
const SlideshowControls = Object.assign(InternalSlideshowControls, {
|
|
18944
18948
|
useSlideshowControls,
|
|
18945
18949
|
useSlideshowControlsDefaultOptions: DEFAULT_OPTIONS
|
|
@@ -19071,7 +19075,7 @@ const {
|
|
|
19071
19075
|
/**
|
|
19072
19076
|
* Component default props.
|
|
19073
19077
|
*/
|
|
19074
|
-
const DEFAULT_PROPS$
|
|
19078
|
+
const DEFAULT_PROPS$f = {
|
|
19075
19079
|
slideMode: SlideMode.transformTranslate
|
|
19076
19080
|
};
|
|
19077
19081
|
|
|
@@ -19098,7 +19102,7 @@ const Slides = forwardRef((props, ref) => {
|
|
|
19098
19102
|
afterSlides,
|
|
19099
19103
|
hasControls,
|
|
19100
19104
|
slideGroupLabel,
|
|
19101
|
-
slideMode = DEFAULT_PROPS$
|
|
19105
|
+
slideMode = DEFAULT_PROPS$f.slideMode,
|
|
19102
19106
|
onChange,
|
|
19103
19107
|
...forwardedProps
|
|
19104
19108
|
} = props;
|
|
@@ -19185,7 +19189,7 @@ const {
|
|
|
19185
19189
|
/**
|
|
19186
19190
|
* Component default props.
|
|
19187
19191
|
*/
|
|
19188
|
-
const DEFAULT_PROPS$
|
|
19192
|
+
const DEFAULT_PROPS$e = {
|
|
19189
19193
|
position: 'left'
|
|
19190
19194
|
};
|
|
19191
19195
|
|
|
@@ -19212,7 +19216,7 @@ const Switch$1 = props => {
|
|
|
19212
19216
|
inputProps = {},
|
|
19213
19217
|
isDisabled,
|
|
19214
19218
|
inputId,
|
|
19215
|
-
position = DEFAULT_PROPS$
|
|
19219
|
+
position = DEFAULT_PROPS$e.position,
|
|
19216
19220
|
...forwardedProps
|
|
19217
19221
|
} = props;
|
|
19218
19222
|
const handleOnChange = event => {
|
|
@@ -19280,7 +19284,7 @@ const Switch$1 = props => {
|
|
|
19280
19284
|
/**
|
|
19281
19285
|
* Component default props.
|
|
19282
19286
|
*/
|
|
19283
|
-
const DEFAULT_PROPS$
|
|
19287
|
+
const DEFAULT_PROPS$d = {
|
|
19284
19288
|
position: Alignment$1.left
|
|
19285
19289
|
};
|
|
19286
19290
|
|
|
@@ -19308,7 +19312,7 @@ const Switch = forwardRef((props, ref) => {
|
|
|
19308
19312
|
isChecked = checked,
|
|
19309
19313
|
name,
|
|
19310
19314
|
onChange,
|
|
19311
|
-
position = DEFAULT_PROPS$
|
|
19315
|
+
position = DEFAULT_PROPS$d.position,
|
|
19312
19316
|
theme = defaultTheme,
|
|
19313
19317
|
value,
|
|
19314
19318
|
inputProps = {},
|
|
@@ -19341,7 +19345,7 @@ const Switch = forwardRef((props, ref) => {
|
|
|
19341
19345
|
});
|
|
19342
19346
|
Switch.displayName = COMPONENT_NAME$c;
|
|
19343
19347
|
Switch.className = CLASSNAME$c;
|
|
19344
|
-
Switch.defaultProps = DEFAULT_PROPS$
|
|
19348
|
+
Switch.defaultProps = DEFAULT_PROPS$d;
|
|
19345
19349
|
|
|
19346
19350
|
/**
|
|
19347
19351
|
* Component display name.
|
|
@@ -19364,7 +19368,7 @@ const {
|
|
|
19364
19368
|
/**
|
|
19365
19369
|
* Component default props.
|
|
19366
19370
|
*/
|
|
19367
|
-
const DEFAULT_PROPS$
|
|
19371
|
+
const DEFAULT_PROPS$c = {};
|
|
19368
19372
|
|
|
19369
19373
|
/**
|
|
19370
19374
|
* Table component.
|
|
@@ -19421,7 +19425,7 @@ const Table = forwardRef((props, ref) => {
|
|
|
19421
19425
|
});
|
|
19422
19426
|
Table.displayName = COMPONENT_NAME$b;
|
|
19423
19427
|
Table.className = CLASSNAME$b;
|
|
19424
|
-
Table.defaultProps = DEFAULT_PROPS$
|
|
19428
|
+
Table.defaultProps = DEFAULT_PROPS$c;
|
|
19425
19429
|
|
|
19426
19430
|
/**
|
|
19427
19431
|
* Component display name.
|
|
@@ -19511,7 +19515,7 @@ const {
|
|
|
19511
19515
|
/**
|
|
19512
19516
|
* Component default props.
|
|
19513
19517
|
*/
|
|
19514
|
-
const DEFAULT_PROPS$
|
|
19518
|
+
const DEFAULT_PROPS$b = {
|
|
19515
19519
|
variant: TableCellVariant.body
|
|
19516
19520
|
};
|
|
19517
19521
|
|
|
@@ -19530,7 +19534,7 @@ const TableCell$1 = props => {
|
|
|
19530
19534
|
handleClick,
|
|
19531
19535
|
ref,
|
|
19532
19536
|
sortOrder,
|
|
19533
|
-
variant = DEFAULT_PROPS$
|
|
19537
|
+
variant = DEFAULT_PROPS$b.variant,
|
|
19534
19538
|
...forwardedProps
|
|
19535
19539
|
} = props;
|
|
19536
19540
|
|
|
@@ -19616,7 +19620,7 @@ const TableCell = forwardRef((props, ref) => {
|
|
|
19616
19620
|
});
|
|
19617
19621
|
TableCell.displayName = COMPONENT_NAME$9;
|
|
19618
19622
|
TableCell.className = CLASSNAME$9;
|
|
19619
|
-
TableCell.defaultProps = DEFAULT_PROPS$
|
|
19623
|
+
TableCell.defaultProps = DEFAULT_PROPS$b;
|
|
19620
19624
|
|
|
19621
19625
|
/**
|
|
19622
19626
|
* Component display name.
|
|
@@ -19631,7 +19635,7 @@ const CLASSNAME$8 = `${CLASSNAME$b}__header`;
|
|
|
19631
19635
|
/**
|
|
19632
19636
|
* Component default props.
|
|
19633
19637
|
*/
|
|
19634
|
-
const DEFAULT_PROPS$
|
|
19638
|
+
const DEFAULT_PROPS$a = {};
|
|
19635
19639
|
|
|
19636
19640
|
/**
|
|
19637
19641
|
* TableHeader component.
|
|
@@ -19678,7 +19682,7 @@ const TableHeader = forwardRef((props, ref) => {
|
|
|
19678
19682
|
});
|
|
19679
19683
|
TableHeader.displayName = COMPONENT_NAME$8;
|
|
19680
19684
|
TableHeader.className = CLASSNAME$8;
|
|
19681
|
-
TableHeader.defaultProps = DEFAULT_PROPS$
|
|
19685
|
+
TableHeader.defaultProps = DEFAULT_PROPS$a;
|
|
19682
19686
|
|
|
19683
19687
|
/**
|
|
19684
19688
|
* Component display name.
|
|
@@ -19696,7 +19700,7 @@ const {
|
|
|
19696
19700
|
/**
|
|
19697
19701
|
* Component default props.
|
|
19698
19702
|
*/
|
|
19699
|
-
const DEFAULT_PROPS$
|
|
19703
|
+
const DEFAULT_PROPS$9 = {};
|
|
19700
19704
|
|
|
19701
19705
|
/**
|
|
19702
19706
|
* TableRow component.
|
|
@@ -19768,9 +19772,9 @@ const TableRow = forwardRef((props, ref) => {
|
|
|
19768
19772
|
});
|
|
19769
19773
|
TableRow.displayName = COMPONENT_NAME$7;
|
|
19770
19774
|
TableRow.className = CLASSNAME$7;
|
|
19771
|
-
TableRow.defaultProps = DEFAULT_PROPS$
|
|
19775
|
+
TableRow.defaultProps = DEFAULT_PROPS$9;
|
|
19772
19776
|
|
|
19773
|
-
const DEFAULT_PROPS$
|
|
19777
|
+
const DEFAULT_PROPS$8 = {
|
|
19774
19778
|
isLazy: INIT_STATE.isLazy,
|
|
19775
19779
|
shouldActivateOnFocus: INIT_STATE.shouldActivateOnFocus
|
|
19776
19780
|
};
|
|
@@ -19792,7 +19796,7 @@ const TabProvider = props => {
|
|
|
19792
19796
|
} = props;
|
|
19793
19797
|
const [state, dispatch] = useReducer(reducer, {
|
|
19794
19798
|
...INIT_STATE,
|
|
19795
|
-
...DEFAULT_PROPS$
|
|
19799
|
+
...DEFAULT_PROPS$8,
|
|
19796
19800
|
...propState
|
|
19797
19801
|
});
|
|
19798
19802
|
|
|
@@ -19801,7 +19805,7 @@ const TabProvider = props => {
|
|
|
19801
19805
|
dispatch({
|
|
19802
19806
|
type: 'update',
|
|
19803
19807
|
payload: {
|
|
19804
|
-
...DEFAULT_PROPS$
|
|
19808
|
+
...DEFAULT_PROPS$8,
|
|
19805
19809
|
...propState
|
|
19806
19810
|
}
|
|
19807
19811
|
});
|
|
@@ -19830,7 +19834,7 @@ const TabProvider = props => {
|
|
|
19830
19834
|
children: children
|
|
19831
19835
|
});
|
|
19832
19836
|
};
|
|
19833
|
-
TabProvider.defaultProps = DEFAULT_PROPS$
|
|
19837
|
+
TabProvider.defaultProps = DEFAULT_PROPS$8;
|
|
19834
19838
|
|
|
19835
19839
|
/**
|
|
19836
19840
|
* Component default class name and class prefix.
|
|
@@ -19859,7 +19863,7 @@ const COMPONENT_NAME$6 = 'TabList';
|
|
|
19859
19863
|
/**
|
|
19860
19864
|
* Component default props.
|
|
19861
19865
|
*/
|
|
19862
|
-
const DEFAULT_PROPS$
|
|
19866
|
+
const DEFAULT_PROPS$7 = {
|
|
19863
19867
|
layout: TabListLayout.fixed,
|
|
19864
19868
|
position: Alignment.left
|
|
19865
19869
|
};
|
|
@@ -19878,8 +19882,8 @@ const TabList$1 = props => {
|
|
|
19878
19882
|
'aria-label': ariaLabel,
|
|
19879
19883
|
children,
|
|
19880
19884
|
className,
|
|
19881
|
-
layout = DEFAULT_PROPS$
|
|
19882
|
-
position = DEFAULT_PROPS$
|
|
19885
|
+
layout = DEFAULT_PROPS$7.layout,
|
|
19886
|
+
position = DEFAULT_PROPS$7.position,
|
|
19883
19887
|
theme,
|
|
19884
19888
|
ref,
|
|
19885
19889
|
...forwardedProps
|
|
@@ -19929,7 +19933,7 @@ const TabList = forwardRef((props, ref) => {
|
|
|
19929
19933
|
});
|
|
19930
19934
|
TabList.displayName = COMPONENT_NAME$6;
|
|
19931
19935
|
TabList.className = TABS_CLASSNAME;
|
|
19932
|
-
TabList.defaultProps = DEFAULT_PROPS$
|
|
19936
|
+
TabList.defaultProps = DEFAULT_PROPS$7;
|
|
19933
19937
|
|
|
19934
19938
|
/**
|
|
19935
19939
|
* Component display name.
|
|
@@ -19939,7 +19943,7 @@ const COMPONENT_NAME$5 = 'Tab';
|
|
|
19939
19943
|
/**
|
|
19940
19944
|
* Component default props.
|
|
19941
19945
|
*/
|
|
19942
|
-
const DEFAULT_PROPS$
|
|
19946
|
+
const DEFAULT_PROPS$6 = {};
|
|
19943
19947
|
|
|
19944
19948
|
/**
|
|
19945
19949
|
* Component default class name and class prefix.
|
|
@@ -20076,7 +20080,7 @@ const Tab = forwardRef((props, ref) => {
|
|
|
20076
20080
|
});
|
|
20077
20081
|
Tab.displayName = COMPONENT_NAME$5;
|
|
20078
20082
|
Tab.className = CLASSNAME$6;
|
|
20079
|
-
Tab.defaultProps = DEFAULT_PROPS$
|
|
20083
|
+
Tab.defaultProps = DEFAULT_PROPS$6;
|
|
20080
20084
|
|
|
20081
20085
|
/**
|
|
20082
20086
|
* Component display name.
|
|
@@ -20094,7 +20098,7 @@ const {
|
|
|
20094
20098
|
/**
|
|
20095
20099
|
* Component default props.
|
|
20096
20100
|
*/
|
|
20097
|
-
const DEFAULT_PROPS$
|
|
20101
|
+
const DEFAULT_PROPS$5 = {};
|
|
20098
20102
|
|
|
20099
20103
|
/**
|
|
20100
20104
|
* TabPanel component.
|
|
@@ -20163,7 +20167,7 @@ const TabPanel = forwardRef((props, ref) => {
|
|
|
20163
20167
|
});
|
|
20164
20168
|
TabPanel.displayName = COMPONENT_NAME$4;
|
|
20165
20169
|
TabPanel.className = CLASSNAME$5;
|
|
20166
|
-
TabPanel.defaultProps = DEFAULT_PROPS$
|
|
20170
|
+
TabPanel.defaultProps = DEFAULT_PROPS$5;
|
|
20167
20171
|
|
|
20168
20172
|
/**
|
|
20169
20173
|
* Determines the loading state of an HTML image element.
|
|
@@ -20326,7 +20330,7 @@ const {
|
|
|
20326
20330
|
/**
|
|
20327
20331
|
* Component default props.
|
|
20328
20332
|
*/
|
|
20329
|
-
const DEFAULT_PROPS$
|
|
20333
|
+
const DEFAULT_PROPS$4 = {
|
|
20330
20334
|
fallback: mdiImageBroken,
|
|
20331
20335
|
loading: 'lazy'
|
|
20332
20336
|
};
|
|
@@ -20347,7 +20351,7 @@ const Thumbnail$1 = props => {
|
|
|
20347
20351
|
className,
|
|
20348
20352
|
crossOrigin,
|
|
20349
20353
|
ref,
|
|
20350
|
-
fallback = DEFAULT_PROPS$
|
|
20354
|
+
fallback = DEFAULT_PROPS$4.fallback,
|
|
20351
20355
|
focusPointStyle,
|
|
20352
20356
|
fillHeight,
|
|
20353
20357
|
image,
|
|
@@ -20355,7 +20359,7 @@ const Thumbnail$1 = props => {
|
|
|
20355
20359
|
imgRef: propImgRef,
|
|
20356
20360
|
isLoading: isLoadingProp,
|
|
20357
20361
|
objectFit,
|
|
20358
|
-
loading = DEFAULT_PROPS$
|
|
20362
|
+
loading = DEFAULT_PROPS$4.loading,
|
|
20359
20363
|
loadingPlaceholderImageRef,
|
|
20360
20364
|
isAnyDisabled,
|
|
20361
20365
|
disabledStateProps,
|
|
@@ -20604,7 +20608,7 @@ const Thumbnail = forwardRef((props, ref) => {
|
|
|
20604
20608
|
});
|
|
20605
20609
|
Thumbnail.displayName = COMPONENT_NAME$3;
|
|
20606
20610
|
Thumbnail.className = CLASSNAME$4;
|
|
20607
|
-
Thumbnail.defaultProps = DEFAULT_PROPS$
|
|
20611
|
+
Thumbnail.defaultProps = DEFAULT_PROPS$4;
|
|
20608
20612
|
|
|
20609
20613
|
/**
|
|
20610
20614
|
* Focal point using vertical alignment, horizontal alignment or coordinates (from -1 to 1).
|
|
@@ -20656,11 +20660,30 @@ const {
|
|
|
20656
20660
|
block: block$3
|
|
20657
20661
|
} = bem(CLASSNAME$3);
|
|
20658
20662
|
|
|
20663
|
+
/**
|
|
20664
|
+
* Default values for `TimePickerFieldWrapperProps`.
|
|
20665
|
+
*/
|
|
20666
|
+
const DEFAULT_PROPS$3 = {
|
|
20667
|
+
step: 30
|
|
20668
|
+
};
|
|
20669
|
+
|
|
20659
20670
|
/**
|
|
20660
20671
|
* Translations consumed by `TimePickerField` (forwarded as-is to the underlying
|
|
20661
20672
|
* `SelectTextField`).
|
|
20662
20673
|
*/
|
|
20663
20674
|
|
|
20675
|
+
/**
|
|
20676
|
+
* Wrapper-level props shared by React and Vue `TimePickerField`.
|
|
20677
|
+
*
|
|
20678
|
+
* These represent the public API that framework wrappers expose to consumers
|
|
20679
|
+
* (as opposed to the core template props which use pre-computed `TimeOfDay` values).
|
|
20680
|
+
*/
|
|
20681
|
+
|
|
20682
|
+
/**
|
|
20683
|
+
* `SelectTextField` props managed internally by the `TimePickerField` wrappers
|
|
20684
|
+
* (omitted from the inherited `SelectTextField` props in both React and Vue).
|
|
20685
|
+
*/
|
|
20686
|
+
|
|
20664
20687
|
/**
|
|
20665
20688
|
* Core props for the `TimePickerField` template.
|
|
20666
20689
|
*/
|
|
@@ -20896,7 +20919,7 @@ const TimePickerField = props => {
|
|
|
20896
20919
|
value,
|
|
20897
20920
|
onChange,
|
|
20898
20921
|
locale = getCurrentLocale(),
|
|
20899
|
-
step =
|
|
20922
|
+
step = DEFAULT_PROPS$3.step,
|
|
20900
20923
|
minTime,
|
|
20901
20924
|
maxTime,
|
|
20902
20925
|
className,
|
|
@@ -21432,5 +21455,5 @@ UserBlock.displayName = COMPONENT_NAME;
|
|
|
21432
21455
|
UserBlock.className = CLASSNAME;
|
|
21433
21456
|
UserBlock.defaultProps = DEFAULT_PROPS;
|
|
21434
21457
|
|
|
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$
|
|
21458
|
+
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
21459
|
//# sourceMappingURL=index.js.map
|