@dxc-technology/halstack-react 0.0.0-422fa7b → 0.0.0-4254e6c

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 (263) hide show
  1. package/BackgroundColorContext.js +50 -0
  2. package/ThemeContext.js +246 -0
  3. package/{dist/select/Select.js → V3Select/V3Select.js} +38 -132
  4. package/V3Select/index.d.ts +27 -0
  5. package/{dist/textarea/Textarea.js → V3Textarea/V3Textarea.js} +14 -18
  6. package/V3Textarea/index.d.ts +27 -0
  7. package/{dist/accordion → accordion}/Accordion.js +23 -87
  8. package/accordion/index.d.ts +28 -0
  9. package/{dist/accordion-group → accordion-group}/AccordionGroup.js +13 -15
  10. package/accordion-group/index.d.ts +16 -0
  11. package/alert/Alert.d.ts +4 -0
  12. package/{dist/alert → alert}/Alert.js +38 -151
  13. package/alert/types.d.ts +49 -0
  14. package/alert/types.js +5 -0
  15. package/badge/Badge.js +59 -0
  16. package/{dist/box → box}/Box.js +9 -13
  17. package/box/index.d.ts +25 -0
  18. package/button/Button.d.ts +4 -0
  19. package/{dist/button → button}/Button.js +16 -72
  20. package/button/Button.stories.tsx +293 -0
  21. package/button/types.d.ts +57 -0
  22. package/button/types.js +5 -0
  23. package/{dist/card → card}/Card.js +19 -73
  24. package/card/index.d.ts +22 -0
  25. package/checkbox/Checkbox.d.ts +4 -0
  26. package/{dist/checkbox → checkbox}/Checkbox.js +16 -63
  27. package/checkbox/types.d.ts +61 -0
  28. package/checkbox/types.js +5 -0
  29. package/{dist/chip → chip}/Chip.js +17 -61
  30. package/chip/index.d.ts +22 -0
  31. package/{dist/common → common}/OpenSans.css +0 -0
  32. package/{dist/common → common}/RequiredComponent.js +3 -11
  33. package/{dist/common → common}/fonts/OpenSans-Bold.ttf +0 -0
  34. package/{dist/common → common}/fonts/OpenSans-BoldItalic.ttf +0 -0
  35. package/{dist/common → common}/fonts/OpenSans-ExtraBold.ttf +0 -0
  36. package/{dist/common → common}/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  37. package/{dist/common → common}/fonts/OpenSans-Italic.ttf +0 -0
  38. package/{dist/common → common}/fonts/OpenSans-Light.ttf +0 -0
  39. package/{dist/common → common}/fonts/OpenSans-LightItalic.ttf +0 -0
  40. package/{dist/common → common}/fonts/OpenSans-Regular.ttf +0 -0
  41. package/{dist/common → common}/fonts/OpenSans-SemiBold.ttf +0 -0
  42. package/{dist/common → common}/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
  43. package/{dist/common → common}/utils.js +0 -0
  44. package/{dist/common → common}/variables.js +211 -170
  45. package/{dist/date → date}/Date.js +16 -22
  46. package/date/index.d.ts +27 -0
  47. package/date-input/DateInput.d.ts +4 -0
  48. package/{dist/new-date/NewDate.js → date-input/DateInput.js} +55 -94
  49. package/date-input/types.d.ts +100 -0
  50. package/date-input/types.js +5 -0
  51. package/{dist/dialog → dialog}/Dialog.js +16 -50
  52. package/dialog/index.d.ts +18 -0
  53. package/{dist/dropdown → dropdown}/Dropdown.js +37 -131
  54. package/dropdown/index.d.ts +26 -0
  55. package/{dist/file-input → file-input}/FileInput.js +49 -161
  56. package/{dist/file-input → file-input}/FileItem.js +36 -123
  57. package/{dist/file-input → file-input}/index.d.ts +1 -1
  58. package/{dist/footer → footer}/Footer.js +53 -151
  59. package/footer/Icons.js +77 -0
  60. package/footer/index.d.ts +25 -0
  61. package/header/Header.js +326 -0
  62. package/header/Icons.js +59 -0
  63. package/header/index.d.ts +25 -0
  64. package/{dist/heading → heading}/Heading.js +30 -72
  65. package/heading/index.d.ts +17 -0
  66. package/input-text/Icons.js +22 -0
  67. package/{dist/input-text → input-text}/InputText.js +37 -133
  68. package/input-text/index.d.ts +36 -0
  69. package/{dist/layout → layout}/ApplicationLayout.js +35 -131
  70. package/layout/Icons.js +55 -0
  71. package/{dist/link → link}/Link.js +18 -72
  72. package/link/index.d.ts +23 -0
  73. package/main.d.ts +44 -0
  74. package/{dist/main.js → main.js} +99 -103
  75. package/{dist/number/Number.js → number-input/NumberInput.js} +9 -17
  76. package/{dist/number/NumberContext.js → number-input/NumberInputContext.js} +2 -2
  77. package/{dist/number → number-input}/index.d.ts +3 -3
  78. package/package.json +32 -25
  79. package/paginator/Icons.js +66 -0
  80. package/paginator/Paginator.d.ts +4 -0
  81. package/paginator/Paginator.js +198 -0
  82. package/paginator/types.d.ts +38 -0
  83. package/paginator/types.js +5 -0
  84. package/{dist/password/Password.js → password-input/PasswordInput.js} +26 -27
  85. package/password-input/PasswordInput.stories.jsx +131 -0
  86. package/{dist/password → password-input}/index.d.ts +5 -5
  87. package/{dist/progress-bar → progress-bar}/ProgressBar.js +18 -72
  88. package/progress-bar/index.d.ts +18 -0
  89. package/radio/Radio.d.ts +4 -0
  90. package/{dist/radio → radio}/Radio.js +15 -50
  91. package/radio/types.d.ts +54 -0
  92. package/radio/types.js +5 -0
  93. package/{dist/resultsetTable → resultsetTable}/ResultsetTable.js +35 -119
  94. package/resultsetTable/index.d.ts +19 -0
  95. package/select/Select.js +865 -0
  96. package/select/index.d.ts +131 -0
  97. package/{dist/sidenav → sidenav}/Sidenav.js +15 -49
  98. package/sidenav/index.d.ts +13 -0
  99. package/{dist/slider → slider}/Slider.js +79 -58
  100. package/slider/index.d.ts +29 -0
  101. package/{dist/spinner → spinner}/Spinner.js +38 -152
  102. package/spinner/index.d.ts +17 -0
  103. package/switch/Switch.d.ts +4 -0
  104. package/{dist/switch → switch}/Switch.js +26 -69
  105. package/switch/types.d.ts +58 -0
  106. package/switch/types.js +5 -0
  107. package/{dist/table → table}/Table.js +10 -24
  108. package/table/index.d.ts +13 -0
  109. package/{dist/tabs → tabs}/Tabs.js +26 -110
  110. package/tabs/index.d.ts +19 -0
  111. package/{dist/tag → tag}/Tag.js +22 -96
  112. package/tag/index.d.ts +24 -0
  113. package/{dist/new-input-text/NewInputText.js → text-input/TextInput.js} +270 -412
  114. package/{dist/new-input-text → text-input}/index.d.ts +1 -1
  115. package/{dist/new-textarea/NewTextarea.js → textarea/Textarea.js} +27 -75
  116. package/{dist/new-textarea → textarea}/index.d.ts +1 -1
  117. package/{dist/toggle → toggle}/Toggle.js +15 -49
  118. package/toggle/index.d.ts +21 -0
  119. package/toggle-group/ToggleGroup.js +243 -0
  120. package/toggle-group/index.d.ts +21 -0
  121. package/{dist/upload → upload}/Upload.js +11 -15
  122. package/upload/buttons-upload/ButtonsUpload.js +111 -0
  123. package/upload/buttons-upload/Icons.js +40 -0
  124. package/upload/dragAndDropArea/DragAndDropArea.js +225 -0
  125. package/upload/dragAndDropArea/Icons.js +39 -0
  126. package/upload/file-upload/FileToUpload.js +115 -0
  127. package/upload/file-upload/Icons.js +66 -0
  128. package/{dist/upload → upload}/files-upload/FilesToUpload.js +12 -26
  129. package/upload/index.d.ts +15 -0
  130. package/upload/transaction/Icons.js +160 -0
  131. package/upload/transaction/Transaction.js +104 -0
  132. package/upload/transactions/Transactions.js +94 -0
  133. package/{dist/useTheme.js → useTheme.js} +0 -0
  134. package/wizard/Icons.js +65 -0
  135. package/{dist/wizard → wizard}/Wizard.js +32 -172
  136. package/wizard/index.d.ts +18 -0
  137. package/README.md +0 -66
  138. package/babel.config.js +0 -8
  139. package/dist/BackgroundColorContext.js +0 -46
  140. package/dist/ThemeContext.js +0 -248
  141. package/dist/alert/index.d.ts +0 -51
  142. package/dist/badge/Badge.js +0 -63
  143. package/dist/checkbox/Checkbox.stories.js +0 -144
  144. package/dist/checkbox/readme.md +0 -116
  145. package/dist/date/Date.stories.js +0 -205
  146. package/dist/date/readme.md +0 -73
  147. package/dist/footer/Footer.stories.js +0 -94
  148. package/dist/footer/dxc_logo.svg +0 -15
  149. package/dist/footer/readme.md +0 -41
  150. package/dist/header/Header.js +0 -403
  151. package/dist/header/Header.stories.js +0 -176
  152. package/dist/header/close_icon.svg +0 -1
  153. package/dist/header/dxc_logo_black.svg +0 -8
  154. package/dist/header/hamb_menu_black.svg +0 -1
  155. package/dist/header/hamb_menu_white.svg +0 -1
  156. package/dist/header/readme.md +0 -33
  157. package/dist/input-text/InputText.stories.js +0 -209
  158. package/dist/input-text/error.svg +0 -1
  159. package/dist/input-text/readme.md +0 -91
  160. package/dist/layout/facebook.svg +0 -45
  161. package/dist/layout/linkedin.svg +0 -50
  162. package/dist/layout/twitter.svg +0 -53
  163. package/dist/link/readme.md +0 -51
  164. package/dist/main.d.ts +0 -8
  165. package/dist/new-date/index.d.ts +0 -95
  166. package/dist/new-select/NewSelect.js +0 -836
  167. package/dist/new-select/index.d.ts +0 -53
  168. package/dist/paginator/Paginator.js +0 -289
  169. package/dist/paginator/images/next.svg +0 -3
  170. package/dist/paginator/images/nextPage.svg +0 -3
  171. package/dist/paginator/images/previous.svg +0 -3
  172. package/dist/paginator/images/previousPage.svg +0 -3
  173. package/dist/paginator/readme.md +0 -50
  174. package/dist/password/styles.css +0 -3
  175. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  176. package/dist/progress-bar/readme.md +0 -63
  177. package/dist/radio/Radio.stories.js +0 -166
  178. package/dist/radio/readme.md +0 -70
  179. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  180. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  181. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  182. package/dist/slider/Slider.stories.js +0 -241
  183. package/dist/slider/readme.md +0 -64
  184. package/dist/spinner/Spinner.stories.js +0 -183
  185. package/dist/spinner/readme.md +0 -65
  186. package/dist/switch/Switch.stories.js +0 -134
  187. package/dist/switch/readme.md +0 -133
  188. package/dist/tabs/Tabs.stories.js +0 -130
  189. package/dist/tabs/readme.md +0 -78
  190. package/dist/tabs-for-sections/TabsForSections.js +0 -92
  191. package/dist/tabs-for-sections/readme.md +0 -78
  192. package/dist/toggle/Toggle.stories.js +0 -297
  193. package/dist/toggle/readme.md +0 -80
  194. package/dist/toggle-group/ToggleGroup.js +0 -223
  195. package/dist/upload/Upload.stories.js +0 -72
  196. package/dist/upload/buttons-upload/ButtonsUpload.js +0 -139
  197. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  198. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  199. package/dist/upload/dragAndDropArea/DragAndDropArea.js +0 -329
  200. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  201. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  202. package/dist/upload/file-upload/FileToUpload.js +0 -184
  203. package/dist/upload/file-upload/audio-icon.svg +0 -4
  204. package/dist/upload/file-upload/close.svg +0 -4
  205. package/dist/upload/file-upload/file-icon.svg +0 -4
  206. package/dist/upload/file-upload/video-icon.svg +0 -4
  207. package/dist/upload/readme.md +0 -37
  208. package/dist/upload/transaction/Transaction.js +0 -175
  209. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  210. package/dist/upload/transaction/audio-icon.svg +0 -4
  211. package/dist/upload/transaction/error-icon.svg +0 -4
  212. package/dist/upload/transaction/file-icon-err.svg +0 -4
  213. package/dist/upload/transaction/file-icon.svg +0 -4
  214. package/dist/upload/transaction/image-icon-err.svg +0 -4
  215. package/dist/upload/transaction/image-icon.svg +0 -4
  216. package/dist/upload/transaction/success-icon.svg +0 -4
  217. package/dist/upload/transaction/video-icon-err.svg +0 -4
  218. package/dist/upload/transaction/video-icon.svg +0 -4
  219. package/dist/upload/transactions/Transactions.js +0 -138
  220. package/dist/wizard/invalid_icon.svg +0 -5
  221. package/dist/wizard/valid_icon.svg +0 -5
  222. package/dist/wizard/validation-wrong.svg +0 -6
  223. package/test/Accordion.test.js +0 -33
  224. package/test/AccordionGroup.test.js +0 -125
  225. package/test/Alert.test.js +0 -53
  226. package/test/Box.test.js +0 -10
  227. package/test/Button.test.js +0 -18
  228. package/test/Card.test.js +0 -30
  229. package/test/Checkbox.test.js +0 -45
  230. package/test/Chip.test.js +0 -25
  231. package/test/Date.test.js +0 -393
  232. package/test/Dialog.test.js +0 -23
  233. package/test/Dropdown.test.js +0 -145
  234. package/test/FileInput.test.js +0 -201
  235. package/test/Footer.test.js +0 -99
  236. package/test/Header.test.js +0 -39
  237. package/test/Heading.test.js +0 -35
  238. package/test/InputText.test.js +0 -240
  239. package/test/Link.test.js +0 -43
  240. package/test/NewDate.test.js +0 -232
  241. package/test/NewInputText.test.js +0 -734
  242. package/test/NewTextarea.test.js +0 -195
  243. package/test/Number.test.js +0 -257
  244. package/test/Paginator.test.js +0 -177
  245. package/test/Password.test.js +0 -83
  246. package/test/ProgressBar.test.js +0 -35
  247. package/test/Radio.test.js +0 -37
  248. package/test/ResultsetTable.test.js +0 -329
  249. package/test/Select.test.js +0 -212
  250. package/test/Sidenav.test.js +0 -45
  251. package/test/Slider.test.js +0 -82
  252. package/test/Spinner.test.js +0 -32
  253. package/test/Switch.test.js +0 -45
  254. package/test/Table.test.js +0 -36
  255. package/test/Tabs.test.js +0 -109
  256. package/test/TabsForSections.test.js +0 -34
  257. package/test/Tag.test.js +0 -32
  258. package/test/TextArea.test.js +0 -52
  259. package/test/ToggleGroup.test.js +0 -81
  260. package/test/Upload.test.js +0 -60
  261. package/test/Wizard.test.js +0 -130
  262. package/test/mocks/pngMock.js +0 -1
  263. package/test/mocks/svgMock.js +0 -1
@@ -1,209 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
6
-
7
- var _react = _interopRequireDefault(require("react"));
8
-
9
- var _react2 = require("@storybook/react");
10
-
11
- var _addonActions = require("@storybook/addon-actions");
12
-
13
- var _addonKnobs = require("@storybook/addon-knobs");
14
-
15
- var _amazon = _interopRequireDefault(require("../../.storybook/public/amazon.svg"));
16
-
17
- var _readme = _interopRequireDefault(require("./readme.md"));
18
-
19
- var _InputText = _interopRequireDefault(require("./InputText"));
20
-
21
- var onChange = (0, _addonActions.action)("onChange");
22
-
23
- onChange.toString = function () {
24
- return "onChangeHandler";
25
- };
26
-
27
- var onBlur = (0, _addonActions.action)("onBlur");
28
-
29
- onBlur.toString = function () {
30
- return "onBlurHandler";
31
- };
32
-
33
- var onClickIcon = (0, _addonActions.action)("onClickIcon");
34
-
35
- onClickIcon.toString = function () {
36
- return "onClickIconHandler";
37
- };
38
-
39
- (0, _react2.storiesOf)("Form Components|Text", module).add("Component", function () {
40
- return _react["default"].createElement("div", null, _react["default"].createElement("h3", null, "Light"), _react["default"].createElement("div", null, _react["default"].createElement(_InputText["default"], {
41
- disabled: false,
42
- label: "Normal Input",
43
- error: false,
44
- value: "Test Value",
45
- onChange: onChange,
46
- onBlur: onBlur,
47
- required: true,
48
- assistiveText: "Assistive Text Here"
49
- }), _react["default"].createElement(_InputText["default"], {
50
- disabled: false,
51
- label: "With Assistive Text",
52
- assistiveText: "Assistive Text Here",
53
- error: true,
54
- onChange: onChange,
55
- onBlur: onBlur,
56
- required: true
57
- }), _react["default"].createElement(_InputText["default"], {
58
- disabled: false,
59
- label: "With Prefix text",
60
- prefijo: "Kg",
61
- onChange: onChange,
62
- onBlur: onBlur,
63
- assistiveText: "Assistive Text Here"
64
- }), _react["default"].createElement(_InputText["default"], {
65
- disabled: true,
66
- label: "With Sufix text",
67
- sufix: "\u20AC",
68
- onChange: onChange,
69
- onBlur: onBlur
70
- }), _react["default"].createElement(_InputText["default"], {
71
- disabled: true,
72
- label: "With Prefix icon",
73
- prefijoIconSrc: _amazon["default"],
74
- onChange: onChange,
75
- onBlur: onBlur,
76
- onClickIcon: onClickIcon
77
- }), _react["default"].createElement(_InputText["default"], {
78
- disabled: true,
79
- label: "With Sufix icon",
80
- sufixIconSrc: _amazon["default"],
81
- onChange: onChange,
82
- onBlur: onBlur,
83
- onClickIcon: onClickIcon
84
- }), _react["default"].createElement(_InputText["default"], {
85
- disabled: false,
86
- label: "With Sufix icon",
87
- sufixIconSrc: _amazon["default"],
88
- onChange: onChange,
89
- onBlur: onBlur,
90
- onClickIcon: onClickIcon
91
- }), _react["default"].createElement(_InputText["default"], {
92
- disabled: false,
93
- label: "Multiline",
94
- multiline: true,
95
- onChange: onChange,
96
- onBlur: onBlur,
97
- onClickIcon: onClickIcon
98
- })), _react["default"].createElement("h3", null, "Dark"), _react["default"].createElement("div", {
99
- style: {
100
- background: "black"
101
- }
102
- }, _react["default"].createElement(_InputText["default"], {
103
- disabled: false,
104
- theme: "dark",
105
- label: "Normal Input",
106
- error: false,
107
- value: "Test Value",
108
- onChange: onChange,
109
- onBlur: onBlur,
110
- required: true,
111
- assistiveText: "Assistive Text Here"
112
- }), _react["default"].createElement(_InputText["default"], {
113
- disabled: false,
114
- theme: "dark",
115
- label: "With Assistive Text",
116
- assistiveText: "Assistive Text Here",
117
- error: true,
118
- onChange: onChange,
119
- onBlur: onBlur,
120
- required: true
121
- }), _react["default"].createElement(_InputText["default"], {
122
- disabled: false,
123
- theme: "dark",
124
- label: "With Prefix text",
125
- prefijo: "Kg",
126
- onChange: onChange,
127
- onBlur: onBlur,
128
- assistiveText: "Assistive Text Here"
129
- }), _react["default"].createElement(_InputText["default"], {
130
- disabled: true,
131
- label: "With Sufix text",
132
- sufix: "\u20AC",
133
- theme: "dark",
134
- onChange: onChange,
135
- onBlur: onBlur
136
- }), _react["default"].createElement(_InputText["default"], {
137
- disabled: false,
138
- theme: "dark",
139
- label: "With Prefix icon",
140
- prefijoIconSrc: _amazon["default"],
141
- onChange: onChange,
142
- onBlur: onBlur,
143
- onClickIcon: onClickIcon
144
- }), _react["default"].createElement(_InputText["default"], {
145
- disabled: false,
146
- theme: "dark",
147
- label: "With Sufix icon",
148
- sufixIconSrc: _amazon["default"],
149
- onChange: onChange,
150
- onBlur: onBlur,
151
- onClickIcon: onClickIcon
152
- }), _react["default"].createElement(_InputText["default"], {
153
- disabled: false,
154
- theme: "dark",
155
- label: "With Sufix icon",
156
- sufixIconSrc: _amazon["default"],
157
- onChange: onChange,
158
- onBlur: onBlur,
159
- onClickIcon: onClickIcon
160
- }), _react["default"].createElement(_InputText["default"], {
161
- disabled: false,
162
- label: "Multiline",
163
- multiline: true,
164
- sufix: "\u20AC",
165
- prefijo: "Kg",
166
- theme: "dark",
167
- onChange: onChange,
168
- onBlur: onBlur,
169
- onClickIcon: onClickIcon
170
- })));
171
- }, {
172
- notes: {
173
- markdown: _readme["default"]
174
- }
175
- });
176
-
177
- var knobProps = function knobProps() {
178
- return {
179
- label: (0, _addonKnobs.text)("Label", "Test Label"),
180
- theme: (0, _addonKnobs.select)("Theme", {
181
- light: "light",
182
- dark: "dark"
183
- }, "light"),
184
- assistiveText: (0, _addonKnobs.text)("Assistive text", "Helper text"),
185
- disabled: (0, _addonKnobs["boolean"])("Disabled", false),
186
- prefijo: (0, _addonKnobs.text)("Prefix word", ""),
187
- sufix: (0, _addonKnobs.text)("Sufix word", ""),
188
- required: (0, _addonKnobs["boolean"])("Required", false),
189
- error: (0, _addonKnobs["boolean"])("Error", false),
190
- multiline: (0, _addonKnobs["boolean"])("Multiline", false)
191
- };
192
- };
193
-
194
- (0, _react2.storiesOf)("Form Components|Text", module).add("Knobs example", function () {
195
- var props = knobProps();
196
- return _react["default"].createElement("div", {
197
- style: {
198
- background: props.theme === "dark" && "black" || "transparent"
199
- }
200
- }, _react["default"].createElement(_InputText["default"], (0, _extends2["default"])({}, props, {
201
- onChange: onChange,
202
- onBlur: onBlur,
203
- onClickIcon: onClickIcon
204
- })));
205
- }, {
206
- notes: {
207
- markdown: _readme["default"]
208
- }
209
- });
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" height="24" width="24" style=""><rect id="backgroundrect" width="100%" height="100%" x="0" y="0" fill="none" stroke="none"/><g class="currentLayer" style=""><title>Layer 1</title><path d="M0 0h24v24H0V0z" fill="transparent" id="svg_1" class="" stroke="transparent" stroke-opacity="1" fill-opacity="1"/><path d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" id="svg_2" class="selected" stroke="#eb1a1a" stroke-opacity="1" fill="#FF6161" fill-opacity="1"/></g></svg>
@@ -1,91 +0,0 @@
1
- # DXC Input Text Component
2
-
3
- ## Props
4
-
5
- <table>
6
- <tr style="background-color: grey">
7
- <td>Name</td>
8
- <td>Default</td>
9
- <td>Description</td>
10
- </tr>
11
- <tr>
12
- <td>value: string</td>
13
- <td><code></code></td>
14
- <td>The value of the input element.</td>
15
- </tr>
16
- <tr>
17
- <td>label: string</td>
18
- <td></td>
19
- <td>Text to be placed next to the input.</td>
20
- </tr>
21
- <tr>
22
- <td>assistiveText: string</td>
23
- <td></td>
24
- <td>Assistive text to be placed at the bottom of the input.</td>
25
- </tr>
26
- <tr>
27
- <td>prefix: string</td>
28
- <td></td>
29
- <td>A prefix to be placed before the input value. Use prefixIconSrc in case the prefix needs to be an icon.</td>
30
- </tr>
31
- <tr>
32
- <td>suffix: string</td>
33
- <td></td>
34
- <td>A suffix to be placed after the input value. Use suffixIconSrc in case the suffix needs to be an icon.</td>
35
- </tr>
36
- <tr>
37
- <td>prefixIconSrc: string</td>
38
- <td></td>
39
- <td>The path of an icon to be placed before the input value.</td>
40
- </tr>
41
- <tr>
42
- <td>suffixIconSrc: string</td>
43
- <td></td>
44
- <td>The path of an icon to be placed after the input value.</td>
45
- </tr>
46
- <tr>
47
- <td>theme: 'light' | 'dark'</td>
48
- <td><code>'light'</code></td>
49
- <td>Uses one of the available component themes.</td>
50
- </tr>
51
- <tr>
52
- <td>name: string</td>
53
- <td></td>
54
- <td>Name attribute of the input element.</td>
55
- </tr>
56
- <tr>
57
- <td>disabled: boolean</td>
58
- <td><code>false</code></td>
59
- <td>If true, the component will be disabled.</td>
60
- </tr>
61
- <tr>
62
- <td>required: boolean</td>
63
- <td><code>false</code></td>
64
- <td>If true, the input will change its appearence, showing that the value is required.</td>
65
- </tr>
66
- <tr>
67
- <td>invalid: boolean</td>
68
- <td><code>false</code></td>
69
- <td>If true, the input will change its appearence, showing that the value is valid.</td>
70
- </tr>
71
- <tr>
72
- <td>multiline: boolean</td>
73
- <td><code>false</code></td>
74
- <td>If true, a resizable text area will be displayed.</td>
75
- </tr>
76
- <tr>
77
- <td>onChange: function</td>
78
- <td></td>
79
- <td>This function will be called when the user changes the value of the input. The new value will be passed as a parameter.</td>
80
- </tr>
81
- <tr>
82
- <td>onBlur: function</td>
83
- <td></td>
84
- <td>This function will be called when the focus moves away from the input. The input value will be passed as a parameter.</td>
85
- </tr>
86
- <tr>
87
- <td>onClickIcon: function</td>
88
- <td></td>
89
- <td>This function will be called when either of the two icons, prefixIcon or sufixIcon, is clicked.</td>
90
- </tr>
91
- </table>
@@ -1,45 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="438.536px" height="438.536px" viewBox="0 0 438.536 438.536" style="enable-background:new 0 0 438.536 438.536;"
6
- xml:space="preserve" fill="#FFFFFF">
7
- <g>
8
- <path 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
9
- 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
10
- h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225
11
- 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
12
- 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
13
- 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"/>
14
- </g>
15
- <g>
16
- </g>
17
- <g>
18
- </g>
19
- <g>
20
- </g>
21
- <g>
22
- </g>
23
- <g>
24
- </g>
25
- <g>
26
- </g>
27
- <g>
28
- </g>
29
- <g>
30
- </g>
31
- <g>
32
- </g>
33
- <g>
34
- </g>
35
- <g>
36
- </g>
37
- <g>
38
- </g>
39
- <g>
40
- </g>
41
- <g>
42
- </g>
43
- <g>
44
- </g>
45
- </svg>
@@ -1,50 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="438.536px" height="438.536px" viewBox="0 0 438.536 438.536" style="enable-background:new 0 0 438.536 438.536;"
6
- xml:space="preserve" fill="#FFFFFF">
7
- <g>
8
- <path 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
9
- 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
10
- h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225
11
- C438.532,59.576,430.49,40.204,414.41,24.123z M133.618,367.157H67.666V169.016h65.952V367.157z M127.626,132.332
12
- 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
13
- 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
14
- 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
15
- 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
16
- 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
17
- 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
18
- H370.873z"/>
19
- </g>
20
- <g>
21
- </g>
22
- <g>
23
- </g>
24
- <g>
25
- </g>
26
- <g>
27
- </g>
28
- <g>
29
- </g>
30
- <g>
31
- </g>
32
- <g>
33
- </g>
34
- <g>
35
- </g>
36
- <g>
37
- </g>
38
- <g>
39
- </g>
40
- <g>
41
- </g>
42
- <g>
43
- </g>
44
- <g>
45
- </g>
46
- <g>
47
- </g>
48
- <g>
49
- </g>
50
- </svg>
@@ -1,53 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="438.536px" height="438.536px" viewBox="0 0 438.536 438.536" style="enable-background:new 0 0 438.536 438.536;"
6
- xml:space="preserve" fill="#FFFFFF">
7
- <g>
8
- <path 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
9
- 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
10
- h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225
11
- 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
12
- 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
13
- 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
14
- 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
15
- 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
16
- 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
17
- 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
18
- 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
19
- 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
20
- 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
21
- C357.458,149.793,347.462,160.166,335.471,168.735z"/>
22
- </g>
23
- <g>
24
- </g>
25
- <g>
26
- </g>
27
- <g>
28
- </g>
29
- <g>
30
- </g>
31
- <g>
32
- </g>
33
- <g>
34
- </g>
35
- <g>
36
- </g>
37
- <g>
38
- </g>
39
- <g>
40
- </g>
41
- <g>
42
- </g>
43
- <g>
44
- </g>
45
- <g>
46
- </g>
47
- <g>
48
- </g>
49
- <g>
50
- </g>
51
- <g>
52
- </g>
53
- </svg>
@@ -1,51 +0,0 @@
1
- # DXC Input Text Component
2
-
3
- ## Props
4
-
5
- <table>
6
- <tr style="background-color: grey">
7
- <td>Name</td>
8
- <td>Default</td>
9
- <td>Description</td>
10
- </tr>
11
- <tr>
12
- <td>underlined: 'boolean'</td>
13
- <td><code>false</code></td>
14
- <td>If true, the text is underlined.</td>
15
- </tr>
16
- <tr>
17
- <td>color: boolean</td>
18
- <td><code>false</code></td>
19
- <td>If true, the link have the default colors.</td>
20
- </tr>
21
- <tr>
22
- <td>text: string</td>
23
- <td></td>
24
- <td>Link text.</td>
25
- </tr>
26
- <tr>
27
- <td>iconSrc: string</td>
28
- <td></td>
29
- <td>Source of the icon.</td>
30
- </tr>
31
- <tr>
32
- <td>iconPosition: 'before' | 'after'</td>
33
- <td><code>before</code></td>
34
- <td>Indicates the position of the icon in the component.</td>
35
- </tr>
36
- <tr>
37
- <td>href: string</td>
38
- <td></td>
39
- <td>Page to be opened when the user clicks on the link.</td>
40
- </tr>
41
- <tr>
42
- <td>theme: 'light' | 'dark'</td>
43
- <td><code>light</code></td>
44
- <td>Theme of the component.</td>
45
- </tr>
46
- <tr>
47
- <td>newWindow: boolean</td>
48
- <td><code>false</code></td>
49
- <td>If true, the page is opened in a new browser tab.</td>
50
- </tr>
51
- </table>
package/dist/main.d.ts DELETED
@@ -1,8 +0,0 @@
1
- export { default as DxcAlert } from "./alert/index";
2
- export { default as DxcNewSelect } from "./new-select/index";
3
- export { default as DxcNewInputText } from "./new-input-text/index";
4
- export { default as DxcNewDate } from "./new-date/index";
5
- export { default as DxcNewTextarea } from "./new-textarea/index";
6
- export { default as DxcNumber } from "./number/index";
7
- export { default as DxcPassword } from "./password/index";
8
- export { default as DxcFileInput } from "./file-input/index";
@@ -1,95 +0,0 @@
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 date.
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
- * The format in which the date value will be displayed. User must use this format when editing the value or it will be considered as an invalid date.
25
- */
26
- format?: string;
27
- /**
28
- * Helper text to be placed above the date.
29
- */
30
- helperText?: string;
31
- /**
32
- * If true, the date format will appear as placeholder in the field.
33
- */
34
- placeholder?: boolean;
35
- /**
36
- * If true, the date will have an action to clear the entered value.
37
- */
38
- clearable?: boolean;
39
- /**
40
- * If true, the component will be disabled.
41
- */
42
- disabled?: boolean;
43
- /**
44
- * If true, the date will be optional, showing '(Optional)'
45
- * next to the label. Otherwise, the field will be considered required and an error will be
46
- * passed as a parameter to the OnBlur and onChange functions when it has
47
- * not been filled.
48
- */
49
- optional?: boolean;
50
- /**
51
- * This function will be called when the user types within the input
52
- * element of the component. An object including the string value, the
53
- * error and the date value will be passed to this function.
54
- * If the string value is a valid date, error will
55
- * be null. Also, if the string value is not a valid date, date will be null.
56
- */
57
- onChange?: (val: { value: string; error: string; date: Date }) => void;
58
- /**
59
- * This function will be called when the input element loses the focus.
60
- * An object including the string value, the error and the date value
61
- * will be passed to this function. If the string value is a valid date, error will
62
- * be null. Also, if the string value is not a valid date, date will be null.
63
- */
64
- onBlur?: (val: { value: string; error: string; date: Date }) => void;
65
- /**
66
- * If it is defined, the component will change its appearance, showing
67
- * the error below the date component. If it is not defined, the error
68
- * messages will be managed internally, but never displayed on its own.
69
- */
70
- error?: string;
71
- /**
72
- * HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the input value.
73
- * Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
74
- */
75
- autocomplete?: string;
76
- /**
77
- * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
78
- * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
79
- */
80
- margin?: Space | Margin;
81
- /**
82
- * Size of the component ('medium' | 'large' | 'fillParent').
83
- */
84
- size?: Size;
85
- /**
86
- * Value of the tabindex attribute.
87
- */
88
- tabIndex?: number;
89
- /**
90
- * Reference to the component.
91
- */
92
- ref?: React.RefObject<HTMLDivElement>;
93
- };
94
-
95
- export default function DxcNewDate(props: Props): JSX.Element;