@dxc-technology/halstack-react 0.0.0-e884f9f → 0.0.0-e922b5b
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/BackgroundColorContext.d.ts +10 -0
- package/BackgroundColorContext.js +1 -4
- package/HalstackContext.d.ts +12 -0
- package/HalstackContext.js +295 -0
- package/accordion/Accordion.d.ts +1 -1
- package/accordion/Accordion.js +124 -137
- package/accordion/Accordion.stories.tsx +306 -0
- package/accordion/Accordion.test.js +71 -0
- package/accordion/types.d.ts +11 -11
- package/accordion-group/AccordionGroup.d.ts +1 -1
- package/accordion-group/AccordionGroup.js +16 -37
- package/accordion-group/AccordionGroup.stories.tsx +251 -0
- package/accordion-group/AccordionGroup.test.js +126 -0
- package/accordion-group/types.d.ts +16 -10
- package/alert/Alert.js +7 -4
- package/alert/Alert.test.js +92 -0
- package/badge/Badge.d.ts +4 -0
- package/badge/Badge.js +6 -4
- package/badge/types.d.ts +5 -0
- package/{radio → badge}/types.js +0 -0
- package/bleed/Bleed.d.ts +3 -0
- package/bleed/Bleed.js +51 -0
- package/bleed/Bleed.stories.tsx +341 -0
- package/bleed/types.d.ts +37 -0
- package/bleed/types.js +5 -0
- package/box/Box.js +25 -35
- package/box/Box.test.js +18 -0
- package/bulleted-list/BulletedList.d.ts +7 -0
- package/bulleted-list/BulletedList.js +123 -0
- package/bulleted-list/BulletedList.stories.tsx +200 -0
- package/bulleted-list/types.d.ts +11 -0
- package/bulleted-list/types.js +5 -0
- package/button/Button.d.ts +1 -1
- package/button/Button.js +62 -83
- package/button/Button.stories.tsx +15 -8
- package/button/Button.test.js +35 -0
- package/button/types.d.ts +10 -14
- package/card/Card.js +25 -28
- package/card/Card.stories.tsx +1 -1
- package/card/Card.test.js +50 -0
- package/checkbox/Checkbox.d.ts +1 -1
- package/checkbox/Checkbox.js +104 -108
- package/checkbox/Checkbox.stories.tsx +124 -128
- package/checkbox/Checkbox.test.js +155 -0
- package/checkbox/types.d.ts +10 -6
- package/chip/Chip.d.ts +4 -0
- package/chip/Chip.js +16 -76
- package/chip/Chip.stories.tsx +6 -8
- package/chip/Chip.test.js +56 -0
- package/chip/types.d.ts +45 -0
- package/chip/types.js +5 -0
- package/common/variables.js +290 -359
- package/date-input/DateInput.js +66 -55
- package/date-input/DateInput.stories.tsx +7 -7
- package/date-input/DateInput.test.js +479 -0
- package/date-input/types.d.ts +16 -9
- package/dialog/Dialog.js +50 -53
- package/dialog/Dialog.stories.tsx +1 -2
- package/dialog/Dialog.test.js +70 -0
- package/dialog/types.d.ts +2 -2
- package/dropdown/Dropdown.d.ts +1 -1
- package/dropdown/Dropdown.js +243 -273
- package/dropdown/Dropdown.stories.tsx +312 -0
- package/dropdown/Dropdown.test.js +591 -0
- package/dropdown/DropdownMenu.d.ts +4 -0
- package/dropdown/DropdownMenu.js +80 -0
- package/dropdown/DropdownMenuItem.d.ts +4 -0
- package/dropdown/DropdownMenuItem.js +92 -0
- package/dropdown/types.d.ts +30 -19
- package/file-input/FileInput.d.ts +1 -1
- package/file-input/FileInput.js +165 -83
- package/file-input/FileInput.stories.tsx +507 -0
- package/file-input/FileInput.test.js +457 -0
- package/file-input/FileItem.js +12 -8
- package/file-input/types.d.ts +32 -7
- package/flex/Flex.d.ts +4 -0
- package/flex/Flex.js +57 -0
- package/flex/Flex.stories.tsx +103 -0
- package/flex/types.d.ts +21 -0
- package/flex/types.js +5 -0
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +32 -113
- package/footer/{Footer.stories.jsx → Footer.stories.tsx} +5 -19
- package/footer/Footer.test.js +109 -0
- package/footer/Icons.d.ts +2 -0
- package/footer/Icons.js +4 -4
- package/footer/types.d.ts +21 -17
- package/header/Header.js +97 -116
- package/header/Header.stories.tsx +46 -36
- package/header/Header.test.js +79 -0
- package/header/Icons.d.ts +2 -0
- package/header/Icons.js +2 -2
- package/header/types.d.ts +2 -2
- package/heading/Heading.js +1 -1
- package/heading/Heading.stories.tsx +3 -2
- package/heading/Heading.test.js +186 -0
- package/inset/Inset.d.ts +3 -0
- package/inset/Inset.js +51 -0
- package/inset/Inset.stories.tsx +229 -0
- package/inset/types.d.ts +37 -0
- package/inset/types.js +5 -0
- package/layout/ApplicationLayout.d.ts +20 -0
- package/layout/ApplicationLayout.js +71 -135
- package/layout/ApplicationLayout.stories.tsx +162 -0
- package/layout/Icons.d.ts +5 -0
- package/layout/Icons.js +13 -2
- package/layout/SidenavContext.d.ts +5 -0
- package/layout/SidenavContext.js +19 -0
- package/layout/types.d.ts +42 -0
- package/layout/types.js +5 -0
- package/link/Link.d.ts +3 -2
- package/link/Link.js +61 -86
- package/link/Link.stories.tsx +99 -52
- package/link/Link.test.js +83 -0
- package/link/types.d.ts +9 -29
- package/main.d.ts +12 -12
- package/main.js +64 -58
- package/number-input/NumberInput.js +14 -24
- package/number-input/NumberInput.stories.tsx +5 -5
- package/number-input/NumberInput.test.js +506 -0
- package/number-input/NumberInputContext.d.ts +4 -0
- package/number-input/NumberInputContext.js +5 -2
- package/number-input/numberInputContextTypes.d.ts +19 -0
- package/number-input/numberInputContextTypes.js +5 -0
- package/number-input/types.d.ts +17 -10
- package/package.json +16 -12
- package/paginator/Paginator.js +19 -46
- package/paginator/Paginator.test.js +308 -0
- package/paragraph/Paragraph.d.ts +6 -0
- package/paragraph/Paragraph.js +38 -0
- package/paragraph/Paragraph.stories.tsx +44 -0
- package/password-input/PasswordInput.js +23 -19
- package/password-input/PasswordInput.stories.tsx +3 -3
- package/password-input/PasswordInput.test.js +180 -0
- package/password-input/types.d.ts +29 -19
- package/progress-bar/ProgressBar.d.ts +2 -2
- package/progress-bar/ProgressBar.js +59 -53
- package/progress-bar/ProgressBar.stories.jsx +13 -11
- package/progress-bar/ProgressBar.test.js +110 -0
- package/progress-bar/types.d.ts +3 -4
- package/quick-nav/QuickNav.d.ts +4 -0
- package/quick-nav/QuickNav.js +118 -0
- package/quick-nav/QuickNav.stories.tsx +264 -0
- package/quick-nav/types.d.ts +21 -0
- package/quick-nav/types.js +5 -0
- package/radio-group/Radio.d.ts +4 -0
- package/radio-group/Radio.js +141 -0
- package/radio-group/RadioGroup.d.ts +4 -0
- package/radio-group/RadioGroup.js +281 -0
- package/radio-group/RadioGroup.stories.tsx +100 -0
- package/radio-group/RadioGroup.test.js +695 -0
- package/radio-group/types.d.ts +114 -0
- package/radio-group/types.js +5 -0
- package/resultsetTable/ResultsetTable.d.ts +4 -0
- package/resultsetTable/ResultsetTable.js +9 -29
- package/resultsetTable/ResultsetTable.stories.tsx +275 -0
- package/resultsetTable/ResultsetTable.test.js +348 -0
- package/resultsetTable/types.d.ts +67 -0
- package/resultsetTable/types.js +5 -0
- package/select/Icons.d.ts +10 -0
- package/select/Icons.js +93 -0
- package/select/Listbox.d.ts +4 -0
- package/select/Listbox.js +198 -0
- package/select/Option.d.ts +4 -0
- package/select/Option.js +110 -0
- package/select/Select.d.ts +4 -0
- package/select/Select.js +158 -380
- package/select/Select.stories.tsx +231 -176
- package/select/Select.test.js +2175 -0
- package/select/types.d.ts +210 -0
- package/select/types.js +5 -0
- package/sidenav/Sidenav.d.ts +6 -5
- package/sidenav/Sidenav.js +186 -54
- package/sidenav/Sidenav.stories.tsx +154 -139
- package/sidenav/Sidenav.test.js +44 -0
- package/sidenav/types.d.ts +50 -27
- package/slider/Slider.d.ts +1 -1
- package/slider/Slider.js +117 -95
- package/slider/Slider.stories.tsx +15 -9
- package/slider/Slider.test.js +250 -0
- package/slider/types.d.ts +6 -2
- package/spinner/Spinner.js +3 -3
- package/spinner/Spinner.stories.jsx +1 -0
- package/spinner/Spinner.test.js +64 -0
- package/switch/Switch.d.ts +2 -2
- package/switch/Switch.js +149 -67
- package/switch/Switch.stories.tsx +21 -43
- package/switch/Switch.test.js +225 -0
- package/switch/types.d.ts +9 -6
- package/table/Table.js +3 -3
- package/table/Table.stories.jsx +2 -1
- package/table/Table.test.js +26 -0
- package/tabs/Tab.d.ts +4 -0
- package/tabs/Tab.js +135 -0
- package/tabs/Tabs.d.ts +1 -1
- package/tabs/Tabs.js +364 -110
- package/tabs/Tabs.stories.tsx +186 -0
- package/tabs/Tabs.test.js +351 -0
- package/tabs/types.d.ts +39 -17
- package/tabs-nav/NavTabs.d.ts +8 -0
- package/tabs-nav/NavTabs.js +125 -0
- package/tabs-nav/NavTabs.stories.tsx +170 -0
- package/tabs-nav/NavTabs.test.js +82 -0
- package/tabs-nav/Tab.d.ts +4 -0
- package/tabs-nav/Tab.js +130 -0
- package/tabs-nav/types.d.ts +53 -0
- package/tabs-nav/types.js +5 -0
- package/tag/Tag.d.ts +1 -1
- package/tag/Tag.js +19 -29
- package/tag/Tag.stories.tsx +26 -29
- package/tag/Tag.test.js +60 -0
- package/tag/types.d.ts +23 -14
- package/text-input/Icons.d.ts +8 -0
- package/text-input/Icons.js +60 -0
- package/text-input/Suggestion.d.ts +4 -0
- package/text-input/Suggestion.js +57 -0
- package/text-input/Suggestions.d.ts +4 -0
- package/text-input/Suggestions.js +134 -0
- package/text-input/TextInput.d.ts +4 -0
- package/text-input/TextInput.js +166 -328
- package/text-input/TextInput.stories.tsx +481 -0
- package/text-input/TextInput.test.js +1713 -0
- package/text-input/types.d.ts +192 -0
- package/text-input/types.js +5 -0
- package/textarea/Textarea.d.ts +4 -0
- package/textarea/Textarea.js +39 -79
- package/textarea/Textarea.stories.jsx +37 -15
- package/textarea/Textarea.test.js +437 -0
- package/textarea/types.d.ts +137 -0
- package/textarea/types.js +5 -0
- package/toggle-group/ToggleGroup.d.ts +4 -0
- package/toggle-group/ToggleGroup.js +18 -46
- package/toggle-group/ToggleGroup.stories.tsx +27 -32
- package/toggle-group/ToggleGroup.test.js +156 -0
- package/toggle-group/types.d.ts +105 -0
- package/toggle-group/types.js +5 -0
- package/typography/Typography.d.ts +4 -0
- package/typography/Typography.js +131 -0
- package/typography/Typography.stories.tsx +198 -0
- package/typography/types.d.ts +18 -0
- package/typography/types.js +5 -0
- package/useTheme.d.ts +2 -0
- package/useTheme.js +2 -2
- package/useTranslatedLabels.d.ts +2 -0
- package/useTranslatedLabels.js +20 -0
- package/wizard/Wizard.d.ts +1 -1
- package/wizard/Wizard.js +112 -58
- package/wizard/{Wizard.stories.jsx → Wizard.stories.tsx} +33 -24
- package/wizard/Wizard.test.js +141 -0
- package/wizard/types.d.ts +13 -12
- package/ThemeContext.js +0 -246
- package/V3Select/V3Select.js +0 -455
- package/V3Select/index.d.ts +0 -27
- package/V3Textarea/V3Textarea.js +0 -260
- package/V3Textarea/index.d.ts +0 -27
- package/chip/index.d.ts +0 -22
- package/date/Date.js +0 -373
- package/date/index.d.ts +0 -27
- package/input-text/Icons.js +0 -22
- package/input-text/InputText.js +0 -611
- package/input-text/index.d.ts +0 -36
- package/radio/Radio.d.ts +0 -4
- package/radio/Radio.js +0 -174
- package/radio/Radio.stories.tsx +0 -192
- package/radio/types.d.ts +0 -54
- package/resultsetTable/index.d.ts +0 -19
- package/select/index.d.ts +0 -131
- package/text-input/index.d.ts +0 -135
- package/textarea/index.d.ts +0 -117
- package/toggle/Toggle.js +0 -186
- package/toggle/index.d.ts +0 -21
- package/toggle-group/index.d.ts +0 -21
- package/upload/Upload.js +0 -201
- package/upload/buttons-upload/ButtonsUpload.js +0 -111
- package/upload/buttons-upload/Icons.js +0 -40
- package/upload/dragAndDropArea/DragAndDropArea.js +0 -225
- package/upload/dragAndDropArea/Icons.js +0 -39
- package/upload/file-upload/FileToUpload.js +0 -115
- package/upload/file-upload/Icons.js +0 -66
- package/upload/files-upload/FilesToUpload.js +0 -109
- package/upload/index.d.ts +0 -15
- package/upload/transaction/Icons.js +0 -160
- package/upload/transaction/Transaction.js +0 -104
- package/upload/transactions/Transactions.js +0 -94
- package/wizard/Icons.js +0 -65
|
@@ -9,12 +9,10 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
9
9
|
});
|
|
10
10
|
exports["default"] = void 0;
|
|
11
11
|
|
|
12
|
-
var
|
|
12
|
+
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
13
13
|
|
|
14
14
|
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
15
15
|
|
|
16
|
-
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
17
|
-
|
|
18
16
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
19
17
|
|
|
20
18
|
var _react = _interopRequireWildcard(require("react"));
|
|
@@ -23,11 +21,9 @@ var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
|
23
21
|
|
|
24
22
|
var _uuid = require("uuid");
|
|
25
23
|
|
|
26
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
27
|
-
|
|
28
24
|
var _variables = require("../common/variables.js");
|
|
29
25
|
|
|
30
|
-
var _useTheme = _interopRequireDefault(require("../useTheme
|
|
26
|
+
var _useTheme = _interopRequireDefault(require("../useTheme"));
|
|
31
27
|
|
|
32
28
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9;
|
|
33
29
|
|
|
@@ -38,12 +34,12 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
|
38
34
|
var DxcToggleGroup = function DxcToggleGroup(_ref) {
|
|
39
35
|
var label = _ref.label,
|
|
40
36
|
helperText = _ref.helperText,
|
|
37
|
+
defaultValue = _ref.defaultValue,
|
|
41
38
|
value = _ref.value,
|
|
42
39
|
onChange = _ref.onChange,
|
|
43
40
|
_ref$disabled = _ref.disabled,
|
|
44
41
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
45
|
-
|
|
46
|
-
options = _ref$options === void 0 ? [] : _ref$options,
|
|
42
|
+
options = _ref.options,
|
|
47
43
|
margin = _ref.margin,
|
|
48
44
|
_ref$multiple = _ref.multiple,
|
|
49
45
|
multiple = _ref$multiple === void 0 ? false : _ref$multiple,
|
|
@@ -51,7 +47,7 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
|
|
|
51
47
|
tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
|
|
52
48
|
var colorsTheme = (0, _useTheme["default"])();
|
|
53
49
|
|
|
54
|
-
var _useState = (0, _react.useState)(multiple ? [] :
|
|
50
|
+
var _useState = (0, _react.useState)(defaultValue !== null && defaultValue !== void 0 ? defaultValue : multiple ? [] : -1),
|
|
55
51
|
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
56
52
|
selectedValue = _useState2[0],
|
|
57
53
|
setSelectedValue = _useState2[1];
|
|
@@ -64,7 +60,7 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
|
|
|
64
60
|
var newSelectedOptions;
|
|
65
61
|
|
|
66
62
|
if (value == null) {
|
|
67
|
-
if (multiple) {
|
|
63
|
+
if (multiple && Array.isArray(selectedValue)) {
|
|
68
64
|
newSelectedOptions = selectedValue.map(function (value) {
|
|
69
65
|
return value;
|
|
70
66
|
});
|
|
@@ -79,9 +75,9 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
|
|
|
79
75
|
setSelectedValue(newSelectedOptions);
|
|
80
76
|
} else setSelectedValue(selectedOption === selectedValue ? null : selectedOption);
|
|
81
77
|
} else if (multiple) {
|
|
82
|
-
newSelectedOptions = value.map(function (v) {
|
|
78
|
+
newSelectedOptions = Array.isArray(value) ? value.map(function (v) {
|
|
83
79
|
return v;
|
|
84
|
-
});
|
|
80
|
+
}) : value;
|
|
85
81
|
|
|
86
82
|
if (newSelectedOptions.includes(selectedOption)) {
|
|
87
83
|
var _index = newSelectedOptions.indexOf(selectedOption);
|
|
@@ -90,7 +86,7 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
|
|
|
90
86
|
} else newSelectedOptions.push(selectedOption);
|
|
91
87
|
}
|
|
92
88
|
|
|
93
|
-
|
|
89
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(multiple ? newSelectedOptions : selectedOption);
|
|
94
90
|
};
|
|
95
91
|
|
|
96
92
|
var handleKeyPress = function handleKeyPress(event, optionValue) {
|
|
@@ -113,16 +109,16 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
|
|
|
113
109
|
role: multiple ? "group" : "radiogroup"
|
|
114
110
|
}, options.map(function (option, i) {
|
|
115
111
|
return /*#__PURE__*/_react["default"].createElement(ToggleContainer, {
|
|
116
|
-
selected: multiple ? value ? value.includes(option.value) : selectedValue.includes(option.value) : value ? option.value === value : option.value === selectedValue,
|
|
112
|
+
selected: multiple ? value ? Array.isArray(value) && value.includes(option.value) : Array.isArray(selectedValue) && selectedValue.includes(option.value) : value ? option.value === value : option.value === selectedValue,
|
|
117
113
|
role: multiple ? "switch" : "radio",
|
|
118
|
-
"aria-checked": multiple ? value ? value.includes(option.value) : selectedValue.includes(option.value) : value ? option.value === value : option.value === selectedValue,
|
|
114
|
+
"aria-checked": multiple ? value ? Array.isArray(value) && value.includes(option.value) : Array.isArray(selectedValue) && selectedValue.includes(option.value) : value ? option.value === value : option.value === selectedValue,
|
|
119
115
|
tabIndex: !disabled ? tabIndex : -1,
|
|
120
116
|
onClick: function onClick() {
|
|
121
117
|
return !disabled && handleToggleChange(option.value);
|
|
122
118
|
},
|
|
123
119
|
isFirst: i === 0,
|
|
124
120
|
isLast: i === options.length - 1,
|
|
125
|
-
isIcon: option.
|
|
121
|
+
isIcon: option.icon,
|
|
126
122
|
optionLabel: option.label,
|
|
127
123
|
disabled: disabled,
|
|
128
124
|
onKeyPress: function onKeyPress(event) {
|
|
@@ -131,10 +127,9 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
|
|
|
131
127
|
key: "toggle-".concat(i, "-").concat(option.label)
|
|
132
128
|
}, /*#__PURE__*/_react["default"].createElement(OptionContent, null, option.icon && /*#__PURE__*/_react["default"].createElement(IconContainer, {
|
|
133
129
|
optionLabel: option.label
|
|
134
|
-
},
|
|
135
|
-
src: option.
|
|
136
|
-
|
|
137
|
-
}), option.label && /*#__PURE__*/_react["default"].createElement(LabelContainer, null, option.label)));
|
|
130
|
+
}, typeof option.icon === "string" ? /*#__PURE__*/_react["default"].createElement(Icon, {
|
|
131
|
+
src: option.icon
|
|
132
|
+
}) : option.icon), option.label && /*#__PURE__*/_react["default"].createElement(LabelContainer, null, option.label)));
|
|
138
133
|
}))));
|
|
139
134
|
};
|
|
140
135
|
|
|
@@ -178,7 +173,7 @@ var ToggleGroup = _styledComponents["default"].div(_templateObject3 || (_templat
|
|
|
178
173
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
|
|
179
174
|
});
|
|
180
175
|
|
|
181
|
-
var OptionsContainer = _styledComponents["default"].div(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n opacity: 1;\n height: calc(48px - 4px - 4px);\n border-width: ", ";\n border-style: ", ";\n border-radius: ", ";\n border-color: ", ";\n background-color: ", ";\n padding: 4px;\n margin-top: ", ";\n"])), function (props) {
|
|
176
|
+
var OptionsContainer = _styledComponents["default"].div(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n width: max-content;\n opacity: 1;\n height: calc(48px - 4px - 4px);\n border-width: ", ";\n border-style: ", ";\n border-radius: ", ";\n border-color: ", ";\n background-color: ", ";\n padding: 4px;\n margin-top: ", ";\n"])), function (props) {
|
|
182
177
|
return props.theme.containerBorderThickness;
|
|
183
178
|
}, function (props) {
|
|
184
179
|
return props.theme.containerBorderStyle;
|
|
@@ -208,36 +203,13 @@ var LabelContainer = _styledComponents["default"].span(_templateObject6 || (_tem
|
|
|
208
203
|
return props.theme.optionLabelFontWeight;
|
|
209
204
|
});
|
|
210
205
|
|
|
211
|
-
var OptionContent = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n"])));
|
|
206
|
+
var OptionContent = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n align-items: center;\n"])));
|
|
212
207
|
|
|
213
|
-
var Icon = _styledComponents["default"].img(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])(["
|
|
214
|
-
return props.optionLabel && props.theme.iconMarginRight;
|
|
215
|
-
});
|
|
208
|
+
var Icon = _styledComponents["default"].img(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])([""])));
|
|
216
209
|
|
|
217
210
|
var IconContainer = _styledComponents["default"].div(_templateObject9 || (_templateObject9 = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: ", ";\n height: 24px;\n width: 24px;\n overflow: hidden;\n display: flex;\n img,\n svg {\n height: 100%;\n width: 100%;\n }\n"])), function (props) {
|
|
218
211
|
return props.optionLabel && props.theme.iconMarginRight;
|
|
219
212
|
});
|
|
220
213
|
|
|
221
|
-
DxcToggleGroup.propTypes = {
|
|
222
|
-
label: _propTypes["default"].string,
|
|
223
|
-
helperText: _propTypes["default"].string,
|
|
224
|
-
value: _propTypes["default"].any,
|
|
225
|
-
onChange: _propTypes["default"].func,
|
|
226
|
-
disabled: _propTypes["default"].bool,
|
|
227
|
-
multiple: _propTypes["default"].bool,
|
|
228
|
-
options: _propTypes["default"].arrayOf(_propTypes["default"].shape({
|
|
229
|
-
value: _propTypes["default"].any.isRequired,
|
|
230
|
-
label: _propTypes["default"].string,
|
|
231
|
-
icon: _propTypes["default"].oneOfType([_propTypes["default"].element, _propTypes["default"].func]),
|
|
232
|
-
iconSrc: _propTypes["default"].string
|
|
233
|
-
})),
|
|
234
|
-
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
235
|
-
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
236
|
-
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
237
|
-
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
238
|
-
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
239
|
-
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
240
|
-
tabIndex: _propTypes["default"].number
|
|
241
|
-
};
|
|
242
214
|
var _default = DxcToggleGroup;
|
|
243
215
|
exports["default"] = _default;
|
|
@@ -9,36 +9,31 @@ export default {
|
|
|
9
9
|
component: DxcToggleGroup,
|
|
10
10
|
};
|
|
11
11
|
|
|
12
|
-
const ethernetSVG = (
|
|
13
|
-
|
|
14
|
-
<
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
<path d="M0,0h24v24H0V0z" fill="none" />
|
|
25
|
-
</g>
|
|
12
|
+
const ethernetSVG = (
|
|
13
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
|
|
14
|
+
<path d="M0 0h24v24H0V0z" fill="none" />
|
|
15
|
+
<path d="M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" />
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
const gMobileSVG = (
|
|
19
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
|
|
20
|
+
<g>
|
|
21
|
+
<path d="M0,0h24v24H0V0z" fill="none" />
|
|
22
|
+
</g>
|
|
23
|
+
<g>
|
|
26
24
|
<g>
|
|
27
|
-
<
|
|
28
|
-
<path d="M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0,2-0.9,2-2v-1.5c0-0.83-0.67-1.5-1.5-1.5c0.83,0,1.5-0.67,1.5-1.5V9c0-1.1-0.9-2-2-2H3z M21,11v4c0,1.1-0.9,2-2,2h-5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2h-7v6h5v-2h-2.5v-2H21z" />
|
|
29
|
-
</g>
|
|
25
|
+
<path d="M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0,2-0.9,2-2v-1.5c0-0.83-0.67-1.5-1.5-1.5c0.83,0,1.5-0.67,1.5-1.5V9c0-1.1-0.9-2-2-2H3z M21,11v4c0,1.1-0.9,2-2,2h-5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2h-7v6h5v-2h-2.5v-2H21z" />
|
|
30
26
|
</g>
|
|
31
|
-
</
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
const wifiSVG = (
|
|
35
|
-
|
|
36
|
-
<
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
};
|
|
27
|
+
</g>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
const wifiSVG = (
|
|
31
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
|
|
32
|
+
<path d="M0 0h24v24H0V0zm0 0h24v24H0V0z" fill="none" />
|
|
33
|
+
<path d="M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" />
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
|
|
42
37
|
const options = [
|
|
43
38
|
{
|
|
44
39
|
value: 1,
|
|
@@ -102,7 +97,7 @@ export const Chromatic = () => (
|
|
|
102
97
|
</ExampleContainer>
|
|
103
98
|
<ExampleContainer>
|
|
104
99
|
<Title title="Selected" theme="light" level={4} />
|
|
105
|
-
<DxcToggleGroup label="Selected" helperText="HelperText"
|
|
100
|
+
<DxcToggleGroup label="Selected" helperText="HelperText" defaultValue={2} options={options} />
|
|
106
101
|
</ExampleContainer>
|
|
107
102
|
<ExampleContainer>
|
|
108
103
|
<Title title="Icons toggle group" theme="light" level={4} />
|
|
@@ -114,11 +109,11 @@ export const Chromatic = () => (
|
|
|
114
109
|
</ExampleContainer>
|
|
115
110
|
<ExampleContainer>
|
|
116
111
|
<Title title="Disabled" theme="light" level={4} />
|
|
117
|
-
<DxcToggleGroup label="Disabled"
|
|
112
|
+
<DxcToggleGroup label="Disabled" defaultValue={2} options={options} disabled />
|
|
118
113
|
</ExampleContainer>
|
|
119
114
|
<ExampleContainer pseudoState="pseudo-hover">
|
|
120
115
|
<Title title="Hovered" theme="light" level={4} />
|
|
121
|
-
<DxcToggleGroup label="Hovered" options={twoOptions}
|
|
116
|
+
<DxcToggleGroup label="Hovered" options={twoOptions} defaultValue={2} />
|
|
122
117
|
</ExampleContainer>
|
|
123
118
|
<ExampleContainer>
|
|
124
119
|
<Title title="Multiple toggleGroup" theme="light" level={4} />
|
|
@@ -126,7 +121,7 @@ export const Chromatic = () => (
|
|
|
126
121
|
label="Toggle group"
|
|
127
122
|
helperText="Please select one or more"
|
|
128
123
|
options={options}
|
|
129
|
-
|
|
124
|
+
defaultValue={[1, 3]}
|
|
130
125
|
multiple
|
|
131
126
|
></DxcToggleGroup>
|
|
132
127
|
</ExampleContainer>
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
var _react = _interopRequireDefault(require("react"));
|
|
6
|
+
|
|
7
|
+
var _react2 = require("@testing-library/react");
|
|
8
|
+
|
|
9
|
+
var _ToggleGroup = _interopRequireDefault(require("./ToggleGroup"));
|
|
10
|
+
|
|
11
|
+
var options = [{
|
|
12
|
+
value: 1,
|
|
13
|
+
label: "Amazon"
|
|
14
|
+
}, {
|
|
15
|
+
value: 2,
|
|
16
|
+
label: "Ebay"
|
|
17
|
+
}, {
|
|
18
|
+
value: 3,
|
|
19
|
+
label: "Apple"
|
|
20
|
+
}, {
|
|
21
|
+
value: 4,
|
|
22
|
+
label: "Google"
|
|
23
|
+
}];
|
|
24
|
+
describe("Toggle group component tests", function () {
|
|
25
|
+
test("Toggle group renders with correct labels", function () {
|
|
26
|
+
var _render = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
27
|
+
label: "Toggle group label",
|
|
28
|
+
helperText: "Toggle group helper text",
|
|
29
|
+
options: options
|
|
30
|
+
})),
|
|
31
|
+
getByText = _render.getByText;
|
|
32
|
+
|
|
33
|
+
expect(getByText("Toggle group label")).toBeTruthy();
|
|
34
|
+
expect(getByText("Toggle group helper text")).toBeTruthy();
|
|
35
|
+
expect(getByText("Amazon")).toBeTruthy();
|
|
36
|
+
expect(getByText("Ebay")).toBeTruthy();
|
|
37
|
+
expect(getByText("Apple")).toBeTruthy();
|
|
38
|
+
expect(getByText("Google")).toBeTruthy();
|
|
39
|
+
});
|
|
40
|
+
test("Uncontrolled toggle group calls correct function on change with value", function () {
|
|
41
|
+
var onChange = jest.fn();
|
|
42
|
+
|
|
43
|
+
var _render2 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
44
|
+
options: options,
|
|
45
|
+
onChange: onChange
|
|
46
|
+
})),
|
|
47
|
+
getByText = _render2.getByText;
|
|
48
|
+
|
|
49
|
+
var option = getByText("Ebay");
|
|
50
|
+
|
|
51
|
+
_react2.fireEvent.click(option);
|
|
52
|
+
|
|
53
|
+
expect(onChange).toHaveBeenCalledWith(2);
|
|
54
|
+
});
|
|
55
|
+
test("Controlled toggle group calls correct function on change with value", function () {
|
|
56
|
+
var onChange = jest.fn();
|
|
57
|
+
|
|
58
|
+
var _render3 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
59
|
+
options: options,
|
|
60
|
+
onChange: onChange,
|
|
61
|
+
value: 1
|
|
62
|
+
})),
|
|
63
|
+
getByText = _render3.getByText;
|
|
64
|
+
|
|
65
|
+
var option = getByText("Ebay");
|
|
66
|
+
|
|
67
|
+
_react2.fireEvent.click(option);
|
|
68
|
+
|
|
69
|
+
expect(onChange).toHaveBeenCalledWith(2);
|
|
70
|
+
});
|
|
71
|
+
test("Function on change is not called when disable", function () {
|
|
72
|
+
var onChange = jest.fn();
|
|
73
|
+
|
|
74
|
+
var _render4 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
75
|
+
options: options,
|
|
76
|
+
onChange: onChange,
|
|
77
|
+
disabled: true
|
|
78
|
+
})),
|
|
79
|
+
getByText = _render4.getByText;
|
|
80
|
+
|
|
81
|
+
var option = getByText("Ebay");
|
|
82
|
+
|
|
83
|
+
_react2.fireEvent.click(option);
|
|
84
|
+
|
|
85
|
+
expect(onChange).toHaveBeenCalledTimes(0);
|
|
86
|
+
});
|
|
87
|
+
test("Uncontrolled multiple toggle group calls correct function on change with value when is multiple", function () {
|
|
88
|
+
var onChange = jest.fn();
|
|
89
|
+
|
|
90
|
+
var _render5 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
91
|
+
options: options,
|
|
92
|
+
onChange: onChange,
|
|
93
|
+
multiple: true
|
|
94
|
+
})),
|
|
95
|
+
getAllByRole = _render5.getAllByRole;
|
|
96
|
+
|
|
97
|
+
var toggleOptions = getAllByRole("switch");
|
|
98
|
+
|
|
99
|
+
_react2.fireEvent.click(toggleOptions[0]);
|
|
100
|
+
|
|
101
|
+
expect(onChange).toHaveBeenCalledWith([1]);
|
|
102
|
+
|
|
103
|
+
_react2.fireEvent.click(toggleOptions[1]);
|
|
104
|
+
|
|
105
|
+
_react2.fireEvent.click(toggleOptions[3]);
|
|
106
|
+
|
|
107
|
+
expect(onChange).toHaveBeenCalledWith([1, 2, 4]);
|
|
108
|
+
expect(toggleOptions[0].getAttribute("aria-checked")).toBe("true");
|
|
109
|
+
expect(toggleOptions[1].getAttribute("aria-checked")).toBe("true");
|
|
110
|
+
expect(toggleOptions[3].getAttribute("aria-checked")).toBe("true");
|
|
111
|
+
});
|
|
112
|
+
test("Controlled multiple toggle returns always same values", function () {
|
|
113
|
+
var onChange = jest.fn();
|
|
114
|
+
|
|
115
|
+
var _render6 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
116
|
+
options: options,
|
|
117
|
+
onChange: onChange,
|
|
118
|
+
value: [1],
|
|
119
|
+
multiple: true
|
|
120
|
+
})),
|
|
121
|
+
getByText = _render6.getByText;
|
|
122
|
+
|
|
123
|
+
var option = getByText("Ebay");
|
|
124
|
+
|
|
125
|
+
_react2.fireEvent.click(option);
|
|
126
|
+
|
|
127
|
+
expect(onChange).toHaveBeenCalledWith([1, 2]);
|
|
128
|
+
var option2 = getByText("Google");
|
|
129
|
+
|
|
130
|
+
_react2.fireEvent.click(option2);
|
|
131
|
+
|
|
132
|
+
expect(onChange).toHaveBeenNthCalledWith(2, [1, 4]);
|
|
133
|
+
});
|
|
134
|
+
test("Single selection: Renders with correct default value", function () {
|
|
135
|
+
var _render7 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
136
|
+
options: options,
|
|
137
|
+
defaultValue: 2
|
|
138
|
+
})),
|
|
139
|
+
getAllByRole = _render7.getAllByRole;
|
|
140
|
+
|
|
141
|
+
var toggleOptions = getAllByRole("radio");
|
|
142
|
+
expect(toggleOptions[1].getAttribute("aria-checked")).toBe("true");
|
|
143
|
+
});
|
|
144
|
+
test("Multiple selection: Renders with correct default value", function () {
|
|
145
|
+
var _render8 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
146
|
+
options: options,
|
|
147
|
+
defaultValue: [2, 4],
|
|
148
|
+
multiple: true
|
|
149
|
+
})),
|
|
150
|
+
getAllByRole = _render8.getAllByRole;
|
|
151
|
+
|
|
152
|
+
var toggleOptions = getAllByRole("switch");
|
|
153
|
+
expect(toggleOptions[1].getAttribute("aria-checked")).toBe("true");
|
|
154
|
+
expect(toggleOptions[3].getAttribute("aria-checked")).toBe("true");
|
|
155
|
+
});
|
|
156
|
+
});
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
|
|
3
|
+
declare type Margin = {
|
|
4
|
+
top?: Space;
|
|
5
|
+
bottom?: Space;
|
|
6
|
+
left?: Space;
|
|
7
|
+
right?: Space;
|
|
8
|
+
};
|
|
9
|
+
declare type SVG = React.ReactNode & React.SVGProps<SVGSVGElement>;
|
|
10
|
+
declare type OptionCommons = {
|
|
11
|
+
/**
|
|
12
|
+
* Number with the option inner value.
|
|
13
|
+
*/
|
|
14
|
+
value: number;
|
|
15
|
+
};
|
|
16
|
+
declare type OptionIcon = OptionCommons & {
|
|
17
|
+
/**
|
|
18
|
+
* String with the option display value.
|
|
19
|
+
*/
|
|
20
|
+
label?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Element used as the icon. Icon and label can't be used at same time.
|
|
23
|
+
*/
|
|
24
|
+
icon: string | SVG;
|
|
25
|
+
};
|
|
26
|
+
declare type OptionLabel = OptionCommons & {
|
|
27
|
+
/**
|
|
28
|
+
* String with the option display value.
|
|
29
|
+
*/
|
|
30
|
+
label: string;
|
|
31
|
+
/**
|
|
32
|
+
* Element used as the icon. Icon and label can't be used at same time.
|
|
33
|
+
*/
|
|
34
|
+
icon?: string | SVG;
|
|
35
|
+
};
|
|
36
|
+
declare type Option = OptionIcon | OptionLabel;
|
|
37
|
+
declare type CommonProps = {
|
|
38
|
+
/**
|
|
39
|
+
* Text to be placed above the component.
|
|
40
|
+
*/
|
|
41
|
+
label?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Helper text to be placed above the component.
|
|
44
|
+
*/
|
|
45
|
+
helperText?: string;
|
|
46
|
+
/**
|
|
47
|
+
* If true, the component will be disabled.
|
|
48
|
+
*/
|
|
49
|
+
disabled?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* An array of objects representing the selectable options.
|
|
52
|
+
*/
|
|
53
|
+
options: Option[];
|
|
54
|
+
/**
|
|
55
|
+
* Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
|
|
56
|
+
* You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
|
|
57
|
+
*/
|
|
58
|
+
margin?: Space | Margin;
|
|
59
|
+
/**
|
|
60
|
+
* Value of the tabindex.
|
|
61
|
+
*/
|
|
62
|
+
tabIndex?: number;
|
|
63
|
+
};
|
|
64
|
+
declare type SingleSelectionToggle = CommonProps & {
|
|
65
|
+
/**
|
|
66
|
+
* If true, the toggle group will support multiple selection. In that case, value must be an array of numbers with the keys of the selected values.
|
|
67
|
+
*/
|
|
68
|
+
multiple?: false;
|
|
69
|
+
/**
|
|
70
|
+
* The key of the initially selected value.
|
|
71
|
+
*/
|
|
72
|
+
defaultValue?: number;
|
|
73
|
+
/**
|
|
74
|
+
* The key of the selected value. If the component allows multiple selection, value must be an array.
|
|
75
|
+
* If undefined, the component will be uncontrolled and the value will be managed internally by the component.
|
|
76
|
+
*/
|
|
77
|
+
value?: number;
|
|
78
|
+
/**
|
|
79
|
+
* This function will be called every time the selection changes. The number with the key of the selected
|
|
80
|
+
* value will be passed as a parameter to this function.
|
|
81
|
+
*/
|
|
82
|
+
onChange?: (optionIndex: number) => void;
|
|
83
|
+
};
|
|
84
|
+
declare type MultipleSelectionToggle = CommonProps & {
|
|
85
|
+
/**
|
|
86
|
+
* If true, the toggle group will support multiple selection. In that case, value must be an array of numbers with the keys of the selected values.
|
|
87
|
+
*/
|
|
88
|
+
multiple: true;
|
|
89
|
+
/**
|
|
90
|
+
* The array of keys with the initially selected values.
|
|
91
|
+
*/
|
|
92
|
+
defaultValue?: number[];
|
|
93
|
+
/**
|
|
94
|
+
* An array with the keys of the selected values.
|
|
95
|
+
* If undefined, the component will be uncontrolled and the value will be managed internally by the component.
|
|
96
|
+
*/
|
|
97
|
+
value?: number[];
|
|
98
|
+
/**
|
|
99
|
+
* This function will be called every time the selection changes. An array with the key of
|
|
100
|
+
* the selected values will be passed as a parameter to this function.
|
|
101
|
+
*/
|
|
102
|
+
onChange?: (optionIndex: number[]) => void;
|
|
103
|
+
};
|
|
104
|
+
declare type Props = SingleSelectionToggle | MultipleSelectionToggle;
|
|
105
|
+
export default Props;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import TypographyPropsTypes from "./types";
|
|
3
|
+
declare const Typography: ({ as, display, fontFamily, fontSize, fontStyle, fontWeight, letterSpacing, lineHeight, textAlign, color, textDecoration, textOverflow, whiteSpace, children, }: TypographyPropsTypes) => JSX.Element;
|
|
4
|
+
export default Typography;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "__esModule", {
|
|
8
|
+
value: true
|
|
9
|
+
});
|
|
10
|
+
exports["default"] = void 0;
|
|
11
|
+
|
|
12
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
15
|
+
|
|
16
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
17
|
+
|
|
18
|
+
var _templateObject;
|
|
19
|
+
|
|
20
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
+
|
|
22
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
|
+
|
|
24
|
+
var TypographyContext = /*#__PURE__*/_react["default"].createContext(null);
|
|
25
|
+
|
|
26
|
+
var Typography = function Typography(_ref) {
|
|
27
|
+
var as = _ref.as,
|
|
28
|
+
display = _ref.display,
|
|
29
|
+
fontFamily = _ref.fontFamily,
|
|
30
|
+
fontSize = _ref.fontSize,
|
|
31
|
+
fontStyle = _ref.fontStyle,
|
|
32
|
+
fontWeight = _ref.fontWeight,
|
|
33
|
+
letterSpacing = _ref.letterSpacing,
|
|
34
|
+
lineHeight = _ref.lineHeight,
|
|
35
|
+
textAlign = _ref.textAlign,
|
|
36
|
+
color = _ref.color,
|
|
37
|
+
textDecoration = _ref.textDecoration,
|
|
38
|
+
textOverflow = _ref.textOverflow,
|
|
39
|
+
whiteSpace = _ref.whiteSpace,
|
|
40
|
+
children = _ref.children;
|
|
41
|
+
var componentContext = (0, _react.useContext)(TypographyContext);
|
|
42
|
+
var asValue = as !== null && as !== void 0 ? as : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.as) || "span";
|
|
43
|
+
var displayValue = display !== null && display !== void 0 ? display : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.display) || "inline";
|
|
44
|
+
var fontFamilyValue = fontFamily !== null && fontFamily !== void 0 ? fontFamily : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontFamily) || "Open Sans, sans-serif";
|
|
45
|
+
var fontSizeValue = fontSize !== null && fontSize !== void 0 ? fontSize : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontSize) || "1rem";
|
|
46
|
+
var fontStyleValue = fontStyle !== null && fontStyle !== void 0 ? fontStyle : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontStyle) || "normal";
|
|
47
|
+
var fontWeightValue = fontWeight !== null && fontWeight !== void 0 ? fontWeight : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontWeight) || "400";
|
|
48
|
+
var letterSpacingValue = letterSpacing !== null && letterSpacing !== void 0 ? letterSpacing : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.letterSpacing) || "0em";
|
|
49
|
+
var lineHeightValue = lineHeight !== null && lineHeight !== void 0 ? lineHeight : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.lineHeight) || "1.5em";
|
|
50
|
+
var textAlignValue = textAlign !== null && textAlign !== void 0 ? textAlign : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.textAlign) || "left";
|
|
51
|
+
var colorValue = color !== null && color !== void 0 ? color : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.color) || "#000000";
|
|
52
|
+
var textDecorationValue = textDecoration !== null && textDecoration !== void 0 ? textDecoration : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.textDecoration) || "none";
|
|
53
|
+
var textOverflowValue = textOverflow !== null && textOverflow !== void 0 ? textOverflow : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.textOverflow) || "unset";
|
|
54
|
+
var whiteSpaceValue = whiteSpace !== null && whiteSpace !== void 0 ? whiteSpace : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.whiteSpace) || "normal";
|
|
55
|
+
return /*#__PURE__*/_react["default"].createElement(TypographyContext.Provider, {
|
|
56
|
+
value: {
|
|
57
|
+
as: asValue,
|
|
58
|
+
display: displayValue,
|
|
59
|
+
fontFamily: fontFamilyValue,
|
|
60
|
+
fontSize: fontSizeValue,
|
|
61
|
+
fontStyle: fontStyleValue,
|
|
62
|
+
fontWeight: fontWeightValue,
|
|
63
|
+
letterSpacing: letterSpacingValue,
|
|
64
|
+
lineHeight: lineHeightValue,
|
|
65
|
+
textAlign: textAlignValue,
|
|
66
|
+
color: colorValue,
|
|
67
|
+
textDecoration: textDecorationValue,
|
|
68
|
+
textOverflow: textOverflowValue,
|
|
69
|
+
whiteSpace: whiteSpaceValue
|
|
70
|
+
}
|
|
71
|
+
}, /*#__PURE__*/_react["default"].createElement(StyledTypography, {
|
|
72
|
+
as: asValue,
|
|
73
|
+
display: displayValue,
|
|
74
|
+
fontFamily: fontFamilyValue,
|
|
75
|
+
fontSize: fontSizeValue,
|
|
76
|
+
fontStyle: fontStyleValue,
|
|
77
|
+
fontWeight: fontWeightValue,
|
|
78
|
+
letterSpacing: letterSpacingValue,
|
|
79
|
+
lineHeight: lineHeightValue,
|
|
80
|
+
textAlign: textAlignValue,
|
|
81
|
+
color: colorValue,
|
|
82
|
+
textDecoration: textDecorationValue,
|
|
83
|
+
textOverflow: textOverflowValue,
|
|
84
|
+
whiteSpace: whiteSpaceValue
|
|
85
|
+
}, children));
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
var StyledTypography = _styledComponents["default"].span(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n margin: 0px;\n display: ", ";\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n text-align: ", ";\n line-height: ", ";\n text-decoration: ", ";\n text-overflow: ", ";\n white-space: ", ";\n overflow: ", ";\n"])), function (_ref2) {
|
|
89
|
+
var display = _ref2.display;
|
|
90
|
+
return display;
|
|
91
|
+
}, function (_ref3) {
|
|
92
|
+
var color = _ref3.color;
|
|
93
|
+
return color;
|
|
94
|
+
}, function (_ref4) {
|
|
95
|
+
var fontFamily = _ref4.fontFamily;
|
|
96
|
+
return fontFamily;
|
|
97
|
+
}, function (_ref5) {
|
|
98
|
+
var fontSize = _ref5.fontSize;
|
|
99
|
+
return fontSize;
|
|
100
|
+
}, function (_ref6) {
|
|
101
|
+
var fontStyle = _ref6.fontStyle;
|
|
102
|
+
return fontStyle;
|
|
103
|
+
}, function (_ref7) {
|
|
104
|
+
var fontWeight = _ref7.fontWeight;
|
|
105
|
+
return fontWeight;
|
|
106
|
+
}, function (_ref8) {
|
|
107
|
+
var letterSpacing = _ref8.letterSpacing;
|
|
108
|
+
return letterSpacing;
|
|
109
|
+
}, function (_ref9) {
|
|
110
|
+
var textAlign = _ref9.textAlign;
|
|
111
|
+
return textAlign;
|
|
112
|
+
}, function (_ref10) {
|
|
113
|
+
var lineHeight = _ref10.lineHeight;
|
|
114
|
+
return lineHeight;
|
|
115
|
+
}, function (_ref11) {
|
|
116
|
+
var textDecoration = _ref11.textDecoration;
|
|
117
|
+
return textDecoration;
|
|
118
|
+
}, function (_ref12) {
|
|
119
|
+
var textOverflow = _ref12.textOverflow;
|
|
120
|
+
return textOverflow;
|
|
121
|
+
}, function (_ref13) {
|
|
122
|
+
var whiteSpace = _ref13.whiteSpace,
|
|
123
|
+
textOverflow = _ref13.textOverflow;
|
|
124
|
+
return whiteSpace !== "normal" ? whiteSpace : textOverflow !== "unset" ? "nowrap" : "normal";
|
|
125
|
+
}, function (_ref14) {
|
|
126
|
+
var textOverflow = _ref14.textOverflow;
|
|
127
|
+
return textOverflow !== "unset" ? "hidden" : "visible";
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
var _default = Typography;
|
|
131
|
+
exports["default"] = _default;
|