@zohodesk/components 1.0.0-temp-220.11 → 1.0.0-temp-230
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cli/propValidation_report.html +1 -1
- package/README.md +33 -1
- package/assets/Appearance/dark/mode/Component_DarkMode.module.css +8 -0
- package/assets/Appearance/light/mode/Component_LightMode.module.css +8 -0
- package/assets/Appearance/pureDark/mode/Component_PureDarkMode.module.css +8 -0
- package/es/Accordion/Accordion.js +1 -1
- package/es/AppContainer/AppContainer.js +1 -1
- package/es/Card/Card.js +48 -14
- package/es/Card/__tests__/Card.spec.js +81 -2
- package/es/Card/__tests__/__snapshots__/Card.spec.js.snap +44 -0
- package/es/Card/props/defaultProps.js +2 -1
- package/es/Card/props/propTypes.js +2 -1
- package/es/ColorSelect/ColorMultiSelect.js +36 -0
- package/es/ColorSelect/ColorSingleSelect.js +50 -0
- package/es/ColorSelect/__tests__/ColorMultiSelect.spec.js +59 -0
- package/es/ColorSelect/__tests__/ColorSingleSelect.spec.js +59 -0
- package/es/ColorSelect/__tests__/__snapshots__/ColorMultiSelect.spec.js.snap +547 -0
- package/es/ColorSelect/__tests__/__snapshots__/ColorSingleSelect.spec.js.snap +178 -0
- package/es/ColorSelect/common/ColorIndicator/ColorIndicator.js +27 -0
- package/es/ColorSelect/common/ColorIndicator/ColorIndicator.module.css +18 -0
- package/es/ColorSelect/common/ColorIndicator/__tests__/ColorSingleSelect.spec.js +60 -0
- package/es/ColorSelect/common/ColorIndicator/__tests__/__snapshots__/ColorSingleSelect.spec.js.snap +95 -0
- package/es/ColorSelect/common/ColorIndicator/props/defaultProps.js +7 -0
- package/es/ColorSelect/common/ColorIndicator/props/propTypes.js +9 -0
- package/es/ColorSelect/common/ColoredTag/ColoredTag.js +33 -0
- package/es/ColorSelect/common/ColoredTag/__tests__/ColoredTag.spec.js +50 -0
- package/es/ColorSelect/common/ColoredTag/__tests__/__snapshots__/ColoredTag.spec.js.snap +101 -0
- package/es/ColorSelect/common/ColoredTag/props/propTypes.js +9 -0
- package/es/ColorSelect/common/helpers.js +35 -0
- package/es/ColorSelect/props/defaultProps.js +13 -0
- package/es/ColorSelect/props/propTypes.js +14 -0
- package/es/DateTime/__tests__/__snapshots__/DateTime.spec.js.snap +9 -18
- package/es/DateTime/__tests__/__snapshots__/DateWidget.spec.js.snap +3 -6
- package/es/DateTime/__tests__/__snapshots__/Time.spec.js.snap +9 -18
- package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +7 -0
- package/es/InputFieldLine/InputFieldLine.js +39 -0
- package/es/InputFieldLine/InputFieldLine.module.css +90 -0
- package/es/InputFieldLine/__tests__/InputFieldLine.spec.js +114 -0
- package/es/InputFieldLine/__tests__/__snapshots__/InputFieldLine.spec.js.snap +194 -0
- package/es/InputFieldLine/props/defaultProps.js +14 -0
- package/es/InputFieldLine/props/propTypes.js +19 -0
- package/es/ListItem/ListItem.js +7 -2
- package/es/ListItem/ListItem.module.css +6 -0
- package/es/ListItem/__tests__/ListItem.spec.js +8 -0
- package/es/ListItem/__tests__/__snapshots__/ListItem.spec.js.snap +47 -0
- package/es/ListItem/props/propTypes.js +2 -1
- package/es/MultiSelect/MultiSelect.js +14 -4
- package/es/MultiSelect/SelectedOptions.js +24 -1
- package/es/MultiSelect/Suggestions.js +3 -1
- package/es/MultiSelect/__tests__/MultiSelect.spec.js +38 -0
- package/es/MultiSelect/__tests__/SelectedOptions.spec.js +13 -0
- package/es/MultiSelect/__tests__/Suggestions.spec.js +12 -0
- package/es/MultiSelect/__tests__/__snapshots__/AdvancedGroupMultiSelect.spec.js.snap +3 -3
- package/es/MultiSelect/__tests__/__snapshots__/AdvancedMultiSelect.spec.js.snap +9 -9
- package/es/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +88 -3
- package/es/MultiSelect/__tests__/__snapshots__/MultiSelectWithAvatar.spec.js.snap +3 -3
- package/es/MultiSelect/__tests__/__snapshots__/SelectedOptions.spec.js.snap +15 -0
- package/es/MultiSelect/__tests__/__snapshots__/Suggestions.spec.js.snap +66 -0
- package/es/MultiSelect/props/propTypes.js +9 -3
- package/es/Popup/Popup.js +3 -3
- package/es/Select/ArrowIcon/ArrowIcon.js +48 -0
- package/es/Select/ArrowIcon/ArrowIcon.module.css +22 -0
- package/es/Select/Select.js +33 -4
- package/es/Select/__tests__/Select.spec.js +25 -0
- package/es/Select/__tests__/__snapshots__/GroupSelect.spec.js.snap +3 -6
- package/es/Select/__tests__/__snapshots__/Select.spec.js.snap +516 -419
- package/es/Select/__tests__/__snapshots__/SelectWithIcon.spec.js.snap +3 -6
- package/es/Select/props/propTypes.js +2 -1
- package/es/TextBoxIcon/TextBoxIcon.js +18 -12
- package/es/TextBoxIcon/TextBoxIcon.module.css +3 -38
- package/es/TextBoxIcon/__tests__/TextBoxIcon.spec.js +1 -2
- package/es/TextBoxIcon/__tests__/__snapshots__/TextBoxIcon.spec.js.snap +116 -225
- package/es/TextBoxIcon/props/propTypes.js +1 -2
- package/es/common/basic.module.css +0 -2
- package/es/components_layer.module.css +1 -0
- package/es/utils/Common.js +3 -1
- package/es/utils/dropDownUtils.js +8 -2
- package/es/v1/Popup/Popup.js +1 -1
- package/es/v1/Select/Select.js +1 -1
- package/lib/Accordion/Accordion.js +2 -2
- package/lib/AppContainer/AppContainer.js +1 -1
- package/lib/Card/Card.js +64 -30
- package/lib/Card/__tests__/Card.spec.js +118 -1
- package/lib/Card/__tests__/__snapshots__/Card.spec.js.snap +44 -0
- package/lib/Card/props/defaultProps.js +2 -1
- package/lib/Card/props/propTypes.js +2 -1
- package/lib/ColorSelect/ColorMultiSelect.js +65 -0
- package/lib/ColorSelect/ColorSingleSelect.js +78 -0
- package/lib/ColorSelect/__tests__/ColorMultiSelect.spec.js +70 -0
- package/lib/ColorSelect/__tests__/ColorSingleSelect.spec.js +70 -0
- package/lib/ColorSelect/__tests__/__snapshots__/ColorMultiSelect.spec.js.snap +547 -0
- package/lib/ColorSelect/__tests__/__snapshots__/ColorSingleSelect.spec.js.snap +178 -0
- package/lib/ColorSelect/common/ColorIndicator/ColorIndicator.js +40 -0
- package/lib/ColorSelect/common/ColorIndicator/ColorIndicator.module.css +18 -0
- package/lib/ColorSelect/common/ColorIndicator/__tests__/ColorSingleSelect.spec.js +67 -0
- package/lib/ColorSelect/common/ColorIndicator/__tests__/__snapshots__/ColorSingleSelect.spec.js.snap +95 -0
- package/lib/ColorSelect/common/ColorIndicator/props/defaultProps.js +14 -0
- package/lib/ColorSelect/common/ColorIndicator/props/propTypes.js +20 -0
- package/lib/ColorSelect/common/ColoredTag/ColoredTag.js +61 -0
- package/lib/ColorSelect/common/ColoredTag/__tests__/ColoredTag.spec.js +58 -0
- package/lib/ColorSelect/common/ColoredTag/__tests__/__snapshots__/ColoredTag.spec.js.snap +101 -0
- package/lib/ColorSelect/common/ColoredTag/props/propTypes.js +28 -0
- package/lib/ColorSelect/common/helpers.js +53 -0
- package/lib/ColorSelect/props/defaultProps.js +31 -0
- package/lib/ColorSelect/props/propTypes.js +35 -0
- package/lib/DateTime/__tests__/__snapshots__/DateTime.spec.js.snap +9 -18
- package/lib/DateTime/__tests__/__snapshots__/DateWidget.spec.js.snap +3 -6
- package/lib/DateTime/__tests__/__snapshots__/Time.spec.js.snap +9 -18
- package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +7 -0
- package/lib/InputFieldLine/InputFieldLine.js +53 -0
- package/lib/InputFieldLine/InputFieldLine.module.css +90 -0
- package/lib/InputFieldLine/__tests__/InputFieldLine.spec.js +122 -0
- package/lib/InputFieldLine/__tests__/__snapshots__/InputFieldLine.spec.js.snap +194 -0
- package/lib/InputFieldLine/props/defaultProps.js +21 -0
- package/lib/InputFieldLine/props/propTypes.js +36 -0
- package/lib/ListItem/ListItem.js +7 -2
- package/lib/ListItem/ListItem.module.css +6 -0
- package/lib/ListItem/__tests__/ListItem.spec.js +8 -0
- package/lib/ListItem/__tests__/__snapshots__/ListItem.spec.js.snap +47 -0
- package/lib/ListItem/props/propTypes.js +2 -1
- package/lib/MultiSelect/MultiSelect.js +14 -6
- package/lib/MultiSelect/SelectedOptions.js +24 -1
- package/lib/MultiSelect/Suggestions.js +3 -1
- package/lib/MultiSelect/__tests__/MultiSelect.spec.js +40 -0
- package/lib/MultiSelect/__tests__/SelectedOptions.spec.js +15 -0
- package/lib/MultiSelect/__tests__/Suggestions.spec.js +14 -0
- package/lib/MultiSelect/__tests__/__snapshots__/AdvancedGroupMultiSelect.spec.js.snap +3 -3
- package/lib/MultiSelect/__tests__/__snapshots__/AdvancedMultiSelect.spec.js.snap +9 -9
- package/lib/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +88 -3
- package/lib/MultiSelect/__tests__/__snapshots__/MultiSelectWithAvatar.spec.js.snap +3 -3
- package/lib/MultiSelect/__tests__/__snapshots__/SelectedOptions.spec.js.snap +15 -0
- package/lib/MultiSelect/__tests__/__snapshots__/Suggestions.spec.js.snap +66 -0
- package/lib/MultiSelect/props/propTypes.js +9 -3
- package/lib/Popup/Popup.js +4 -4
- package/lib/Select/ArrowIcon/ArrowIcon.js +62 -0
- package/lib/Select/ArrowIcon/ArrowIcon.module.css +22 -0
- package/lib/Select/Select.js +34 -4
- package/lib/Select/__tests__/Select.spec.js +177 -148
- package/lib/Select/__tests__/__snapshots__/GroupSelect.spec.js.snap +3 -6
- package/lib/Select/__tests__/__snapshots__/Select.spec.js.snap +516 -419
- package/lib/Select/__tests__/__snapshots__/SelectWithIcon.spec.js.snap +3 -6
- package/lib/Select/props/propTypes.js +2 -1
- package/lib/TextBoxIcon/TextBoxIcon.js +19 -13
- package/lib/TextBoxIcon/TextBoxIcon.module.css +3 -38
- package/lib/TextBoxIcon/__tests__/TextBoxIcon.spec.js +1 -2
- package/lib/TextBoxIcon/__tests__/__snapshots__/TextBoxIcon.spec.js.snap +116 -225
- package/lib/TextBoxIcon/props/propTypes.js +1 -2
- package/lib/common/basic.module.css +0 -2
- package/lib/components_layer.module.css +1 -0
- package/lib/utils/Common.js +9 -3
- package/lib/utils/dropDownUtils.js +10 -1
- package/lib/v1/Popup/Popup.js +2 -2
- package/lib/v1/Select/Select.js +2 -2
- package/package.json +24 -14
- package/css_error.log +0 -1
- package/install.md +0 -10
- package/postPublish.js +0 -8
- package/prePublish.js +0 -70
- package/react-cli.config.js +0 -24
- package/result.json +0 -1
- /package/.cli/{stringContains.js → themeValidate/stringContains.js} +0 -0
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
exports[`TextBoxIcon component Should be render children 1`] = `
|
|
4
4
|
<DocumentFragment>
|
|
5
5
|
<div
|
|
6
|
-
class="
|
|
7
|
-
data-id="
|
|
6
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
7
|
+
data-id="textBoxIcon"
|
|
8
8
|
data-selector-id="textBoxIcon"
|
|
9
|
-
data-test-id="
|
|
9
|
+
data-test-id="textBoxIcon"
|
|
10
10
|
>
|
|
11
11
|
<div
|
|
12
12
|
class="grow basis shrinkOff"
|
|
@@ -50,9 +50,6 @@ exports[`TextBoxIcon component Should be render children 1`] = `
|
|
|
50
50
|
</div>
|
|
51
51
|
</div>
|
|
52
52
|
</div>
|
|
53
|
-
<div
|
|
54
|
-
class="line borderColor_default "
|
|
55
|
-
/>
|
|
56
53
|
</div>
|
|
57
54
|
</DocumentFragment>
|
|
58
55
|
`;
|
|
@@ -60,10 +57,10 @@ exports[`TextBoxIcon component Should be render children 1`] = `
|
|
|
60
57
|
exports[`TextBoxIcon component Should be render htmlId 1`] = `
|
|
61
58
|
<DocumentFragment>
|
|
62
59
|
<div
|
|
63
|
-
class="
|
|
64
|
-
data-id="
|
|
60
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
61
|
+
data-id="textBoxIcon"
|
|
65
62
|
data-selector-id="textBoxIcon"
|
|
66
|
-
data-test-id="
|
|
63
|
+
data-test-id="textBoxIcon"
|
|
67
64
|
>
|
|
68
65
|
<div
|
|
69
66
|
class="grow basis shrinkOff"
|
|
@@ -95,9 +92,6 @@ exports[`TextBoxIcon component Should be render htmlId 1`] = `
|
|
|
95
92
|
data-test-id="containerComponent"
|
|
96
93
|
/>
|
|
97
94
|
</div>
|
|
98
|
-
<div
|
|
99
|
-
class="line borderColor_default "
|
|
100
|
-
/>
|
|
101
95
|
</div>
|
|
102
96
|
</DocumentFragment>
|
|
103
97
|
`;
|
|
@@ -105,10 +99,10 @@ exports[`TextBoxIcon component Should be render htmlId 1`] = `
|
|
|
105
99
|
exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHover, isDisabled is false 1`] = `
|
|
106
100
|
<DocumentFragment>
|
|
107
101
|
<div
|
|
108
|
-
class="
|
|
109
|
-
data-id="
|
|
102
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container iconOnHoverStyle flex rowdir"
|
|
103
|
+
data-id="textBoxIcon"
|
|
110
104
|
data-selector-id="textBoxIcon"
|
|
111
|
-
data-test-id="
|
|
105
|
+
data-test-id="textBoxIcon"
|
|
112
106
|
>
|
|
113
107
|
<div
|
|
114
108
|
class="grow basis shrinkOff"
|
|
@@ -139,9 +133,6 @@ exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHove
|
|
|
139
133
|
data-test-id="containerComponent"
|
|
140
134
|
/>
|
|
141
135
|
</div>
|
|
142
|
-
<div
|
|
143
|
-
class="line borderColor_default "
|
|
144
|
-
/>
|
|
145
136
|
</div>
|
|
146
137
|
</DocumentFragment>
|
|
147
138
|
`;
|
|
@@ -149,10 +140,11 @@ exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHove
|
|
|
149
140
|
exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHover, isDisabled is true 1`] = `
|
|
150
141
|
<DocumentFragment>
|
|
151
142
|
<div
|
|
152
|
-
class="
|
|
153
|
-
data-id="
|
|
143
|
+
class="varClass customContainer border_bottom disabled borderColor_default hasBorder container iconOnHoverReadonly flex rowdir"
|
|
144
|
+
data-id="textBoxIcon"
|
|
154
145
|
data-selector-id="textBoxIcon"
|
|
155
|
-
data-test-id="
|
|
146
|
+
data-test-id="textBoxIcon"
|
|
147
|
+
data-title=""
|
|
156
148
|
>
|
|
157
149
|
<div
|
|
158
150
|
class="grow basis shrinkOff"
|
|
@@ -185,9 +177,6 @@ exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHove
|
|
|
185
177
|
data-test-id="containerComponent"
|
|
186
178
|
/>
|
|
187
179
|
</div>
|
|
188
|
-
<div
|
|
189
|
-
class="line borderColor_default "
|
|
190
|
-
/>
|
|
191
180
|
</div>
|
|
192
181
|
</DocumentFragment>
|
|
193
182
|
`;
|
|
@@ -195,10 +184,10 @@ exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHove
|
|
|
195
184
|
exports[`TextBoxIcon component Should be render iconRotated is true 1`] = `
|
|
196
185
|
<DocumentFragment>
|
|
197
186
|
<div
|
|
198
|
-
class="
|
|
199
|
-
data-id="
|
|
187
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
188
|
+
data-id="textBoxIcon"
|
|
200
189
|
data-selector-id="textBoxIcon"
|
|
201
|
-
data-test-id="
|
|
190
|
+
data-test-id="textBoxIcon"
|
|
202
191
|
>
|
|
203
192
|
<div
|
|
204
193
|
class="grow basis shrinkOff"
|
|
@@ -242,9 +231,6 @@ exports[`TextBoxIcon component Should be render iconRotated is true 1`] = `
|
|
|
242
231
|
</div>
|
|
243
232
|
</div>
|
|
244
233
|
</div>
|
|
245
|
-
<div
|
|
246
|
-
class="line borderColor_default "
|
|
247
|
-
/>
|
|
248
234
|
</div>
|
|
249
235
|
</DocumentFragment>
|
|
250
236
|
`;
|
|
@@ -252,10 +238,10 @@ exports[`TextBoxIcon component Should be render iconRotated is true 1`] = `
|
|
|
252
238
|
exports[`TextBoxIcon component Should be render id 1`] = `
|
|
253
239
|
<DocumentFragment>
|
|
254
240
|
<div
|
|
255
|
-
class="
|
|
256
|
-
data-id="
|
|
241
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
242
|
+
data-id="textBoxIcon"
|
|
257
243
|
data-selector-id="textBoxIcon"
|
|
258
|
-
data-test-id="
|
|
244
|
+
data-test-id="textBoxIcon"
|
|
259
245
|
>
|
|
260
246
|
<div
|
|
261
247
|
class="grow basis shrinkOff"
|
|
@@ -287,9 +273,6 @@ exports[`TextBoxIcon component Should be render id 1`] = `
|
|
|
287
273
|
data-test-id="containerComponent"
|
|
288
274
|
/>
|
|
289
275
|
</div>
|
|
290
|
-
<div
|
|
291
|
-
class="line borderColor_default "
|
|
292
|
-
/>
|
|
293
276
|
</div>
|
|
294
277
|
</DocumentFragment>
|
|
295
278
|
`;
|
|
@@ -297,10 +280,10 @@ exports[`TextBoxIcon component Should be render id 1`] = `
|
|
|
297
280
|
exports[`TextBoxIcon component Should be render isClickable is true 1`] = `
|
|
298
281
|
<DocumentFragment>
|
|
299
282
|
<div
|
|
300
|
-
class="
|
|
301
|
-
data-id="
|
|
283
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
284
|
+
data-id="textBoxIcon"
|
|
302
285
|
data-selector-id="textBoxIcon"
|
|
303
|
-
data-test-id="
|
|
286
|
+
data-test-id="textBoxIcon"
|
|
304
287
|
>
|
|
305
288
|
<div
|
|
306
289
|
class="grow basis shrinkOff"
|
|
@@ -331,9 +314,6 @@ exports[`TextBoxIcon component Should be render isClickable is true 1`] = `
|
|
|
331
314
|
data-test-id="containerComponent"
|
|
332
315
|
/>
|
|
333
316
|
</div>
|
|
334
|
-
<div
|
|
335
|
-
class="line borderColor_default "
|
|
336
|
-
/>
|
|
337
317
|
</div>
|
|
338
318
|
</DocumentFragment>
|
|
339
319
|
`;
|
|
@@ -341,10 +321,11 @@ exports[`TextBoxIcon component Should be render isClickable is true 1`] = `
|
|
|
341
321
|
exports[`TextBoxIcon component Should be render isDisabled is true 1`] = `
|
|
342
322
|
<DocumentFragment>
|
|
343
323
|
<div
|
|
344
|
-
class="
|
|
345
|
-
data-id="
|
|
324
|
+
class="varClass customContainer border_bottom disabled borderColor_default hasBorder container flex rowdir"
|
|
325
|
+
data-id="textBoxIcon"
|
|
346
326
|
data-selector-id="textBoxIcon"
|
|
347
|
-
data-test-id="
|
|
327
|
+
data-test-id="textBoxIcon"
|
|
328
|
+
data-title=""
|
|
348
329
|
>
|
|
349
330
|
<div
|
|
350
331
|
class="grow basis shrinkOff"
|
|
@@ -376,9 +357,6 @@ exports[`TextBoxIcon component Should be render isDisabled is true 1`] = `
|
|
|
376
357
|
data-test-id="containerComponent"
|
|
377
358
|
/>
|
|
378
359
|
</div>
|
|
379
|
-
<div
|
|
380
|
-
class="line borderColor_default "
|
|
381
|
-
/>
|
|
382
360
|
</div>
|
|
383
361
|
</DocumentFragment>
|
|
384
362
|
`;
|
|
@@ -386,10 +364,10 @@ exports[`TextBoxIcon component Should be render isDisabled is true 1`] = `
|
|
|
386
364
|
exports[`TextBoxIcon component Should be render isFocus is true 1`] = `
|
|
387
365
|
<DocumentFragment>
|
|
388
366
|
<div
|
|
389
|
-
class="
|
|
390
|
-
data-id="
|
|
367
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container flex rowdir"
|
|
368
|
+
data-id="textBoxIcon"
|
|
391
369
|
data-selector-id="textBoxIcon"
|
|
392
|
-
data-test-id="
|
|
370
|
+
data-test-id="textBoxIcon"
|
|
393
371
|
>
|
|
394
372
|
<div
|
|
395
373
|
class="grow basis shrinkOff"
|
|
@@ -420,9 +398,6 @@ exports[`TextBoxIcon component Should be render isFocus is true 1`] = `
|
|
|
420
398
|
data-test-id="containerComponent"
|
|
421
399
|
/>
|
|
422
400
|
</div>
|
|
423
|
-
<div
|
|
424
|
-
class="line borderColor_default "
|
|
425
|
-
/>
|
|
426
401
|
</div>
|
|
427
402
|
</DocumentFragment>
|
|
428
403
|
`;
|
|
@@ -430,10 +405,10 @@ exports[`TextBoxIcon component Should be render isFocus is true 1`] = `
|
|
|
430
405
|
exports[`TextBoxIcon component Should be render isReadOnly is true , needEffect is false 1`] = `
|
|
431
406
|
<DocumentFragment>
|
|
432
407
|
<div
|
|
433
|
-
class="
|
|
434
|
-
data-id="
|
|
408
|
+
class="varClass customContainer border_bottom readonly borderColor_default hasBorder container flex rowdir"
|
|
409
|
+
data-id="textBoxIcon"
|
|
435
410
|
data-selector-id="textBoxIcon"
|
|
436
|
-
data-test-id="
|
|
411
|
+
data-test-id="textBoxIcon"
|
|
437
412
|
>
|
|
438
413
|
<div
|
|
439
414
|
class="grow basis shrinkOff"
|
|
@@ -465,9 +440,6 @@ exports[`TextBoxIcon component Should be render isReadOnly is true , needEffect
|
|
|
465
440
|
data-test-id="containerComponent"
|
|
466
441
|
/>
|
|
467
442
|
</div>
|
|
468
|
-
<div
|
|
469
|
-
class="line borderColor_default "
|
|
470
|
-
/>
|
|
471
443
|
</div>
|
|
472
444
|
</DocumentFragment>
|
|
473
445
|
`;
|
|
@@ -475,10 +447,10 @@ exports[`TextBoxIcon component Should be render isReadOnly is true , needEffect
|
|
|
475
447
|
exports[`TextBoxIcon component Should be render isReadOnly is true 1`] = `
|
|
476
448
|
<DocumentFragment>
|
|
477
449
|
<div
|
|
478
|
-
class="
|
|
479
|
-
data-id="
|
|
450
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
451
|
+
data-id="textBoxIcon"
|
|
480
452
|
data-selector-id="textBoxIcon"
|
|
481
|
-
data-test-id="
|
|
453
|
+
data-test-id="textBoxIcon"
|
|
482
454
|
>
|
|
483
455
|
<div
|
|
484
456
|
class="grow basis shrinkOff"
|
|
@@ -510,9 +482,6 @@ exports[`TextBoxIcon component Should be render isReadOnly is true 1`] = `
|
|
|
510
482
|
data-test-id="containerComponent"
|
|
511
483
|
/>
|
|
512
484
|
</div>
|
|
513
|
-
<div
|
|
514
|
-
class="line borderColor_default "
|
|
515
|
-
/>
|
|
516
485
|
</div>
|
|
517
486
|
</DocumentFragment>
|
|
518
487
|
`;
|
|
@@ -520,10 +489,10 @@ exports[`TextBoxIcon component Should be render isReadOnly is true 1`] = `
|
|
|
520
489
|
exports[`TextBoxIcon component Should be render name 1`] = `
|
|
521
490
|
<DocumentFragment>
|
|
522
491
|
<div
|
|
523
|
-
class="
|
|
524
|
-
data-id="
|
|
492
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
493
|
+
data-id="textBoxIcon"
|
|
525
494
|
data-selector-id="textBoxIcon"
|
|
526
|
-
data-test-id="
|
|
495
|
+
data-test-id="textBoxIcon"
|
|
527
496
|
>
|
|
528
497
|
<div
|
|
529
498
|
class="grow basis shrinkOff"
|
|
@@ -555,9 +524,6 @@ exports[`TextBoxIcon component Should be render name 1`] = `
|
|
|
555
524
|
data-test-id="containerComponent"
|
|
556
525
|
/>
|
|
557
526
|
</div>
|
|
558
|
-
<div
|
|
559
|
-
class="line borderColor_default "
|
|
560
|
-
/>
|
|
561
527
|
</div>
|
|
562
528
|
</DocumentFragment>
|
|
563
529
|
`;
|
|
@@ -565,10 +531,10 @@ exports[`TextBoxIcon component Should be render name 1`] = `
|
|
|
565
531
|
exports[`TextBoxIcon component Should be render needBorder is false 1`] = `
|
|
566
532
|
<DocumentFragment>
|
|
567
533
|
<div
|
|
568
|
-
class="
|
|
569
|
-
data-id="
|
|
534
|
+
class="varClass customContainer effect container flex rowdir"
|
|
535
|
+
data-id="textBoxIcon"
|
|
570
536
|
data-selector-id="textBoxIcon"
|
|
571
|
-
data-test-id="
|
|
537
|
+
data-test-id="textBoxIcon"
|
|
572
538
|
>
|
|
573
539
|
<div
|
|
574
540
|
class="grow basis shrinkOff"
|
|
@@ -606,10 +572,10 @@ exports[`TextBoxIcon component Should be render needBorder is false 1`] = `
|
|
|
606
572
|
exports[`TextBoxIcon component Should be render needEffect is false 1`] = `
|
|
607
573
|
<DocumentFragment>
|
|
608
574
|
<div
|
|
609
|
-
class="
|
|
610
|
-
data-id="
|
|
575
|
+
class="varClass customContainer border_bottom readonly borderColor_default hasBorder container flex rowdir"
|
|
576
|
+
data-id="textBoxIcon"
|
|
611
577
|
data-selector-id="textBoxIcon"
|
|
612
|
-
data-test-id="
|
|
578
|
+
data-test-id="textBoxIcon"
|
|
613
579
|
>
|
|
614
580
|
<div
|
|
615
581
|
class="grow basis shrinkOff"
|
|
@@ -641,9 +607,6 @@ exports[`TextBoxIcon component Should be render needEffect is false 1`] = `
|
|
|
641
607
|
data-test-id="containerComponent"
|
|
642
608
|
/>
|
|
643
609
|
</div>
|
|
644
|
-
<div
|
|
645
|
-
class="line borderColor_default "
|
|
646
|
-
/>
|
|
647
610
|
</div>
|
|
648
611
|
</DocumentFragment>
|
|
649
612
|
`;
|
|
@@ -651,10 +614,10 @@ exports[`TextBoxIcon component Should be render needEffect is false 1`] = `
|
|
|
651
614
|
exports[`TextBoxIcon component Should be render needReadOnlyStyle is false 1`] = `
|
|
652
615
|
<DocumentFragment>
|
|
653
616
|
<div
|
|
654
|
-
class="
|
|
655
|
-
data-id="
|
|
617
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
618
|
+
data-id="textBoxIcon"
|
|
656
619
|
data-selector-id="textBoxIcon"
|
|
657
|
-
data-test-id="
|
|
620
|
+
data-test-id="textBoxIcon"
|
|
658
621
|
>
|
|
659
622
|
<div
|
|
660
623
|
class="grow basis shrinkOff"
|
|
@@ -685,9 +648,6 @@ exports[`TextBoxIcon component Should be render needReadOnlyStyle is false 1`] =
|
|
|
685
648
|
data-test-id="containerComponent"
|
|
686
649
|
/>
|
|
687
650
|
</div>
|
|
688
|
-
<div
|
|
689
|
-
class="line borderColor_default "
|
|
690
|
-
/>
|
|
691
651
|
</div>
|
|
692
652
|
</DocumentFragment>
|
|
693
653
|
`;
|
|
@@ -695,10 +655,10 @@ exports[`TextBoxIcon component Should be render needReadOnlyStyle is false 1`] =
|
|
|
695
655
|
exports[`TextBoxIcon component Should be render placeholder 1`] = `
|
|
696
656
|
<DocumentFragment>
|
|
697
657
|
<div
|
|
698
|
-
class="
|
|
699
|
-
data-id="
|
|
658
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
659
|
+
data-id="textBoxIcon"
|
|
700
660
|
data-selector-id="textBoxIcon"
|
|
701
|
-
data-test-id="
|
|
661
|
+
data-test-id="textBoxIcon"
|
|
702
662
|
>
|
|
703
663
|
<div
|
|
704
664
|
class="grow basis shrinkOff"
|
|
@@ -730,9 +690,6 @@ exports[`TextBoxIcon component Should be render placeholder 1`] = `
|
|
|
730
690
|
data-test-id="containerComponent"
|
|
731
691
|
/>
|
|
732
692
|
</div>
|
|
733
|
-
<div
|
|
734
|
-
class="line borderColor_default "
|
|
735
|
-
/>
|
|
736
693
|
</div>
|
|
737
694
|
</DocumentFragment>
|
|
738
695
|
`;
|
|
@@ -740,10 +697,10 @@ exports[`TextBoxIcon component Should be render placeholder 1`] = `
|
|
|
740
697
|
exports[`TextBoxIcon component Should be render showClearIcon is true 1`] = `
|
|
741
698
|
<DocumentFragment>
|
|
742
699
|
<div
|
|
743
|
-
class="
|
|
744
|
-
data-id="
|
|
700
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
701
|
+
data-id="textBoxIcon"
|
|
745
702
|
data-selector-id="textBoxIcon"
|
|
746
|
-
data-test-id="
|
|
703
|
+
data-test-id="textBoxIcon"
|
|
747
704
|
>
|
|
748
705
|
<div
|
|
749
706
|
class="grow basis shrinkOff"
|
|
@@ -799,9 +756,6 @@ exports[`TextBoxIcon component Should be render showClearIcon is true 1`] = `
|
|
|
799
756
|
</button>
|
|
800
757
|
</div>
|
|
801
758
|
</div>
|
|
802
|
-
<div
|
|
803
|
-
class="line borderColor_default "
|
|
804
|
-
/>
|
|
805
759
|
</div>
|
|
806
760
|
</DocumentFragment>
|
|
807
761
|
`;
|
|
@@ -809,10 +763,10 @@ exports[`TextBoxIcon component Should be render showClearIcon is true 1`] = `
|
|
|
809
763
|
exports[`TextBoxIcon component Should be render title 1`] = `
|
|
810
764
|
<DocumentFragment>
|
|
811
765
|
<div
|
|
812
|
-
class="
|
|
813
|
-
data-id="
|
|
766
|
+
class="varClass customContainer border_bottom disabled borderColor_default hasBorder container flex rowdir"
|
|
767
|
+
data-id="textBoxIcon"
|
|
814
768
|
data-selector-id="textBoxIcon"
|
|
815
|
-
data-test-id="
|
|
769
|
+
data-test-id="textBoxIcon"
|
|
816
770
|
data-title="TextBoxIconTitle"
|
|
817
771
|
>
|
|
818
772
|
<div
|
|
@@ -845,9 +799,6 @@ exports[`TextBoxIcon component Should be render title 1`] = `
|
|
|
845
799
|
data-test-id="containerComponent"
|
|
846
800
|
/>
|
|
847
801
|
</div>
|
|
848
|
-
<div
|
|
849
|
-
class="line borderColor_default "
|
|
850
|
-
/>
|
|
851
802
|
</div>
|
|
852
803
|
</DocumentFragment>
|
|
853
804
|
`;
|
|
@@ -855,10 +806,10 @@ exports[`TextBoxIcon component Should be render title 1`] = `
|
|
|
855
806
|
exports[`TextBoxIcon component Should be render value is number 1`] = `
|
|
856
807
|
<DocumentFragment>
|
|
857
808
|
<div
|
|
858
|
-
class="
|
|
859
|
-
data-id="
|
|
809
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
810
|
+
data-id="textBoxIcon"
|
|
860
811
|
data-selector-id="textBoxIcon"
|
|
861
|
-
data-test-id="
|
|
812
|
+
data-test-id="textBoxIcon"
|
|
862
813
|
>
|
|
863
814
|
<div
|
|
864
815
|
class="grow basis shrinkOff"
|
|
@@ -889,9 +840,6 @@ exports[`TextBoxIcon component Should be render value is number 1`] = `
|
|
|
889
840
|
data-test-id="containerComponent"
|
|
890
841
|
/>
|
|
891
842
|
</div>
|
|
892
|
-
<div
|
|
893
|
-
class="line borderColor_default "
|
|
894
|
-
/>
|
|
895
843
|
</div>
|
|
896
844
|
</DocumentFragment>
|
|
897
845
|
`;
|
|
@@ -899,10 +847,10 @@ exports[`TextBoxIcon component Should be render value is number 1`] = `
|
|
|
899
847
|
exports[`TextBoxIcon component Should be render value is string and length greater than 1 1`] = `
|
|
900
848
|
<DocumentFragment>
|
|
901
849
|
<div
|
|
902
|
-
class="
|
|
903
|
-
data-id="
|
|
850
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
851
|
+
data-id="textBoxIcon"
|
|
904
852
|
data-selector-id="textBoxIcon"
|
|
905
|
-
data-test-id="
|
|
853
|
+
data-test-id="textBoxIcon"
|
|
906
854
|
>
|
|
907
855
|
<div
|
|
908
856
|
class="grow basis shrinkOff"
|
|
@@ -958,9 +906,6 @@ exports[`TextBoxIcon component Should be render value is string and length great
|
|
|
958
906
|
</button>
|
|
959
907
|
</div>
|
|
960
908
|
</div>
|
|
961
|
-
<div
|
|
962
|
-
class="line borderColor_default "
|
|
963
|
-
/>
|
|
964
909
|
</div>
|
|
965
910
|
</DocumentFragment>
|
|
966
911
|
`;
|
|
@@ -968,10 +913,10 @@ exports[`TextBoxIcon component Should be render value is string and length great
|
|
|
968
913
|
exports[`TextBoxIcon component Should be render value is string and length less than 1 1`] = `
|
|
969
914
|
<DocumentFragment>
|
|
970
915
|
<div
|
|
971
|
-
class="
|
|
972
|
-
data-id="
|
|
916
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
917
|
+
data-id="textBoxIcon"
|
|
973
918
|
data-selector-id="textBoxIcon"
|
|
974
|
-
data-test-id="
|
|
919
|
+
data-test-id="textBoxIcon"
|
|
975
920
|
>
|
|
976
921
|
<div
|
|
977
922
|
class="grow basis shrinkOff"
|
|
@@ -1002,9 +947,6 @@ exports[`TextBoxIcon component Should be render value is string and length less
|
|
|
1002
947
|
data-test-id="containerComponent"
|
|
1003
948
|
/>
|
|
1004
949
|
</div>
|
|
1005
|
-
<div
|
|
1006
|
-
class="line borderColor_default "
|
|
1007
|
-
/>
|
|
1008
950
|
</div>
|
|
1009
951
|
</DocumentFragment>
|
|
1010
952
|
`;
|
|
@@ -1012,10 +954,10 @@ exports[`TextBoxIcon component Should be render value is string and length less
|
|
|
1012
954
|
exports[`TextBoxIcon component Should be render with the basic set of default props 1`] = `
|
|
1013
955
|
<DocumentFragment>
|
|
1014
956
|
<div
|
|
1015
|
-
class="
|
|
1016
|
-
data-id="
|
|
957
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
958
|
+
data-id="textBoxIcon"
|
|
1017
959
|
data-selector-id="textBoxIcon"
|
|
1018
|
-
data-test-id="
|
|
960
|
+
data-test-id="textBoxIcon"
|
|
1019
961
|
>
|
|
1020
962
|
<div
|
|
1021
963
|
class="grow basis shrinkOff"
|
|
@@ -1046,9 +988,6 @@ exports[`TextBoxIcon component Should be render with the basic set of default pr
|
|
|
1046
988
|
data-test-id="containerComponent"
|
|
1047
989
|
/>
|
|
1048
990
|
</div>
|
|
1049
|
-
<div
|
|
1050
|
-
class="line borderColor_default "
|
|
1051
|
-
/>
|
|
1052
991
|
</div>
|
|
1053
992
|
</DocumentFragment>
|
|
1054
993
|
`;
|
|
@@ -1056,10 +995,10 @@ exports[`TextBoxIcon component Should be render with the basic set of default pr
|
|
|
1056
995
|
exports[`TextBoxIcon component Should render Varient - default 1`] = `
|
|
1057
996
|
<DocumentFragment>
|
|
1058
997
|
<div
|
|
1059
|
-
class="
|
|
1060
|
-
data-id="
|
|
998
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
999
|
+
data-id="textBoxIcon"
|
|
1061
1000
|
data-selector-id="textBoxIcon"
|
|
1062
|
-
data-test-id="
|
|
1001
|
+
data-test-id="textBoxIcon"
|
|
1063
1002
|
>
|
|
1064
1003
|
<div
|
|
1065
1004
|
class="grow basis shrinkOff"
|
|
@@ -1090,9 +1029,6 @@ exports[`TextBoxIcon component Should render Varient - default 1`] = `
|
|
|
1090
1029
|
data-test-id="containerComponent"
|
|
1091
1030
|
/>
|
|
1092
1031
|
</div>
|
|
1093
|
-
<div
|
|
1094
|
-
class="line borderColor_default "
|
|
1095
|
-
/>
|
|
1096
1032
|
</div>
|
|
1097
1033
|
</DocumentFragment>
|
|
1098
1034
|
`;
|
|
@@ -1100,10 +1036,10 @@ exports[`TextBoxIcon component Should render Varient - default 1`] = `
|
|
|
1100
1036
|
exports[`TextBoxIcon component Should render Varient - primary 1`] = `
|
|
1101
1037
|
<DocumentFragment>
|
|
1102
1038
|
<div
|
|
1103
|
-
class="
|
|
1104
|
-
data-id="
|
|
1039
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1040
|
+
data-id="textBoxIcon"
|
|
1105
1041
|
data-selector-id="textBoxIcon"
|
|
1106
|
-
data-test-id="
|
|
1042
|
+
data-test-id="textBoxIcon"
|
|
1107
1043
|
>
|
|
1108
1044
|
<div
|
|
1109
1045
|
class="grow basis shrinkOff"
|
|
@@ -1134,9 +1070,6 @@ exports[`TextBoxIcon component Should render Varient - primary 1`] = `
|
|
|
1134
1070
|
data-test-id="containerComponent"
|
|
1135
1071
|
/>
|
|
1136
1072
|
</div>
|
|
1137
|
-
<div
|
|
1138
|
-
class="line borderColor_default "
|
|
1139
|
-
/>
|
|
1140
1073
|
</div>
|
|
1141
1074
|
</DocumentFragment>
|
|
1142
1075
|
`;
|
|
@@ -1144,10 +1077,10 @@ exports[`TextBoxIcon component Should render Varient - primary 1`] = `
|
|
|
1144
1077
|
exports[`TextBoxIcon component Should render Varient - secondary 1`] = `
|
|
1145
1078
|
<DocumentFragment>
|
|
1146
1079
|
<div
|
|
1147
|
-
class="
|
|
1148
|
-
data-id="
|
|
1080
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1081
|
+
data-id="textBoxIcon"
|
|
1149
1082
|
data-selector-id="textBoxIcon"
|
|
1150
|
-
data-test-id="
|
|
1083
|
+
data-test-id="textBoxIcon"
|
|
1151
1084
|
>
|
|
1152
1085
|
<div
|
|
1153
1086
|
class="grow basis shrinkOff"
|
|
@@ -1178,9 +1111,6 @@ exports[`TextBoxIcon component Should render Varient - secondary 1`] = `
|
|
|
1178
1111
|
data-test-id="containerComponent"
|
|
1179
1112
|
/>
|
|
1180
1113
|
</div>
|
|
1181
|
-
<div
|
|
1182
|
-
class="line borderColor_default "
|
|
1183
|
-
/>
|
|
1184
1114
|
</div>
|
|
1185
1115
|
</DocumentFragment>
|
|
1186
1116
|
`;
|
|
@@ -1188,10 +1118,10 @@ exports[`TextBoxIcon component Should render Varient - secondary 1`] = `
|
|
|
1188
1118
|
exports[`TextBoxIcon component Should render borderColor - default 1`] = `
|
|
1189
1119
|
<DocumentFragment>
|
|
1190
1120
|
<div
|
|
1191
|
-
class="
|
|
1192
|
-
data-id="
|
|
1121
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1122
|
+
data-id="textBoxIcon"
|
|
1193
1123
|
data-selector-id="textBoxIcon"
|
|
1194
|
-
data-test-id="
|
|
1124
|
+
data-test-id="textBoxIcon"
|
|
1195
1125
|
>
|
|
1196
1126
|
<div
|
|
1197
1127
|
class="grow basis shrinkOff"
|
|
@@ -1222,9 +1152,6 @@ exports[`TextBoxIcon component Should render borderColor - default 1`] = `
|
|
|
1222
1152
|
data-test-id="containerComponent"
|
|
1223
1153
|
/>
|
|
1224
1154
|
</div>
|
|
1225
|
-
<div
|
|
1226
|
-
class="line borderColor_default "
|
|
1227
|
-
/>
|
|
1228
1155
|
</div>
|
|
1229
1156
|
</DocumentFragment>
|
|
1230
1157
|
`;
|
|
@@ -1232,10 +1159,10 @@ exports[`TextBoxIcon component Should render borderColor - default 1`] = `
|
|
|
1232
1159
|
exports[`TextBoxIcon component Should render borderColor - error 1`] = `
|
|
1233
1160
|
<DocumentFragment>
|
|
1234
1161
|
<div
|
|
1235
|
-
class="
|
|
1236
|
-
data-id="
|
|
1162
|
+
class="varClass customContainer border_bottom effect borderColor_error hasBorder container flex rowdir"
|
|
1163
|
+
data-id="textBoxIcon"
|
|
1237
1164
|
data-selector-id="textBoxIcon"
|
|
1238
|
-
data-test-id="
|
|
1165
|
+
data-test-id="textBoxIcon"
|
|
1239
1166
|
>
|
|
1240
1167
|
<div
|
|
1241
1168
|
class="grow basis shrinkOff"
|
|
@@ -1266,9 +1193,6 @@ exports[`TextBoxIcon component Should render borderColor - error 1`] = `
|
|
|
1266
1193
|
data-test-id="containerComponent"
|
|
1267
1194
|
/>
|
|
1268
1195
|
</div>
|
|
1269
|
-
<div
|
|
1270
|
-
class="line borderColor_error "
|
|
1271
|
-
/>
|
|
1272
1196
|
</div>
|
|
1273
1197
|
</DocumentFragment>
|
|
1274
1198
|
`;
|
|
@@ -1276,10 +1200,10 @@ exports[`TextBoxIcon component Should render borderColor - error 1`] = `
|
|
|
1276
1200
|
exports[`TextBoxIcon component Should render borderColor - transparent 1`] = `
|
|
1277
1201
|
<DocumentFragment>
|
|
1278
1202
|
<div
|
|
1279
|
-
class="
|
|
1280
|
-
data-id="
|
|
1203
|
+
class="varClass customContainer border_bottom effect borderColor_transparent hasBorder container flex rowdir"
|
|
1204
|
+
data-id="textBoxIcon"
|
|
1281
1205
|
data-selector-id="textBoxIcon"
|
|
1282
|
-
data-test-id="
|
|
1206
|
+
data-test-id="textBoxIcon"
|
|
1283
1207
|
>
|
|
1284
1208
|
<div
|
|
1285
1209
|
class="grow basis shrinkOff"
|
|
@@ -1310,9 +1234,6 @@ exports[`TextBoxIcon component Should render borderColor - transparent 1`] = `
|
|
|
1310
1234
|
data-test-id="containerComponent"
|
|
1311
1235
|
/>
|
|
1312
1236
|
</div>
|
|
1313
|
-
<div
|
|
1314
|
-
class="line borderColor_transparent "
|
|
1315
|
-
/>
|
|
1316
1237
|
</div>
|
|
1317
1238
|
</DocumentFragment>
|
|
1318
1239
|
`;
|
|
@@ -1320,10 +1241,10 @@ exports[`TextBoxIcon component Should render borderColor - transparent 1`] = `
|
|
|
1320
1241
|
exports[`TextBoxIcon component Should render size - medium 1`] = `
|
|
1321
1242
|
<DocumentFragment>
|
|
1322
1243
|
<div
|
|
1323
|
-
class="
|
|
1324
|
-
data-id="
|
|
1244
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1245
|
+
data-id="textBoxIcon"
|
|
1325
1246
|
data-selector-id="textBoxIcon"
|
|
1326
|
-
data-test-id="
|
|
1247
|
+
data-test-id="textBoxIcon"
|
|
1327
1248
|
>
|
|
1328
1249
|
<div
|
|
1329
1250
|
class="grow basis shrinkOff"
|
|
@@ -1354,9 +1275,6 @@ exports[`TextBoxIcon component Should render size - medium 1`] = `
|
|
|
1354
1275
|
data-test-id="containerComponent"
|
|
1355
1276
|
/>
|
|
1356
1277
|
</div>
|
|
1357
|
-
<div
|
|
1358
|
-
class="line borderColor_default "
|
|
1359
|
-
/>
|
|
1360
1278
|
</div>
|
|
1361
1279
|
</DocumentFragment>
|
|
1362
1280
|
`;
|
|
@@ -1364,10 +1282,10 @@ exports[`TextBoxIcon component Should render size - medium 1`] = `
|
|
|
1364
1282
|
exports[`TextBoxIcon component Should render size - small 1`] = `
|
|
1365
1283
|
<DocumentFragment>
|
|
1366
1284
|
<div
|
|
1367
|
-
class="
|
|
1368
|
-
data-id="
|
|
1285
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1286
|
+
data-id="textBoxIcon"
|
|
1369
1287
|
data-selector-id="textBoxIcon"
|
|
1370
|
-
data-test-id="
|
|
1288
|
+
data-test-id="textBoxIcon"
|
|
1371
1289
|
>
|
|
1372
1290
|
<div
|
|
1373
1291
|
class="grow basis shrinkOff"
|
|
@@ -1398,9 +1316,6 @@ exports[`TextBoxIcon component Should render size - small 1`] = `
|
|
|
1398
1316
|
data-test-id="containerComponent"
|
|
1399
1317
|
/>
|
|
1400
1318
|
</div>
|
|
1401
|
-
<div
|
|
1402
|
-
class="line borderColor_default "
|
|
1403
|
-
/>
|
|
1404
1319
|
</div>
|
|
1405
1320
|
</DocumentFragment>
|
|
1406
1321
|
`;
|
|
@@ -1408,10 +1323,10 @@ exports[`TextBoxIcon component Should render size - small 1`] = `
|
|
|
1408
1323
|
exports[`TextBoxIcon component Should render size - xmedium 1`] = `
|
|
1409
1324
|
<DocumentFragment>
|
|
1410
1325
|
<div
|
|
1411
|
-
class="
|
|
1412
|
-
data-id="
|
|
1326
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1327
|
+
data-id="textBoxIcon"
|
|
1413
1328
|
data-selector-id="textBoxIcon"
|
|
1414
|
-
data-test-id="
|
|
1329
|
+
data-test-id="textBoxIcon"
|
|
1415
1330
|
>
|
|
1416
1331
|
<div
|
|
1417
1332
|
class="grow basis shrinkOff"
|
|
@@ -1442,9 +1357,6 @@ exports[`TextBoxIcon component Should render size - xmedium 1`] = `
|
|
|
1442
1357
|
data-test-id="containerComponent"
|
|
1443
1358
|
/>
|
|
1444
1359
|
</div>
|
|
1445
|
-
<div
|
|
1446
|
-
class="line borderColor_default "
|
|
1447
|
-
/>
|
|
1448
1360
|
</div>
|
|
1449
1361
|
</DocumentFragment>
|
|
1450
1362
|
`;
|
|
@@ -1452,10 +1364,10 @@ exports[`TextBoxIcon component Should render size - xmedium 1`] = `
|
|
|
1452
1364
|
exports[`TextBoxIcon component Should render size - xsmall 1`] = `
|
|
1453
1365
|
<DocumentFragment>
|
|
1454
1366
|
<div
|
|
1455
|
-
class="
|
|
1456
|
-
data-id="
|
|
1367
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1368
|
+
data-id="textBoxIcon"
|
|
1457
1369
|
data-selector-id="textBoxIcon"
|
|
1458
|
-
data-test-id="
|
|
1370
|
+
data-test-id="textBoxIcon"
|
|
1459
1371
|
>
|
|
1460
1372
|
<div
|
|
1461
1373
|
class="grow basis shrinkOff"
|
|
@@ -1486,9 +1398,6 @@ exports[`TextBoxIcon component Should render size - xsmall 1`] = `
|
|
|
1486
1398
|
data-test-id="containerComponent"
|
|
1487
1399
|
/>
|
|
1488
1400
|
</div>
|
|
1489
|
-
<div
|
|
1490
|
-
class="line borderColor_default "
|
|
1491
|
-
/>
|
|
1492
1401
|
</div>
|
|
1493
1402
|
</DocumentFragment>
|
|
1494
1403
|
`;
|
|
@@ -1496,10 +1405,10 @@ exports[`TextBoxIcon component Should render size - xsmall 1`] = `
|
|
|
1496
1405
|
exports[`TextBoxIcon component Should render type - number 1`] = `
|
|
1497
1406
|
<DocumentFragment>
|
|
1498
1407
|
<div
|
|
1499
|
-
class="
|
|
1500
|
-
data-id="
|
|
1408
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1409
|
+
data-id="textBoxIcon"
|
|
1501
1410
|
data-selector-id="textBoxIcon"
|
|
1502
|
-
data-test-id="
|
|
1411
|
+
data-test-id="textBoxIcon"
|
|
1503
1412
|
>
|
|
1504
1413
|
<div
|
|
1505
1414
|
class="grow basis shrinkOff"
|
|
@@ -1530,9 +1439,6 @@ exports[`TextBoxIcon component Should render type - number 1`] = `
|
|
|
1530
1439
|
data-test-id="containerComponent"
|
|
1531
1440
|
/>
|
|
1532
1441
|
</div>
|
|
1533
|
-
<div
|
|
1534
|
-
class="line borderColor_default "
|
|
1535
|
-
/>
|
|
1536
1442
|
</div>
|
|
1537
1443
|
</DocumentFragment>
|
|
1538
1444
|
`;
|
|
@@ -1540,10 +1446,10 @@ exports[`TextBoxIcon component Should render type - number 1`] = `
|
|
|
1540
1446
|
exports[`TextBoxIcon component Should render type - password 1`] = `
|
|
1541
1447
|
<DocumentFragment>
|
|
1542
1448
|
<div
|
|
1543
|
-
class="
|
|
1544
|
-
data-id="
|
|
1449
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1450
|
+
data-id="textBoxIcon"
|
|
1545
1451
|
data-selector-id="textBoxIcon"
|
|
1546
|
-
data-test-id="
|
|
1452
|
+
data-test-id="textBoxIcon"
|
|
1547
1453
|
>
|
|
1548
1454
|
<div
|
|
1549
1455
|
class="grow basis shrinkOff"
|
|
@@ -1574,9 +1480,6 @@ exports[`TextBoxIcon component Should render type - password 1`] = `
|
|
|
1574
1480
|
data-test-id="containerComponent"
|
|
1575
1481
|
/>
|
|
1576
1482
|
</div>
|
|
1577
|
-
<div
|
|
1578
|
-
class="line borderColor_default "
|
|
1579
|
-
/>
|
|
1580
1483
|
</div>
|
|
1581
1484
|
</DocumentFragment>
|
|
1582
1485
|
`;
|
|
@@ -1584,10 +1487,10 @@ exports[`TextBoxIcon component Should render type - password 1`] = `
|
|
|
1584
1487
|
exports[`TextBoxIcon component Should render type - text 1`] = `
|
|
1585
1488
|
<DocumentFragment>
|
|
1586
1489
|
<div
|
|
1587
|
-
class="
|
|
1588
|
-
data-id="
|
|
1490
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1491
|
+
data-id="textBoxIcon"
|
|
1589
1492
|
data-selector-id="textBoxIcon"
|
|
1590
|
-
data-test-id="
|
|
1493
|
+
data-test-id="textBoxIcon"
|
|
1591
1494
|
>
|
|
1592
1495
|
<div
|
|
1593
1496
|
class="grow basis shrinkOff"
|
|
@@ -1618,9 +1521,6 @@ exports[`TextBoxIcon component Should render type - text 1`] = `
|
|
|
1618
1521
|
data-test-id="containerComponent"
|
|
1619
1522
|
/>
|
|
1620
1523
|
</div>
|
|
1621
|
-
<div
|
|
1622
|
-
class="line borderColor_default "
|
|
1623
|
-
/>
|
|
1624
1524
|
</div>
|
|
1625
1525
|
</DocumentFragment>
|
|
1626
1526
|
`;
|
|
@@ -1628,10 +1528,10 @@ exports[`TextBoxIcon component Should render type - text 1`] = `
|
|
|
1628
1528
|
exports[`TextBoxIcon component rendering the Custom Props 1`] = `
|
|
1629
1529
|
<DocumentFragment>
|
|
1630
1530
|
<div
|
|
1631
|
-
class="
|
|
1632
|
-
data-id="
|
|
1531
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1532
|
+
data-id="textBoxIcon"
|
|
1633
1533
|
data-selector-id="textBoxIcon"
|
|
1634
|
-
data-test-id="
|
|
1534
|
+
data-test-id="textBoxIcon"
|
|
1635
1535
|
>
|
|
1636
1536
|
<div
|
|
1637
1537
|
class="grow basis shrinkOff"
|
|
@@ -1663,9 +1563,6 @@ exports[`TextBoxIcon component rendering the Custom Props 1`] = `
|
|
|
1663
1563
|
data-test-id="containerComponent"
|
|
1664
1564
|
/>
|
|
1665
1565
|
</div>
|
|
1666
|
-
<div
|
|
1667
|
-
class="line borderColor_default "
|
|
1668
|
-
/>
|
|
1669
1566
|
</div>
|
|
1670
1567
|
</DocumentFragment>
|
|
1671
1568
|
`;
|
|
@@ -1673,10 +1570,10 @@ exports[`TextBoxIcon component rendering the Custom Props 1`] = `
|
|
|
1673
1570
|
exports[`TextBoxIcon component rendering the Custom class 1`] = `
|
|
1674
1571
|
<DocumentFragment>
|
|
1675
1572
|
<div
|
|
1676
|
-
class="container
|
|
1677
|
-
data-id="
|
|
1573
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container customTBoxWrapTextBoxIcon flex rowdir"
|
|
1574
|
+
data-id="textBoxIcon"
|
|
1678
1575
|
data-selector-id="textBoxIcon"
|
|
1679
|
-
data-test-id="
|
|
1576
|
+
data-test-id="textBoxIcon"
|
|
1680
1577
|
>
|
|
1681
1578
|
<div
|
|
1682
1579
|
class="grow basis shrinkOff"
|
|
@@ -1707,9 +1604,6 @@ exports[`TextBoxIcon component rendering the Custom class 1`] = `
|
|
|
1707
1604
|
data-test-id="containerComponent"
|
|
1708
1605
|
/>
|
|
1709
1606
|
</div>
|
|
1710
|
-
<div
|
|
1711
|
-
class="line borderColor_default customTBoxLineTextBox"
|
|
1712
|
-
/>
|
|
1713
1607
|
</div>
|
|
1714
1608
|
</DocumentFragment>
|
|
1715
1609
|
`;
|
|
@@ -1717,10 +1611,10 @@ exports[`TextBoxIcon component rendering the Custom class 1`] = `
|
|
|
1717
1611
|
exports[`TextBoxIcon component rendering the i18n value 1`] = `
|
|
1718
1612
|
<DocumentFragment>
|
|
1719
1613
|
<div
|
|
1720
|
-
class="
|
|
1721
|
-
data-id="
|
|
1614
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
1615
|
+
data-id="textBoxIcon"
|
|
1722
1616
|
data-selector-id="textBoxIcon"
|
|
1723
|
-
data-test-id="
|
|
1617
|
+
data-test-id="textBoxIcon"
|
|
1724
1618
|
>
|
|
1725
1619
|
<div
|
|
1726
1620
|
class="grow basis shrinkOff"
|
|
@@ -1776,9 +1670,6 @@ exports[`TextBoxIcon component rendering the i18n value 1`] = `
|
|
|
1776
1670
|
</button>
|
|
1777
1671
|
</div>
|
|
1778
1672
|
</div>
|
|
1779
|
-
<div
|
|
1780
|
-
class="line borderColor_default "
|
|
1781
|
-
/>
|
|
1782
1673
|
</div>
|
|
1783
1674
|
</DocumentFragment>
|
|
1784
1675
|
`;
|