@dxc-technology/halstack-react 0.0.0-9bd9511 → 0.0.0-9c20370
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 +12 -2
- package/HalstackContext.d.ts +1330 -7
- package/HalstackContext.js +84 -67
- package/accordion/Accordion.d.ts +1 -1
- package/accordion/Accordion.js +74 -55
- package/accordion/Accordion.stories.tsx +3 -101
- package/accordion/Accordion.test.js +34 -19
- package/accordion/types.d.ts +4 -16
- package/accordion-group/AccordionGroup.d.ts +4 -3
- package/accordion-group/AccordionGroup.js +49 -42
- package/accordion-group/AccordionGroup.stories.tsx +77 -76
- package/accordion-group/AccordionGroup.test.js +62 -54
- package/accordion-group/AccordionGroupAccordion.d.ts +4 -0
- package/accordion-group/AccordionGroupAccordion.js +43 -0
- package/accordion-group/types.d.ts +6 -18
- package/alert/Alert.js +47 -20
- package/alert/Alert.test.js +46 -29
- package/alert/types.d.ts +3 -3
- package/badge/Badge.js +14 -2
- package/badge/types.d.ts +1 -1
- package/bleed/Bleed.js +21 -13
- package/bleed/Bleed.stories.tsx +1 -0
- package/bleed/types.d.ts +2 -2
- package/box/Box.d.ts +1 -1
- package/box/Box.js +33 -33
- package/box/Box.stories.tsx +25 -53
- package/box/Box.test.js +7 -2
- package/box/types.d.ts +3 -15
- package/bulleted-list/BulletedList.js +36 -9
- package/bulleted-list/BulletedList.stories.tsx +7 -1
- package/bulleted-list/types.d.ts +32 -5
- package/button/Button.d.ts +1 -1
- package/button/Button.js +83 -71
- package/button/Button.stories.tsx +4 -4
- package/button/Button.test.js +28 -8
- package/button/types.d.ts +8 -4
- package/card/Card.d.ts +1 -1
- package/card/Card.js +67 -62
- package/card/Card.stories.tsx +12 -42
- package/card/Card.test.js +22 -11
- package/card/types.d.ts +4 -10
- package/checkbox/Checkbox.js +71 -27
- package/checkbox/Checkbox.test.js +60 -33
- package/checkbox/types.d.ts +4 -4
- package/chip/Chip.js +51 -48
- package/chip/Chip.stories.tsx +25 -17
- package/chip/Chip.test.js +29 -17
- package/chip/types.d.ts +4 -4
- package/common/OpenSans.css +68 -80
- package/common/coreTokens.d.ts +146 -0
- package/common/coreTokens.js +167 -0
- package/common/utils.d.ts +1 -0
- package/common/utils.js +8 -3
- package/common/variables.d.ts +226 -175
- package/common/variables.js +956 -1133
- package/date-input/Calendar.js +55 -12
- package/date-input/DateInput.js +82 -35
- package/date-input/DateInput.test.js +351 -164
- package/date-input/DatePicker.js +38 -8
- package/date-input/Icons.js +12 -0
- package/date-input/YearPicker.js +30 -5
- package/date-input/types.d.ts +7 -7
- package/dialog/Dialog.d.ts +1 -1
- package/dialog/Dialog.js +83 -86
- package/dialog/Dialog.stories.tsx +127 -221
- package/dialog/Dialog.test.js +331 -18
- package/dialog/types.d.ts +1 -14
- package/dropdown/Dropdown.js +86 -32
- package/dropdown/Dropdown.test.js +211 -104
- package/dropdown/DropdownMenu.js +22 -8
- package/dropdown/DropdownMenuItem.js +15 -6
- package/dropdown/types.d.ts +8 -8
- package/file-input/FileInput.js +218 -134
- package/file-input/FileInput.test.js +343 -331
- package/file-input/FileItem.js +39 -12
- package/file-input/types.d.ts +10 -10
- package/flex/Flex.js +39 -25
- package/flex/Flex.stories.tsx +35 -26
- package/flex/types.d.ts +74 -9
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +80 -68
- package/footer/Footer.stories.tsx +12 -89
- package/footer/Footer.test.js +47 -40
- package/footer/Icons.js +4 -0
- package/footer/types.d.ts +15 -17
- package/grid/Grid.d.ts +7 -0
- package/grid/Grid.js +91 -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 +72 -55
- package/header/Header.stories.tsx +7 -71
- package/header/Header.test.js +26 -13
- package/header/Icons.js +4 -0
- package/header/types.d.ts +2 -16
- package/heading/Heading.js +28 -7
- package/heading/Heading.test.js +88 -71
- package/heading/types.d.ts +3 -3
- package/inset/Inset.js +21 -13
- package/inset/Inset.stories.tsx +2 -1
- package/inset/types.d.ts +2 -2
- package/layout/ApplicationLayout.d.ts +5 -5
- package/layout/ApplicationLayout.js +57 -15
- package/layout/Icons.js +10 -0
- package/layout/SidenavContext.d.ts +1 -1
- package/layout/SidenavContext.js +4 -0
- package/layout/types.d.ts +5 -6
- package/link/Link.js +41 -21
- package/link/Link.test.js +42 -26
- package/link/types.d.ts +4 -4
- package/main.d.ts +2 -1
- package/main.js +55 -0
- package/nav-tabs/NavTabs.d.ts +2 -2
- package/nav-tabs/NavTabs.js +43 -16
- package/nav-tabs/NavTabs.stories.tsx +14 -0
- package/nav-tabs/NavTabs.test.js +44 -37
- package/nav-tabs/Tab.js +71 -45
- package/nav-tabs/types.d.ts +10 -11
- package/number-input/NumberInput.js +30 -20
- package/number-input/NumberInput.test.js +249 -113
- package/number-input/NumberInputContext.js +5 -0
- package/number-input/numberInputContextTypes.d.ts +1 -1
- package/number-input/types.d.ts +4 -4
- package/package.json +7 -7
- package/paginator/Icons.js +10 -0
- package/paginator/Paginator.js +39 -17
- package/paginator/Paginator.test.js +156 -104
- package/paginator/types.d.ts +1 -1
- package/paragraph/Paragraph.d.ts +3 -4
- package/paragraph/Paragraph.js +18 -8
- package/password-input/PasswordInput.js +51 -22
- package/password-input/PasswordInput.test.js +94 -51
- package/password-input/types.d.ts +4 -4
- package/progress-bar/ProgressBar.d.ts +2 -2
- package/progress-bar/ProgressBar.js +39 -14
- package/progress-bar/ProgressBar.test.js +53 -36
- package/progress-bar/types.d.ts +4 -3
- package/quick-nav/QuickNav.js +24 -2
- package/quick-nav/types.d.ts +2 -2
- package/radio-group/Radio.js +53 -22
- package/radio-group/RadioGroup.js +84 -41
- package/radio-group/RadioGroup.test.js +288 -186
- package/radio-group/types.d.ts +4 -4
- package/resultsetTable/Icons.js +3 -0
- package/resultsetTable/ResultsetTable.js +56 -21
- package/resultsetTable/ResultsetTable.test.js +75 -42
- package/resultsetTable/types.d.ts +5 -5
- package/select/Icons.js +3 -0
- package/select/Listbox.js +35 -10
- package/select/Option.js +24 -8
- package/select/Select.js +143 -56
- package/select/Select.test.js +839 -456
- package/select/types.d.ts +12 -12
- package/sidenav/Icons.d.ts +7 -0
- package/sidenav/Icons.js +51 -0
- package/sidenav/Sidenav.d.ts +2 -2
- package/sidenav/Sidenav.js +116 -104
- package/sidenav/Sidenav.stories.tsx +60 -60
- package/sidenav/Sidenav.test.js +10 -3
- package/sidenav/types.d.ts +26 -23
- package/slider/Slider.js +84 -38
- package/slider/Slider.test.js +104 -76
- package/slider/types.d.ts +4 -4
- package/spinner/Spinner.js +51 -28
- package/spinner/Spinner.stories.jsx +28 -28
- package/spinner/Spinner.test.js +35 -26
- package/spinner/types.d.ts +3 -3
- package/switch/Switch.js +66 -24
- package/switch/Switch.test.js +97 -52
- package/switch/types.d.ts +4 -4
- package/table/Table.js +22 -4
- package/table/Table.test.js +7 -2
- package/table/types.d.ts +3 -3
- package/tabs/Tab.js +39 -22
- package/tabs/Tabs.js +131 -62
- package/tabs/Tabs.test.js +122 -67
- package/tabs/types.d.ts +8 -8
- package/tag/Tag.js +54 -27
- package/tag/Tag.test.js +31 -20
- package/tag/types.d.ts +7 -7
- package/text-input/Icons.js +3 -0
- package/text-input/Suggestion.js +24 -8
- package/text-input/Suggestions.js +36 -11
- package/text-input/TextInput.js +144 -59
- package/text-input/TextInput.stories.tsx +1 -1
- package/text-input/TextInput.test.js +858 -539
- package/text-input/types.d.ts +9 -9
- package/textarea/Textarea.js +73 -38
- package/textarea/Textarea.test.js +173 -98
- package/textarea/types.d.ts +4 -4
- package/toggle-group/ToggleGroup.d.ts +2 -2
- package/toggle-group/ToggleGroup.js +59 -21
- package/toggle-group/ToggleGroup.test.js +72 -40
- package/toggle-group/types.d.ts +11 -11
- package/typography/Typography.d.ts +2 -2
- package/typography/Typography.js +23 -110
- package/typography/Typography.stories.tsx +1 -1
- package/typography/types.d.ts +1 -1
- package/useTheme.d.ts +1234 -1
- package/useTheme.js +6 -0
- package/useTranslatedLabels.d.ts +84 -2
- package/useTranslatedLabels.js +5 -0
- package/utils/BaseTypography.d.ts +21 -0
- package/utils/BaseTypography.js +108 -0
- package/utils/FocusLock.d.ts +13 -0
- package/utils/FocusLock.js +138 -0
- package/wizard/Wizard.js +47 -13
- package/wizard/Wizard.test.js +81 -54
- package/wizard/types.d.ts +7 -8
- package/card/ice-cream.jpg +0 -0
- package/translatedLabelsType.d.ts +0 -82
- /package/{translatedLabelsType.js → grid/types.js} +0 -0
package/wizard/Wizard.test.js
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
4
5
|
var _react = _interopRequireDefault(require("react"));
|
|
6
|
+
|
|
5
7
|
var _react2 = require("@testing-library/react");
|
|
6
|
-
|
|
8
|
+
|
|
9
|
+
var _Wizard = _interopRequireDefault(require("./Wizard.tsx"));
|
|
10
|
+
|
|
7
11
|
describe("Wizard components tests", function () {
|
|
8
12
|
test("Wizard renders with correct steps", function () {
|
|
9
13
|
var _render = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Wizard["default"], {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
steps: [{
|
|
15
|
+
label: "first-step"
|
|
16
|
+
}, {
|
|
17
|
+
label: "second-step"
|
|
18
|
+
}]
|
|
19
|
+
})),
|
|
20
|
+
getByText = _render.getByText,
|
|
21
|
+
getAllByRole = _render.getAllByRole;
|
|
22
|
+
|
|
18
23
|
var steps = getAllByRole("button");
|
|
19
24
|
expect(getByText("first-step")).toBeTruthy();
|
|
20
25
|
expect(getByText("second-step")).toBeTruthy();
|
|
@@ -23,90 +28,112 @@ describe("Wizard components tests", function () {
|
|
|
23
28
|
});
|
|
24
29
|
test("Wizard renders with initially selected step", function () {
|
|
25
30
|
var _render2 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Wizard["default"], {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
defaultCurrentStep: 1,
|
|
32
|
+
steps: [{
|
|
33
|
+
label: "first-step"
|
|
34
|
+
}, {
|
|
35
|
+
label: "second-step"
|
|
36
|
+
}]
|
|
37
|
+
})),
|
|
38
|
+
getAllByRole = _render2.getAllByRole;
|
|
39
|
+
|
|
34
40
|
var steps = getAllByRole("button");
|
|
35
41
|
expect(steps[1].getAttribute("aria-current")).toBe("step");
|
|
36
42
|
});
|
|
37
43
|
test("Click on step text", function () {
|
|
38
44
|
var onClick = jest.fn();
|
|
45
|
+
|
|
39
46
|
var _render3 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Wizard["default"], {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
47
|
+
onStepClick: onClick,
|
|
48
|
+
steps: [{
|
|
49
|
+
label: "first-step"
|
|
50
|
+
}]
|
|
51
|
+
})),
|
|
52
|
+
getByText = _render3.getByText;
|
|
53
|
+
|
|
46
54
|
var step = getByText("first-step");
|
|
55
|
+
|
|
47
56
|
_react2.fireEvent.click(step);
|
|
57
|
+
|
|
48
58
|
expect(onClick).toHaveBeenCalled();
|
|
49
59
|
});
|
|
50
60
|
test("Click on step description", function () {
|
|
51
61
|
var onClick = jest.fn();
|
|
62
|
+
|
|
52
63
|
var _render4 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Wizard["default"], {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
64
|
+
onStepClick: onClick,
|
|
65
|
+
steps: [{
|
|
66
|
+
label: "first-step",
|
|
67
|
+
description: "step-description"
|
|
68
|
+
}]
|
|
69
|
+
})),
|
|
70
|
+
getByText = _render4.getByText;
|
|
71
|
+
|
|
60
72
|
var step = getByText("step-description");
|
|
73
|
+
|
|
61
74
|
_react2.fireEvent.click(step);
|
|
75
|
+
|
|
62
76
|
expect(onClick).toHaveBeenCalled();
|
|
63
77
|
});
|
|
64
78
|
test("Click on step number", function () {
|
|
65
79
|
var onClick = jest.fn();
|
|
80
|
+
|
|
66
81
|
var _render5 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Wizard["default"], {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
82
|
+
onStepClick: onClick,
|
|
83
|
+
steps: [{
|
|
84
|
+
label: "first-step"
|
|
85
|
+
}]
|
|
86
|
+
})),
|
|
87
|
+
getByText = _render5.getByText;
|
|
88
|
+
|
|
73
89
|
var step = getByText("1");
|
|
90
|
+
|
|
74
91
|
_react2.fireEvent.click(step);
|
|
92
|
+
|
|
75
93
|
expect(onClick).toHaveBeenCalled();
|
|
76
94
|
});
|
|
77
95
|
test("Click on disable step", function () {
|
|
78
96
|
var onClick = jest.fn();
|
|
97
|
+
|
|
79
98
|
var _render6 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Wizard["default"], {
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
99
|
+
onStepClick: onClick,
|
|
100
|
+
steps: [{
|
|
101
|
+
label: "first-step"
|
|
102
|
+
}, {
|
|
103
|
+
label: "second-step",
|
|
104
|
+
disabled: true
|
|
105
|
+
}]
|
|
106
|
+
})),
|
|
107
|
+
getByText = _render6.getByText;
|
|
108
|
+
|
|
89
109
|
var step = getByText("second-step");
|
|
110
|
+
|
|
90
111
|
_react2.fireEvent.click(step);
|
|
112
|
+
|
|
91
113
|
expect(onClick).toHaveBeenCalledTimes(0);
|
|
92
114
|
});
|
|
93
115
|
test("Controlled wizard function is called", function () {
|
|
94
116
|
var onClick = jest.fn(function (i) {
|
|
95
117
|
return i;
|
|
96
118
|
});
|
|
119
|
+
|
|
97
120
|
var _render7 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Wizard["default"], {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
121
|
+
currentStep: 0,
|
|
122
|
+
onStepClick: onClick,
|
|
123
|
+
steps: [{
|
|
124
|
+
label: "first-step"
|
|
125
|
+
}, {
|
|
126
|
+
label: "second-step"
|
|
127
|
+
}]
|
|
128
|
+
})),
|
|
129
|
+
getAllByRole = _render7.getAllByRole;
|
|
130
|
+
|
|
107
131
|
var steps = getAllByRole("button");
|
|
132
|
+
|
|
108
133
|
_react2.fireEvent.click(steps[1]);
|
|
134
|
+
|
|
109
135
|
_react2.fireEvent.click(steps[0]);
|
|
136
|
+
|
|
110
137
|
expect(onClick).toHaveBeenCalledTimes(2);
|
|
111
138
|
expect(onClick).toHaveBeenNthCalledWith(1, 1);
|
|
112
139
|
expect(onClick).toHaveBeenNthCalledWith(2, 0);
|
package/wizard/types.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
|
|
3
|
+
declare type Margin = {
|
|
4
4
|
top?: Space;
|
|
5
5
|
bottom?: Space;
|
|
6
6
|
left?: Space;
|
|
7
7
|
right?: Space;
|
|
8
8
|
};
|
|
9
|
-
type SVG = React.ReactNode & React.SVGProps<SVGSVGElement>;
|
|
10
|
-
type
|
|
9
|
+
declare type SVG = React.ReactNode & React.SVGProps<SVGSVGElement>;
|
|
10
|
+
export declare type StepProps = {
|
|
11
11
|
/**
|
|
12
12
|
* Step label.
|
|
13
13
|
*/
|
|
@@ -29,12 +29,11 @@ type Step = {
|
|
|
29
29
|
*/
|
|
30
30
|
valid?: boolean;
|
|
31
31
|
};
|
|
32
|
-
|
|
33
|
-
type Props = {
|
|
32
|
+
declare type Props = {
|
|
34
33
|
/**
|
|
35
34
|
* The wizard can be showed in horizontal or vertical.
|
|
36
35
|
*/
|
|
37
|
-
mode?:
|
|
36
|
+
mode?: "horizontal" | "vertical";
|
|
38
37
|
/**
|
|
39
38
|
* Initially selected step, only when it is uncontrolled.
|
|
40
39
|
*/
|
|
@@ -51,7 +50,7 @@ type Props = {
|
|
|
51
50
|
/**
|
|
52
51
|
* An array of objects representing the steps.
|
|
53
52
|
*/
|
|
54
|
-
steps:
|
|
53
|
+
steps: StepProps[];
|
|
55
54
|
/**
|
|
56
55
|
* Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
|
|
57
56
|
* You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
|
package/card/ice-cream.jpg
DELETED
|
Binary file
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
type TranslatedLabelsContextTypes = {
|
|
2
|
-
formFields: {
|
|
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: {
|
|
11
|
-
visibilityToggleTitle: string;
|
|
12
|
-
};
|
|
13
|
-
alert: {
|
|
14
|
-
infoTitleText: string;
|
|
15
|
-
successTitleText: string;
|
|
16
|
-
warningTitleText: string;
|
|
17
|
-
errorTitleText: string;
|
|
18
|
-
};
|
|
19
|
-
dateInput: {
|
|
20
|
-
invalidDateErrorMessage: string;
|
|
21
|
-
};
|
|
22
|
-
fileInput: {
|
|
23
|
-
fileSizeGreaterThanErrorMessage: string;
|
|
24
|
-
fileSizeLessThanErrorMessage: string;
|
|
25
|
-
multipleButtonLabelDefault: string;
|
|
26
|
-
singleButtonLabelDefault: string;
|
|
27
|
-
dropAreaButtonLabelDefault: string;
|
|
28
|
-
multipleDropAreaLabelDefault: string;
|
|
29
|
-
singleDropAreaLabelDefault: string;
|
|
30
|
-
deleteFileActionTitle: string;
|
|
31
|
-
};
|
|
32
|
-
footer: {
|
|
33
|
-
copyrightText: (year: number) => string;
|
|
34
|
-
};
|
|
35
|
-
header: {
|
|
36
|
-
closeIcon: string;
|
|
37
|
-
hamburguerTitle: string;
|
|
38
|
-
};
|
|
39
|
-
numberInput: {
|
|
40
|
-
valueGreaterThanOrEqualToErrorMessage: (minLength: number) => string;
|
|
41
|
-
valueLessThanOrEqualToErrorMessage: (maxLength: number) => string;
|
|
42
|
-
decrementValueTitle: string;
|
|
43
|
-
incrementValueTitle: string;
|
|
44
|
-
};
|
|
45
|
-
paginator: {
|
|
46
|
-
itemsPerPageText: string;
|
|
47
|
-
minToMaxOfText: (minNumberOfItems: number, maxNumberOfItems: number, totalItems: number) => string;
|
|
48
|
-
goToPageText: string;
|
|
49
|
-
pageOfText: (pageNumber: number, totalPagesNumber: number) => string;
|
|
50
|
-
};
|
|
51
|
-
passwordInput: {
|
|
52
|
-
inputShowPasswordTitle: string;
|
|
53
|
-
inputHidePasswordTitle: string;
|
|
54
|
-
};
|
|
55
|
-
quickNav: {
|
|
56
|
-
contentTitle: string;
|
|
57
|
-
};
|
|
58
|
-
radioGroup: {
|
|
59
|
-
optionalItemLabelDefault: string;
|
|
60
|
-
};
|
|
61
|
-
select: {
|
|
62
|
-
noMatchesErrorMessage: string;
|
|
63
|
-
actionClearSelectionTitle: string;
|
|
64
|
-
actionClearSearchTitle: string;
|
|
65
|
-
};
|
|
66
|
-
tabs: {
|
|
67
|
-
scrollLeft: string;
|
|
68
|
-
scrollRight: string;
|
|
69
|
-
};
|
|
70
|
-
textInput: {
|
|
71
|
-
clearFieldActionTitle: string;
|
|
72
|
-
searchingMessage: string;
|
|
73
|
-
fetchingDataErrorMessage: string;
|
|
74
|
-
};
|
|
75
|
-
calendar: {
|
|
76
|
-
daysShort: string[];
|
|
77
|
-
months: string[];
|
|
78
|
-
previousMonthTitle: string;
|
|
79
|
-
nextMonthTitle: string;
|
|
80
|
-
};
|
|
81
|
-
};
|
|
82
|
-
export default TranslatedLabelsContextTypes;
|
|
File without changes
|