@dxc-technology/halstack-react 0.0.0-570929a → 0.0.0-5b2ad05

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 (186) hide show
  1. package/dist/ThemeContext.js +134 -100
  2. package/dist/V3Select/V3Select.js +549 -0
  3. package/dist/V3Textarea/V3Textarea.js +264 -0
  4. package/dist/accordion/Accordion.js +72 -59
  5. package/dist/accordion-group/AccordionGroup.js +1 -3
  6. package/dist/alert/Alert.js +126 -111
  7. package/dist/alert/index.d.ts +51 -0
  8. package/dist/badge/Badge.js +3 -1
  9. package/dist/box/Box.js +1 -9
  10. package/dist/button/Button.js +32 -22
  11. package/dist/card/Card.js +2 -4
  12. package/dist/checkbox/Checkbox.js +33 -25
  13. package/dist/chip/Chip.js +30 -28
  14. package/dist/common/variables.js +988 -573
  15. package/dist/date/Date.js +23 -35
  16. package/dist/date-input/DateInput.js +400 -0
  17. package/dist/date-input/index.d.ts +95 -0
  18. package/dist/dialog/Dialog.js +21 -39
  19. package/dist/dropdown/Dropdown.js +123 -71
  20. package/dist/file-input/FileInput.js +644 -0
  21. package/dist/file-input/FileItem.js +280 -0
  22. package/dist/file-input/index.d.ts +81 -0
  23. package/dist/footer/Footer.js +69 -53
  24. package/dist/footer/Icons.js +77 -0
  25. package/dist/header/Header.js +123 -84
  26. package/dist/header/Icons.js +59 -0
  27. package/dist/heading/Heading.js +13 -5
  28. package/dist/input-text/Icons.js +22 -0
  29. package/dist/input-text/InputText.js +97 -61
  30. package/dist/layout/ApplicationLayout.js +5 -9
  31. package/dist/layout/Icons.js +55 -0
  32. package/dist/link/Link.js +23 -26
  33. package/dist/main.d.ts +8 -0
  34. package/dist/main.js +65 -17
  35. package/dist/number-input/NumberInput.js +136 -0
  36. package/dist/number-input/NumberInputContext.js +16 -0
  37. package/dist/number-input/index.d.ts +113 -0
  38. package/dist/paginator/Icons.js +66 -0
  39. package/dist/paginator/Paginator.js +17 -17
  40. package/dist/password-input/PasswordInput.js +198 -0
  41. package/dist/password-input/index.d.ts +94 -0
  42. package/dist/progress-bar/ProgressBar.js +63 -27
  43. package/dist/resultsetTable/ResultsetTable.js +5 -22
  44. package/dist/select/Select.js +873 -333
  45. package/dist/select/index.d.ts +53 -0
  46. package/dist/sidenav/Sidenav.js +11 -15
  47. package/dist/slider/Slider.js +159 -70
  48. package/dist/spinner/Spinner.js +226 -59
  49. package/dist/switch/Switch.js +3 -3
  50. package/dist/table/Table.js +6 -2
  51. package/dist/tabs/Tabs.js +4 -8
  52. package/dist/tag/Tag.js +38 -36
  53. package/dist/text-input/TextInput.js +971 -0
  54. package/dist/text-input/index.d.ts +135 -0
  55. package/dist/textarea/Textarea.js +233 -124
  56. package/dist/textarea/index.d.ts +117 -0
  57. package/dist/toggle-group/ToggleGroup.js +130 -44
  58. package/dist/upload/Upload.js +3 -3
  59. package/dist/upload/buttons-upload/ButtonsUpload.js +13 -13
  60. package/dist/upload/buttons-upload/Icons.js +40 -0
  61. package/dist/upload/dragAndDropArea/DragAndDropArea.js +27 -23
  62. package/dist/upload/dragAndDropArea/Icons.js +39 -0
  63. package/dist/upload/file-upload/FileToUpload.js +29 -24
  64. package/dist/upload/file-upload/Icons.js +66 -0
  65. package/dist/upload/transaction/Icons.js +160 -0
  66. package/dist/upload/transaction/Transaction.js +19 -42
  67. package/dist/upload/transactions/Transactions.js +11 -11
  68. package/dist/wizard/Icons.js +65 -0
  69. package/dist/wizard/Wizard.js +85 -63
  70. package/package.json +8 -10
  71. package/test/Date.test.js +48 -44
  72. package/test/DateInput.test.js +242 -0
  73. package/test/Dropdown.test.js +15 -0
  74. package/test/FileInput.test.js +201 -0
  75. package/test/Footer.test.js +2 -7
  76. package/test/Header.test.js +5 -10
  77. package/test/Heading.test.js +60 -12
  78. package/test/InputText.test.js +24 -16
  79. package/test/NumberInput.test.js +259 -0
  80. package/test/Paginator.test.js +1 -1
  81. package/test/PasswordInput.test.js +83 -0
  82. package/test/ResultsetTable.test.js +1 -2
  83. package/test/Slider.test.js +9 -17
  84. package/test/Spinner.test.js +5 -0
  85. package/test/TextInput.test.js +732 -0
  86. package/test/Textarea.test.js +193 -0
  87. package/test/ToggleGroup.test.js +5 -1
  88. package/test/Upload.test.js +5 -5
  89. package/test/{Select.test.js → V3Select.test.js} +56 -36
  90. package/test/{TextArea.test.js → V3TextArea.test.js} +6 -7
  91. package/dist/accordion/Accordion.stories.js +0 -207
  92. package/dist/accordion/readme.md +0 -96
  93. package/dist/accordion-group/AccordionGroup.stories.js +0 -207
  94. package/dist/accordion-group/readme.md +0 -70
  95. package/dist/alert/Alert.stories.js +0 -158
  96. package/dist/alert/close.svg +0 -4
  97. package/dist/alert/error.svg +0 -4
  98. package/dist/alert/info.svg +0 -4
  99. package/dist/alert/readme.md +0 -43
  100. package/dist/alert/success.svg +0 -4
  101. package/dist/alert/warning.svg +0 -4
  102. package/dist/button/Button.stories.js +0 -224
  103. package/dist/button/readme.md +0 -93
  104. package/dist/checkbox/Checkbox.stories.js +0 -144
  105. package/dist/checkbox/readme.md +0 -116
  106. package/dist/date/Date.stories.js +0 -205
  107. package/dist/date/calendar.svg +0 -1
  108. package/dist/date/calendar_dark.svg +0 -1
  109. package/dist/date/readme.md +0 -73
  110. package/dist/dialog/Dialog.stories.js +0 -217
  111. package/dist/dialog/readme.md +0 -32
  112. package/dist/dropdown/Dropdown.stories.js +0 -249
  113. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  114. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  115. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  116. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  117. package/dist/dropdown/readme.md +0 -69
  118. package/dist/footer/Footer.stories.js +0 -94
  119. package/dist/footer/dxc_logo_wht.png +0 -0
  120. package/dist/footer/readme.md +0 -41
  121. package/dist/header/Header.stories.js +0 -176
  122. package/dist/header/close_icon.svg +0 -1
  123. package/dist/header/dxc_logo_black.png +0 -0
  124. package/dist/header/dxc_logo_blk_rgb.svg +0 -6
  125. package/dist/header/dxc_logo_white.png +0 -0
  126. package/dist/header/hamb_menu_black.svg +0 -1
  127. package/dist/header/hamb_menu_white.svg +0 -1
  128. package/dist/header/readme.md +0 -33
  129. package/dist/input-text/InputText.stories.js +0 -209
  130. package/dist/input-text/error.svg +0 -1
  131. package/dist/input-text/readme.md +0 -91
  132. package/dist/layout/facebook.svg +0 -45
  133. package/dist/layout/linkedin.svg +0 -50
  134. package/dist/layout/twitter.svg +0 -53
  135. package/dist/link/readme.md +0 -51
  136. package/dist/paginator/images/next.svg +0 -3
  137. package/dist/paginator/images/nextPage.svg +0 -3
  138. package/dist/paginator/images/previous.svg +0 -3
  139. package/dist/paginator/images/previousPage.svg +0 -3
  140. package/dist/paginator/readme.md +0 -50
  141. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  142. package/dist/progress-bar/readme.md +0 -63
  143. package/dist/radio/Radio.stories.js +0 -166
  144. package/dist/radio/readme.md +0 -70
  145. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  146. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  147. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  148. package/dist/select/Select.stories.js +0 -235
  149. package/dist/select/readme.md +0 -72
  150. package/dist/slider/Slider.stories.js +0 -241
  151. package/dist/slider/readme.md +0 -64
  152. package/dist/spinner/Spinner.stories.js +0 -183
  153. package/dist/spinner/readme.md +0 -65
  154. package/dist/switch/Switch.stories.js +0 -134
  155. package/dist/switch/readme.md +0 -133
  156. package/dist/tabs/Tabs.stories.js +0 -130
  157. package/dist/tabs/readme.md +0 -78
  158. package/dist/tabs-for-sections/TabsForSections.js +0 -92
  159. package/dist/tabs-for-sections/readme.md +0 -78
  160. package/dist/toggle/Toggle.stories.js +0 -297
  161. package/dist/toggle/readme.md +0 -80
  162. package/dist/toggle-group/readme.md +0 -82
  163. package/dist/upload/Upload.stories.js +0 -72
  164. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  165. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  166. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  167. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  168. package/dist/upload/file-upload/audio-icon.svg +0 -4
  169. package/dist/upload/file-upload/close.svg +0 -4
  170. package/dist/upload/file-upload/file-icon.svg +0 -4
  171. package/dist/upload/file-upload/video-icon.svg +0 -4
  172. package/dist/upload/readme.md +0 -37
  173. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  174. package/dist/upload/transaction/audio-icon.svg +0 -4
  175. package/dist/upload/transaction/error-icon.svg +0 -4
  176. package/dist/upload/transaction/file-icon-err.svg +0 -4
  177. package/dist/upload/transaction/file-icon.svg +0 -4
  178. package/dist/upload/transaction/image-icon-err.svg +0 -4
  179. package/dist/upload/transaction/image-icon.svg +0 -4
  180. package/dist/upload/transaction/success-icon.svg +0 -4
  181. package/dist/upload/transaction/video-icon-err.svg +0 -4
  182. package/dist/upload/transaction/video-icon.svg +0 -4
  183. package/dist/wizard/invalid_icon.svg +0 -6
  184. package/dist/wizard/valid_icon.svg +0 -6
  185. package/dist/wizard/validation-wrong.svg +0 -6
  186. package/test/TabsForSections.test.js +0 -34
@@ -41,12 +41,12 @@ var _utils = require("../common/utils.js");
41
41
 
42
42
  var _useTheme = _interopRequireDefault(require("../useTheme.js"));
43
43
 
44
- var _error = _interopRequireDefault(require("./error.svg"));
44
+ var _Icons = _interopRequireDefault(require("./Icons"));
45
45
 
46
- var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext.js"));
46
+ var _BackgroundColorContext = _interopRequireWildcard(require("../BackgroundColorContext.js"));
47
47
 
48
48
  function _templateObject10() {
49
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n\n display: inline-block;\n position: relative;\n height: auto;\n width: ", ";\n .MuiTextField-root {\n width: 100%;\n font-family: ", ";\n .MuiFormHelperText-root {\n font-weight: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n color: ", " !important;\n\n margin-top: 6px;\n }\n .MuiFormLabel-root {\n font-size: ", ";\n\n color: ", ";\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n padding-left: ", ";\n &.Mui-focused {\n color: ", ";\n &.MuiInputLabel-shrink {\n transform: ", ";\n }\n }\n &.MuiInputLabel-shrink {\n font-family: ", ";\n\n transform: ", ";\n }\n &.Mui-error {\n color: ", ";\n }\n\n &:not(.MuiInputLabel-shrink) {\n font-family: ", ";\n\n color: ", ";\n & + div,\n & + div + p {\n color: ", ";\n }\n }\n\n &.MuiInputLabel-shrink {\n & + div::before {\n border-color: ", ";\n }\n & + div + p {\n color: ", ";\n }\n }\n }\n .MuiInputBase-root.MuiInput-root.MuiInput-underline {\n font-family: ", ";\n\n &::before {\n border-bottom: ", ";\n }\n &:not(.Mui-error)::before,\n &:not(&.Mui-focused)::before {\n border-bottom: ", ";\n }\n &::after {\n border-bottom: ", ";\n }\n\n &.Mui-error {\n &::before {\n border-width: ", ";\n border-color: ", ";\n }\n &::after {\n transform: scaleX(0);\n }\n }\n\n &.Mui-focused {\n &::after {\n border-width: 2px;\n border-color: ", ";\n transform: scaleX(1);\n }\n\n &.Mui-error::after {\n border-color: ", ";\n }\n }\n\n &.Mui-disabled {\n cursor: not-allowed;\n\n &::before {\n border-bottom: ", ";\n border-bottom-style: solid;\n }\n }\n .MuiInputBase-input {\n padding-left: ", ";\n color: ", ";\n text-overflow: ellipsis;\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n }\n .MuiInputAdornment-root {\n height: 20px;\n color: ", ";\n &.MuiInputAdornment-positionEnd {\n & > p {\n font-family: ", ";\n\n color: ", ";\n margin-right: 8px;\n margin-bottom: 1px;\n }\n }\n &.Mui-disabled {\n cursor: not-allowed;\n opacity: 0.5;\n }\n }\n\n &:hover:not(.Mui-disabled):before &:hover:not(.Mui-error):before {\n border-bottom: ", ";\n }\n }\n\n & > p {\n &.Mui-error {\n color: ", " !important;\n }\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n }\n }\n"]);
49
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n display: inline-block;\n position: relative;\n height: auto;\n width: ", ";\n\n .MuiTextField-root {\n width: 100%;\n font-family: ", ";\n\n .MuiFormHelperText-root {\n font-weight: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n color: ", " !important;\n margin-top: 6px;\n }\n\n .MuiFormLabel-root {\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n color: ", ";\n padding-left: ", ";\n\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n\n &.Mui-focused {\n color: ", ";\n &.MuiInputLabel-shrink {\n transform: ", ";\n }\n }\n\n &.MuiInputLabel-shrink {\n font-family: ", ";\n\n transform: ", ";\n }\n\n &.Mui-error {\n color: ", ";\n }\n\n &:not(.MuiInputLabel-shrink) {\n font-family: ", ";\n color: ", ";\n\n & + div,\n & + div + p {\n color: ", ";\n }\n }\n\n &.MuiInputLabel-shrink {\n & + div::before {\n border-color: ", ";\n }\n & + div + p {\n color: ", ";\n }\n }\n }\n\n .MuiInputBase-root.MuiInput-root.MuiInput-underline {\n font-family: ", ";\n\n &::before {\n border-bottom: ", ";\n }\n\n &:not(.Mui-error)::before,\n &:not(&.Mui-focused)::before {\n border-bottom: ", ";\n }\n\n &::after {\n border-bottom: ", ";\n }\n\n &.Mui-error {\n &::before {\n border-width: ", ";\n border-color: ", ";\n }\n &::after {\n transform: scaleX(0);\n }\n }\n\n &.Mui-focused {\n &::after {\n border-width: calc(", " + 1px);\n border-color: ", ";\n }\n &.Mui-error::after {\n border-color: ", ";\n }\n }\n\n &.Mui-disabled {\n cursor: not-allowed;\n\n &::before {\n border-bottom: ", ";\n border-bottom-style: solid;\n }\n }\n\n .MuiInputBase-input {\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n color: ", ";\n padding-left: ", ";\n text-overflow: ellipsis;\n\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n }\n\n .MuiInputAdornment-root {\n height: 20px;\n\n &.MuiInputAdornment-positionEnd {\n & > p {\n font-family: ", ";\n margin-right: 8px;\n margin-bottom: 1px;\n }\n }\n &.Mui-disabled {\n cursor: not-allowed;\n opacity: 0.5;\n }\n }\n\n &:hover:not(.Mui-disabled):before &:hover:not(.Mui-error):before {\n border-bottom-color: ", ";\n }\n }\n\n & > p {\n &.Mui-error {\n color: ", " !important;\n }\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n }\n }\n"]);
50
50
 
51
51
  _templateObject10 = function _templateObject10() {
52
52
  return data;
@@ -116,7 +116,7 @@ function _templateObject4() {
116
116
  }
117
117
 
118
118
  function _templateObject3() {
119
- var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n .MuiPaper-root {\n max-height: 250px;\n overflow: auto;\n ::-webkit-scrollbar {\n width: 3px;\n }\n ::-webkit-scrollbar-track {\n background-color: ", ";\n border-radius: 3px;\n }\n\n ::-webkit-scrollbar-thumb {\n background-color: ", ";\n border-radius: 3px;\n }\n li {\n &:hover {\n color: ", ";\n background-color: ", ";\n }\n }\n }\n"]);
119
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n .MuiPaper-root {\n max-height: 250px;\n background-color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n color: ", ";\n border-color: ", ";\n border-width: ", ";\n border-style: ", ";\n overflow: auto;\n\n ::-webkit-scrollbar {\n width: 3px;\n }\n ::-webkit-scrollbar-track {\n background-color: ", ";\n border-radius: 3px;\n }\n ::-webkit-scrollbar-thumb {\n background-color: ", ";\n border-radius: 3px;\n }\n\n li {\n padding-bottom: ", ";\n padding-top: ", ";\n\n &:hover {\n color: ", ";\n background-color: ", ";\n }\n &:active {\n background-color: ", ";\n }\n }\n }\n"]);
120
120
 
121
121
  _templateObject3 = function _templateObject3() {
122
122
  return data;
@@ -136,7 +136,7 @@ function _templateObject2() {
136
136
  }
137
137
 
138
138
  function _templateObject() {
139
- var data = (0, _taggedTemplateLiteral2["default"])(["\n padding-left: 12px;\n"]);
139
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n padding-left: 12px;\n color:red;\n"]);
140
140
 
141
141
  _templateObject = function _templateObject() {
142
142
  return data;
@@ -166,7 +166,7 @@ var makeCancelable = function makeCancelable(promise) {
166
166
  };
167
167
  };
168
168
 
169
- var DxcInputText = function DxcInputText(_ref) {
169
+ var V3DxcInputText = function V3DxcInputText(_ref) {
170
170
  var _ref$label = _ref.label,
171
171
  label = _ref$label === void 0 ? " " : _ref$label,
172
172
  _ref$name = _ref.name,
@@ -333,6 +333,26 @@ var DxcInputText = function DxcInputText(_ref) {
333
333
  }
334
334
  };
335
335
 
336
+ var ThemedSuggestions = function ThemedSuggestions() {
337
+ var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
338
+ return _react["default"].createElement(SuggestionsContainer, {
339
+ margin: margin,
340
+ size: size,
341
+ backgroundType: backgroundType
342
+ }, _react["default"].createElement(_Paper["default"], null, isOpen && !isSearching && !isError && filteredOptions.length === 0 && _react["default"].createElement(_MenuItem["default"], null, "No matches found."), isOpen && !isSearching && filteredOptions.length > 0 && filteredOptions.map(function (suggestion) {
343
+ return _react["default"].createElement(_MenuItem["default"], {
344
+ key: suggestion,
345
+ disableRipple: true,
346
+ onMouseDown: function onMouseDown(event) {
347
+ return event.preventDefault();
348
+ },
349
+ onClick: function onClick() {
350
+ return handlerSuggestionClicked(suggestion);
351
+ }
352
+ }, suggestion);
353
+ }), isSearching && _react["default"].createElement(_MenuItem["default"], null, "Searching..."), isError && _react["default"].createElement(_MenuItem["default"], null, "Error fetching data", _react["default"].createElement(ErrorIconContainer, null, _Icons["default"]))));
354
+ };
355
+
336
356
  return _react["default"].createElement(_styledComponents.ThemeProvider, {
337
357
  theme: colorsTheme.inputText
338
358
  }, _react["default"].createElement(TextContainer, {
@@ -422,22 +442,9 @@ var DxcInputText = function DxcInputText(_ref) {
422
442
  marginTop: "0px"
423
443
  }
424
444
  }
425
- }, _react["default"].createElement(SuggestionsContainer, {
426
- margin: margin,
427
- size: size
428
- }, _react["default"].createElement(_react["default"].Fragment, null, _react["default"].createElement(_Paper["default"], null, isOpen && !isSearching && !isError && filteredOptions.length === 0 && _react["default"].createElement(_MenuItem["default"], null, "No matches found."), isOpen && !isSearching && filteredOptions.length > 0 && filteredOptions.map(function (suggestion) {
429
- return _react["default"].createElement(_MenuItem["default"], {
430
- key: suggestion,
431
- onMouseDown: function onMouseDown(event) {
432
- return event.preventDefault();
433
- },
434
- onClick: function onClick() {
435
- return handlerSuggestionClicked(suggestion);
436
- }
437
- }, suggestion);
438
- }), isSearching && _react["default"].createElement(_MenuItem["default"], null, "Searching..."), isError && _react["default"].createElement(_MenuItem["default"], null, "Error fetching data", _react["default"].createElement(ErrorIcon, {
439
- src: _error["default"]
440
- })))))));
445
+ }, _react["default"].createElement(_BackgroundColorContext.BackgroundColorProvider, {
446
+ color: colorsTheme.inputText.optionBackgroundColor
447
+ }, _react["default"].createElement(ThemedSuggestions, null))));
441
448
  };
442
449
 
443
450
  var sizes = {
@@ -447,7 +454,7 @@ var sizes = {
447
454
  fillParent: "100%"
448
455
  };
449
456
 
450
- var ErrorIcon = _styledComponents["default"].img(_templateObject());
457
+ var ErrorIconContainer = _styledComponents["default"].div(_templateObject());
451
458
 
452
459
  var calculateWidth = function calculateWidth(margin, size) {
453
460
  if (size === "fillParent") {
@@ -473,14 +480,38 @@ var DxcSuggestions = (0, _styledComponents["default"])(_Popper["default"])(_temp
473
480
 
474
481
  var SuggestionsContainer = _styledComponents["default"].div(_templateObject3(), function (props) {
475
482
  return calculateWidth(props.margin, props.size);
483
+ }, function (props) {
484
+ return props.theme.optionBackgroundColor;
485
+ }, function (props) {
486
+ return props.theme.fontFamily;
487
+ }, function (props) {
488
+ return props.theme.optionFontSize;
489
+ }, function (props) {
490
+ return props.theme.optionFontStyle;
491
+ }, function (props) {
492
+ return props.theme.optionFontWeight;
493
+ }, function (props) {
494
+ return props.backgroundType === "dark" ? props.theme.optionFontColorOnDark : props.theme.optionFontColor;
495
+ }, function (props) {
496
+ return props.theme.optionBorderColor;
497
+ }, function (props) {
498
+ return props.theme.optionBorderThickness;
499
+ }, function (props) {
500
+ return props.theme.optionBorderStyle;
476
501
  }, function (props) {
477
502
  return props.theme.scrollBarTrackColor;
478
503
  }, function (props) {
479
504
  return props.theme.scrollBarThumbColor;
505
+ }, function (props) {
506
+ return props.theme.optionPaddingBottom;
507
+ }, function (props) {
508
+ return props.theme.optionPaddingTop;
480
509
  }, function (props) {
481
510
  return props.theme.hoverOptionColor;
482
511
  }, function (props) {
483
- return props.theme.selectedOptionBackgroundColor;
512
+ return props.backgroundType === "dark" ? props.theme.hoverOptionBackgroundColorOnDark : props.theme.hoverOptionBackgroundColor;
513
+ }, function (props) {
514
+ return props.backgroundType === "dark" ? props.theme.selectedOptionBackgroundColorOnDark : props.theme.selectedOptionBackgroundColor;
484
515
  });
485
516
 
486
517
  var PrefixIcon = _styledComponents["default"].img(_templateObject4(), function (props) {
@@ -490,7 +521,7 @@ var PrefixIcon = _styledComponents["default"].img(_templateObject4(), function (
490
521
  });
491
522
 
492
523
  var PrefixIconContainer = _styledComponents["default"].div(_templateObject5(), function (props) {
493
- return props.backgroundType === "dark" ? props.theme.prefixIconColorOnDark || props.theme.fontColorBaseOnDark : props.theme.prefixIconColor || props.theme.fontColorBase;
524
+ return props.backgroundType === "dark" ? props.theme.prefixIconColorOnDark : props.theme.prefixIconColor;
494
525
  }, function (props) {
495
526
  return props.disabled && 0.5 || 1;
496
527
  }, function (props) {
@@ -500,13 +531,13 @@ var PrefixIconContainer = _styledComponents["default"].div(_templateObject5(), f
500
531
  var PrefixLabel = _styledComponents["default"].span(_templateObject6(), function (props) {
501
532
  return props.theme.prefixLabelFontWeight;
502
533
  }, function (props) {
503
- return props.theme.fontFamilyBase;
534
+ return props.theme.fontFamily;
504
535
  }, function (props) {
505
536
  return props.theme.prefixLabelFontSize;
506
537
  }, function (props) {
507
538
  return props.theme.prefixLabelFontStyle;
508
539
  }, function (props) {
509
- return props.backgroundType === "dark" ? props.theme.prefixLabelFontColorOnDark || props.theme.fontColorBaseOnDark : props.theme.prefixLabelFontColor || props.theme.fontColorBase;
540
+ return props.backgroundType === "dark" ? props.theme.prefixLabelFontColorOnDark : props.theme.prefixLabelFontColor;
510
541
  }, function (props) {
511
542
  return props.disabled && 0.5 || 1;
512
543
  }, function (props) {
@@ -520,7 +551,7 @@ var SuffixIcon = _styledComponents["default"].img(_templateObject7(), function (
520
551
  });
521
552
 
522
553
  var SuffixIconContainer = _styledComponents["default"].div(_templateObject8(), function (props) {
523
- return props.backgroundType === "dark" ? props.theme.suffixIconColorOnDark || props.theme.fontColorBaseOnDark : props.theme.suffixIconColor || props.theme.fontColorBase;
554
+ return props.backgroundType === "dark" ? props.theme.suffixIconColorOnDark : props.theme.suffixIconColor;
524
555
  }, function (props) {
525
556
  return props.disabled && 0.5 || 1;
526
557
  }, function (props) {
@@ -532,18 +563,16 @@ var SuffixLabel = _styledComponents["default"].span(_templateObject9(), function
532
563
  }, function (props) {
533
564
  return props.theme.suffixLabelFontWeight;
534
565
  }, function (props) {
535
- return props.theme.fontFamilyBase;
566
+ return props.theme.fontFamily;
536
567
  }, function (props) {
537
568
  return props.theme.suffixLabelFontSize;
538
569
  }, function (props) {
539
570
  return props.theme.suffixLabelFontStyle;
540
571
  }, function (props) {
541
- return props.backgroundType === "dark" ? props.theme.suffixLabelFontColorOnDark || props.theme.fontColorBaseOnDark : props.theme.suffixLabelFontColor || props.theme.fontColorBase;
572
+ return props.backgroundType === "dark" ? props.theme.suffixLabelFontColorOnDark : props.theme.suffixLabelFontColor;
542
573
  });
543
574
 
544
575
  var TextContainer = _styledComponents["default"].div(_templateObject10(), function (props) {
545
- return props.theme.fontSizeBase;
546
- }, function (props) {
547
576
  return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
548
577
  }, function (props) {
549
578
  return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.top ? _variables.spaces[props.margin.top] : "";
@@ -556,88 +585,95 @@ var TextContainer = _styledComponents["default"].div(_templateObject10(), functi
556
585
  }, function (props) {
557
586
  return calculateWidth(props.margin, props.size);
558
587
  }, function (props) {
559
- return props.theme.fontFamilyBase;
588
+ return props.theme.fontFamily;
560
589
  }, function (props) {
561
590
  return props.theme.assistiveTextFontWeight;
562
591
  }, function (props) {
563
- return props.theme.fontFamilyBase;
592
+ return props.theme.fontFamily;
564
593
  }, function (props) {
565
594
  return props.theme.assistiveTextFontSize;
566
595
  }, function (props) {
567
596
  return props.theme.assistiveTextFontStyle;
568
597
  }, function (props) {
569
- return props.backgroundType === "dark" ? props.theme.assistiveTextFontColorOnDark || props.theme.fontColorBaseOnDark : props.theme.assistiveTextFontColor || props.theme.fontColorBase;
598
+ return props.backgroundType === "dark" ? props.theme.assistiveTextFontColorOnDark : props.theme.assistiveTextFontColor;
570
599
  }, function (props) {
571
600
  return props.theme.labelFontSize;
572
601
  }, function (props) {
573
- return props.backgroundType === "dark" ? props.theme.fontColorBaseOnDark : props.theme.fontColorBase;
602
+ return props.theme.labelFontStyle;
603
+ }, function (props) {
604
+ return props.theme.labelFontWeight;
574
605
  }, function (props) {
575
- return props.backgroundType === "dark" ? props.theme.disabledFontColorOnDark : props.theme.disabledFontColor;
606
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
576
607
  }, function (props) {
577
608
  return (props.prefixIconSrc || props.prefix || props.prefixIcon) && "32px" || "inherit";
578
609
  }, function (props) {
579
- return props.backgroundType === "dark" ? props.theme.fontColorBaseOnDark : props.theme.fontColorBase;
610
+ return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
611
+ }, function (props) {
612
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
580
613
  }, function (props) {
581
614
  return props.prefixIconSrc || props.prefixIcon || (props.prefix || props.suffix) && "translate(8px, 1.5px) scale(0.75);" || "translate(0, 1.5px) scale(0.75);";
582
615
  }, function (props) {
583
- return props.theme.fontFamilyBase;
616
+ return props.theme.fontFamily;
584
617
  }, function (props) {
585
618
  return props.prefixIcon && "translate(8px, 1.5px) scale(0.75);" || props.prefixIconSrc && "translate(8px, 1.5px) scale(0.75);" || props.prefix && "translate(8px, 1.5px) scale(0.75);" || "translate(0, 1.5px) scale(0.75);";
586
619
  }, function (props) {
587
620
  return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
588
621
  }, function (props) {
589
- return props.theme.fontFamilyBase;
622
+ return props.theme.fontFamily;
590
623
  }, function (props) {
591
- return props.backgroundType === "dark" ? props.theme.fontColorBaseOnDark : props.theme.fontColorBase;
624
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
592
625
  }, function (props) {
593
- return props.backgroundType === "dark" ? props.theme.fontColorBaseOnDark : props.theme.fontColorBase;
626
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
594
627
  }, function (props) {
595
- return props.backgroundType === "dark" ? props.theme.underlineColorOnDark || props.theme.fontColorBaseOnDark : props.theme.underlineColor || props.theme.fontColorBase;
628
+ return props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor;
596
629
  }, function (props) {
597
- return props.backgroundType === "dark" ? props.theme.fontColorBaseOnDark : props.theme.fontColorBase;
630
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
598
631
  }, function (props) {
599
- return props.theme.fontFamilyBase;
632
+ return props.theme.fontFamily;
600
633
  }, function (props) {
601
- return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark || props.theme.fontColorBaseOnDark : props.theme.underlineColor || props.theme.fontColorBase);
634
+ return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor);
602
635
  }, function (props) {
603
- return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark || props.theme.fontColorBaseOnDark : props.theme.underlineColor || props.theme.fontColorBase);
636
+ return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor);
604
637
  }, function (props) {
605
- return "2px solid ".concat(props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark || props.theme.fontColorBaseOnDark : props.theme.underlineFocusColor || props.theme.fontColorBase);
638
+ return "calc(".concat(props.theme.underlineThickness, " + 1px) solid ").concat(props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor);
606
639
  }, function (props) {
607
640
  return props.theme.underlineThickness;
608
641
  }, function (props) {
609
642
  return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
610
643
  }, function (props) {
611
- return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark || props.theme.fontColorBaseOnDark : props.theme.underlineFocusColor || props.theme.fontColorBase;
644
+ return props.theme.underlineThickness;
645
+ }, function (props) {
646
+ return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor;
612
647
  }, function (props) {
613
648
  return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
614
649
  }, function (props) {
615
- return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.disabledFontColorOnDark : props.theme.disabledFontColor, " !important");
650
+ return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor, " !important");
616
651
  }, function (props) {
617
- return (props.prefixIconSrc || props.prefix || props.prefixIcon) && "32px" || "inherit";
652
+ return props.theme.valueFontSize;
653
+ }, function (props) {
654
+ return props.theme.valueFontStyle;
618
655
  }, function (props) {
619
- return props.backgroundType === "dark" ? props.theme.fontColorBaseOnDark : props.theme.fontColorBase;
656
+ return props.theme.valueFontWeight;
620
657
  }, function (props) {
621
- return props.backgroundType === "dark" ? props.theme.disabledFontColorOnDark : props.theme.disabledFontColor;
658
+ return props.backgroundType === "dark" ? props.theme.valueFontColorOnDark : props.theme.valueFontColor;
622
659
  }, function (props) {
623
- return props.backgroundType === "dark" ? props.theme.fontColorBaseOnDark : props.theme.fontColorBase;
660
+ return (props.prefixIconSrc || props.prefix || props.prefixIcon) && "32px" || "inherit";
624
661
  }, function (props) {
625
- return props.theme.fontFamilyBase;
662
+ return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
626
663
  }, function (props) {
627
- return props.backgroundType === "dark" ? props.theme.fontColorBaseOnDark : props.theme.fontColorBase;
664
+ return props.theme.fontFamily;
628
665
  }, function (props) {
629
- return props.backgroundType === "dark" ? props.theme.fontColorBaseOnDark : props.theme.fontColorBase;
666
+ return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor;
630
667
  }, function (props) {
631
668
  return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
632
669
  }, function (props) {
633
- return props.backgroundType === "dark" ? props.theme.disabledFontColorOnDark : props.theme.disabledFontColor;
670
+ return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
634
671
  });
635
672
 
636
- DxcInputText.propTypes = {
673
+ V3DxcInputText.propTypes = {
637
674
  label: _propTypes["default"].string,
638
675
  name: _propTypes["default"].string,
639
676
  value: _propTypes["default"].string,
640
- theme: _propTypes["default"].oneOf(["light", "dark", ""]),
641
677
  assistiveText: _propTypes["default"].string,
642
678
  disabled: _propTypes["default"].bool,
643
679
  prefix: _propTypes["default"].string,
@@ -665,5 +701,5 @@ DxcInputText.propTypes = {
665
701
  autocompleteOptions: _propTypes["default"].any,
666
702
  tabIndex: _propTypes["default"].number
667
703
  };
668
- var _default = DxcInputText;
704
+ var _default = V3DxcInputText;
669
705
  exports["default"] = _default;
@@ -25,11 +25,7 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
25
25
 
26
26
  var _variables = require("../common/variables.js");
27
27
 
28
- var _linkedin = _interopRequireDefault(require("./linkedin.svg"));
29
-
30
- var _twitter = _interopRequireDefault(require("./twitter.svg"));
31
-
32
- var _facebook = _interopRequireDefault(require("./facebook.svg"));
28
+ var _Icons = require("./Icons");
33
29
 
34
30
  var _useTheme = _interopRequireDefault(require("../useTheme.js"));
35
31
 
@@ -124,7 +120,7 @@ function _templateObject2() {
124
120
  }
125
121
 
126
122
  function _templateObject() {
127
- var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: column;\n position: absolute;\n top: 64px;\n bottom: 0;\n left: 0;\n right:0;\n"]);
123
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: column;\n position: absolute;\n top: 64px;\n bottom: 0;\n left: 0;\n right: 0;\n"]);
128
124
 
129
125
  _templateObject = function _templateObject() {
130
126
  return data;
@@ -183,13 +179,13 @@ var defaultFooter = function defaultFooter() {
183
179
  }],
184
180
  socialLinks: [{
185
181
  href: "https://www.linkedin.com/company/dxctechnology",
186
- logoSrc: _linkedin["default"]
182
+ logo: _Icons.linkedinLogo
187
183
  }, {
188
184
  href: "https://twitter.com/dxctechnology",
189
- logoSrc: _twitter["default"]
185
+ logo: _Icons.twitterLogo
190
186
  }, {
191
187
  href: "https://www.facebook.com/DXCTechnology/",
192
- logoSrc: _facebook["default"]
188
+ logo: _Icons.facebookLogo
193
189
  }]
194
190
  });
195
191
  };
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.linkedinLogo = exports.twitterLogo = exports.facebookLogo = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var facebookLogo = _react["default"].createElement("svg", {
13
+ version: "1.1",
14
+ id: "Capa_1",
15
+ x: "0px",
16
+ y: "0px",
17
+ width: "438.536px",
18
+ height: "438.536px",
19
+ viewBox: "0 0 438.536 438.536",
20
+ fill: "#FFFFFF"
21
+ }, _react["default"].createElement("g", null, _react["default"].createElement("path", {
22
+ d: "M414.41,24.123C398.333,8.042,378.963,0,356.315,0H82.228C59.58,0,40.21,8.042,24.126,24.123 C8.045,40.207,0.003,59.576,0.003,82.225v274.084c0,22.647,8.042,42.018,24.123,58.102c16.084,16.084,35.454,24.126,58.102,24.126 h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225 C438.532,59.576,430.49,40.204,414.41,24.123z M373.155,225.548h-49.963V406.84h-74.802V225.548H210.99V163.02h37.401v-37.402 c0-26.838,6.283-47.107,18.843-60.813c12.559-13.706,33.304-20.555,62.242-20.555h49.963v62.526h-31.401 c-10.663,0-17.467,1.853-20.417,5.568c-2.949,3.711-4.428,10.23-4.428,19.558v31.119h56.534L373.155,225.548z"
23
+ })));
24
+
25
+ exports.facebookLogo = facebookLogo;
26
+
27
+ var twitterLogo = _react["default"].createElement("svg", {
28
+ version: "1.1",
29
+ id: "Capa_1",
30
+ x: "0px",
31
+ y: "0px",
32
+ width: "438.536px",
33
+ height: "438.536px",
34
+ viewBox: "0 0 438.536 438.536",
35
+ fill: "#FFFFFF"
36
+ }, _react["default"].createElement("g", null, _react["default"].createElement("path", {
37
+ d: "M414.41,24.123C398.333,8.042,378.963,0,356.315,0H82.228C59.58,0,40.21,8.042,24.126,24.123 C8.045,40.207,0.003,59.576,0.003,82.225v274.084c0,22.647,8.042,42.018,24.123,58.102c16.084,16.084,35.454,24.126,58.102,24.126 h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225 C438.532,59.576,430.49,40.204,414.41,24.123z M335.471,168.735c0.191,1.713,0.288,4.278,0.288,7.71 c0,15.989-2.334,32.025-6.995,48.104c-4.661,16.087-11.8,31.504-21.416,46.254c-9.606,14.749-21.074,27.791-34.396,39.115 c-13.325,11.32-29.311,20.365-47.968,27.117c-18.648,6.762-38.637,10.143-59.953,10.143c-33.116,0-63.76-8.952-91.931-26.836 c4.568,0.568,9.329,0.855,14.275,0.855c27.6,0,52.439-8.565,74.519-25.7c-12.941-0.185-24.506-4.179-34.688-11.991 c-10.185-7.803-17.273-17.699-21.271-29.691c4.947,0.76,8.658,1.137,11.132,1.137c4.187,0,9.042-0.76,14.56-2.279 c-13.894-2.669-25.598-9.562-35.115-20.697c-9.519-11.136-14.277-23.84-14.277-38.114v-0.571 c10.085,4.755,19.602,7.229,28.549,7.422c-17.321-11.613-25.981-28.265-25.981-49.963c0-10.66,2.758-20.747,8.278-30.264 c15.035,18.464,33.311,33.213,54.816,44.252c21.507,11.038,44.54,17.227,69.092,18.558c-0.95-3.616-1.427-8.186-1.427-13.704 c0-16.562,5.853-30.692,17.56-42.399c11.703-11.706,25.837-17.561,42.394-17.561c17.515,0,32.079,6.283,43.688,18.846 c13.134-2.474,25.892-7.33,38.26-14.56c-4.757,14.652-13.613,25.788-26.55,33.402c12.368-1.716,23.88-4.95,34.537-9.708 C357.458,149.793,347.462,160.166,335.471,168.735z"
38
+ })));
39
+
40
+ exports.twitterLogo = twitterLogo;
41
+
42
+ var linkedinLogo = _react["default"].createElement("svg", {
43
+ version: "1.1",
44
+ id: "Capa_1",
45
+ x: "0px",
46
+ y: "0px",
47
+ width: "438.536px",
48
+ height: "438.536px",
49
+ viewBox: "0 0 438.536 438.536",
50
+ fill: "#FFFFFF"
51
+ }, _react["default"].createElement("g", null, _react["default"].createElement("path", {
52
+ d: "M414.41,24.123C398.333,8.042,378.963,0,356.315,0H82.228C59.58,0,40.21,8.042,24.126,24.123 C8.045,40.207,0.003,59.576,0.003,82.225v274.084c0,22.647,8.042,42.018,24.123,58.102c16.084,16.084,35.454,24.126,58.102,24.126 h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225 C438.532,59.576,430.49,40.204,414.41,24.123z M133.618,367.157H67.666V169.016h65.952V367.157z M127.626,132.332 c-6.851,6.567-15.893,9.851-27.124,9.851h-0.288c-10.848,0-19.648-3.284-26.407-9.851c-6.76-6.567-10.138-14.703-10.138-24.41 c0-9.897,3.476-18.083,10.421-24.556c6.95-6.471,15.942-9.708,26.98-9.708c11.039,0,19.89,3.237,26.553,9.708 c6.661,6.473,10.088,14.659,10.277,24.556C137.899,117.625,134.477,125.761,127.626,132.332z M370.873,367.157h-65.952v-105.92 c0-29.879-11.036-44.823-33.116-44.823c-8.374,0-15.42,2.331-21.128,6.995c-5.715,4.661-9.996,10.324-12.847,16.991 c-1.335,3.422-1.999,8.75-1.999,15.981v110.775h-65.952c0.571-119.529,0.571-185.579,0-198.142h65.952v27.974 c13.867-21.681,33.558-32.544,59.101-32.544c22.84,0,41.21,7.52,55.104,22.554c13.895,15.037,20.841,37.214,20.841,66.519v113.64 H370.873z"
53
+ })));
54
+
55
+ exports.linkedinLogo = linkedinLogo;
package/dist/link/Link.js CHANGED
@@ -26,7 +26,7 @@ var _variables = require("../common/variables.js");
26
26
  var _useTheme = _interopRequireDefault(require("../useTheme.js"));
27
27
 
28
28
  function _templateObject6() {
29
- var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n height: ", ";\n ", ": ", ";\n overflow: hidden;\n img,\n svg {\n height: 100%;\n width: 100%;\n }\n"]);
29
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n height: ", ";\n ", ";\n overflow: hidden;\n \n img,\n svg {\n height: 100%;\n width: 100%;\n }\n"]);
30
30
 
31
31
  _templateObject6 = function _templateObject6() {
32
32
  return data;
@@ -36,7 +36,7 @@ function _templateObject6() {
36
36
  }
37
37
 
38
38
  function _templateObject5() {
39
- var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n height: ", ";\n ", ": ", ";\n"]);
39
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n height: ", ";\n ", ";\n"]);
40
40
 
41
41
  _templateObject5 = function _templateObject5() {
42
42
  return data;
@@ -56,7 +56,7 @@ function _templateObject4() {
56
56
  }
57
57
 
58
58
  function _templateObject3() {
59
- var data = (0, _taggedTemplateLiteral2["default"])(["\n background: none;\n border: none;\n padding: 0;\n cursor: pointer;\n font-family: inherit;\n text-decoration: none;\n ", "\n color: ", ";\n\n ", "\n ", "\n ", "\n\n &:hover {\n ", "\n }\n &:focus {\n outline-color: ", ";\n outline-offset: 1px;\n }\n"]);
59
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n background: none;\n border: none;\n padding: 0;\n cursor: pointer;\n font-family: inherit;\n text-decoration-color: transparent;\n\n ", "\n ", "\n color: ", ";\n ", "\n\n &:hover {\n ", "\n }\n &:focus {\n outline-color: ", ";\n outline-width: 2px;\n outline-offset: 1px;\n ", "\n }\n &:active {\n ", "\n }\n"]);
60
60
 
61
61
  _templateObject3 = function _templateObject3() {
62
62
  return data;
@@ -66,7 +66,7 @@ function _templateObject3() {
66
66
  }
67
67
 
68
68
  function _templateObject2() {
69
- var data = (0, _taggedTemplateLiteral2["default"])(["\n text-decoration: none;\n color: ", ";\n\n ", "\n ", "\n ", "\n\n &:visited {\n ", "\n }\n &:hover {\n ", "\n }\n &:focus {\n outline-color: ", ";\n }\n"]);
69
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n ", "\n\n text-decoration-color: transparent;\n ", "\n\n &:visited {\n color: ", ";\n &:hover {\n ", "\n }\n }\n &:hover {\n ", "\n }\n &:focus {\n outline-color: ", ";\n outline-width: 2px;\n ", "\n }\n &:active {\n ", "\n }\n"]);
70
70
 
71
71
  _templateObject2 = function _templateObject2() {
72
72
  return data;
@@ -86,9 +86,7 @@ function _templateObject() {
86
86
  }
87
87
 
88
88
  var DxcLink = function DxcLink(_ref) {
89
- var _ref$underlined = _ref.underlined,
90
- underlined = _ref$underlined === void 0 ? true : _ref$underlined,
91
- _ref$inheritColor = _ref.inheritColor,
89
+ var _ref$inheritColor = _ref.inheritColor,
92
90
  inheritColor = _ref$inheritColor === void 0 ? false : _ref$inheritColor,
93
91
  _ref$disabled = _ref.disabled,
94
92
  disabled = _ref$disabled === void 0 ? false : _ref$disabled,
@@ -126,7 +124,6 @@ var DxcLink = function DxcLink(_ref) {
126
124
  onClick: !disabled && onClick,
127
125
  margin: margin,
128
126
  disabled: disabled,
129
- underlined: underlined,
130
127
  inheritColor: inheritColor
131
128
  }, linkContent) : _react["default"].createElement(StyledLink, {
132
129
  tabIndex: tabIndex,
@@ -134,7 +131,6 @@ var DxcLink = function DxcLink(_ref) {
134
131
  target: newWindow ? "_blank" : "_self",
135
132
  margin: margin,
136
133
  disabled: disabled,
137
- underlined: underlined,
138
134
  inheritColor: inheritColor
139
135
  }, linkContent)));
140
136
  };
@@ -154,33 +150,39 @@ var DxcLinkContainer = _styledComponents["default"].div(_templateObject(), funct
154
150
  var StyledLink = _styledComponents["default"].a(_templateObject2(), function (props) {
155
151
  return props.inheritColor ? "inherit" : !props.disabled ? props.theme.fontColor : props.theme.disabledColor;
156
152
  }, function (props) {
157
- return props.underlined && "padding-bottom: ".concat(props.theme.underlineSpacing, " !important; \n border-bottom: ").concat(props.theme.underlineThickness, " ").concat(props.theme.underlineStyle, " ").concat(!props.inheritColor ? !props.disabled ? props.theme.underlineColor : props.theme.disabledUnderlineColor : "", ";");
153
+ return props.disabled ? "pointer-events: none;" : "";
158
154
  }, function (props) {
159
- return !props.underlined ? "text-decoration-color: transparent;" : "";
155
+ return "padding-bottom: ".concat(props.theme.underlineSpacing, ";\n border-bottom: ").concat(props.theme.underlineThickness, " ").concat(props.theme.underlineStyle, " transparent;");
160
156
  }, function (props) {
161
- return props.disabled ? "pointer-events: none;" : "";
157
+ return !props.inheritColor ? props.theme.visitedFontColor : "";
162
158
  }, function (props) {
163
- return props.underlined && !props.disabled ? "color: ".concat(props.theme.visitedFontColor, " !important;\n border-bottom-color: ").concat(props.theme.visitedUnderlineColor, ";") : "";
159
+ return "color: ".concat(props.theme.visitedFontColor, ";\n border-bottom-color: ").concat(props.theme.visitedUnderlineColor, ";");
164
160
  }, function (props) {
165
- return !props.disabled && "color: ".concat(props.theme.hoverFontColor, " !important;\n padding-bottom: ").concat(props.theme.underlineSpacing, " !important;\n border-bottom: ").concat(props.theme.underlineThickness, " ").concat(props.theme.underlineStyle, " ").concat(props.theme.hoverUnderlineColor, ";\n cursor: pointer;");
161
+ return "color: ".concat(props.theme.hoverFontColor, ";\n border-bottom-color: ").concat(props.theme.hoverUnderlineColor, ";\n cursor: pointer;");
166
162
  }, function (props) {
167
163
  return props.theme.focusColor;
164
+ }, function (props) {
165
+ return props.disabled && "outline: none";
166
+ }, function (props) {
167
+ return "color: ".concat(props.theme.activeFontColor, " !important;\n border-bottom-color: ").concat(props.theme.activeUnderlineColor, " !important;");
168
168
  });
169
169
 
170
170
  var StyledButton = _styledComponents["default"].button(_templateObject3(), function (props) {
171
+ return "padding-bottom: ".concat(props.theme.underlineSpacing, ";\n border-bottom: ").concat(props.theme.underlineThickness, " ").concat(props.theme.underlineStyle, " transparent;");
172
+ }, function (props) {
171
173
  return props.disabled && "cursor: default;";
172
174
  }, function (props) {
173
175
  return props.inheritColor ? "inherit" : !props.disabled ? props.theme.fontColor : props.theme.disabledColor;
174
- }, function (props) {
175
- return props.underlined && "padding-bottom: ".concat(props.theme.underlineSpacing, " !important; \n border-bottom: ").concat(props.theme.underlineThickness, " ").concat(props.theme.underlineStyle, " ").concat(!props.inheritColor ? !props.disabled ? props.theme.underlineColor : props.theme.disabledUnderlineColor : "", ";");
176
- }, function (props) {
177
- return !props.underlined ? "text-decoration-color: transparent;" : "";
178
176
  }, function (props) {
179
177
  return props.disabled ? "pointer-events: none;" : "";
180
178
  }, function (props) {
181
- return !props.disabled && "color: ".concat(props.theme.hoverFontColor, " !important;\n padding-bottom: ").concat(props.theme.underlineSpacing, " !important;\n border-bottom: ").concat(props.theme.underlineThickness, " ").concat(props.theme.underlineStyle, " ").concat(props.theme.hoverUnderlineColor, ";\n cursor: pointer;");
179
+ return "color: ".concat(props.theme.hoverFontColor, ";\n border-bottom-color: ").concat(props.theme.hoverUnderlineColor, ";\n cursor: pointer;");
182
180
  }, function (props) {
183
181
  return props.theme.focusColor;
182
+ }, function (props) {
183
+ return props.disabled && "outline: none";
184
+ }, function (props) {
185
+ return "color: ".concat(props.theme.activeFontColor, " !important;\n border-bottom-color: ").concat(props.theme.activeUnderlineColor, " !important;");
184
186
  });
185
187
 
186
188
  var LinkText = _styledComponents["default"].div(_templateObject4(), function (props) {
@@ -202,9 +204,7 @@ var LinkIcon = _styledComponents["default"].img(_templateObject5(), function (pr
202
204
  }, function (props) {
203
205
  return props.theme.iconSize;
204
206
  }, function (props) {
205
- return props.iconPosition === "before" ? "margin-right" : "margin-left";
206
- }, function (props) {
207
- return props.theme.iconGutter;
207
+ return "".concat(props.iconPosition === "before" ? "margin-right" : "margin-left", ": ").concat(props.theme.iconSpacing);
208
208
  });
209
209
 
210
210
  var LinkIconContainer = _styledComponents["default"].div(_templateObject6(), function (props) {
@@ -212,13 +212,10 @@ var LinkIconContainer = _styledComponents["default"].div(_templateObject6(), fun
212
212
  }, function (props) {
213
213
  return props.theme.iconSize;
214
214
  }, function (props) {
215
- return props.iconPosition === "before" ? "margin-right" : "margin-left";
216
- }, function (props) {
217
- return props.theme.iconGutter;
215
+ return "".concat(props.iconPosition === "before" ? "margin-right" : "margin-left", ": ").concat(props.theme.iconSpacing);
218
216
  });
219
217
 
220
218
  DxcLink.propTypes = {
221
- underlined: _propTypes["default"].bool,
222
219
  inheritColor: _propTypes["default"].bool,
223
220
  disabled: _propTypes["default"].bool,
224
221
  icon: _propTypes["default"].oneOfType([_propTypes["default"].element, _propTypes["default"].func]),
package/dist/main.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ export { default as DxcAlert } from "./alert/index";
2
+ export { default as DxcSelect } from "./select/index";
3
+ export { default as DxcTextInput } from "./text-input/index";
4
+ export { default as DxcDateInput } from "./date-input/index";
5
+ export { default as DxcTextarea } from "./textarea/index";
6
+ export { default as DxcNumberInput } from "./number-input/index";
7
+ export { default as DxcPasswordInput } from "./password-input/index";
8
+ export { default as DxcFileInput } from "./file-input/index";