@dxc-technology/halstack-react 0.0.0-878c09d → 0.0.0-8c3739a

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.
Files changed (124) hide show
  1. package/README.md +1 -1
  2. package/babel.config.js +6 -2
  3. package/dist/BackgroundColorContext.js +46 -0
  4. package/dist/ThemeContext.js +235 -2
  5. package/dist/accordion/Accordion.js +152 -67
  6. package/dist/accordion-group/AccordionGroup.js +37 -10
  7. package/dist/alert/Alert.js +183 -84
  8. package/dist/alert/index.d.ts +51 -0
  9. package/dist/badge/Badge.js +23 -18
  10. package/dist/box/Box.js +31 -23
  11. package/dist/button/Button.js +61 -25
  12. package/dist/card/Card.js +72 -35
  13. package/dist/checkbox/Checkbox.js +98 -38
  14. package/dist/chip/Chip.js +97 -40
  15. package/dist/common/RequiredComponent.js +2 -8
  16. package/dist/common/utils.js +2 -22
  17. package/dist/common/variables.js +1439 -303
  18. package/dist/date/Date.js +69 -49
  19. package/dist/date-input/DateInput.js +400 -0
  20. package/dist/date-input/index.d.ts +95 -0
  21. package/dist/dialog/Dialog.js +58 -37
  22. package/dist/dropdown/Dropdown.js +176 -81
  23. package/dist/file-input/FileInput.js +644 -0
  24. package/dist/file-input/FileItem.js +280 -0
  25. package/dist/file-input/index.d.ts +81 -0
  26. package/dist/footer/Footer.js +74 -50
  27. package/dist/footer/dxc_logo.svg +15 -0
  28. package/dist/header/Header.js +93 -63
  29. package/dist/header/dxc_logo_black.svg +8 -0
  30. package/dist/heading/Heading.js +81 -16
  31. package/dist/input-text/InputText.js +250 -113
  32. package/dist/layout/ApplicationLayout.js +14 -18
  33. package/dist/link/Link.js +86 -41
  34. package/dist/main.d.ts +8 -0
  35. package/dist/main.js +74 -2
  36. package/dist/new-select/NewSelect.js +836 -0
  37. package/dist/new-select/index.d.ts +53 -0
  38. package/dist/new-textarea/NewTextarea.js +369 -0
  39. package/dist/new-textarea/index.d.ts +117 -0
  40. package/dist/number-input/NumberInput.js +136 -0
  41. package/dist/number-input/NumberInputContext.js +16 -0
  42. package/dist/number-input/index.d.ts +113 -0
  43. package/dist/paginator/Paginator.js +113 -56
  44. package/dist/password-input/PasswordInput.js +198 -0
  45. package/dist/password-input/index.d.ts +94 -0
  46. package/dist/progress-bar/ProgressBar.js +95 -38
  47. package/dist/radio/Radio.js +31 -17
  48. package/dist/resultsetTable/ResultsetTable.js +82 -65
  49. package/dist/select/Select.js +226 -150
  50. package/dist/sidenav/Sidenav.js +66 -15
  51. package/dist/slider/Slider.js +197 -69
  52. package/dist/spinner/Spinner.js +247 -59
  53. package/dist/switch/Switch.js +50 -27
  54. package/dist/table/Table.js +51 -24
  55. package/dist/tabs/Tabs.js +95 -43
  56. package/dist/tag/Tag.js +68 -35
  57. package/dist/text-input/TextInput.js +971 -0
  58. package/dist/text-input/index.d.ts +135 -0
  59. package/dist/textarea/Textarea.js +77 -40
  60. package/dist/toggle/Toggle.js +16 -19
  61. package/dist/toggle-group/ToggleGroup.js +142 -41
  62. package/dist/upload/Upload.js +13 -8
  63. package/dist/upload/buttons-upload/ButtonsUpload.js +31 -14
  64. package/dist/upload/dragAndDropArea/DragAndDropArea.js +78 -28
  65. package/dist/upload/file-upload/FileToUpload.js +50 -24
  66. package/dist/upload/files-upload/FilesToUpload.js +16 -16
  67. package/dist/upload/transaction/Transaction.js +44 -24
  68. package/dist/upload/transactions/Transactions.js +38 -20
  69. package/dist/useTheme.js +22 -0
  70. package/dist/wizard/Wizard.js +127 -47
  71. package/dist/wizard/invalid_icon.svg +4 -5
  72. package/dist/wizard/valid_icon.svg +4 -5
  73. package/package.json +8 -2
  74. package/test/AccordionGroup.test.js +16 -0
  75. package/test/Date.test.js +13 -13
  76. package/test/DateInput.test.js +242 -0
  77. package/test/Dropdown.test.js +15 -0
  78. package/test/FileInput.test.js +201 -0
  79. package/test/InputText.test.js +25 -17
  80. package/test/Link.test.js +3 -2
  81. package/test/NewTextarea.test.js +195 -0
  82. package/test/NumberInput.test.js +259 -0
  83. package/test/Paginator.test.js +40 -57
  84. package/test/PasswordInput.test.js +83 -0
  85. package/test/ResultsetTable.test.js +33 -8
  86. package/test/Select.test.js +44 -24
  87. package/test/Spinner.test.js +5 -0
  88. package/test/TextInput.test.js +732 -0
  89. package/test/ToggleGroup.test.js +5 -1
  90. package/dist/accordion/Accordion.stories.js +0 -207
  91. package/dist/accordion/readme.md +0 -96
  92. package/dist/accordion-group/AccordionGroup.stories.js +0 -207
  93. package/dist/accordion-group/readme.md +0 -70
  94. package/dist/alert/Alert.stories.js +0 -158
  95. package/dist/alert/close.svg +0 -4
  96. package/dist/alert/error.svg +0 -4
  97. package/dist/alert/info.svg +0 -4
  98. package/dist/alert/readme.md +0 -43
  99. package/dist/alert/success.svg +0 -4
  100. package/dist/alert/warning.svg +0 -4
  101. package/dist/button/Button.stories.js +0 -224
  102. package/dist/button/readme.md +0 -93
  103. package/dist/common/services/example-service.js +0 -10
  104. package/dist/common/services/example-service.test.js +0 -12
  105. package/dist/date/calendar.svg +0 -1
  106. package/dist/date/calendar_dark.svg +0 -1
  107. package/dist/dialog/Dialog.stories.js +0 -217
  108. package/dist/dialog/readme.md +0 -32
  109. package/dist/dropdown/Dropdown.stories.js +0 -249
  110. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  111. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  112. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  113. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  114. package/dist/dropdown/readme.md +0 -69
  115. package/dist/footer/Footer.stories.js +0 -94
  116. package/dist/footer/dxc_logo_wht.png +0 -0
  117. package/dist/header/dxc_logo_black.png +0 -0
  118. package/dist/header/dxc_logo_blk_rgb.svg +0 -6
  119. package/dist/header/dxc_logo_white.png +0 -0
  120. package/dist/input-text/InputText.stories.js +0 -209
  121. package/dist/select/Select.stories.js +0 -235
  122. package/dist/select/readme.md +0 -72
  123. package/dist/slider/Slider.stories.js +0 -241
  124. package/dist/toggle-group/readme.md +0 -82
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ /* eslint-disable prefer-template */
13
+ var NumberInputContext = _react["default"].createContext();
14
+
15
+ var _default = NumberInputContext;
16
+ exports["default"] = _default;
@@ -0,0 +1,113 @@
1
+ type Size = "small" | "medium" | "large" | "fillParent";
2
+ type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
+ type Margin = {
4
+ top?: Space;
5
+ bottom?: Space;
6
+ left?: Space;
7
+ right?: Space;
8
+ };
9
+ type Props = {
10
+ /**
11
+ * Text to be placed above the number.
12
+ */
13
+ label?: string;
14
+ /**
15
+ * Name attribute of the input element.
16
+ */
17
+ name?: string;
18
+ /**
19
+ * Value of the input element. If undefined, the component will be uncontrolled and the value will be managed internally by the component.
20
+ */
21
+ value?: string;
22
+ /**
23
+ * Helper text to be placed above the number.
24
+ */
25
+ helperText?: string;
26
+ /**
27
+ * Text to be put as placeholder of the number.
28
+ */
29
+ placeholder?: string;
30
+ /**
31
+ * If true, the component will be disabled.
32
+ */
33
+ disabled?: boolean;
34
+ /**
35
+ * If true, the number will be optional, showing '(Optional)'
36
+ * next to the label. Otherwise, the field will be considered required
37
+ * and an error will be passed as a parameter to the OnBlur and onChange
38
+ * functions when it has not been filled.
39
+ */
40
+ optional?: boolean;
41
+ /**
42
+ * Prefix to be placed before the number value.
43
+ */
44
+ prefix?: string;
45
+ /**
46
+ * Suffix to be placed after the number value.
47
+ */
48
+ suffix?: string;
49
+ /**
50
+ * Minimum value allowed by the number input. If the typed value by the user is
51
+ * lower than min, the onBlur and onChange functions will be called with
52
+ * the current value and an internal error informing that the current
53
+ * value is not correct. If a valid state is reached, the error parameter
54
+ * will be null in both events.
55
+ */
56
+ min?: number;
57
+ /**
58
+ * Maximum value allowed by the number input. If the typed value by the user
59
+ * surpasses max, the onBlur and onChange functions will be called with
60
+ * the current value and an internal error informing that the current
61
+ * value is not correct. If a valid state is reached, the error parameter
62
+ * will be null in both events.
63
+ */
64
+ max?: number;
65
+ /**
66
+ * The step interval to use when using the up and down arrows to adjust the value.
67
+ */
68
+ step?: number;
69
+ /**
70
+ * This function will be called when the user types within the input
71
+ * element of the component. An object including the current value and
72
+ * the error (if the value entered is not valid) will be passed to this
73
+ * function. If there is no error, error will be null.
74
+ */
75
+ onChange?: (val: { value: string; error: string }) => void;
76
+ /**
77
+ * This function will be called when the input element loses the focus.
78
+ * An object including the input value and the error (if the value
79
+ * entered is not valid) will be passed to this function. If there is no error,
80
+ * error will be null.
81
+ */
82
+ onBlur?: (val: { value: string; error: string }) => void;
83
+ /**
84
+ * If it is defined, the component will change its appearance, showing
85
+ * the error below the input component. If it is not defined, the error
86
+ * messages will be managed internally, but never displayed on its own.
87
+ */
88
+ error?: string;
89
+ /**
90
+ * HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the input value.
91
+ * Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
92
+ */
93
+ autocomplete?: string;
94
+ /**
95
+ * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
96
+ * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
97
+ */
98
+ margin?: Space | Margin;
99
+ /**
100
+ * Size of the component ('small' | 'medium' | 'large' | 'fillParent').
101
+ */
102
+ size?: Size;
103
+ /**
104
+ * Value of the tabindex attribute.
105
+ */
106
+ tabIndex?: number;
107
+ /**
108
+ * Reference to the component.
109
+ */
110
+ ref?: React.RefObject<HTMLDivElement>;
111
+ };
112
+
113
+ export default function DxcNumberInput(props: Props): JSX.Element;
@@ -11,18 +11,16 @@ exports["default"] = void 0;
11
11
 
12
12
  var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
13
13
 
14
- var _react = _interopRequireWildcard(require("react"));
14
+ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
15
15
 
16
- var _styledComponents = _interopRequireWildcard(require("styled-components"));
17
-
18
- var _variables = require("../common/variables.js");
19
-
20
- var _ThemeContext = _interopRequireDefault(require("../ThemeContext.js"));
16
+ var _react = _interopRequireDefault(require("react"));
21
17
 
22
- var _utils = require("../common/utils.js");
18
+ var _styledComponents = _interopRequireWildcard(require("styled-components"));
23
19
 
24
20
  var _propTypes = _interopRequireDefault(require("prop-types"));
25
21
 
22
+ var _useTheme = _interopRequireDefault(require("../useTheme.js"));
23
+
26
24
  var _Button = _interopRequireDefault(require("../button/Button"));
27
25
 
28
26
  var _Select = _interopRequireDefault(require("../select/Select"));
@@ -35,11 +33,31 @@ var _next = _interopRequireDefault(require("./images/next.svg"));
35
33
 
36
34
  var _nextPage = _interopRequireDefault(require("./images/nextPage.svg"));
37
35
 
38
- require("../common/OpenSans.css");
36
+ var _BackgroundColorContext = require("../BackgroundColorContext.js");
39
37
 
40
- function _templateObject6() {
38
+ function _templateObject8() {
41
39
  var data = (0, _taggedTemplateLiteral2["default"])([""]);
42
40
 
41
+ _templateObject8 = function _templateObject8() {
42
+ return data;
43
+ };
44
+
45
+ return data;
46
+ }
47
+
48
+ function _templateObject7() {
49
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right: ", ";\n margin-left: ", ";\n\n label {\n height: 0px;\n }\n label + .MuiInput-formControl {\n margin-top: 0px;\n }\n"]);
50
+
51
+ _templateObject7 = function _templateObject7() {
52
+ return data;
53
+ };
54
+
55
+ return data;
56
+ }
57
+
58
+ function _templateObject6() {
59
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n width: 100%;\n justify-content: flex-end;\n align-items: center;\n margin: 0 ", " 0 ", ";\n"]);
60
+
43
61
  _templateObject6 = function _templateObject6() {
44
62
  return data;
45
63
  };
@@ -48,7 +66,7 @@ function _templateObject6() {
48
66
  }
49
67
 
50
68
  function _templateObject5() {
51
- var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n width: 100%;\n justify-content: flex-end;\n align-items: center;\n margin: 0 40px 0 20px;\n font-size: 14px;\n"]);
69
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: ", ";\n margin-left: ", ";\n"]);
52
70
 
53
71
  _templateObject5 = function _templateObject5() {
54
72
  return data;
@@ -58,7 +76,7 @@ function _templateObject5() {
58
76
  }
59
77
 
60
78
  function _templateObject4() {
61
- var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: 30px;\n"]);
79
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: 10px;\n margin-left: 10px;\n"]);
62
80
 
63
81
  _templateObject4 = function _templateObject4() {
64
82
  return data;
@@ -78,7 +96,7 @@ function _templateObject3() {
78
96
  }
79
97
 
80
98
  function _templateObject2() {
81
- var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right: 30px;\n label {\n height: 0px;\n }\n\n label + .MuiInput-formControl {\n margin-top: 0px;\n }\n"]);
99
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right: ", ";\n margin-left: ", ";\n\n label {\n height: 0px;\n }\n label + .MuiInput-formControl {\n margin-top: 0px;\n }\n"]);
82
100
 
83
101
  _templateObject2 = function _templateObject2() {
84
102
  return data;
@@ -88,7 +106,7 @@ function _templateObject2() {
88
106
  }
89
107
 
90
108
  function _templateObject() {
91
- var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n height: 64px;\n width: 100%;\n background-color: ", ";\n color: ", ";\n button {\n &:disabled {\n background-color: transparent !important;\n opacity: 0.3 !important;\n }\n }\n"]);
109
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n height: ", ";\n width: ", ";\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n font-style: ", ";\n text-transform: ", ";\n background-color: ", ";\n color: ", ";\n\n button {\n &:disabled {\n background-color: transparent !important;\n opacity: 0.3 !important;\n }\n }\n"]);
92
110
 
93
111
  _templateObject = function _templateObject() {
94
112
  return data;
@@ -105,21 +123,20 @@ var DxcPaginator = function DxcPaginator(_ref) {
105
123
  itemsPerPageOptions = _ref.itemsPerPageOptions,
106
124
  _ref$totalItems = _ref.totalItems,
107
125
  totalItems = _ref$totalItems === void 0 ? 1 : _ref$totalItems,
108
- nextFunction = _ref.nextFunction,
109
- prevFunction = _ref.prevFunction,
110
- lastFunction = _ref.lastFunction,
111
- firstFunction = _ref.firstFunction,
112
- itemsPerPageFunction = _ref.itemsPerPageFunction;
126
+ showGoToPage = _ref.showGoToPage,
127
+ onPageChange = _ref.onPageChange,
128
+ itemsPerPageFunction = _ref.itemsPerPageFunction,
129
+ _ref$tabIndex = _ref.tabIndex,
130
+ tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
113
131
  var totalPages = Math.ceil(totalItems / itemsPerPage);
114
132
  var currentPageInternal = currentPage === -1 ? totalPages : currentPage;
115
133
  var minItemsPerPage = currentPageInternal === 1 || currentPageInternal === 0 ? currentPageInternal : (currentPageInternal - 1) * itemsPerPage + 1;
116
134
  var maxItemsPerPage = minItemsPerPage - 1 + itemsPerPage > totalItems ? totalItems : minItemsPerPage - 1 + itemsPerPage;
117
- var customTheme = (0, _react.useContext)(_ThemeContext["default"]);
118
- var colorsTheme = (0, _react.useMemo)(function () {
119
- return (0, _utils.getCustomTheme)(_variables.theme, (0, _utils.getCustomTheme)(_variables.defaultTheme, customTheme));
120
- }, [customTheme]);
135
+ var colorsTheme = (0, _useTheme["default"])();
121
136
  return _react["default"].createElement(_styledComponents.ThemeProvider, {
122
137
  theme: colorsTheme.paginator
138
+ }, _react["default"].createElement(_BackgroundColorContext.BackgroundColorProvider, {
139
+ color: colorsTheme.paginator.backgroundColor
123
140
  }, _react["default"].createElement(DxcPaginatorContainer, {
124
141
  disabled: currentPageInternal === 1
125
142
  }, _react["default"].createElement(LabelsContainer, null, itemsPerPageOptions && _react["default"].createElement(ItemsPageContainer, null, _react["default"].createElement(ItemsLabel, null, "Items per page "), _react["default"].createElement(_Select["default"], {
@@ -131,8 +148,9 @@ var DxcPaginator = function DxcPaginator(_ref) {
131
148
  }),
132
149
  onChange: itemsPerPageFunction,
133
150
  value: itemsPerPage,
134
- size: "small"
135
- })), _react["default"].createElement(TotalItemsContainer, null, minItemsPerPage, " to ", maxItemsPerPage, " of ", totalItems), firstFunction && _react["default"].createElement(_Button["default"], {
151
+ size: "small",
152
+ tabIndex: tabIndex
153
+ })), _react["default"].createElement(TotalItemsContainer, null, minItemsPerPage, " to ", maxItemsPerPage, " of ", totalItems), onPageChange && _react["default"].createElement(_Button["default"], {
136
154
  size: "small",
137
155
  mode: "secondary",
138
156
  disabled: currentPageInternal === 1 || currentPageInternal === 0,
@@ -141,12 +159,11 @@ var DxcPaginator = function DxcPaginator(_ref) {
141
159
  right: "xxsmall"
142
160
  },
143
161
  iconSrc: _previousPage["default"],
162
+ tabIndex: tabIndex,
144
163
  onClick: function onClick() {
145
- if (firstFunction) {
146
- firstFunction();
147
- }
164
+ onPageChange(1);
148
165
  }
149
- }), prevFunction && _react["default"].createElement(_Button["default"], {
166
+ }), onPageChange && _react["default"].createElement(_Button["default"], {
150
167
  size: "small",
151
168
  mode: "secondary",
152
169
  disabled: currentPageInternal === 1 || currentPageInternal === 0,
@@ -155,12 +172,22 @@ var DxcPaginator = function DxcPaginator(_ref) {
155
172
  right: "xxsmall"
156
173
  },
157
174
  iconSrc: _previous["default"],
175
+ tabIndex: tabIndex,
158
176
  onClick: function onClick() {
159
- if (prevFunction) {
160
- prevFunction();
161
- }
177
+ onPageChange(currentPage - 1);
162
178
  }
163
- }), _react["default"].createElement(TextContainer, null, "Page: ", currentPageInternal, " of ", totalPages), nextFunction && _react["default"].createElement(_Button["default"], {
179
+ }), showGoToPage && _react["default"].createElement(PageToSelectContainer, null, _react["default"].createElement(GoToLabel, null, "Go to page: "), _react["default"].createElement(_Select["default"], {
180
+ options: (0, _toConsumableArray2["default"])(Array(totalPages).keys()).map(function (num) {
181
+ return {
182
+ label: num + 1,
183
+ value: num + 1
184
+ };
185
+ }),
186
+ onChange: onPageChange,
187
+ value: currentPage,
188
+ size: "small",
189
+ tabIndex: tabIndex
190
+ })) || _react["default"].createElement(TextContainer, null, "Page: ", currentPageInternal, " of ", totalPages), onPageChange && _react["default"].createElement(_Button["default"], {
164
191
  size: "small",
165
192
  mode: "secondary",
166
193
  disabled: currentPageInternal === totalPages,
@@ -169,12 +196,11 @@ var DxcPaginator = function DxcPaginator(_ref) {
169
196
  right: "xxsmall"
170
197
  },
171
198
  iconSrc: _next["default"],
199
+ tabIndex: tabIndex,
172
200
  onClick: function onClick() {
173
- if (nextFunction) {
174
- nextFunction();
175
- }
201
+ onPageChange(currentPage + 1);
176
202
  }
177
- }), lastFunction && _react["default"].createElement(_Button["default"], {
203
+ }), onPageChange && _react["default"].createElement(_Button["default"], {
178
204
  size: "small",
179
205
  mode: "secondary",
180
206
  disabled: currentPageInternal === totalPages,
@@ -183,50 +209,81 @@ var DxcPaginator = function DxcPaginator(_ref) {
183
209
  right: "xxsmall"
184
210
  },
185
211
  iconSrc: _nextPage["default"],
212
+ tabIndex: tabIndex,
186
213
  onClick: function onClick() {
187
- if (lastFunction) {
188
- lastFunction(totalPages);
189
- }
214
+ onPageChange(totalPages);
190
215
  }
191
- }))));
216
+ })))));
192
217
  };
193
218
 
194
219
  var DxcPaginatorContainer = _styledComponents["default"].div(_templateObject(), function (props) {
195
- return props.theme.paginatorBackgroundColor;
220
+ return props.theme.height;
221
+ }, function (props) {
222
+ return props.theme.width;
223
+ }, function (props) {
224
+ return props.theme.fontFamily;
225
+ }, function (props) {
226
+ return props.theme.fontSize;
227
+ }, function (props) {
228
+ return props.theme.fontWeight;
229
+ }, function (props) {
230
+ return props.theme.fontStyle;
231
+ }, function (props) {
232
+ return props.theme.fontTextTransform;
233
+ }, function (props) {
234
+ return props.theme.backgroundColor;
196
235
  }, function (props) {
197
- return props.theme.paginatorFontColor;
236
+ return props.theme.fontColor;
198
237
  });
199
238
 
200
- var ItemsPageContainer = _styledComponents["default"].span(_templateObject2());
239
+ var ItemsPageContainer = _styledComponents["default"].span(_templateObject2(), function (props) {
240
+ return props.theme.itemsPerPageSelectorMarginRight;
241
+ }, function (props) {
242
+ return props.theme.itemsPerPageSelectorMarginLeft;
243
+ });
201
244
 
202
245
  var ItemsLabel = _styledComponents["default"].span(_templateObject3());
203
246
 
204
- var TotalItemsContainer = _styledComponents["default"].span(_templateObject4());
247
+ var GoToLabel = _styledComponents["default"].span(_templateObject4());
248
+
249
+ var TotalItemsContainer = _styledComponents["default"].span(_templateObject5(), function (props) {
250
+ return props.theme.totalItemsContainerMarginRight;
251
+ }, function (props) {
252
+ return props.theme.totalItemsContainerMarginLeft;
253
+ });
254
+
255
+ var LabelsContainer = _styledComponents["default"].div(_templateObject6(), function (props) {
256
+ return props.theme.marginRight;
257
+ }, function (props) {
258
+ return props.theme.marginLeft;
259
+ });
205
260
 
206
- var LabelsContainer = _styledComponents["default"].div(_templateObject5());
261
+ var PageToSelectContainer = _styledComponents["default"].span(_templateObject7(), function (props) {
262
+ return props.theme.pageSelectorMarginRight;
263
+ }, function (props) {
264
+ return props.theme.pageSelectorMarginLeft;
265
+ });
207
266
 
208
- var TextContainer = _styledComponents["default"].span(_templateObject6());
267
+ var TextContainer = _styledComponents["default"].span(_templateObject8());
209
268
 
210
269
  DxcPaginator.propTypes = {
211
270
  currentPage: _propTypes["default"].number,
212
271
  itemsPerPage: _propTypes["default"].number,
213
272
  itemsPerPageOptions: _propTypes["default"].arrayOf(_propTypes["default"].number),
214
273
  totalItems: _propTypes["default"].number.isRequired,
215
- nextFunction: _propTypes["default"].func,
216
- prevFunction: _propTypes["default"].func,
217
- lastFunction: _propTypes["default"].func,
218
- firstFunction: _propTypes["default"].func,
219
- itemsPerPageFunction: _propTypes["default"].func
274
+ showGoToPage: _propTypes["default"].bool,
275
+ onPageChange: _propTypes["default"].func,
276
+ itemsPerPageFunction: _propTypes["default"].func,
277
+ tabIndex: _propTypes["default"].number
220
278
  };
221
279
  DxcPaginator.defaultProps = {
222
280
  currentPage: 1,
223
281
  itemsPerPage: 5,
224
282
  itemsPerPageOptions: null,
225
- nextFunction: null,
226
- prevFunction: null,
227
- lastFunction: null,
228
- firstFunction: null,
229
- itemsPerPageFunction: null
283
+ showGoToPage: false,
284
+ onPageChange: null,
285
+ itemsPerPageFunction: null,
286
+ tabIndex: 0
230
287
  };
231
288
  var _default = DxcPaginator;
232
289
  exports["default"] = _default;
@@ -0,0 +1,198 @@
1
+ "use strict";
2
+
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
4
+
5
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
6
+
7
+ Object.defineProperty(exports, "__esModule", {
8
+ value: true
9
+ });
10
+ exports["default"] = void 0;
11
+
12
+ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
13
+
14
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
15
+
16
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
17
+
18
+ var _react = _interopRequireWildcard(require("react"));
19
+
20
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
21
+
22
+ var _propTypes = _interopRequireDefault(require("prop-types"));
23
+
24
+ var _TextInput = _interopRequireDefault(require("../text-input/TextInput"));
25
+
26
+ var _variables = require("../common/variables.js");
27
+
28
+ function _templateObject() {
29
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n & ::-ms-reveal {\n display: none;\n }\n"]);
30
+
31
+ _templateObject = function _templateObject() {
32
+ return data;
33
+ };
34
+
35
+ return data;
36
+ }
37
+
38
+ var DxcPasswordInput = _react["default"].forwardRef(function (_ref, ref) {
39
+ var _ref$label = _ref.label,
40
+ label = _ref$label === void 0 ? "" : _ref$label,
41
+ _ref$name = _ref.name,
42
+ name = _ref$name === void 0 ? "" : _ref$name,
43
+ value = _ref.value,
44
+ _ref$helperText = _ref.helperText,
45
+ helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
46
+ _ref$clearable = _ref.clearable,
47
+ clearable = _ref$clearable === void 0 ? false : _ref$clearable,
48
+ onChange = _ref.onChange,
49
+ onBlur = _ref.onBlur,
50
+ _ref$error = _ref.error,
51
+ error = _ref$error === void 0 ? "" : _ref$error,
52
+ pattern = _ref.pattern,
53
+ length = _ref.length,
54
+ _ref$autocomplete = _ref.autocomplete,
55
+ autocomplete = _ref$autocomplete === void 0 ? "off" : _ref$autocomplete,
56
+ margin = _ref.margin,
57
+ _ref$size = _ref.size,
58
+ size = _ref$size === void 0 ? "medium" : _ref$size,
59
+ _ref$tabIndex = _ref.tabIndex,
60
+ tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
61
+
62
+ var _useState = (0, _react.useState)(false),
63
+ _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
64
+ isPasswordVisible = _useState2[0],
65
+ setIsPasswordVisible = _useState2[1];
66
+
67
+ var inputRef = (0, _react.useRef)(null);
68
+
69
+ var setInputType = function setInputType(type) {
70
+ var _inputRef$current, _inputRef$current$chi;
71
+
72
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current = inputRef.current) === null || _inputRef$current === void 0 ? void 0 : (_inputRef$current$chi = _inputRef$current.children[2]) === null || _inputRef$current$chi === void 0 ? void 0 : _inputRef$current$chi.children[0].setAttribute("type", type);
73
+ };
74
+
75
+ var setAriaAttributes = function setAriaAttributes(ariaExpanded, ariaLabel) {
76
+ if (error && clearable && value) {
77
+ var _inputRef$current2, _inputRef$current2$ch, _inputRef$current2$ch2, _inputRef$current3, _inputRef$current3$ch, _inputRef$current3$ch2;
78
+
79
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current2 = inputRef.current) === null || _inputRef$current2 === void 0 ? void 0 : (_inputRef$current2$ch = _inputRef$current2.children[2]) === null || _inputRef$current2$ch === void 0 ? void 0 : (_inputRef$current2$ch2 = _inputRef$current2$ch.children[3]) === null || _inputRef$current2$ch2 === void 0 ? void 0 : _inputRef$current2$ch2.setAttribute("aria-expanded", ariaExpanded);
80
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current3 = inputRef.current) === null || _inputRef$current3 === void 0 ? void 0 : (_inputRef$current3$ch = _inputRef$current3.children[2]) === null || _inputRef$current3$ch === void 0 ? void 0 : (_inputRef$current3$ch2 = _inputRef$current3$ch.children[3]) === null || _inputRef$current3$ch2 === void 0 ? void 0 : _inputRef$current3$ch2.setAttribute("aria-label", ariaLabel);
81
+ } else if (error || clearable && !value) {
82
+ var _inputRef$current4, _inputRef$current4$ch, _inputRef$current4$ch2, _inputRef$current5, _inputRef$current5$ch, _inputRef$current5$ch2;
83
+
84
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current4 = inputRef.current) === null || _inputRef$current4 === void 0 ? void 0 : (_inputRef$current4$ch = _inputRef$current4.children[2]) === null || _inputRef$current4$ch === void 0 ? void 0 : (_inputRef$current4$ch2 = _inputRef$current4$ch.children[2]) === null || _inputRef$current4$ch2 === void 0 ? void 0 : _inputRef$current4$ch2.setAttribute("aria-expanded", ariaExpanded);
85
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current5 = inputRef.current) === null || _inputRef$current5 === void 0 ? void 0 : (_inputRef$current5$ch = _inputRef$current5.children[2]) === null || _inputRef$current5$ch === void 0 ? void 0 : (_inputRef$current5$ch2 = _inputRef$current5$ch.children[2]) === null || _inputRef$current5$ch2 === void 0 ? void 0 : _inputRef$current5$ch2.setAttribute("aria-label", ariaLabel);
86
+ } else {
87
+ var _inputRef$current6, _inputRef$current6$ch, _inputRef$current6$ch2, _inputRef$current7, _inputRef$current7$ch, _inputRef$current7$ch2;
88
+
89
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current6 = inputRef.current) === null || _inputRef$current6 === void 0 ? void 0 : (_inputRef$current6$ch = _inputRef$current6.children[2]) === null || _inputRef$current6$ch === void 0 ? void 0 : (_inputRef$current6$ch2 = _inputRef$current6$ch.children[1]) === null || _inputRef$current6$ch2 === void 0 ? void 0 : _inputRef$current6$ch2.setAttribute("aria-expanded", ariaExpanded);
90
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current7 = inputRef.current) === null || _inputRef$current7 === void 0 ? void 0 : (_inputRef$current7$ch = _inputRef$current7.children[2]) === null || _inputRef$current7$ch === void 0 ? void 0 : (_inputRef$current7$ch2 = _inputRef$current7$ch.children[1]) === null || _inputRef$current7$ch2 === void 0 ? void 0 : _inputRef$current7$ch2.setAttribute("aria-label", ariaLabel);
91
+ }
92
+ };
93
+
94
+ (0, _react.useEffect)(function () {
95
+ setAriaAttributes(false, "Show");
96
+
97
+ if (isPasswordVisible) {
98
+ setInputType("text");
99
+ setAriaAttributes(true, "Hide");
100
+ } else {
101
+ setInputType("password");
102
+ setAriaAttributes(false, "Show");
103
+ }
104
+ }, [isPasswordVisible]);
105
+
106
+ var viewPassword = function viewPassword() {
107
+ setInputType("text");
108
+ setIsPasswordVisible(true);
109
+ };
110
+
111
+ var hidePassword = function hidePassword() {
112
+ setInputType("password");
113
+ setIsPasswordVisible(false);
114
+ };
115
+
116
+ var action = {
117
+ onClick: isPasswordVisible ? hidePassword : viewPassword,
118
+ icon: isPasswordVisible ? _react["default"].createElement("svg", {
119
+ xmlns: "http://www.w3.org/2000/svg",
120
+ height: "24px",
121
+ viewBox: "0 0 24 24",
122
+ width: "24px",
123
+ fill: "#000000"
124
+ }, _react["default"].createElement("path", {
125
+ d: "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z",
126
+ fill: "none"
127
+ }), _react["default"].createElement("path", {
128
+ d: "M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z"
129
+ })) : _react["default"].createElement("svg", {
130
+ xmlns: "http://www.w3.org/2000/svg",
131
+ height: "24px",
132
+ viewBox: "0 0 24 24",
133
+ width: "24px",
134
+ fill: "#000000"
135
+ }, _react["default"].createElement("path", {
136
+ d: "M0 0h24v24H0V0z",
137
+ fill: "none"
138
+ }), _react["default"].createElement("path", {
139
+ d: "M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z"
140
+ }))
141
+ };
142
+ return _react["default"].createElement(PasswordInput, {
143
+ ref: ref
144
+ }, _react["default"].createElement(_TextInput["default"], {
145
+ ref: inputRef,
146
+ label: label,
147
+ name: name,
148
+ value: value,
149
+ helperText: helperText,
150
+ action: action,
151
+ error: error,
152
+ clearable: clearable,
153
+ onChange: onChange,
154
+ onBlur: onBlur,
155
+ margin: margin,
156
+ size: size,
157
+ pattern: pattern,
158
+ length: length,
159
+ autocomplete: autocomplete,
160
+ tabIndex: tabIndex
161
+ }));
162
+ });
163
+
164
+ var sizes = {
165
+ small: "240px",
166
+ medium: "360px",
167
+ large: "480px",
168
+ fillParent: "100%"
169
+ };
170
+
171
+ var PasswordInput = _styledComponents["default"].div(_templateObject());
172
+
173
+ DxcPasswordInput.propTypes = {
174
+ label: _propTypes["default"].string,
175
+ name: _propTypes["default"].string,
176
+ value: _propTypes["default"].string,
177
+ helperText: _propTypes["default"].string,
178
+ error: _propTypes["default"].string,
179
+ clearable: _propTypes["default"].bool,
180
+ onChange: _propTypes["default"].func,
181
+ onBlur: _propTypes["default"].func,
182
+ autocomplete: _propTypes["default"].string,
183
+ margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
184
+ top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
185
+ bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
186
+ left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
187
+ right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
188
+ }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
189
+ size: _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(sizes))),
190
+ pattern: _propTypes["default"].string,
191
+ length: _propTypes["default"].shape({
192
+ min: _propTypes["default"].number,
193
+ max: _propTypes["default"].number
194
+ }),
195
+ tabIndex: _propTypes["default"].number
196
+ };
197
+ var _default = DxcPasswordInput;
198
+ exports["default"] = _default;