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