@dxc-technology/halstack-react 0.0.0-db8a3a7 → 0.0.0-dbd540d

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 (242) hide show
  1. package/README.md +2 -2
  2. package/babel.config.js +0 -1
  3. package/dist/ThemeContext.js +134 -100
  4. package/dist/V3Select/V3Select.js +549 -0
  5. package/dist/V3Select/index.d.ts +27 -0
  6. package/dist/V3Textarea/V3Textarea.js +264 -0
  7. package/dist/V3Textarea/index.d.ts +27 -0
  8. package/dist/accordion/Accordion.js +80 -83
  9. package/dist/accordion/index.d.ts +28 -0
  10. package/dist/accordion-group/AccordionGroup.js +1 -3
  11. package/dist/accordion-group/index.d.ts +16 -0
  12. package/dist/alert/Alert.js +168 -83
  13. package/dist/alert/index.d.ts +51 -0
  14. package/dist/badge/Badge.js +29 -6
  15. package/dist/box/Box.js +27 -18
  16. package/dist/box/index.d.ts +25 -0
  17. package/dist/button/Button.js +41 -22
  18. package/dist/button/index.d.ts +24 -0
  19. package/dist/card/Card.js +15 -8
  20. package/dist/card/index.d.ts +22 -0
  21. package/dist/checkbox/Checkbox.js +89 -23
  22. package/dist/checkbox/index.d.ts +24 -0
  23. package/dist/chip/Chip.js +63 -21
  24. package/dist/chip/index.d.ts +22 -0
  25. package/dist/common/variables.js +1214 -352
  26. package/dist/date/Date.js +60 -38
  27. package/dist/date/index.d.ts +27 -0
  28. package/dist/date-input/DateInput.js +400 -0
  29. package/dist/date-input/index.d.ts +95 -0
  30. package/dist/dialog/Dialog.js +44 -29
  31. package/dist/dialog/index.d.ts +18 -0
  32. package/dist/dropdown/Dropdown.js +162 -74
  33. package/dist/dropdown/index.d.ts +26 -0
  34. package/dist/file-input/FileInput.js +644 -0
  35. package/dist/file-input/FileItem.js +287 -0
  36. package/dist/file-input/index.d.ts +81 -0
  37. package/dist/footer/Footer.js +69 -53
  38. package/dist/footer/Icons.js +77 -0
  39. package/dist/footer/index.d.ts +25 -0
  40. package/dist/header/Header.js +123 -84
  41. package/dist/header/Icons.js +59 -0
  42. package/dist/header/index.d.ts +25 -0
  43. package/dist/heading/Heading.js +13 -5
  44. package/dist/heading/index.d.ts +17 -0
  45. package/dist/input-text/Icons.js +22 -0
  46. package/dist/input-text/InputText.js +159 -63
  47. package/dist/input-text/index.d.ts +36 -0
  48. package/dist/layout/ApplicationLayout.js +7 -11
  49. package/dist/layout/Icons.js +55 -0
  50. package/dist/link/Link.js +76 -39
  51. package/dist/link/index.d.ts +23 -0
  52. package/dist/main.d.ts +40 -0
  53. package/dist/main.js +63 -15
  54. package/dist/number-input/NumberInput.js +136 -0
  55. package/dist/number-input/NumberInputContext.js +16 -0
  56. package/dist/number-input/index.d.ts +113 -0
  57. package/dist/paginator/Icons.js +66 -0
  58. package/dist/paginator/Paginator.js +86 -42
  59. package/dist/paginator/index.d.ts +20 -0
  60. package/dist/password-input/PasswordInput.js +203 -0
  61. package/dist/password-input/index.d.ts +94 -0
  62. package/dist/progress-bar/ProgressBar.js +88 -38
  63. package/dist/progress-bar/index.d.ts +18 -0
  64. package/dist/radio/Radio.js +28 -9
  65. package/dist/radio/index.d.ts +23 -0
  66. package/dist/resultsetTable/ResultsetTable.js +64 -38
  67. package/dist/resultsetTable/index.d.ts +19 -0
  68. package/dist/select/Select.js +888 -282
  69. package/dist/select/index.d.ts +53 -0
  70. package/dist/sidenav/Sidenav.js +11 -15
  71. package/dist/sidenav/index.d.ts +13 -0
  72. package/dist/slider/Slider.js +204 -67
  73. package/dist/slider/index.d.ts +29 -0
  74. package/dist/spinner/Spinner.js +226 -59
  75. package/dist/spinner/index.d.ts +17 -0
  76. package/dist/stories/Button.js +71 -0
  77. package/dist/stories/Button.stories.js +55 -0
  78. package/dist/stories/Header.js +67 -0
  79. package/dist/stories/Header.stories.js +31 -0
  80. package/dist/stories/Introduction.stories.mdx +211 -0
  81. package/dist/stories/Page.js +68 -0
  82. package/dist/stories/Page.stories.js +39 -0
  83. package/dist/stories/assets/code-brackets.svg +1 -0
  84. package/dist/stories/assets/colors.svg +1 -0
  85. package/dist/stories/assets/comments.svg +1 -0
  86. package/dist/stories/assets/direction.svg +1 -0
  87. package/dist/stories/assets/flow.svg +1 -0
  88. package/dist/stories/assets/plugin.svg +1 -0
  89. package/dist/stories/assets/repo.svg +1 -0
  90. package/dist/stories/assets/stackalt.svg +1 -0
  91. package/dist/stories/button.css +30 -0
  92. package/dist/stories/header.css +26 -0
  93. package/dist/stories/page.css +69 -0
  94. package/dist/switch/Switch.js +4 -10
  95. package/dist/switch/index.d.ts +24 -0
  96. package/dist/table/Table.js +19 -5
  97. package/dist/table/index.d.ts +13 -0
  98. package/dist/tabs/Tabs.js +37 -19
  99. package/dist/tabs/index.d.ts +19 -0
  100. package/dist/tag/Tag.js +50 -36
  101. package/dist/tag/index.d.ts +24 -0
  102. package/dist/text-input/TextInput.js +974 -0
  103. package/dist/text-input/index.d.ts +135 -0
  104. package/dist/textarea/Textarea.js +238 -107
  105. package/dist/textarea/index.d.ts +117 -0
  106. package/dist/toggle/index.d.ts +21 -0
  107. package/dist/toggle-group/ToggleGroup.js +139 -35
  108. package/dist/toggle-group/index.d.ts +21 -0
  109. package/dist/upload/Upload.js +1 -5
  110. package/dist/upload/buttons-upload/ButtonsUpload.js +28 -16
  111. package/dist/upload/buttons-upload/Icons.js +40 -0
  112. package/dist/upload/dragAndDropArea/DragAndDropArea.js +61 -25
  113. package/dist/upload/dragAndDropArea/Icons.js +39 -0
  114. package/dist/upload/file-upload/FileToUpload.js +52 -25
  115. package/dist/upload/file-upload/Icons.js +66 -0
  116. package/dist/upload/files-upload/FilesToUpload.js +3 -3
  117. package/dist/upload/index.d.ts +15 -0
  118. package/dist/upload/transaction/Icons.js +160 -0
  119. package/dist/upload/transaction/Transaction.js +37 -41
  120. package/dist/upload/transactions/Transactions.js +24 -8
  121. package/dist/wizard/Icons.js +65 -0
  122. package/dist/wizard/Wizard.js +106 -56
  123. package/dist/wizard/index.d.ts +18 -0
  124. package/package.json +17 -11
  125. package/test/Date.test.js +15 -13
  126. package/test/DateInput.test.js +242 -0
  127. package/test/Dropdown.test.js +15 -0
  128. package/test/FileInput.test.js +201 -0
  129. package/test/Footer.test.js +2 -7
  130. package/test/Header.test.js +5 -10
  131. package/test/Heading.test.js +60 -12
  132. package/test/InputText.test.js +1 -2
  133. package/test/Link.test.js +3 -2
  134. package/test/NumberInput.test.js +259 -0
  135. package/test/Paginator.test.js +6 -2
  136. package/test/PasswordInput.test.js +83 -0
  137. package/test/ResultsetTable.test.js +6 -6
  138. package/test/Select.test.js +371 -148
  139. package/test/Slider.test.js +9 -17
  140. package/test/Spinner.test.js +5 -0
  141. package/test/TextInput.test.js +732 -0
  142. package/test/Textarea.test.js +193 -0
  143. package/test/ToggleGroup.test.js +5 -1
  144. package/test/Upload.test.js +1 -1
  145. package/test/V3Select.test.js +212 -0
  146. package/test/{TextArea.test.js → V3TextArea.test.js} +6 -7
  147. package/dist/accordion/Accordion.stories.js +0 -207
  148. package/dist/accordion/readme.md +0 -96
  149. package/dist/accordion-group/AccordionGroup.stories.js +0 -207
  150. package/dist/accordion-group/readme.md +0 -70
  151. package/dist/alert/Alert.stories.js +0 -158
  152. package/dist/alert/close.svg +0 -4
  153. package/dist/alert/error.svg +0 -4
  154. package/dist/alert/info.svg +0 -4
  155. package/dist/alert/readme.md +0 -43
  156. package/dist/alert/success.svg +0 -4
  157. package/dist/alert/warning.svg +0 -4
  158. package/dist/button/Button.stories.js +0 -224
  159. package/dist/button/readme.md +0 -93
  160. package/dist/checkbox/Checkbox.stories.js +0 -144
  161. package/dist/checkbox/readme.md +0 -116
  162. package/dist/date/Date.stories.js +0 -205
  163. package/dist/date/calendar.svg +0 -1
  164. package/dist/date/calendar_dark.svg +0 -1
  165. package/dist/date/readme.md +0 -73
  166. package/dist/dialog/Dialog.stories.js +0 -217
  167. package/dist/dialog/readme.md +0 -32
  168. package/dist/dropdown/Dropdown.stories.js +0 -249
  169. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  170. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  171. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  172. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  173. package/dist/dropdown/readme.md +0 -69
  174. package/dist/footer/Footer.stories.js +0 -94
  175. package/dist/footer/dxc_logo_wht.png +0 -0
  176. package/dist/footer/readme.md +0 -41
  177. package/dist/header/Header.stories.js +0 -176
  178. package/dist/header/close_icon.svg +0 -1
  179. package/dist/header/dxc_logo_black.png +0 -0
  180. package/dist/header/dxc_logo_blk_rgb.svg +0 -6
  181. package/dist/header/dxc_logo_white.png +0 -0
  182. package/dist/header/hamb_menu_black.svg +0 -1
  183. package/dist/header/hamb_menu_white.svg +0 -1
  184. package/dist/header/readme.md +0 -33
  185. package/dist/input-text/InputText.stories.js +0 -209
  186. package/dist/input-text/error.svg +0 -1
  187. package/dist/input-text/readme.md +0 -91
  188. package/dist/layout/facebook.svg +0 -45
  189. package/dist/layout/linkedin.svg +0 -50
  190. package/dist/layout/twitter.svg +0 -53
  191. package/dist/link/readme.md +0 -51
  192. package/dist/paginator/images/next.svg +0 -3
  193. package/dist/paginator/images/nextPage.svg +0 -3
  194. package/dist/paginator/images/previous.svg +0 -3
  195. package/dist/paginator/images/previousPage.svg +0 -3
  196. package/dist/paginator/readme.md +0 -50
  197. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  198. package/dist/progress-bar/readme.md +0 -63
  199. package/dist/radio/Radio.stories.js +0 -166
  200. package/dist/radio/readme.md +0 -70
  201. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  202. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  203. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  204. package/dist/select/Select.stories.js +0 -235
  205. package/dist/select/readme.md +0 -72
  206. package/dist/slider/Slider.stories.js +0 -241
  207. package/dist/slider/readme.md +0 -64
  208. package/dist/spinner/Spinner.stories.js +0 -183
  209. package/dist/spinner/readme.md +0 -65
  210. package/dist/switch/Switch.stories.js +0 -134
  211. package/dist/switch/readme.md +0 -133
  212. package/dist/tabs/Tabs.stories.js +0 -130
  213. package/dist/tabs/readme.md +0 -78
  214. package/dist/tabs-for-sections/TabsForSections.js +0 -92
  215. package/dist/tabs-for-sections/readme.md +0 -78
  216. package/dist/toggle/Toggle.stories.js +0 -297
  217. package/dist/toggle/readme.md +0 -80
  218. package/dist/toggle-group/readme.md +0 -82
  219. package/dist/upload/Upload.stories.js +0 -72
  220. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  221. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  222. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  223. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  224. package/dist/upload/file-upload/audio-icon.svg +0 -4
  225. package/dist/upload/file-upload/close.svg +0 -4
  226. package/dist/upload/file-upload/file-icon.svg +0 -4
  227. package/dist/upload/file-upload/video-icon.svg +0 -4
  228. package/dist/upload/readme.md +0 -37
  229. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  230. package/dist/upload/transaction/audio-icon.svg +0 -4
  231. package/dist/upload/transaction/error-icon.svg +0 -4
  232. package/dist/upload/transaction/file-icon-err.svg +0 -4
  233. package/dist/upload/transaction/file-icon.svg +0 -4
  234. package/dist/upload/transaction/image-icon-err.svg +0 -4
  235. package/dist/upload/transaction/image-icon.svg +0 -4
  236. package/dist/upload/transaction/success-icon.svg +0 -4
  237. package/dist/upload/transaction/video-icon-err.svg +0 -4
  238. package/dist/upload/transaction/video-icon.svg +0 -4
  239. package/dist/wizard/invalid_icon.svg +0 -6
  240. package/dist/wizard/valid_icon.svg +0 -6
  241. package/dist/wizard/validation-wrong.svg +0 -6
  242. package/test/TabsForSections.test.js +0 -34
@@ -0,0 +1,94 @@
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
+
10
+ type Props = {
11
+ /**
12
+ * Text to be placed above the password.
13
+ */
14
+ label?: string;
15
+ /**
16
+ * Name attribute of the input element.
17
+ */
18
+ name?: string;
19
+ /**
20
+ * Value of the input element. If undefined, the component will be uncontrolled and the value will be managed internally by the component.
21
+ */
22
+ value?: string;
23
+ /**
24
+ * Helper text to be placed above the password.
25
+ */
26
+ helperText?: string;
27
+ /**
28
+ * If true, the password input will have an action to clear the entered value.
29
+ */
30
+ clearable?: boolean;
31
+ /**
32
+ * This function will be called when the user types within the input
33
+ * element of the component. An object including the current value and
34
+ * the error (if the value entered is not valid) will be passed to this
35
+ * function. If there is no error, error will be null.
36
+ * */
37
+ onChange?: (val: { value: string; error: string }) => void;
38
+ /**
39
+ * This function will be called when the input element loses the focus.
40
+ * An object including the input value and the error (if the value entered is
41
+ * not valid) will be passed to this function. If there is no error, error will be null.
42
+ */
43
+ onBlur?: (val: { value: string; error: string }) => void;
44
+ /**
45
+ * If it is defined, the component will change its appearance, showing
46
+ * the error below the password input component. If it is not defined, the
47
+ * error messages will be managed internally, but never displayed on its own.
48
+ */
49
+ error?: string;
50
+ /**
51
+ * Regular expression that defines the valid format allowed by the
52
+ * password input. This will be checked both when the input element loses the
53
+ * focus and while typing within it. If the string entered does not match
54
+ * the pattern, the onBlur and onChange functions will be called with the
55
+ * current value and an internal error informing that this value does not
56
+ * match the pattern. If the pattern is met, the error parameter of both
57
+ * events will be null.
58
+ */
59
+ pattern?: string;
60
+ /**
61
+ * Specifies the minimun and maximum length allowed by the password input.
62
+ * This will be checked both when the input element loses the
63
+ * focus and while typing within it. If the string entered does not
64
+ * comply the length, the onBlur and onChange functions will be called
65
+ * with the current value and an internal error informing that the value
66
+ * length does not comply the specified range. If a valid length is
67
+ * reached, the error parameter of both events will be null.
68
+ */
69
+ length?: { min?: number; max?: number };
70
+ /**
71
+ * HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the input value.
72
+ * Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
73
+ */
74
+ autocomplete?: string;
75
+ /**
76
+ * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
77
+ * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
78
+ */
79
+ margin?: Space | Margin;
80
+ /**
81
+ * Size of the component ('small' | 'medium' | 'large' | 'fillParent').
82
+ */
83
+ size?: Size;
84
+ /**
85
+ * Value of the tabindex attribute.
86
+ */
87
+ tabIndex?: number;
88
+ /**
89
+ * Reference to the component.
90
+ */
91
+ ref?: React.RefObject<HTMLDivElement>;
92
+ };
93
+
94
+ export default function DxcPasswordInput(props: Props): JSX.Element;
@@ -9,13 +9,13 @@ Object.defineProperty(exports, "__esModule", {
9
9
  });
10
10
  exports["default"] = void 0;
11
11
 
12
+ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
13
+
12
14
  var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
13
15
 
14
16
  var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
15
17
 
16
- var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
17
-
18
- var _react = _interopRequireDefault(require("react"));
18
+ var _react = _interopRequireWildcard(require("react"));
19
19
 
20
20
  var _styledComponents = _interopRequireWildcard(require("styled-components"));
21
21
 
@@ -27,8 +27,20 @@ var _variables = require("../common/variables.js");
27
27
 
28
28
  var _useTheme = _interopRequireDefault(require("../useTheme.js"));
29
29
 
30
+ var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext.js"));
31
+
32
+ function _templateObject6() {
33
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: 1.5em;\n"]);
34
+
35
+ _templateObject6 = function _templateObject6() {
36
+ return data;
37
+ };
38
+
39
+ return data;
40
+ }
41
+
30
42
  function _templateObject5() {
31
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: ", ";\n color: ", ";\n display: ", ";\n width: 5%;\n text-align: right;\n margin-bottom: 8px;\n"]);
43
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n font-weight: ", ";\n text-transform: ", ";\n color: ", ";\n display: ", ";\n flex-shrink: 0;\n"]);
32
44
 
33
45
  _templateObject5 = function _templateObject5() {
34
46
  return data;
@@ -38,7 +50,7 @@ function _templateObject5() {
38
50
  }
39
51
 
40
52
  function _templateObject4() {
41
- var data = (0, _taggedTemplateLiteral2["default"])(["\n text-transform: ", ";\n font-size: ", ";\n flex-grow: 1;\n color: ", ";\n width: 90%;\n overflow: hidden;\n text-overflow: ellipsis;\n margin-bottom: 8px;\n"]);
53
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n font-weight: ", ";\n text-transform: ", ";\n color: ", ";\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-overflow: ellipsis;\n"]);
42
54
 
43
55
  _templateObject4 = function _templateObject4() {
44
56
  return data;
@@ -48,7 +60,7 @@ function _templateObject4() {
48
60
  }
49
61
 
50
62
  function _templateObject3() {
51
- var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n width: 685px;\n flex-wrap: wrap;\n width: 100%;\n"]);
63
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n width: 685px;\n flex-wrap: wrap;\n width: 100%;\n margin-bottom: 8px;\n align-items: baseline;\n justify-content: space-between;\n"]);
52
64
 
53
65
  _templateObject3 = function _templateObject3() {
54
66
  return data;
@@ -58,7 +70,7 @@ function _templateObject3() {
58
70
  }
59
71
 
60
72
  function _templateObject2() {
61
- var data = (0, _taggedTemplateLiteral2["default"])(["\n z-index: ", ";\n width: ", ";\n .MuiLinearProgress-root {\n height: 9px;\n background-color: ", ";\n border-radius: 5px;\n }\n .MuiLinearProgress-bar {\n background-color: ", ";\n }\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"]);
73
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n z-index: ", ";\n width: ", ";\n .MuiLinearProgress-root {\n height: ", ";\n background-color: ", ";\n border-radius: ", ";\n margin-bottom: ", ";\n }\n .MuiLinearProgress-bar {\n background-color: ", ";\n }\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"]);
62
74
 
63
75
  _templateObject2 = function _templateObject2() {
64
76
  return data;
@@ -68,7 +80,7 @@ function _templateObject2() {
68
80
  }
69
81
 
70
82
  function _templateObject() {
71
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: ", ";\n background-color: ", ";\n opacity: ", ";\n width: ", ";\n display: flex;\n flex-wrap: wrap;\n justify-content: ", ";\n height: ", ";\n align-items: ", ";\n min-width: 685px;\n max-width: ", ";\n position: ", ";\n top: ", ";\n bottom: ", ";\n left: ", ";\n right: ", ";\n font-family: ", ";\n z-index: ", ";\n"]);
83
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n background-color: ", ";\n opacity: ", ";\n width: ", ";\n display: flex;\n flex-wrap: wrap;\n justify-content: ", ";\n height: ", ";\n align-items: ", ";\n min-width: 100px;\n max-width: ", ";\n position: ", ";\n top: ", ";\n bottom: ", ";\n left: ", ";\n right: ", ";\n z-index: ", ";\n width: 100%;\n"]);
72
84
 
73
85
  _templateObject = function _templateObject() {
74
86
  return data;
@@ -80,6 +92,8 @@ function _templateObject() {
80
92
  var DxcProgressBar = function DxcProgressBar(_ref) {
81
93
  var _ref$label = _ref.label,
82
94
  label = _ref$label === void 0 ? "" : _ref$label,
95
+ _ref$helperText = _ref.helperText,
96
+ helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
83
97
  _ref$overlay = _ref.overlay,
84
98
  overlay = _ref$overlay === void 0 ? true : _ref$overlay,
85
99
  value = _ref.value,
@@ -87,40 +101,33 @@ var DxcProgressBar = function DxcProgressBar(_ref) {
87
101
  showValue = _ref$showValue === void 0 ? false : _ref$showValue,
88
102
  margin = _ref.margin;
89
103
  var colorsTheme = (0, _useTheme["default"])();
104
+ var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
90
105
  return _react["default"].createElement(_styledComponents.ThemeProvider, {
91
106
  theme: colorsTheme.progressBar
92
107
  }, _react["default"].createElement(BackgroundProgressBar, {
93
108
  overlay: overlay
94
109
  }, _react["default"].createElement(DXCProgressBar, {
95
110
  overlay: overlay,
96
- margin: margin
111
+ margin: margin,
112
+ backgroundType: backgroundType
97
113
  }, _react["default"].createElement(InfoProgressBar, null, _react["default"].createElement(ProgressBarLabel, {
98
- overlay: overlay
114
+ overlay: overlay,
115
+ backgroundType: backgroundType
99
116
  }, label), _react["default"].createElement(ProgressBarProgress, {
100
117
  overlay: overlay,
101
- showValue: showValue
118
+ showValue: showValue,
119
+ backgroundType: backgroundType
102
120
  }, value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100, " %")), _react["default"].createElement(_LinearProgress["default"], {
103
121
  variant: showValue ? "determinate" : "indeterminate",
104
- value: value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100
105
- }))));
106
- };
107
-
108
- DxcProgressBar.propTypes = {
109
- label: _propTypes["default"].string,
110
- overlay: _propTypes["default"].bool,
111
- value: _propTypes["default"].number,
112
- showValue: _propTypes["default"].bool,
113
- margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
114
- top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
115
- bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
116
- left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
117
- right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
118
- }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))])
122
+ value: value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100,
123
+ helperText: helperText
124
+ }), helperText && _react["default"].createElement(HelperText, {
125
+ overlay: overlay,
126
+ backgroundType: backgroundType
127
+ }, helperText))));
119
128
  };
120
129
 
121
130
  var BackgroundProgressBar = _styledComponents["default"].div(_templateObject(), function (props) {
122
- return props.theme.fontSizeBase;
123
- }, function (props) {
124
131
  return props.overlay === true ? "".concat(props.theme.overlayColor) : "transparent";
125
132
  }, function (props) {
126
133
  return props.overlay === true && "0.8";
@@ -145,9 +152,7 @@ var BackgroundProgressBar = _styledComponents["default"].div(_templateObject(),
145
152
  }, function (props) {
146
153
  return props.overlay === true ? "0" : "";
147
154
  }, function (props) {
148
- return props.theme.fontFamily;
149
- }, function (props) {
150
- return props.overlay ? 1000 : "";
155
+ return props.overlay ? 1300 : "";
151
156
  });
152
157
 
153
158
  var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), function (props) {
@@ -155,9 +160,15 @@ var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), functi
155
160
  }, function (props) {
156
161
  return props.overlay === true ? "80%" : "100%";
157
162
  }, function (props) {
158
- return props.theme.totalLine;
163
+ return props.theme.thickness;
164
+ }, function (props) {
165
+ return props.theme.totalLineColor;
166
+ }, function (props) {
167
+ return props.theme.borderRadius;
168
+ }, function (props) {
169
+ return props.helperText !== "" && "8px";
159
170
  }, function (props) {
160
- return props.theme.trackLine;
171
+ return props.backgroundType === "dark" ? props.theme.trackLineColorOnDark : props.theme.trackLineColor;
161
172
  }, function (props) {
162
173
  return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
163
174
  }, function (props) {
@@ -173,20 +184,59 @@ var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), functi
173
184
  var InfoProgressBar = _styledComponents["default"].div(_templateObject3());
174
185
 
175
186
  var ProgressBarLabel = _styledComponents["default"].div(_templateObject4(), function (props) {
176
- return props.theme.fontTextTransform;
187
+ return props.theme.labelFontFamily;
177
188
  }, function (props) {
178
- return props.theme.fontSize;
189
+ return props.theme.labelFontStyle;
179
190
  }, function (props) {
180
- return props.overlay === true ? "#FFFFFF" : props.theme.fontColor;
191
+ return props.theme.labelFontSize;
192
+ }, function (props) {
193
+ return props.theme.labelFontWeight;
194
+ }, function (props) {
195
+ return props.theme.labelFontTextTransform;
196
+ }, function (props) {
197
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.overlay === true ? "#FFFFFF" : props.theme.labelFontColor;
181
198
  });
182
199
 
183
200
  var ProgressBarProgress = _styledComponents["default"].div(_templateObject5(), function (props) {
184
- return props.theme.fontSize;
201
+ return props.theme.valueFontFamily;
202
+ }, function (props) {
203
+ return props.theme.valueFontStyle;
185
204
  }, function (props) {
186
- return props.overlay === true ? "#FFFFFF" : props.theme.fontColor;
205
+ return props.theme.valueFontSize;
206
+ }, function (props) {
207
+ return props.theme.valueFontWeight;
208
+ }, function (props) {
209
+ return props.theme.valueFontTextTransform;
210
+ }, function (props) {
211
+ return props.backgroundType === "dark" ? props.theme.valueFontColorOnDark : props.overlay === true ? "#FFFFFF" : props.theme.valueFontColor;
187
212
  }, function (props) {
188
213
  return props.value !== "" && props.showValue === true && "block" || "none";
189
214
  });
190
215
 
216
+ var HelperText = _styledComponents["default"].span(_templateObject6(), function (props) {
217
+ return props.backgroundType === "dark" ? props.theme.helperTextFontColorOnDark : props.overlay === true ? "#FFFFFF" : props.theme.helperTextFontColor;
218
+ }, function (props) {
219
+ return props.theme.fontFamily;
220
+ }, function (props) {
221
+ return props.theme.helperTextFontSize;
222
+ }, function (props) {
223
+ return props.theme.helperTextFontStyle;
224
+ }, function (props) {
225
+ return props.theme.helperTextFontWeight;
226
+ });
227
+
228
+ DxcProgressBar.propTypes = {
229
+ label: _propTypes["default"].string,
230
+ helperText: _propTypes["default"].string,
231
+ overlay: _propTypes["default"].bool,
232
+ value: _propTypes["default"].number,
233
+ showValue: _propTypes["default"].bool,
234
+ margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
235
+ top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
236
+ bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
237
+ left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
238
+ right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
239
+ }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))])
240
+ };
191
241
  var _default = DxcProgressBar;
192
242
  exports["default"] = _default;
@@ -0,0 +1,18 @@
1
+ type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
+ type Margin = {
3
+ top?: Space;
4
+ bottom?: Space;
5
+ left?: Space;
6
+ right?: Space;
7
+ };
8
+
9
+ type Props = {
10
+ label?: string;
11
+ helperText?: string;
12
+ overlay?: boolean;
13
+ value?: number;
14
+ showValue?: boolean,
15
+ margin?: Space | Margin;
16
+ };
17
+
18
+ export default function DxcProgressBar(props: Props): JSX.Element;
@@ -33,8 +33,10 @@ var _utils = require("../common/utils.js");
33
33
 
34
34
  var _useTheme = _interopRequireDefault(require("../useTheme.js"));
35
35
 
36
+ var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext.js"));
37
+
36
38
  function _templateObject2() {
37
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n color: ", ";\n cursor: ", ";\n"]);
39
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n font-style: ", ";\n color: ", ";\n cursor: ", ";\n"]);
38
40
 
39
41
  _templateObject2 = function _templateObject2() {
40
42
  return data;
@@ -44,7 +46,7 @@ function _templateObject2() {
44
46
  }
45
47
 
46
48
  function _templateObject() {
47
- var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n\n display: inline-flex;\n align-items: center;\n max-height: 42px;\n position: relative;\n flex-direction: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n cursor: ", ";\n .MuiButtonBase-root {\n width: auto;\n height: auto;\n padding: 10px;\n margin: 2px;\n padding-left: ", ";\n padding-right: ", ";\n margin-left: ", ";\n margin-right: ", ";\n .MuiIconButton-label {\n .MuiSvgIcon-root {\n height: 24px;\n width: 24px;\n }\n color: ", ";\n\n > div > :nth-child(2) path {\n color: ", ";\n }\n }\n\n &.Mui-focusVisible {\n background-color: transparent;\n .MuiSvgIcon-root {\n outline: ", " auto 1px;\n }\n }\n :hover {\n background-color: transparent;\n }\n .MuiTouchRipple-ripple {\n height: 40px !important;\n width: 40px !important;\n top: 0px !important;\n left: 0px !important;\n }\n }\n .MuiRadio-colorSecondary.Mui-checked {\n color: ", ";\n :hover {\n background-color: transparent;\n }\n }\n"]);
49
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n\n display: inline-flex;\n align-items: center;\n max-height: 42px;\n position: relative;\n flex-direction: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n cursor: ", ";\n .MuiButtonBase-root {\n width: auto;\n height: auto;\n padding: 10px;\n margin: 2px;\n ", ": ", ";\n padding-left: ", ";\n padding-right: ", ";\n margin-left: ", ";\n margin-right: ", ";\n .MuiIconButton-label {\n .MuiSvgIcon-root {\n height: ", ";\n width: ", ";\n }\n color: ", ";\n\n > div > :nth-child(2) path {\n color: ", ";\n }\n }\n\n &.Mui-focusVisible {\n background-color: transparent;\n .MuiSvgIcon-root {\n outline: ", "\n auto 1px;\n }\n }\n :hover {\n background-color: transparent;\n }\n .MuiTouchRipple-ripple {\n height: 40px !important;\n width: 40px !important;\n top: 0px !important;\n left: 0px !important;\n }\n }\n .MuiRadio-colorSecondary.Mui-checked {\n color: ", ";\n :hover {\n background-color: transparent;\n }\n }\n"]);
48
50
 
49
51
  _templateObject = function _templateObject() {
50
52
  return data;
@@ -76,6 +78,7 @@ var DxcRadio = function DxcRadio(_ref) {
76
78
  setInnerChecked = _useState2[1];
77
79
 
78
80
  var colorsTheme = (0, _useTheme["default"])();
81
+ var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
79
82
 
80
83
  var handlerRadioChange = function handlerRadioChange(value) {
81
84
  if (checked == null) {
@@ -94,7 +97,8 @@ var DxcRadio = function DxcRadio(_ref) {
94
97
  labelPosition: labelPosition,
95
98
  disabled: disabled,
96
99
  margin: margin,
97
- size: size
100
+ size: size,
101
+ backgroundType: backgroundType
98
102
  }, _react["default"].createElement(_Radio["default"], {
99
103
  checked: checked != null && checked || innerChecked,
100
104
  name: name,
@@ -107,7 +111,8 @@ var DxcRadio = function DxcRadio(_ref) {
107
111
  checked: checked || innerChecked,
108
112
  labelPosition: labelPosition,
109
113
  disabled: disabled,
110
- onClick: !disabled && handlerRadioChange || null
114
+ onClick: !disabled && handlerRadioChange || null,
115
+ backgroundType: backgroundType
111
116
  }, required && _react["default"].createElement(_RequiredComponent["default"], null), label)));
112
117
  };
113
118
 
@@ -143,6 +148,10 @@ var RadioContainer = _styledComponents["default"].span(_templateObject(), functi
143
148
  return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
144
149
  }, function (props) {
145
150
  return props.disabled === true ? "not-allowed" : "default";
151
+ }, function (props) {
152
+ return props.labelPosition === "after" ? "padding-right" : "padding-left";
153
+ }, function (props) {
154
+ return props.theme.circleLabelSpacing;
146
155
  }, function (props) {
147
156
  return props.labelPosition === "after" ? "0px" : "";
148
157
  }, function (props) {
@@ -152,19 +161,29 @@ var RadioContainer = _styledComponents["default"].span(_templateObject(), functi
152
161
  }, function (props) {
153
162
  return props.labelPosition === "before" ? "0px" : "";
154
163
  }, function (props) {
155
- return props.disabled && props.theme.disabledColor || props.theme.color;
164
+ return props.theme.circleSize;
165
+ }, function (props) {
166
+ return props.theme.circleSize;
156
167
  }, function (props) {
157
- return props.disabled && props.theme.disabledColor || props.theme.color;
168
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
158
169
  }, function (props) {
159
- return props.theme.focusColor;
170
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
160
171
  }, function (props) {
161
- return props.disabled && props.theme.disabledColor || props.theme.color;
172
+ return props.backgroundType === "dark" ? props.theme.focusColorOnDark : props.theme.focusColor;
173
+ }, function (props) {
174
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
162
175
  });
163
176
 
164
177
  var LabelContainer = _styledComponents["default"].span(_templateObject2(), function (props) {
165
178
  return props.theme.fontFamily;
166
179
  }, function (props) {
167
- return props.disabled && props.theme.disabledFontColor || props.theme.fontColor;
180
+ return props.theme.fontSize;
181
+ }, function (props) {
182
+ return props.theme.fontWeight;
183
+ }, function (props) {
184
+ return props.theme.fontStyle;
185
+ }, function (props) {
186
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledFontColorOnDark || props.theme.fontColorOnDark : props.disabled && props.theme.disabledFontColor || props.theme.fontColor;
168
187
  }, function (props) {
169
188
  return props.disabled === true ? "not-allowed" : "pointer";
170
189
  });
@@ -0,0 +1,23 @@
1
+ type Size = "small" | "medium" | "large" | "fillParent" | "fitContent";
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
+
10
+ type Props = {
11
+ checked?: boolean;
12
+ value?: any;
13
+ label?: string;
14
+ labelPosition?: "before" | "after";
15
+ name?: string,
16
+ disabled?: boolean;
17
+ onClick?: void;
18
+ required?: boolean;
19
+ margin?: Space | Margin;
20
+ size?: Size;
21
+ };
22
+
23
+ export default function DxcRadio(props: Props): JSX.Element;
@@ -29,16 +29,10 @@ var _Table = _interopRequireDefault(require("../table/Table"));
29
29
 
30
30
  var _Paginator = _interopRequireDefault(require("../paginator/Paginator"));
31
31
 
32
- var _arrow_upward24px_wht = _interopRequireDefault(require("./arrow_upward-24px_wht.svg"));
33
-
34
- var _arrow_downward24px_wht = _interopRequireDefault(require("./arrow_downward-24px_wht.svg"));
35
-
36
- var _unfold_more24px_wht = _interopRequireDefault(require("./unfold_more-24px_wht.svg"));
37
-
38
32
  var _useTheme = _interopRequireDefault(require("../useTheme.js"));
39
33
 
40
34
  function _templateObject9() {
41
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: ", ";\n overflow-y: hidden;\n overflow-x: auto;\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n\n &::-webkit-scrollbar {\n height: 6px;\n }\n\n &::-webkit-scrollbar-thumb {\n background-color: ", ";\n border-radius: 6px;\n }\n\n &::-webkit-scrollbar-track {\n background-color: ", ";\n border-radius: 6px;\n }\n"]);
35
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n overflow: hidden;\n"]);
42
36
 
43
37
  _templateObject9 = function _templateObject9() {
44
38
  return data;
@@ -58,7 +52,7 @@ function _templateObject8() {
58
52
  }
59
53
 
60
54
  function _templateObject7() {
61
- var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n width: fit-content;\n"]);
55
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n justify-content: ", ";\n width: 100%;\n"]);
62
56
 
63
57
  _templateObject7 = function _templateObject7() {
64
58
  return data;
@@ -88,7 +82,7 @@ function _templateObject5() {
88
82
  }
89
83
 
90
84
  function _templateObject4() {
91
- var data = (0, _taggedTemplateLiteral2["default"])(["\n top: 409px;\n left: 390px;\n height: 14px;\n cursor: pointer;\n"]);
85
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n top: 409px;\n left: 390px;\n height: 14px;\n cursor: pointer;\n color: ", ";\n\n svg {\n height: 100%;\n width: 100%;\n }\n"]);
92
86
 
93
87
  _templateObject4 = function _templateObject4() {
94
88
  return data;
@@ -98,7 +92,7 @@ function _templateObject4() {
98
92
  }
99
93
 
100
94
  function _templateObject3() {
101
- var data = (0, _taggedTemplateLiteral2["default"])(["\n > div:nth-child(1) {\n position: absolute;\n left: calc(50% - 68.5px);\n bottom: calc(50% - 68.5px - 30px);\n }\n & tr {\n height: 70px;\n }\n"]);
95
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n > div:nth-child(1) {\n position: absolute;\n left: calc(50% - 68.5px);\n bottom: calc(50% - 68.5px - 30px);\n }\n & tr {\n height: ", ";\n }\n"]);
102
96
 
103
97
  _templateObject3 = function _templateObject3() {
104
98
  return data;
@@ -108,7 +102,7 @@ function _templateObject3() {
108
102
  }
109
103
 
110
104
  function _templateObject2() {
111
- var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-left: ", ";\n margin-right: ", ";\n"]);
105
+ var data = (0, _taggedTemplateLiteral2["default"])([""]);
112
106
 
113
107
  _templateObject2 = function _templateObject2() {
114
108
  return data;
@@ -159,6 +153,51 @@ var getMaxItemsPerPageIndex = function getMaxItemsPerPageIndex(minItemsPerPageIn
159
153
  return minItemsPerPageIndex + itemsPerPage > resultset.length ? resultset.length : itemsPerPage * page - 1;
160
154
  };
161
155
 
156
+ var ArrowUp = function ArrowUp() {
157
+ return _react["default"].createElement("svg", {
158
+ xmlns: "http://www.w3.org/2000/svg",
159
+ height: "24",
160
+ viewBox: "0 0 24 24",
161
+ width: "24",
162
+ fill: "currentColor"
163
+ }, _react["default"].createElement("path", {
164
+ d: "M0 0h24v24H0V0z",
165
+ fill: "none"
166
+ }), _react["default"].createElement("path", {
167
+ d: "M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"
168
+ }));
169
+ };
170
+
171
+ var ArrowDown = function ArrowDown() {
172
+ return _react["default"].createElement("svg", {
173
+ xmlns: "http://www.w3.org/2000/svg",
174
+ height: "24",
175
+ viewBox: "0 0 24 24",
176
+ width: "24",
177
+ fill: "currentColor"
178
+ }, _react["default"].createElement("path", {
179
+ d: "M0 0h24v24H0V0z",
180
+ fill: "none"
181
+ }), _react["default"].createElement("path", {
182
+ d: "M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"
183
+ }));
184
+ };
185
+
186
+ var BothArrows = function BothArrows() {
187
+ return _react["default"].createElement("svg", {
188
+ xmlns: "http://www.w3.org/2000/svg",
189
+ height: "24",
190
+ viewBox: "0 0 24 24",
191
+ width: "24",
192
+ fill: "currentColor"
193
+ }, _react["default"].createElement("path", {
194
+ d: "M0 0h24v24H0z",
195
+ fill: "none"
196
+ }), _react["default"].createElement("path", {
197
+ d: "M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z"
198
+ }));
199
+ };
200
+
162
201
  var DxcResultsetTable = function DxcResultsetTable(_ref) {
163
202
  var columns = _ref.columns,
164
203
  rows = _ref.rows,
@@ -204,7 +243,7 @@ var DxcResultsetTable = function DxcResultsetTable(_ref) {
204
243
  };
205
244
 
206
245
  var getIconForSortableColumn = function getIconForSortableColumn(clickedColumnIndex) {
207
- return sortColumnIndex === clickedColumnIndex ? sortOrder === "asc" ? _arrow_upward24px_wht["default"] : _arrow_downward24px_wht["default"] : _unfold_more24px_wht["default"];
246
+ return sortColumnIndex === clickedColumnIndex ? sortOrder === "asc" ? _react["default"].createElement(ArrowUp, null) : _react["default"].createElement(ArrowDown, null) : _react["default"].createElement(BothArrows, null);
208
247
  };
209
248
 
210
249
  (0, _react.useEffect)(function () {
@@ -224,14 +263,7 @@ var DxcResultsetTable = function DxcResultsetTable(_ref) {
224
263
  theme: colorsTheme.table
225
264
  }, _react["default"].createElement(DxcResultsetTableContainer, {
226
265
  margin: margin
227
- }, _react["default"].createElement(TableContainer, null, _react["default"].createElement(_Table["default"], {
228
- margin: {
229
- top: margin,
230
- right: margin,
231
- bottom: "0px",
232
- left: margin
233
- }
234
- }, _react["default"].createElement(HeaderRow, null, _react["default"].createElement("tr", null, columns.map(function (column, index) {
266
+ }, _react["default"].createElement(TableContainer, null, _react["default"].createElement(_Table["default"], null, _react["default"].createElement(HeaderRow, null, _react["default"].createElement("tr", null, columns.map(function (column, index) {
235
267
  return _react["default"].createElement(TableHeader, {
236
268
  key: "tableHeader_".concat(index)
237
269
  }, _react["default"].createElement(HeaderContainer, {
@@ -242,9 +274,7 @@ var DxcResultsetTable = function DxcResultsetTable(_ref) {
242
274
  tabIndex: column.isSortable ? tabIndex : -1
243
275
  }, _react["default"].createElement(TitleDiv, {
244
276
  isSortable: column.isSortable
245
- }, column.displayValue), column.isSortable && _react["default"].createElement(SortIcon, {
246
- src: getIconForSortableColumn(index)
247
- })));
277
+ }, column.displayValue), column.isSortable && _react["default"].createElement(SortIcon, null, getIconForSortableColumn(index))));
248
278
  }))), _react["default"].createElement(TableRowGroup, null, filteredResultset.map(function (cells, index) {
249
279
  return _react["default"].createElement("tr", {
250
280
  key: "resultSetTableCell_".concat(index)
@@ -253,9 +283,7 @@ var DxcResultsetTable = function DxcResultsetTable(_ref) {
253
283
  key: "resultSetTableCellContent_".concat(index)
254
284
  }, cellContent.displayValue);
255
285
  }));
256
- })))), _react["default"].createElement(PaginatorContainer, {
257
- margin: margin
258
- }, _react["default"].createElement(_Paginator["default"], {
286
+ })))), _react["default"].createElement(PaginatorContainer, null, _react["default"].createElement(_Paginator["default"], {
259
287
  totalItems: rows.length,
260
288
  itemsPerPage: itemsPerPage,
261
289
  itemsPerPageOptions: itemsPerPageOptions,
@@ -269,15 +297,15 @@ var DxcResultsetTable = function DxcResultsetTable(_ref) {
269
297
 
270
298
  var TableContainer = _styledComponents["default"].div(_templateObject());
271
299
 
272
- var PaginatorContainer = _styledComponents["default"].div(_templateObject2(), function (props) {
273
- return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
274
- }, function (props) {
275
- return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
276
- });
300
+ var PaginatorContainer = _styledComponents["default"].div(_templateObject2());
277
301
 
278
- var TableRowGroup = _styledComponents["default"].tbody(_templateObject3());
302
+ var TableRowGroup = _styledComponents["default"].tbody(_templateObject3(), function (props) {
303
+ return props.theme.rowHeight || "70px";
304
+ });
279
305
 
280
- var SortIcon = _styledComponents["default"].img(_templateObject4());
306
+ var SortIcon = _styledComponents["default"].div(_templateObject4(), function (props) {
307
+ return props.theme.sortIconColor;
308
+ });
281
309
 
282
310
  var TitleDiv = _styledComponents["default"].div(_templateObject5(), function (props) {
283
311
  return props.isSortable && "pointer" || "default";
@@ -285,7 +313,9 @@ var TitleDiv = _styledComponents["default"].div(_templateObject5(), function (pr
285
313
 
286
314
  var TableHeader = _styledComponents["default"].th(_templateObject6());
287
315
 
288
- var HeaderContainer = _styledComponents["default"].div(_templateObject7());
316
+ var HeaderContainer = _styledComponents["default"].div(_templateObject7(), function (props) {
317
+ return props.theme.headerTextAlign === "center" ? "center" : props.theme.headerTextAlign === "right" ? "flex-end" : "flex-start";
318
+ });
289
319
 
290
320
  var HeaderRow = _styledComponents["default"].thead(_templateObject8());
291
321
 
@@ -301,10 +331,6 @@ var DxcResultsetTableContainer = _styledComponents["default"].div(_templateObjec
301
331
  return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.bottom ? _variables.spaces[props.margin.bottom] : "";
302
332
  }, function (props) {
303
333
  return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
304
- }, function (props) {
305
- return props.theme.scrollBarThumbColor;
306
- }, function (props) {
307
- return props.theme.scrollBarTrackColor;
308
334
  });
309
335
 
310
336
  DxcResultsetTable.propTypes = {