@dxc-technology/halstack-react 0.0.0-c9b5c13 → 0.0.0-c9c1158
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 +3 -3
- package/BackgroundColorContext.js +6 -18
- package/HalstackContext.d.ts +1347 -6
- package/HalstackContext.js +125 -110
- package/README.md +47 -0
- package/accordion/Accordion.d.ts +1 -1
- package/accordion/Accordion.js +116 -157
- package/accordion/Accordion.stories.tsx +102 -126
- package/accordion/Accordion.test.js +25 -41
- package/accordion/types.d.ts +5 -16
- package/accordion-group/AccordionGroup.d.ts +4 -3
- package/accordion-group/AccordionGroup.js +31 -98
- package/accordion-group/AccordionGroup.stories.tsx +94 -67
- package/accordion-group/AccordionGroup.test.js +52 -105
- package/accordion-group/AccordionGroupAccordion.d.ts +4 -0
- package/accordion-group/AccordionGroupAccordion.js +31 -0
- package/accordion-group/types.d.ts +11 -16
- package/alert/Alert.js +19 -55
- package/alert/Alert.stories.tsx +28 -0
- package/alert/Alert.test.js +29 -46
- package/alert/types.d.ts +5 -5
- package/badge/Badge.js +4 -17
- package/badge/types.d.ts +1 -1
- package/bleed/Bleed.js +14 -55
- package/bleed/Bleed.stories.tsx +95 -95
- package/bleed/types.d.ts +2 -2
- package/box/Box.d.ts +1 -1
- package/box/Box.js +18 -56
- package/box/Box.stories.tsx +38 -51
- package/box/Box.test.js +2 -7
- package/box/types.d.ts +3 -14
- package/bulleted-list/BulletedList.d.ts +7 -0
- package/bulleted-list/BulletedList.js +99 -0
- package/bulleted-list/BulletedList.stories.tsx +116 -0
- package/bulleted-list/types.d.ts +38 -0
- package/button/Button.d.ts +1 -1
- package/button/Button.js +61 -114
- package/button/Button.stories.tsx +160 -90
- package/button/Button.test.js +18 -17
- package/button/types.d.ts +12 -8
- package/card/Card.d.ts +1 -1
- package/card/Card.js +48 -89
- package/card/Card.stories.tsx +12 -42
- package/card/Card.test.js +11 -22
- package/card/types.d.ts +6 -11
- package/checkbox/Checkbox.d.ts +2 -2
- package/checkbox/Checkbox.js +141 -178
- package/checkbox/Checkbox.stories.tsx +128 -94
- package/checkbox/Checkbox.test.js +160 -39
- package/checkbox/types.d.ts +11 -3
- package/chip/Chip.js +39 -79
- package/chip/Chip.stories.tsx +121 -26
- package/chip/Chip.test.js +16 -31
- package/chip/types.d.ts +4 -4
- package/common/OpenSans.css +68 -80
- package/common/coreTokens.d.ts +237 -0
- package/common/coreTokens.js +184 -0
- package/common/utils.d.ts +1 -0
- package/common/utils.js +6 -12
- package/common/variables.d.ts +1499 -0
- package/common/variables.js +1027 -1126
- package/container/Container.d.ts +4 -0
- package/container/Container.js +198 -0
- package/container/Container.stories.tsx +229 -0
- package/container/types.d.ts +74 -0
- package/date-input/Calendar.d.ts +4 -0
- package/date-input/Calendar.js +214 -0
- package/date-input/DateInput.js +150 -299
- package/date-input/DateInput.stories.tsx +203 -56
- package/date-input/DateInput.test.js +700 -371
- package/date-input/DatePicker.d.ts +4 -0
- package/date-input/DatePicker.js +115 -0
- package/date-input/Icons.d.ts +6 -0
- package/date-input/Icons.js +58 -0
- package/date-input/YearPicker.d.ts +4 -0
- package/date-input/YearPicker.js +100 -0
- package/date-input/types.d.ts +72 -15
- package/dialog/Dialog.d.ts +1 -1
- package/dialog/Dialog.js +75 -106
- package/dialog/Dialog.stories.tsx +154 -171
- package/dialog/Dialog.test.js +287 -20
- package/dialog/types.d.ts +18 -25
- package/dropdown/Dropdown.d.ts +1 -1
- package/dropdown/Dropdown.js +243 -300
- package/dropdown/Dropdown.stories.tsx +245 -56
- package/dropdown/Dropdown.test.js +575 -165
- package/dropdown/DropdownMenu.d.ts +4 -0
- package/dropdown/DropdownMenu.js +63 -0
- package/dropdown/DropdownMenuItem.d.ts +4 -0
- package/dropdown/DropdownMenuItem.js +67 -0
- package/dropdown/types.d.ts +32 -14
- package/file-input/FileInput.d.ts +2 -2
- package/file-input/FileInput.js +241 -355
- package/file-input/FileInput.stories.tsx +123 -12
- package/file-input/FileInput.test.js +369 -367
- package/file-input/FileItem.d.ts +4 -14
- package/file-input/FileItem.js +45 -96
- package/file-input/types.d.ts +25 -8
- package/flex/Flex.d.ts +4 -0
- package/flex/Flex.js +57 -0
- package/flex/Flex.stories.tsx +112 -0
- package/flex/types.d.ts +97 -0
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +51 -101
- package/footer/Footer.stories.tsx +41 -19
- package/footer/Footer.test.js +33 -57
- package/footer/Icons.d.ts +2 -2
- package/footer/Icons.js +3 -8
- package/footer/types.d.ts +21 -22
- package/grid/Grid.d.ts +7 -0
- package/grid/Grid.js +76 -0
- package/grid/Grid.stories.tsx +219 -0
- package/grid/types.d.ts +115 -0
- package/header/Header.d.ts +4 -3
- package/header/Header.js +90 -162
- package/header/Header.stories.tsx +118 -39
- package/header/Header.test.js +13 -26
- package/header/Icons.d.ts +2 -2
- package/header/Icons.js +4 -9
- package/header/types.d.ts +5 -20
- package/heading/Heading.js +10 -32
- package/heading/Heading.test.js +71 -88
- package/heading/types.d.ts +7 -7
- package/image/Image.d.ts +4 -0
- package/image/Image.js +70 -0
- package/image/Image.stories.tsx +127 -0
- package/image/types.d.ts +72 -0
- package/inset/Inset.js +14 -55
- package/inset/Inset.stories.tsx +37 -36
- package/inset/types.d.ts +2 -2
- package/layout/ApplicationLayout.d.ts +15 -6
- package/layout/ApplicationLayout.js +51 -116
- package/layout/ApplicationLayout.stories.tsx +81 -45
- package/layout/Icons.d.ts +8 -5
- package/layout/Icons.js +51 -59
- package/layout/SidenavContext.d.ts +1 -1
- package/layout/SidenavContext.js +3 -9
- package/layout/types.d.ts +21 -32
- package/link/Link.js +25 -46
- package/link/Link.stories.tsx +73 -6
- package/link/Link.test.js +24 -44
- package/link/types.d.ts +14 -14
- package/main.d.ts +10 -10
- package/main.js +45 -95
- package/{tabs-nav → nav-tabs}/NavTabs.d.ts +2 -2
- package/{tabs-nav → nav-tabs}/NavTabs.js +22 -57
- package/{tabs-nav → nav-tabs}/NavTabs.stories.tsx +111 -7
- package/{tabs-nav → nav-tabs}/NavTabs.test.js +37 -44
- package/nav-tabs/Tab.js +117 -0
- package/{tabs-nav → nav-tabs}/types.d.ts +14 -15
- package/number-input/NumberInput.d.ts +7 -0
- package/number-input/NumberInput.js +26 -35
- package/number-input/NumberInput.stories.tsx +42 -26
- package/number-input/NumberInput.test.js +701 -377
- package/number-input/types.d.ts +11 -5
- package/package.json +43 -45
- package/paginator/Icons.d.ts +5 -0
- package/paginator/Icons.js +21 -47
- package/paginator/Paginator.js +22 -55
- package/paginator/Paginator.stories.tsx +24 -0
- package/paginator/Paginator.test.js +280 -211
- package/paginator/types.d.ts +3 -3
- package/paragraph/Paragraph.d.ts +5 -0
- package/paragraph/Paragraph.js +27 -0
- package/paragraph/Paragraph.stories.tsx +27 -0
- package/password-input/Icons.d.ts +6 -0
- package/password-input/Icons.js +35 -0
- package/password-input/PasswordInput.js +57 -126
- package/password-input/PasswordInput.stories.tsx +1 -32
- package/password-input/PasswordInput.test.js +160 -142
- package/password-input/types.d.ts +8 -7
- package/progress-bar/ProgressBar.js +67 -87
- package/progress-bar/{ProgressBar.stories.jsx → ProgressBar.stories.tsx} +39 -4
- package/progress-bar/ProgressBar.test.js +72 -44
- package/progress-bar/types.d.ts +3 -3
- package/quick-nav/QuickNav.js +29 -47
- package/quick-nav/QuickNav.stories.tsx +146 -27
- package/quick-nav/types.d.ts +10 -10
- package/radio-group/Radio.d.ts +1 -1
- package/radio-group/Radio.js +59 -76
- package/radio-group/RadioGroup.js +67 -114
- package/radio-group/RadioGroup.stories.tsx +132 -18
- package/radio-group/RadioGroup.test.js +518 -457
- package/radio-group/types.d.ts +10 -10
- package/resultset-table/Icons.d.ts +7 -0
- package/resultset-table/Icons.js +47 -0
- package/resultset-table/ResultsetTable.js +159 -0
- package/{resultsetTable → resultset-table}/ResultsetTable.stories.tsx +50 -25
- package/{resultsetTable → resultset-table}/ResultsetTable.test.js +117 -118
- package/{resultsetTable → resultset-table}/types.d.ts +7 -7
- package/resultset-table/types.js +5 -0
- package/select/Icons.d.ts +7 -7
- package/select/Icons.js +1 -5
- package/select/Listbox.d.ts +1 -1
- package/select/Listbox.js +42 -51
- package/select/Option.js +20 -50
- package/select/Select.js +125 -188
- package/select/Select.stories.tsx +516 -139
- package/select/Select.test.js +1965 -1751
- package/select/types.d.ts +16 -20
- package/sidenav/Icons.d.ts +7 -0
- package/sidenav/Icons.js +47 -0
- package/sidenav/Sidenav.d.ts +6 -5
- package/sidenav/Sidenav.js +129 -77
- package/sidenav/Sidenav.stories.tsx +251 -151
- package/sidenav/Sidenav.test.js +26 -45
- package/sidenav/types.d.ts +52 -26
- package/slider/Slider.d.ts +2 -2
- package/slider/Slider.js +144 -168
- package/slider/Slider.test.js +185 -81
- package/slider/types.d.ts +7 -3
- package/spinner/Spinner.js +27 -63
- package/spinner/{Spinner.stories.jsx → Spinner.stories.tsx} +53 -27
- package/spinner/Spinner.test.js +26 -35
- package/spinner/types.d.ts +3 -3
- package/switch/Switch.d.ts +2 -2
- package/switch/Switch.js +148 -124
- package/switch/Switch.stories.tsx +37 -60
- package/switch/Switch.test.js +138 -56
- package/switch/types.d.ts +7 -3
- package/table/Table.js +7 -26
- package/table/{Table.stories.jsx → Table.stories.tsx} +80 -1
- package/table/Table.test.js +3 -8
- package/table/types.d.ts +8 -8
- package/tabs/Tab.d.ts +4 -0
- package/tabs/Tab.js +113 -0
- package/tabs/Tabs.js +315 -141
- package/tabs/Tabs.stories.tsx +119 -5
- package/tabs/Tabs.test.js +223 -69
- package/tabs/types.d.ts +28 -18
- package/tag/Tag.js +29 -61
- package/tag/Tag.stories.tsx +14 -1
- package/tag/Tag.test.js +20 -31
- package/tag/types.d.ts +7 -7
- package/text-input/Icons.d.ts +8 -0
- package/text-input/Icons.js +56 -0
- package/text-input/Suggestion.js +40 -28
- package/text-input/Suggestions.d.ts +4 -0
- package/text-input/Suggestions.js +89 -0
- package/text-input/TextInput.js +280 -458
- package/text-input/TextInput.stories.tsx +266 -275
- package/text-input/TextInput.test.js +1402 -1375
- package/text-input/types.d.ts +43 -16
- package/textarea/Textarea.js +63 -100
- package/textarea/Textarea.stories.tsx +175 -0
- package/textarea/Textarea.test.js +152 -183
- package/textarea/types.d.ts +9 -5
- package/toggle-group/ToggleGroup.d.ts +2 -2
- package/toggle-group/ToggleGroup.js +95 -106
- package/toggle-group/ToggleGroup.stories.tsx +49 -4
- package/toggle-group/ToggleGroup.test.js +69 -88
- package/toggle-group/types.d.ts +26 -17
- package/typography/Typography.d.ts +4 -0
- package/typography/Typography.js +23 -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 +1251 -1
- package/useTheme.js +2 -9
- package/useTranslatedLabels.d.ts +84 -1
- package/useTranslatedLabels.js +1 -7
- package/utils/BaseTypography.d.ts +21 -0
- package/utils/BaseTypography.js +94 -0
- package/utils/FocusLock.d.ts +13 -0
- package/utils/FocusLock.js +114 -0
- package/wizard/Wizard.js +24 -66
- package/wizard/Wizard.stories.tsx +40 -1
- package/wizard/Wizard.test.js +54 -81
- package/wizard/types.d.ts +7 -7
- package/card/ice-cream.jpg +0 -0
- package/common/RequiredComponent.js +0 -32
- package/list/List.d.ts +0 -4
- package/list/List.js +0 -47
- package/list/List.stories.tsx +0 -95
- package/list/types.d.ts +0 -7
- package/number-input/NumberInputContext.d.ts +0 -4
- package/number-input/NumberInputContext.js +0 -19
- package/number-input/numberInputContextTypes.d.ts +0 -19
- package/resultsetTable/ResultsetTable.js +0 -254
- package/row/Row.d.ts +0 -3
- package/row/Row.js +0 -127
- package/row/Row.stories.tsx +0 -237
- package/row/types.d.ts +0 -28
- package/slider/Slider.stories.tsx +0 -177
- package/stack/Stack.d.ts +0 -3
- package/stack/Stack.js +0 -97
- package/stack/Stack.stories.tsx +0 -164
- package/stack/types.d.ts +0 -24
- package/tabs-nav/Tab.js +0 -132
- package/text/Text.d.ts +0 -7
- package/text/Text.js +0 -30
- package/text/Text.stories.tsx +0 -19
- package/textarea/Textarea.stories.jsx +0 -157
- /package/{list → bulleted-list}/types.js +0 -0
- /package/{resultsetTable → container}/types.js +0 -0
- /package/{row → flex}/types.js +0 -0
- /package/{stack → grid}/types.js +0 -0
- /package/{tabs-nav → image}/types.js +0 -0
- /package/{tabs-nav → nav-tabs}/Tab.d.ts +0 -0
- /package/{number-input/numberInputContextTypes.js → nav-tabs/types.js} +0 -0
- /package/{resultsetTable → resultset-table}/ResultsetTable.d.ts +0 -0
package/useTheme.js
CHANGED
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
7
|
exports["default"] = void 0;
|
|
9
|
-
|
|
10
8
|
var _react = require("react");
|
|
11
|
-
|
|
12
|
-
var _variables = require("./common/variables.js");
|
|
13
|
-
|
|
9
|
+
var _variables = require("./common/variables");
|
|
14
10
|
var _HalstackContext = _interopRequireDefault(require("./HalstackContext"));
|
|
15
|
-
|
|
16
11
|
var useTheme = function useTheme() {
|
|
17
12
|
var colorsTheme = (0, _react.useContext)(_HalstackContext["default"]);
|
|
18
13
|
return colorsTheme || _variables.componentTokens;
|
|
19
14
|
};
|
|
20
|
-
|
|
21
|
-
var _default = useTheme;
|
|
22
|
-
exports["default"] = _default;
|
|
15
|
+
var _default = exports["default"] = useTheme;
|
package/useTranslatedLabels.d.ts
CHANGED
|
@@ -1,2 +1,85 @@
|
|
|
1
|
-
declare const useTranslatedLabels: () =>
|
|
1
|
+
declare const useTranslatedLabels: () => {
|
|
2
|
+
formFields?: Partial<{
|
|
3
|
+
optionalLabel: string;
|
|
4
|
+
requiredSelectionErrorMessage: string;
|
|
5
|
+
requiredValueErrorMessage: string;
|
|
6
|
+
formatRequestedErrorMessage: string;
|
|
7
|
+
lengthErrorMessage: (minLength?: number, maxLength?: number) => string;
|
|
8
|
+
logoAlternativeText: string;
|
|
9
|
+
}>;
|
|
10
|
+
applicationLayout?: Partial<{
|
|
11
|
+
visibilityToggleTitle: string;
|
|
12
|
+
}>;
|
|
13
|
+
alert?: Partial<{
|
|
14
|
+
infoTitleText: string;
|
|
15
|
+
successTitleText: string;
|
|
16
|
+
warningTitleText: string;
|
|
17
|
+
errorTitleText: string;
|
|
18
|
+
}>;
|
|
19
|
+
dateInput?: Partial<{
|
|
20
|
+
invalidDateErrorMessage: string;
|
|
21
|
+
}>;
|
|
22
|
+
dialog?: Partial<{
|
|
23
|
+
closeIconAriaLabel: string;
|
|
24
|
+
}>;
|
|
25
|
+
fileInput?: Partial<{
|
|
26
|
+
fileSizeGreaterThanErrorMessage: string;
|
|
27
|
+
fileSizeLessThanErrorMessage: string;
|
|
28
|
+
multipleButtonLabelDefault: string;
|
|
29
|
+
singleButtonLabelDefault: string;
|
|
30
|
+
dropAreaButtonLabelDefault: string;
|
|
31
|
+
multipleDropAreaLabelDefault: string;
|
|
32
|
+
singleDropAreaLabelDefault: string;
|
|
33
|
+
deleteFileActionTitle: string;
|
|
34
|
+
}>;
|
|
35
|
+
footer?: Partial<{
|
|
36
|
+
copyrightText: (year: number) => string;
|
|
37
|
+
}>;
|
|
38
|
+
header?: Partial<{
|
|
39
|
+
closeIcon: string;
|
|
40
|
+
hamburguerTitle: string;
|
|
41
|
+
}>;
|
|
42
|
+
numberInput?: Partial<{
|
|
43
|
+
valueGreaterThanOrEqualToErrorMessage: (value: number) => string;
|
|
44
|
+
valueLessThanOrEqualToErrorMessage: (value: number) => string;
|
|
45
|
+
decrementValueTitle: string;
|
|
46
|
+
incrementValueTitle: string;
|
|
47
|
+
}>;
|
|
48
|
+
paginator?: Partial<{
|
|
49
|
+
itemsPerPageText: string;
|
|
50
|
+
minToMaxOfText: (minNumberOfItems: number, maxNumberOfItems: number, totalItems: number) => string;
|
|
51
|
+
goToPageText: string;
|
|
52
|
+
pageOfText: (pageNumber: number, totalPagesNumber: number) => string;
|
|
53
|
+
}>;
|
|
54
|
+
passwordInput?: Partial<{
|
|
55
|
+
inputShowPasswordTitle: string;
|
|
56
|
+
inputHidePasswordTitle: string;
|
|
57
|
+
}>;
|
|
58
|
+
quickNav?: Partial<{
|
|
59
|
+
contentTitle: string;
|
|
60
|
+
}>;
|
|
61
|
+
radioGroup?: Partial<{
|
|
62
|
+
optionalItemLabelDefault: string;
|
|
63
|
+
}>;
|
|
64
|
+
select?: Partial<{
|
|
65
|
+
noMatchesErrorMessage: string;
|
|
66
|
+
actionClearSelectionTitle: string;
|
|
67
|
+
actionClearSearchTitle: string;
|
|
68
|
+
}>;
|
|
69
|
+
tabs?: Partial<{
|
|
70
|
+
scrollLeft: string;
|
|
71
|
+
scrollRight: string;
|
|
72
|
+
}>;
|
|
73
|
+
textInput?: Partial<{
|
|
74
|
+
clearFieldActionTitle: string;
|
|
75
|
+
searchingMessage: string;
|
|
76
|
+
fetchingDataErrorMessage: string;
|
|
77
|
+
}>;
|
|
78
|
+
calendar?: Partial<{
|
|
79
|
+
daysShort: string[];
|
|
80
|
+
months: string[];
|
|
81
|
+
previousMonthTitle: string;
|
|
82
|
+
nextMonthTitle: string;
|
|
83
|
+
}>;
|
|
84
|
+
};
|
|
2
85
|
export default useTranslatedLabels;
|
package/useTranslatedLabels.js
CHANGED
|
@@ -4,17 +4,11 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
|
-
|
|
8
7
|
var _react = require("react");
|
|
9
|
-
|
|
10
8
|
var _variables = require("./common/variables");
|
|
11
|
-
|
|
12
9
|
var _HalstackContext = require("./HalstackContext");
|
|
13
|
-
|
|
14
10
|
var useTranslatedLabels = function useTranslatedLabels() {
|
|
15
11
|
var labels = (0, _react.useContext)(_HalstackContext.HalstackLanguageContext);
|
|
16
12
|
return labels || _variables.defaultTranslatedComponentLabels;
|
|
17
13
|
};
|
|
18
|
-
|
|
19
|
-
var _default = useTranslatedLabels;
|
|
20
|
-
exports["default"] = _default;
|
|
14
|
+
var _default = exports["default"] = useTranslatedLabels;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
type TypographyContextProps = {
|
|
3
|
+
as?: keyof HTMLElementTagNameMap;
|
|
4
|
+
display?: string;
|
|
5
|
+
fontFamily?: string;
|
|
6
|
+
fontSize?: string;
|
|
7
|
+
fontStyle?: string;
|
|
8
|
+
fontWeight?: string;
|
|
9
|
+
letterSpacing?: string;
|
|
10
|
+
lineHeight?: string;
|
|
11
|
+
textAlign?: string;
|
|
12
|
+
color?: string;
|
|
13
|
+
textDecoration?: string;
|
|
14
|
+
textOverflow?: string;
|
|
15
|
+
whiteSpace?: string;
|
|
16
|
+
};
|
|
17
|
+
type BaseTypographyProps = TypographyContextProps & {
|
|
18
|
+
children: React.ReactNode;
|
|
19
|
+
};
|
|
20
|
+
declare const BaseTypography: ({ as, display, fontFamily, fontSize, fontStyle, fontWeight, letterSpacing, lineHeight, textAlign, color, textDecoration, textOverflow, whiteSpace, children, }: BaseTypographyProps) => JSX.Element;
|
|
21
|
+
export default BaseTypography;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
12
|
+
var _templateObject;
|
|
13
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
14
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
15
|
+
var TypographyContext = /*#__PURE__*/_react["default"].createContext(null);
|
|
16
|
+
var BaseTypography = function BaseTypography(_ref) {
|
|
17
|
+
var as = _ref.as,
|
|
18
|
+
display = _ref.display,
|
|
19
|
+
fontFamily = _ref.fontFamily,
|
|
20
|
+
fontSize = _ref.fontSize,
|
|
21
|
+
fontStyle = _ref.fontStyle,
|
|
22
|
+
fontWeight = _ref.fontWeight,
|
|
23
|
+
letterSpacing = _ref.letterSpacing,
|
|
24
|
+
lineHeight = _ref.lineHeight,
|
|
25
|
+
textAlign = _ref.textAlign,
|
|
26
|
+
color = _ref.color,
|
|
27
|
+
textDecoration = _ref.textDecoration,
|
|
28
|
+
textOverflow = _ref.textOverflow,
|
|
29
|
+
whiteSpace = _ref.whiteSpace,
|
|
30
|
+
children = _ref.children;
|
|
31
|
+
var componentContext = (0, _react.useContext)(TypographyContext);
|
|
32
|
+
var contextValue = (0, _react.useMemo)(function () {
|
|
33
|
+
var _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8, _ref9, _ref10, _ref11, _ref12, _ref13, _ref14;
|
|
34
|
+
return {
|
|
35
|
+
as: (_ref2 = as !== null && as !== void 0 ? as : componentContext === null || componentContext === void 0 ? void 0 : componentContext.as) !== null && _ref2 !== void 0 ? _ref2 : "span",
|
|
36
|
+
display: (_ref3 = display !== null && display !== void 0 ? display : componentContext === null || componentContext === void 0 ? void 0 : componentContext.display) !== null && _ref3 !== void 0 ? _ref3 : "inline",
|
|
37
|
+
fontFamily: (_ref4 = fontFamily !== null && fontFamily !== void 0 ? fontFamily : componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontFamily) !== null && _ref4 !== void 0 ? _ref4 : "Open Sans, sans-serif",
|
|
38
|
+
fontSize: (_ref5 = fontSize !== null && fontSize !== void 0 ? fontSize : componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontSize) !== null && _ref5 !== void 0 ? _ref5 : "1rem",
|
|
39
|
+
fontStyle: (_ref6 = fontStyle !== null && fontStyle !== void 0 ? fontStyle : componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontStyle) !== null && _ref6 !== void 0 ? _ref6 : "normal",
|
|
40
|
+
fontWeight: (_ref7 = fontWeight !== null && fontWeight !== void 0 ? fontWeight : componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontWeight) !== null && _ref7 !== void 0 ? _ref7 : "400",
|
|
41
|
+
letterSpacing: (_ref8 = letterSpacing !== null && letterSpacing !== void 0 ? letterSpacing : componentContext === null || componentContext === void 0 ? void 0 : componentContext.letterSpacing) !== null && _ref8 !== void 0 ? _ref8 : "0em",
|
|
42
|
+
lineHeight: (_ref9 = lineHeight !== null && lineHeight !== void 0 ? lineHeight : componentContext === null || componentContext === void 0 ? void 0 : componentContext.lineHeight) !== null && _ref9 !== void 0 ? _ref9 : "1.5em",
|
|
43
|
+
textAlign: (_ref10 = textAlign !== null && textAlign !== void 0 ? textAlign : componentContext === null || componentContext === void 0 ? void 0 : componentContext.textAlign) !== null && _ref10 !== void 0 ? _ref10 : "left",
|
|
44
|
+
color: (_ref11 = color !== null && color !== void 0 ? color : componentContext === null || componentContext === void 0 ? void 0 : componentContext.color) !== null && _ref11 !== void 0 ? _ref11 : "#000000",
|
|
45
|
+
textDecoration: (_ref12 = textDecoration !== null && textDecoration !== void 0 ? textDecoration : componentContext === null || componentContext === void 0 ? void 0 : componentContext.textDecoration) !== null && _ref12 !== void 0 ? _ref12 : "none",
|
|
46
|
+
textOverflow: (_ref13 = textOverflow !== null && textOverflow !== void 0 ? textOverflow : componentContext === null || componentContext === void 0 ? void 0 : componentContext.textOverflow) !== null && _ref13 !== void 0 ? _ref13 : "unset",
|
|
47
|
+
whiteSpace: (_ref14 = whiteSpace !== null && whiteSpace !== void 0 ? whiteSpace : componentContext === null || componentContext === void 0 ? void 0 : componentContext.whiteSpace) !== null && _ref14 !== void 0 ? _ref14 : "normal"
|
|
48
|
+
};
|
|
49
|
+
}, [as, display, fontFamily, fontSize, fontStyle, fontWeight, letterSpacing, lineHeight, textAlign, color, textDecoration, textOverflow, whiteSpace]);
|
|
50
|
+
return /*#__PURE__*/_react["default"].createElement(TypographyContext.Provider, {
|
|
51
|
+
value: contextValue
|
|
52
|
+
}, /*#__PURE__*/_react["default"].createElement(StyledTypography, contextValue, children));
|
|
53
|
+
};
|
|
54
|
+
var StyledTypography = _styledComponents["default"].span(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n display: ", ";\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n line-height: ", ";\n text-align: ", ";\n text-decoration: ", ";\n text-overflow: ", ";\n white-space: ", ";\n overflow: ", ";\n margin: 0;\n"])), function (_ref15) {
|
|
55
|
+
var display = _ref15.display;
|
|
56
|
+
return display;
|
|
57
|
+
}, function (_ref16) {
|
|
58
|
+
var color = _ref16.color;
|
|
59
|
+
return color;
|
|
60
|
+
}, function (_ref17) {
|
|
61
|
+
var fontFamily = _ref17.fontFamily;
|
|
62
|
+
return fontFamily;
|
|
63
|
+
}, function (_ref18) {
|
|
64
|
+
var fontSize = _ref18.fontSize;
|
|
65
|
+
return fontSize;
|
|
66
|
+
}, function (_ref19) {
|
|
67
|
+
var fontStyle = _ref19.fontStyle;
|
|
68
|
+
return fontStyle;
|
|
69
|
+
}, function (_ref20) {
|
|
70
|
+
var fontWeight = _ref20.fontWeight;
|
|
71
|
+
return fontWeight;
|
|
72
|
+
}, function (_ref21) {
|
|
73
|
+
var letterSpacing = _ref21.letterSpacing;
|
|
74
|
+
return letterSpacing;
|
|
75
|
+
}, function (_ref22) {
|
|
76
|
+
var lineHeight = _ref22.lineHeight;
|
|
77
|
+
return lineHeight;
|
|
78
|
+
}, function (_ref23) {
|
|
79
|
+
var textAlign = _ref23.textAlign;
|
|
80
|
+
return textAlign;
|
|
81
|
+
}, function (_ref24) {
|
|
82
|
+
var textDecoration = _ref24.textDecoration;
|
|
83
|
+
return textDecoration;
|
|
84
|
+
}, function (_ref25) {
|
|
85
|
+
var textOverflow = _ref25.textOverflow;
|
|
86
|
+
return textOverflow;
|
|
87
|
+
}, function (_ref26) {
|
|
88
|
+
var whiteSpace = _ref26.whiteSpace;
|
|
89
|
+
return whiteSpace;
|
|
90
|
+
}, function (_ref27) {
|
|
91
|
+
var textOverflow = _ref27.textOverflow;
|
|
92
|
+
return textOverflow !== "unset" ? "hidden" : "visible";
|
|
93
|
+
});
|
|
94
|
+
var _default = exports["default"] = BaseTypography;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
/**
|
|
3
|
+
* Traps the focus inside the children of the component. It will focus the first focusable element when the component is mounted.
|
|
4
|
+
* When the focus is on the last focusable element and the user tries to focus the next element, it will focus the first element.
|
|
5
|
+
* When the focus is on the first focusable element and the user tries to focus the previous element, it will focus the last element.
|
|
6
|
+
* The focus can't be moved outside the children unless the children are removed from the DOM (for example, a Dialog, a Modal, etc).
|
|
7
|
+
* @param children: React.ReactNode
|
|
8
|
+
* @returns
|
|
9
|
+
*/
|
|
10
|
+
declare const FocusLock: ({ children }: {
|
|
11
|
+
children: React.ReactNode;
|
|
12
|
+
}) => JSX.Element;
|
|
13
|
+
export default FocusLock;
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
12
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
13
|
+
var not = {
|
|
14
|
+
negTabIndex: ':not([tabindex^="-"])',
|
|
15
|
+
disabled: ":not(:disabled)"
|
|
16
|
+
};
|
|
17
|
+
var focusableQuery = ["a[href]".concat(not.negTabIndex), "area[href]".concat(not.negTabIndex), "input:not([type=\"hidden\"])".concat(not.negTabIndex).concat(not.disabled), "select".concat(not.negTabIndex).concat(not.disabled), "textarea".concat(not.negTabIndex).concat(not.disabled), "button".concat(not.negTabIndex).concat(not.disabled), "details > summary:first-of-type".concat(not.negTabIndex), "iframe".concat(not.negTabIndex), "audio[controls]".concat(not.negTabIndex), "video[controls]".concat(not.negTabIndex), "[contenteditable]".concat(not.negTabIndex), "[tabindex]".concat(not.negTabIndex).concat(not.disabled)].join(",");
|
|
18
|
+
var getFocusableElements = function getFocusableElements(container) {
|
|
19
|
+
return Array.prototype.slice.call(container.querySelectorAll(focusableQuery)).filter(function (element) {
|
|
20
|
+
return element.getAttribute("aria-hidden") !== "true" && window.getComputedStyle(element).display !== "none" && window.getComputedStyle(element).visibility !== "hidden";
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* This function will try to focus the element and return true if it was able to receive the focus.
|
|
26
|
+
* Even if the element is focusable (passes any of the conditions of our selector), there is the possibility
|
|
27
|
+
* that the element may not be focusable at all.
|
|
28
|
+
* @param element: HTMLElement
|
|
29
|
+
* @returns
|
|
30
|
+
*/
|
|
31
|
+
var attempFocus = function attempFocus(element) {
|
|
32
|
+
element === null || element === void 0 ? void 0 : element.focus();
|
|
33
|
+
return document.activeElement === element;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @param element: HTMLElement
|
|
38
|
+
* @returns boolean: true if element is contained inside a Radix Portal, false otherwise.
|
|
39
|
+
*/
|
|
40
|
+
var radixPortalContains = function radixPortalContains(activeElement) {
|
|
41
|
+
var radixPortals = document.querySelectorAll("[data-radix-portal]");
|
|
42
|
+
return Array.prototype.slice.call(radixPortals).some(function (portal) {
|
|
43
|
+
return portal.contains(activeElement);
|
|
44
|
+
});
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Custom hook that returns an array of focusable elements inside a container.
|
|
49
|
+
* @param ref: React.MutableRefObject<HTMLDivElement>
|
|
50
|
+
* @returns
|
|
51
|
+
*/
|
|
52
|
+
var useFocusableElements = function useFocusableElements(ref) {
|
|
53
|
+
var _useState = (0, _react.useState)(),
|
|
54
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
55
|
+
focusableElements = _useState2[0],
|
|
56
|
+
setFocusableElements = _useState2[1];
|
|
57
|
+
(0, _react.useEffect)(function () {
|
|
58
|
+
if (ref.current != null) {
|
|
59
|
+
setFocusableElements(getFocusableElements(ref.current));
|
|
60
|
+
var observer = new MutationObserver(function () {
|
|
61
|
+
setFocusableElements(getFocusableElements(ref.current));
|
|
62
|
+
});
|
|
63
|
+
observer.observe(ref.current, {
|
|
64
|
+
childList: true,
|
|
65
|
+
subtree: true,
|
|
66
|
+
attributes: true
|
|
67
|
+
});
|
|
68
|
+
return function () {
|
|
69
|
+
observer.disconnect();
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
}, []);
|
|
73
|
+
return focusableElements;
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Traps the focus inside the children of the component. It will focus the first focusable element when the component is mounted.
|
|
78
|
+
* When the focus is on the last focusable element and the user tries to focus the next element, it will focus the first element.
|
|
79
|
+
* When the focus is on the first focusable element and the user tries to focus the previous element, it will focus the last element.
|
|
80
|
+
* The focus can't be moved outside the children unless the children are removed from the DOM (for example, a Dialog, a Modal, etc).
|
|
81
|
+
* @param children: React.ReactNode
|
|
82
|
+
* @returns
|
|
83
|
+
*/
|
|
84
|
+
var FocusLock = function FocusLock(_ref) {
|
|
85
|
+
var children = _ref.children;
|
|
86
|
+
var childrenContainerRef = (0, _react.useRef)();
|
|
87
|
+
var focusableElements = useFocusableElements(childrenContainerRef);
|
|
88
|
+
var focusFirst = (0, _react.useCallback)(function () {
|
|
89
|
+
var _childrenContainerRef;
|
|
90
|
+
if ((focusableElements === null || focusableElements === void 0 ? void 0 : focusableElements.length) === 0) (_childrenContainerRef = childrenContainerRef.current) === null || _childrenContainerRef === void 0 ? void 0 : _childrenContainerRef.focus();else if ((focusableElements === null || focusableElements === void 0 ? void 0 : focusableElements.length) > 0) for (var i = 0; i < focusableElements.length; i++) if (attempFocus(focusableElements[i])) return;
|
|
91
|
+
}, [focusableElements]);
|
|
92
|
+
var focusLast = function focusLast() {
|
|
93
|
+
for (var i = focusableElements.length - 1; i >= 0; i--) if (attempFocus(focusableElements[i])) return;
|
|
94
|
+
};
|
|
95
|
+
var focusLock = function focusLock(event) {
|
|
96
|
+
if (event.key === "Tab") focusableElements.length === 0 && event.preventDefault();else if (event.key === "Tab" && event.key === "Shift") focusableElements.length === 0 && event.preventDefault();
|
|
97
|
+
};
|
|
98
|
+
(0, _react.useEffect)(function () {
|
|
99
|
+
var _childrenContainerRef2;
|
|
100
|
+
if (!((_childrenContainerRef2 = childrenContainerRef.current) !== null && _childrenContainerRef2 !== void 0 && _childrenContainerRef2.contains(document.activeElement)) && !radixPortalContains(document.activeElement)) focusFirst();
|
|
101
|
+
}, [focusFirst]);
|
|
102
|
+
return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement("div", {
|
|
103
|
+
onFocus: focusLast,
|
|
104
|
+
tabIndex: 0
|
|
105
|
+
}), /*#__PURE__*/_react["default"].createElement("div", {
|
|
106
|
+
onKeyDown: focusLock,
|
|
107
|
+
ref: childrenContainerRef,
|
|
108
|
+
tabIndex: (focusableElements === null || focusableElements === void 0 ? void 0 : focusableElements.length) === 0 ? 0 : -1
|
|
109
|
+
}, children), /*#__PURE__*/_react["default"].createElement("div", {
|
|
110
|
+
onFocus: focusFirst,
|
|
111
|
+
tabIndex: 0
|
|
112
|
+
}));
|
|
113
|
+
};
|
|
114
|
+
var _default = exports["default"] = FocusLock;
|
package/wizard/Wizard.js
CHANGED
|
@@ -1,34 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
var _typeof3 = require("@babel/runtime/helpers/typeof");
|
|
6
|
-
|
|
7
5
|
Object.defineProperty(exports, "__esModule", {
|
|
8
6
|
value: true
|
|
9
7
|
});
|
|
10
8
|
exports["default"] = void 0;
|
|
11
|
-
|
|
12
9
|
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
13
|
-
|
|
14
10
|
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
15
|
-
|
|
16
11
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
17
|
-
|
|
18
12
|
var _react = _interopRequireWildcard(require("react"));
|
|
19
|
-
|
|
20
13
|
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
21
|
-
|
|
22
|
-
var _variables = require("../common/variables.js");
|
|
23
|
-
|
|
14
|
+
var _variables = require("../common/variables");
|
|
24
15
|
var _useTheme = _interopRequireDefault(require("../useTheme"));
|
|
25
|
-
|
|
26
16
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13;
|
|
27
|
-
|
|
28
|
-
function
|
|
29
|
-
|
|
30
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof3(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; }
|
|
31
|
-
|
|
17
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
18
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof3(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
32
19
|
var icons = {
|
|
33
20
|
validIcon: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
34
21
|
id: "check_circle_black_18dp",
|
|
@@ -80,38 +67,31 @@ var icons = {
|
|
|
80
67
|
fill: "#d0011b"
|
|
81
68
|
}))
|
|
82
69
|
};
|
|
83
|
-
|
|
84
70
|
var DxcWizard = function DxcWizard(_ref) {
|
|
85
71
|
var _ref2;
|
|
86
|
-
|
|
87
72
|
var _ref$mode = _ref.mode,
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
73
|
+
mode = _ref$mode === void 0 ? "horizontal" : _ref$mode,
|
|
74
|
+
defaultCurrentStep = _ref.defaultCurrentStep,
|
|
75
|
+
currentStep = _ref.currentStep,
|
|
76
|
+
onStepClick = _ref.onStepClick,
|
|
77
|
+
steps = _ref.steps,
|
|
78
|
+
margin = _ref.margin,
|
|
79
|
+
_ref$tabIndex = _ref.tabIndex,
|
|
80
|
+
tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
|
|
97
81
|
var _useState = (0, _react.useState)((_ref2 = currentStep !== null && currentStep !== void 0 ? currentStep : defaultCurrentStep) !== null && _ref2 !== void 0 ? _ref2 : 0),
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
82
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
83
|
+
innerCurrent = _useState2[0],
|
|
84
|
+
setInnerCurrentStep = _useState2[1];
|
|
102
85
|
var renderedCurrent = currentStep == null ? innerCurrent : currentStep;
|
|
103
86
|
var colorsTheme = (0, _useTheme["default"])();
|
|
104
|
-
|
|
105
87
|
var handleStepClick = function handleStepClick(newValue) {
|
|
106
88
|
if (currentStep == null) {
|
|
107
89
|
setInnerCurrentStep(newValue);
|
|
108
90
|
}
|
|
109
|
-
|
|
110
91
|
if (onStepClick) {
|
|
111
92
|
onStepClick(newValue);
|
|
112
93
|
}
|
|
113
94
|
};
|
|
114
|
-
|
|
115
95
|
return /*#__PURE__*/_react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
116
96
|
theme: colorsTheme.wizard
|
|
117
97
|
}, /*#__PURE__*/_react["default"].createElement(StepsContainer, {
|
|
@@ -139,14 +119,9 @@ var DxcWizard = function DxcWizard(_ref) {
|
|
|
139
119
|
current: i === renderedCurrent,
|
|
140
120
|
visited: i < renderedCurrent,
|
|
141
121
|
disabled: step.disabled
|
|
142
|
-
}, step.icon ? /*#__PURE__*/_react["default"].createElement(StepIconContainer, {
|
|
143
|
-
disabled: step.disabled
|
|
144
|
-
}, typeof step.icon === "string" ? /*#__PURE__*/_react["default"].createElement(Icon, {
|
|
122
|
+
}, step.icon ? /*#__PURE__*/_react["default"].createElement(StepIconContainer, null, typeof step.icon === "string" ? /*#__PURE__*/_react["default"].createElement(Icon, {
|
|
145
123
|
src: step.icon
|
|
146
|
-
}) : step.icon) : /*#__PURE__*/_react["default"].createElement(Number, {
|
|
147
|
-
disabled: step.disabled,
|
|
148
|
-
current: i === renderedCurrent
|
|
149
|
-
}, i + 1)), step.valid !== undefined && (step.valid ? /*#__PURE__*/_react["default"].createElement(ValidityIconContainer, null, icons.validIcon) : /*#__PURE__*/_react["default"].createElement(ValidityIconContainer, null, icons.invalidIcon))), (step.label || step.description) && /*#__PURE__*/_react["default"].createElement(InfoContainer, null, step.label && /*#__PURE__*/_react["default"].createElement(Label, {
|
|
124
|
+
}) : step.icon) : /*#__PURE__*/_react["default"].createElement(Number, null, i + 1)), step.valid !== undefined && (step.valid ? /*#__PURE__*/_react["default"].createElement(ValidityIconContainer, null, icons.validIcon) : /*#__PURE__*/_react["default"].createElement(ValidityIconContainer, null, icons.invalidIcon))), (step.label || step.description) && /*#__PURE__*/_react["default"].createElement(InfoContainer, null, step.label && /*#__PURE__*/_react["default"].createElement(Label, {
|
|
150
125
|
current: i === renderedCurrent,
|
|
151
126
|
disabled: step.disabled,
|
|
152
127
|
visited: i <= innerCurrent
|
|
@@ -159,8 +134,7 @@ var DxcWizard = function DxcWizard(_ref) {
|
|
|
159
134
|
}));
|
|
160
135
|
})));
|
|
161
136
|
};
|
|
162
|
-
|
|
163
|
-
var StepsContainer = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: ", ";\n justify-content: \"center\";\n ", ";\n font-family: ", ";\n\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"])), function (props) {
|
|
137
|
+
var StepsContainer = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: ", ";\n justify-content: center;\n ", ";\n font-family: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"])), function (props) {
|
|
164
138
|
return props.mode === "vertical" ? "column" : "row";
|
|
165
139
|
}, function (props) {
|
|
166
140
|
return props.mode === "vertical" && "height: 500px";
|
|
@@ -177,18 +151,16 @@ var StepsContainer = _styledComponents["default"].div(_templateObject || (_templ
|
|
|
177
151
|
}, function (props) {
|
|
178
152
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
|
|
179
153
|
});
|
|
180
|
-
|
|
181
154
|
var StepContainer = _styledComponents["default"].div(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2["default"])(["\n display: inline-flex;\n ", "\n flex-grow: ", ";\n flex-direction: ", ";\n ", "\n"])), function (props) {
|
|
182
|
-
return props.mode
|
|
155
|
+
return props.mode !== "vertical" && "align-items: center;";
|
|
183
156
|
}, function (props) {
|
|
184
157
|
return props.lastStep ? "0" : "1";
|
|
185
158
|
}, function (props) {
|
|
186
159
|
return props.mode === "vertical" ? "column" : "row";
|
|
187
160
|
}, function (props) {
|
|
188
|
-
return props.mode === "vertical"
|
|
161
|
+
return props.mode === "vertical" && "width: fit-content;";
|
|
189
162
|
});
|
|
190
|
-
|
|
191
|
-
var Step = _styledComponents["default"].button(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2["default"])(["\n border: none;\n background: inherit;\n display: flex;\n justify-content: flex-start;\n align-items: center;\n margin: ", ";\n\n padding: 0px;\n ", ";\n\n &:hover {\n ", ";\n }\n &:focus {\n outline: ", " auto 1px;\n }\n"])), function (props) {
|
|
163
|
+
var Step = _styledComponents["default"].button(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n justify-content: flex-start;\n align-items: center;\n border: none;\n border-radius: 0.25rem;\n background: inherit;\n margin: ", ";\n\n padding: 0px;\n ", ";\n\n &:hover {\n ", ";\n }\n &:focus {\n outline: 2px solid ", ";\n }\n"])), function (props) {
|
|
192
164
|
return props.first ? props.mode === "vertical" ? "0 0 24px 0" : "0 24px 0 0" : props.last ? props.mode === "vertical" ? "24px 0 0 0" : "0 0 0 24px" : props.mode === "vertical" ? "24px 0" : "0 24px";
|
|
193
165
|
}, function (props) {
|
|
194
166
|
return props.disabled ? "cursor: not-allowed" : "";
|
|
@@ -197,11 +169,9 @@ var Step = _styledComponents["default"].button(_templateObject3 || (_templateObj
|
|
|
197
169
|
}, function (props) {
|
|
198
170
|
return props.theme.focusColor;
|
|
199
171
|
});
|
|
200
|
-
|
|
201
172
|
var StepHeader = _styledComponents["default"].div(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n position: relative;\n display: inline-flex;\n ", "\n"])), function (props) {
|
|
202
173
|
return props.validityIcon && "padding-bottom: 4px;";
|
|
203
174
|
});
|
|
204
|
-
|
|
205
175
|
var IconContainer = _styledComponents["default"].div(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n height: ", ";\n\n ", "\n ", ";\n\n border-radius: ", ";\n\n display: flex;\n justify-content: center;\n align-items: center;\n"])), function (props) {
|
|
206
176
|
return props.disabled ? props.theme.disabledStepWidth : props.current ? props.theme.selectedStepWidth : props.theme.stepWidth;
|
|
207
177
|
}, function (props) {
|
|
@@ -213,19 +183,16 @@ var IconContainer = _styledComponents["default"].div(_templateObject5 || (_templ
|
|
|
213
183
|
}, function (props) {
|
|
214
184
|
return !props.current && !props.disabled ? props.theme.stepBorderRadius : props.current ? props.theme.selectedStepBorderRadius : props.disabled ? props.theme.disabledStepBorderRadius : "";
|
|
215
185
|
});
|
|
216
|
-
|
|
217
186
|
var Icon = _styledComponents["default"].img(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n height: ", ";\n"])), function (props) {
|
|
218
187
|
return props.theme.stepIconSize;
|
|
219
188
|
}, function (props) {
|
|
220
189
|
return props.theme.stepIconSize;
|
|
221
190
|
});
|
|
222
|
-
|
|
223
191
|
var StepIconContainer = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n height: ", ";\n overflow: hidden;\n img,\n svg {\n height: 100%;\n width: 100%;\n }\n"])), function (props) {
|
|
224
192
|
return props.theme.stepIconSize;
|
|
225
193
|
}, function (props) {
|
|
226
194
|
return props.theme.stepIconSize;
|
|
227
195
|
});
|
|
228
|
-
|
|
229
196
|
var Number = _styledComponents["default"].p(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])(["\n font-size: ", ";\n font-family: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n opacity: 1;\n margin: 0px 0px 0px 1px;\n"])), function (props) {
|
|
230
197
|
return props.theme.stepFontSize;
|
|
231
198
|
}, function (props) {
|
|
@@ -237,11 +204,8 @@ var Number = _styledComponents["default"].p(_templateObject8 || (_templateObject
|
|
|
237
204
|
}, function (props) {
|
|
238
205
|
return props.theme.stepFontTracking;
|
|
239
206
|
});
|
|
240
|
-
|
|
241
207
|
var ValidityIconContainer = _styledComponents["default"].div(_templateObject9 || (_templateObject9 = (0, _taggedTemplateLiteral2["default"])(["\n width: 18px;\n height: 18px;\n position: absolute;\n top: 22.5px;\n left: 22.5px;\n"])));
|
|
242
|
-
|
|
243
208
|
var InfoContainer = _styledComponents["default"].div(_templateObject10 || (_templateObject10 = (0, _taggedTemplateLiteral2["default"])(["\n margin-left: 12px;\n"])));
|
|
244
|
-
|
|
245
209
|
var Label = _styledComponents["default"].p(_templateObject11 || (_templateObject11 = (0, _taggedTemplateLiteral2["default"])(["\n text-align: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n ", ";\n text-transform: ", ";\n margin: 0;\n"])), function (props) {
|
|
246
210
|
return props.theme.labelTextAlign;
|
|
247
211
|
}, function (props) {
|
|
@@ -259,7 +223,6 @@ var Label = _styledComponents["default"].p(_templateObject11 || (_templateObject
|
|
|
259
223
|
}, function (props) {
|
|
260
224
|
return props.theme.labelFontTextTransform;
|
|
261
225
|
});
|
|
262
|
-
|
|
263
226
|
var Description = _styledComponents["default"].p(_templateObject12 || (_templateObject12 = (0, _taggedTemplateLiteral2["default"])(["\n text-align: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n text-transform: ", ";\n ", ";\n margin: 0;\n"])), function (props) {
|
|
264
227
|
return props.theme.helperTextTextAlign;
|
|
265
228
|
}, function (props) {
|
|
@@ -277,16 +240,11 @@ var Description = _styledComponents["default"].p(_templateObject12 || (_template
|
|
|
277
240
|
}, function (props) {
|
|
278
241
|
return props.disabled ? "color: ".concat(props.theme.disabledHelperTextFontColor, ";") : "color: ".concat(!props.visited ? props.theme.unvisitedHelperTextFontColor : props.current ? props.theme.selectedHelperTextFontColor : props.theme.visitedHelperTextFontColor, ";");
|
|
279
242
|
});
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
return props.mode === "horizontal" ? "" : "0";
|
|
243
|
+
var StepSeparator = _styledComponents["default"].div(_templateObject13 || (_templateObject13 = (0, _taggedTemplateLiteral2["default"])(["\n ", ";\n ", "\n border: ", ";\n opacity: 1;\n flex-grow: 1;\n"])), function (props) {
|
|
244
|
+
return props.mode === "horizontal" ? "height: 0;" : "width: 0;";
|
|
283
245
|
}, function (props) {
|
|
284
|
-
return props.mode === "
|
|
285
|
-
}, function (props) {
|
|
286
|
-
return props.mode === "vertical" ? "margin: 0 18px;" : "";
|
|
246
|
+
return props.mode === "vertical" && "margin: 0 18px;";
|
|
287
247
|
}, function (props) {
|
|
288
248
|
return "".concat(props.theme.separatorBorderStyle, " ").concat(props.theme.separatorBorderThickness, " ").concat(props.theme.separatorColor);
|
|
289
249
|
});
|
|
290
|
-
|
|
291
|
-
var _default = DxcWizard;
|
|
292
|
-
exports["default"] = _default;
|
|
250
|
+
var _default = exports["default"] = DxcWizard;
|