@zohodesk/components 1.4.21 → 1.4.22

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 (141) hide show
  1. package/README.md +29 -0
  2. package/assets/Appearance/dark/mode/Component_DarkMode.module.css +15 -0
  3. package/assets/Appearance/light/mode/Component_LightMode.module.css +15 -0
  4. package/assets/Appearance/pureDark/mode/Component_PureDarkMode.module.css +15 -0
  5. package/es/ColorSelect/ColorMultiSelect.js +38 -0
  6. package/es/ColorSelect/ColorSelect.module.css +3 -0
  7. package/es/ColorSelect/ColorSingleSelect.js +83 -0
  8. package/es/ColorSelect/__tests__/ColorMultiSelect.spec.js +71 -0
  9. package/es/ColorSelect/__tests__/ColorSingleSelect.spec.js +80 -0
  10. package/es/ColorSelect/__tests__/__snapshots__/ColorMultiSelect.spec.js.snap +536 -0
  11. package/es/ColorSelect/__tests__/__snapshots__/ColorSingleSelect.spec.js.snap +422 -0
  12. package/es/ColorSelect/_shared/ColorIndicator/ColorIndicator.js +33 -0
  13. package/es/ColorSelect/_shared/ColorIndicator/ColorIndicator.module.css +19 -0
  14. package/es/ColorSelect/_shared/ColorIndicator/__tests__/ColorIndicator.spec.js +79 -0
  15. package/es/ColorSelect/_shared/ColorIndicator/__tests__/__snapshots__/ColorIndicator.spec.js.snap +106 -0
  16. package/es/ColorSelect/_shared/ColorIndicator/props/defaultProps.js +8 -0
  17. package/es/ColorSelect/_shared/ColorIndicator/props/propTypes.js +10 -0
  18. package/es/ColorSelect/_shared/ColoredTag/ColoredTag.js +33 -0
  19. package/es/ColorSelect/_shared/ColoredTag/__tests__/ColoredTag.spec.js +50 -0
  20. package/es/ColorSelect/_shared/ColoredTag/__tests__/__snapshots__/ColoredTag.spec.js.snap +101 -0
  21. package/es/ColorSelect/_shared/ColoredTag/props/propTypes.js +10 -0
  22. package/es/ColorSelect/_shared/helpers/renderHelpers.js +43 -0
  23. package/es/ColorSelect/props/defaultProps.js +12 -0
  24. package/es/ColorSelect/props/propTypes.js +17 -0
  25. package/es/DateTime/__tests__/__snapshots__/DateTime.spec.js.snap +3 -18
  26. package/es/DateTime/__tests__/__snapshots__/DateWidget.spec.js.snap +1 -6
  27. package/es/DateTime/__tests__/__snapshots__/Time.spec.js.snap +3 -18
  28. package/es/ListItem/ListItem.js +6 -1
  29. package/es/ListItem/ListItem.module.css +6 -0
  30. package/es/ListItem/__tests__/ListItem.spec.js +8 -0
  31. package/es/ListItem/__tests__/__snapshots__/ListItem.spec.js.snap +47 -0
  32. package/es/ListItem/props/propTypes.js +1 -0
  33. package/es/MultiSelect/MultiSelect.js +11 -5
  34. package/es/MultiSelect/SelectedOptions.js +24 -1
  35. package/es/MultiSelect/Suggestions.js +4 -1
  36. package/es/MultiSelect/__tests__/MultiSelect.spec.js +38 -0
  37. package/es/MultiSelect/__tests__/SelectedOptions.spec.js +13 -0
  38. package/es/MultiSelect/__tests__/Suggestions.spec.js +12 -0
  39. package/es/MultiSelect/__tests__/__snapshots__/AdvancedGroupMultiSelect.spec.js.snap +1 -3
  40. package/es/MultiSelect/__tests__/__snapshots__/AdvancedMultiSelect.spec.js.snap +3 -9
  41. package/es/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +91 -12
  42. package/es/MultiSelect/__tests__/__snapshots__/MultiSelectWithAvatar.spec.js.snap +1 -3
  43. package/es/MultiSelect/__tests__/__snapshots__/SelectedOptions.spec.js.snap +15 -0
  44. package/es/MultiSelect/__tests__/__snapshots__/Suggestions.spec.js.snap +66 -0
  45. package/es/MultiSelect/props/propTypes.js +6 -0
  46. package/es/Select/Select.js +67 -5
  47. package/es/Select/__tests__/Select.spec.js +10 -0
  48. package/es/Select/__tests__/__snapshots__/GroupSelect.spec.js.snap +1 -6
  49. package/es/Select/__tests__/__snapshots__/Select.spec.js.snap +111 -441
  50. package/es/Select/__tests__/__snapshots__/SelectWithIcon.spec.js.snap +1 -6
  51. package/es/Select/props/defaultProps.js +2 -1
  52. package/es/Select/props/propTypes.js +3 -1
  53. package/es/TextBox/__tests__/TextBox.spec.js +1 -1
  54. package/es/TextBoxIcon/TextBoxIcon.js +17 -12
  55. package/es/TextBoxIcon/TextBoxIcon.module.css +3 -38
  56. package/es/TextBoxIcon/__tests__/TextBoxIcon.spec.js +9 -2
  57. package/es/TextBoxIcon/__tests__/__snapshots__/TextBoxIcon.spec.js.snap +78 -224
  58. package/es/TextBoxIcon/props/propTypes.js +1 -2
  59. package/es/shared/ArrowIcon/ArrowIcon.js +51 -0
  60. package/es/shared/ArrowIcon/ArrowIcon.module.css +43 -0
  61. package/es/shared/ArrowIcon/__tests__/ArrowIcon.spec.js +100 -0
  62. package/es/shared/ArrowIcon/__tests__/__snapshots__/ArrowIcon.spec.js.snap +221 -0
  63. package/es/shared/ArrowIcon/props/defaultProps.js +11 -0
  64. package/es/shared/ArrowIcon/props/propTypes.js +17 -0
  65. package/es/shared/InputFieldLine/InputFieldLine.js +45 -0
  66. package/es/shared/InputFieldLine/InputFieldLine.module.css +88 -0
  67. package/es/shared/InputFieldLine/__tests__/InputFieldLine.spec.js +114 -0
  68. package/es/shared/InputFieldLine/__tests__/__snapshots__/InputFieldLine.spec.js.snap +194 -0
  69. package/es/shared/InputFieldLine/props/defaultProps.js +16 -0
  70. package/es/shared/InputFieldLine/props/propTypes.js +22 -0
  71. package/es/utils/Common.js +3 -2
  72. package/es/utils/dropDownUtils.js +7 -1
  73. package/lib/ColorSelect/ColorMultiSelect.js +71 -0
  74. package/lib/ColorSelect/ColorSelect.module.css +3 -0
  75. package/lib/ColorSelect/ColorSingleSelect.js +111 -0
  76. package/lib/ColorSelect/__tests__/ColorMultiSelect.spec.js +82 -0
  77. package/lib/ColorSelect/__tests__/ColorSingleSelect.spec.js +91 -0
  78. package/lib/ColorSelect/__tests__/__snapshots__/ColorMultiSelect.spec.js.snap +536 -0
  79. package/lib/ColorSelect/__tests__/__snapshots__/ColorSingleSelect.spec.js.snap +422 -0
  80. package/lib/ColorSelect/_shared/ColorIndicator/ColorIndicator.js +47 -0
  81. package/lib/ColorSelect/_shared/ColorIndicator/ColorIndicator.module.css +19 -0
  82. package/lib/ColorSelect/_shared/ColorIndicator/__tests__/ColorIndicator.spec.js +86 -0
  83. package/lib/ColorSelect/_shared/ColorIndicator/__tests__/__snapshots__/ColorIndicator.spec.js.snap +106 -0
  84. package/lib/ColorSelect/_shared/ColorIndicator/props/defaultProps.js +15 -0
  85. package/lib/ColorSelect/_shared/ColorIndicator/props/propTypes.js +21 -0
  86. package/lib/ColorSelect/_shared/ColoredTag/ColoredTag.js +69 -0
  87. package/lib/ColorSelect/_shared/ColoredTag/__tests__/ColoredTag.spec.js +58 -0
  88. package/lib/ColorSelect/_shared/ColoredTag/__tests__/__snapshots__/ColoredTag.spec.js.snap +101 -0
  89. package/lib/ColorSelect/_shared/ColoredTag/props/propTypes.js +29 -0
  90. package/lib/ColorSelect/_shared/helpers/renderHelpers.js +63 -0
  91. package/lib/ColorSelect/props/defaultProps.js +32 -0
  92. package/lib/ColorSelect/props/propTypes.js +39 -0
  93. package/lib/DateTime/__tests__/__snapshots__/DateTime.spec.js.snap +3 -18
  94. package/lib/DateTime/__tests__/__snapshots__/DateWidget.spec.js.snap +1 -6
  95. package/lib/DateTime/__tests__/__snapshots__/Time.spec.js.snap +3 -18
  96. package/lib/ListItem/ListItem.js +6 -1
  97. package/lib/ListItem/ListItem.module.css +6 -0
  98. package/lib/ListItem/__tests__/ListItem.spec.js +12 -4
  99. package/lib/ListItem/__tests__/__snapshots__/ListItem.spec.js.snap +47 -0
  100. package/lib/ListItem/props/propTypes.js +1 -0
  101. package/lib/MultiSelect/MultiSelect.js +11 -5
  102. package/lib/MultiSelect/SelectedOptions.js +24 -1
  103. package/lib/MultiSelect/Suggestions.js +5 -1
  104. package/lib/MultiSelect/__tests__/MultiSelect.spec.js +42 -2
  105. package/lib/MultiSelect/__tests__/SelectedOptions.spec.js +15 -0
  106. package/lib/MultiSelect/__tests__/Suggestions.spec.js +16 -2
  107. package/lib/MultiSelect/__tests__/__snapshots__/AdvancedGroupMultiSelect.spec.js.snap +1 -3
  108. package/lib/MultiSelect/__tests__/__snapshots__/AdvancedMultiSelect.spec.js.snap +3 -9
  109. package/lib/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +91 -12
  110. package/lib/MultiSelect/__tests__/__snapshots__/MultiSelectWithAvatar.spec.js.snap +1 -3
  111. package/lib/MultiSelect/__tests__/__snapshots__/SelectedOptions.spec.js.snap +15 -0
  112. package/lib/MultiSelect/__tests__/__snapshots__/Suggestions.spec.js.snap +66 -0
  113. package/lib/MultiSelect/props/propTypes.js +6 -0
  114. package/lib/Select/Select.js +67 -4
  115. package/lib/Select/__tests__/Select.spec.js +12 -0
  116. package/lib/Select/__tests__/__snapshots__/GroupSelect.spec.js.snap +1 -6
  117. package/lib/Select/__tests__/__snapshots__/Select.spec.js.snap +111 -441
  118. package/lib/Select/__tests__/__snapshots__/SelectWithIcon.spec.js.snap +1 -6
  119. package/lib/Select/props/defaultProps.js +2 -1
  120. package/lib/Select/props/propTypes.js +3 -1
  121. package/lib/TextBox/__tests__/TextBox.spec.js +36 -36
  122. package/lib/TextBoxIcon/TextBoxIcon.js +18 -13
  123. package/lib/TextBoxIcon/TextBoxIcon.module.css +3 -38
  124. package/lib/TextBoxIcon/__tests__/TextBoxIcon.spec.js +9 -2
  125. package/lib/TextBoxIcon/__tests__/__snapshots__/TextBoxIcon.spec.js.snap +78 -224
  126. package/lib/TextBoxIcon/props/propTypes.js +1 -2
  127. package/lib/shared/ArrowIcon/ArrowIcon.js +65 -0
  128. package/lib/shared/ArrowIcon/ArrowIcon.module.css +43 -0
  129. package/lib/shared/ArrowIcon/__tests__/ArrowIcon.spec.js +107 -0
  130. package/lib/shared/ArrowIcon/__tests__/__snapshots__/ArrowIcon.spec.js.snap +221 -0
  131. package/lib/shared/ArrowIcon/props/defaultProps.js +18 -0
  132. package/lib/shared/ArrowIcon/props/propTypes.js +28 -0
  133. package/lib/shared/InputFieldLine/InputFieldLine.js +57 -0
  134. package/lib/shared/InputFieldLine/InputFieldLine.module.css +88 -0
  135. package/lib/shared/InputFieldLine/__tests__/InputFieldLine.spec.js +122 -0
  136. package/lib/shared/InputFieldLine/__tests__/__snapshots__/InputFieldLine.spec.js.snap +194 -0
  137. package/lib/shared/InputFieldLine/props/defaultProps.js +23 -0
  138. package/lib/shared/InputFieldLine/props/propTypes.js +39 -0
  139. package/lib/utils/Common.js +8 -4
  140. package/lib/utils/dropDownUtils.js +10 -1
  141. package/package.json +9 -7
@@ -3,10 +3,8 @@
3
3
  exports[`TextBoxIcon component Should be render children 1`] = `
4
4
  <DocumentFragment>
5
5
  <div
6
- class="container effect flex rowdir"
7
- data-id="containerComponent"
6
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
8
7
  data-selector-id="textBoxIcon"
9
- data-test-id="containerComponent"
10
8
  >
11
9
  <div
12
10
  class="grow basis shrinkOff"
@@ -50,9 +48,6 @@ exports[`TextBoxIcon component Should be render children 1`] = `
50
48
  </div>
51
49
  </div>
52
50
  </div>
53
- <div
54
- class="line borderColor_default "
55
- />
56
51
  </div>
57
52
  </DocumentFragment>
58
53
  `;
@@ -60,10 +55,8 @@ exports[`TextBoxIcon component Should be render children 1`] = `
60
55
  exports[`TextBoxIcon component Should be render htmlId 1`] = `
61
56
  <DocumentFragment>
62
57
  <div
63
- class="container effect flex rowdir"
64
- data-id="containerComponent"
58
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
65
59
  data-selector-id="textBoxIcon"
66
- data-test-id="containerComponent"
67
60
  >
68
61
  <div
69
62
  class="grow basis shrinkOff"
@@ -95,9 +88,6 @@ exports[`TextBoxIcon component Should be render htmlId 1`] = `
95
88
  data-test-id="containerComponent"
96
89
  />
97
90
  </div>
98
- <div
99
- class="line borderColor_default "
100
- />
101
91
  </div>
102
92
  </DocumentFragment>
103
93
  `;
@@ -105,10 +95,8 @@ exports[`TextBoxIcon component Should be render htmlId 1`] = `
105
95
  exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHover, isDisabled is false 1`] = `
106
96
  <DocumentFragment>
107
97
  <div
108
- class="container effect iconOnHoverStyle flex rowdir"
109
- data-id="containerComponent"
98
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container iconOnHoverStyle flex rowdir"
110
99
  data-selector-id="textBoxIcon"
111
- data-test-id="containerComponent"
112
100
  >
113
101
  <div
114
102
  class="grow basis shrinkOff"
@@ -139,9 +127,6 @@ exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHove
139
127
  data-test-id="containerComponent"
140
128
  />
141
129
  </div>
142
- <div
143
- class="line borderColor_default "
144
- />
145
130
  </div>
146
131
  </DocumentFragment>
147
132
  `;
@@ -149,10 +134,9 @@ exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHove
149
134
  exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHover, isDisabled is true 1`] = `
150
135
  <DocumentFragment>
151
136
  <div
152
- class="container disabled iconOnHoverReadonly flex rowdir"
153
- data-id="containerComponent"
137
+ class="varClass customContainer border_bottom disabled borderColor_default hasBorder container iconOnHoverReadonly flex rowdir"
154
138
  data-selector-id="textBoxIcon"
155
- data-test-id="containerComponent"
139
+ data-title=""
156
140
  >
157
141
  <div
158
142
  class="grow basis shrinkOff"
@@ -185,9 +169,6 @@ exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHove
185
169
  data-test-id="containerComponent"
186
170
  />
187
171
  </div>
188
- <div
189
- class="line borderColor_default "
190
- />
191
172
  </div>
192
173
  </DocumentFragment>
193
174
  `;
@@ -195,10 +176,8 @@ exports[`TextBoxIcon component Should be render iconOnHover is true , iconOnHove
195
176
  exports[`TextBoxIcon component Should be render iconRotated is true 1`] = `
196
177
  <DocumentFragment>
197
178
  <div
198
- class="container effect flex rowdir"
199
- data-id="containerComponent"
179
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
200
180
  data-selector-id="textBoxIcon"
201
- data-test-id="containerComponent"
202
181
  >
203
182
  <div
204
183
  class="grow basis shrinkOff"
@@ -242,9 +221,6 @@ exports[`TextBoxIcon component Should be render iconRotated is true 1`] = `
242
221
  </div>
243
222
  </div>
244
223
  </div>
245
- <div
246
- class="line borderColor_default "
247
- />
248
224
  </div>
249
225
  </DocumentFragment>
250
226
  `;
@@ -252,10 +228,8 @@ exports[`TextBoxIcon component Should be render iconRotated is true 1`] = `
252
228
  exports[`TextBoxIcon component Should be render id 1`] = `
253
229
  <DocumentFragment>
254
230
  <div
255
- class="container effect flex rowdir"
256
- data-id="containerComponent"
231
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
257
232
  data-selector-id="textBoxIcon"
258
- data-test-id="containerComponent"
259
233
  >
260
234
  <div
261
235
  class="grow basis shrinkOff"
@@ -287,9 +261,6 @@ exports[`TextBoxIcon component Should be render id 1`] = `
287
261
  data-test-id="containerComponent"
288
262
  />
289
263
  </div>
290
- <div
291
- class="line borderColor_default "
292
- />
293
264
  </div>
294
265
  </DocumentFragment>
295
266
  `;
@@ -297,10 +268,8 @@ exports[`TextBoxIcon component Should be render id 1`] = `
297
268
  exports[`TextBoxIcon component Should be render isClickable is true 1`] = `
298
269
  <DocumentFragment>
299
270
  <div
300
- class="container effect flex rowdir"
301
- data-id="containerComponent"
271
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
302
272
  data-selector-id="textBoxIcon"
303
- data-test-id="containerComponent"
304
273
  >
305
274
  <div
306
275
  class="grow basis shrinkOff"
@@ -331,9 +300,6 @@ exports[`TextBoxIcon component Should be render isClickable is true 1`] = `
331
300
  data-test-id="containerComponent"
332
301
  />
333
302
  </div>
334
- <div
335
- class="line borderColor_default "
336
- />
337
303
  </div>
338
304
  </DocumentFragment>
339
305
  `;
@@ -341,10 +307,9 @@ exports[`TextBoxIcon component Should be render isClickable is true 1`] = `
341
307
  exports[`TextBoxIcon component Should be render isDisabled is true 1`] = `
342
308
  <DocumentFragment>
343
309
  <div
344
- class="container disabled flex rowdir"
345
- data-id="containerComponent"
310
+ class="varClass customContainer border_bottom disabled borderColor_default hasBorder container flex rowdir"
346
311
  data-selector-id="textBoxIcon"
347
- data-test-id="containerComponent"
312
+ data-title=""
348
313
  >
349
314
  <div
350
315
  class="grow basis shrinkOff"
@@ -376,9 +341,6 @@ exports[`TextBoxIcon component Should be render isDisabled is true 1`] = `
376
341
  data-test-id="containerComponent"
377
342
  />
378
343
  </div>
379
- <div
380
- class="line borderColor_default "
381
- />
382
344
  </div>
383
345
  </DocumentFragment>
384
346
  `;
@@ -386,10 +348,8 @@ exports[`TextBoxIcon component Should be render isDisabled is true 1`] = `
386
348
  exports[`TextBoxIcon component Should be render isFocus is true 1`] = `
387
349
  <DocumentFragment>
388
350
  <div
389
- class="container effect effectFocused flex rowdir"
390
- data-id="containerComponent"
351
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder active container flex rowdir"
391
352
  data-selector-id="textBoxIcon"
392
- data-test-id="containerComponent"
393
353
  >
394
354
  <div
395
355
  class="grow basis shrinkOff"
@@ -420,9 +380,6 @@ exports[`TextBoxIcon component Should be render isFocus is true 1`] = `
420
380
  data-test-id="containerComponent"
421
381
  />
422
382
  </div>
423
- <div
424
- class="line borderColor_default "
425
- />
426
383
  </div>
427
384
  </DocumentFragment>
428
385
  `;
@@ -430,10 +387,8 @@ exports[`TextBoxIcon component Should be render isFocus is true 1`] = `
430
387
  exports[`TextBoxIcon component Should be render isReadOnly is true , needEffect is false 1`] = `
431
388
  <DocumentFragment>
432
389
  <div
433
- class="container readonly flex rowdir"
434
- data-id="containerComponent"
390
+ class="varClass customContainer border_bottom readonly borderColor_default hasBorder container flex rowdir"
435
391
  data-selector-id="textBoxIcon"
436
- data-test-id="containerComponent"
437
392
  >
438
393
  <div
439
394
  class="grow basis shrinkOff"
@@ -465,9 +420,6 @@ exports[`TextBoxIcon component Should be render isReadOnly is true , needEffect
465
420
  data-test-id="containerComponent"
466
421
  />
467
422
  </div>
468
- <div
469
- class="line borderColor_default "
470
- />
471
423
  </div>
472
424
  </DocumentFragment>
473
425
  `;
@@ -475,10 +427,8 @@ exports[`TextBoxIcon component Should be render isReadOnly is true , needEffect
475
427
  exports[`TextBoxIcon component Should be render isReadOnly is true 1`] = `
476
428
  <DocumentFragment>
477
429
  <div
478
- class="container effect flex rowdir"
479
- data-id="containerComponent"
430
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
480
431
  data-selector-id="textBoxIcon"
481
- data-test-id="containerComponent"
482
432
  >
483
433
  <div
484
434
  class="grow basis shrinkOff"
@@ -510,9 +460,6 @@ exports[`TextBoxIcon component Should be render isReadOnly is true 1`] = `
510
460
  data-test-id="containerComponent"
511
461
  />
512
462
  </div>
513
- <div
514
- class="line borderColor_default "
515
- />
516
463
  </div>
517
464
  </DocumentFragment>
518
465
  `;
@@ -520,10 +467,8 @@ exports[`TextBoxIcon component Should be render isReadOnly is true 1`] = `
520
467
  exports[`TextBoxIcon component Should be render name 1`] = `
521
468
  <DocumentFragment>
522
469
  <div
523
- class="container effect flex rowdir"
524
- data-id="containerComponent"
470
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
525
471
  data-selector-id="textBoxIcon"
526
- data-test-id="containerComponent"
527
472
  >
528
473
  <div
529
474
  class="grow basis shrinkOff"
@@ -555,9 +500,6 @@ exports[`TextBoxIcon component Should be render name 1`] = `
555
500
  data-test-id="containerComponent"
556
501
  />
557
502
  </div>
558
- <div
559
- class="line borderColor_default "
560
- />
561
503
  </div>
562
504
  </DocumentFragment>
563
505
  `;
@@ -565,10 +507,8 @@ exports[`TextBoxIcon component Should be render name 1`] = `
565
507
  exports[`TextBoxIcon component Should be render needBorder is false 1`] = `
566
508
  <DocumentFragment>
567
509
  <div
568
- class="container effect flex rowdir"
569
- data-id="containerComponent"
510
+ class="varClass customContainer effect container flex rowdir"
570
511
  data-selector-id="textBoxIcon"
571
- data-test-id="containerComponent"
572
512
  >
573
513
  <div
574
514
  class="grow basis shrinkOff"
@@ -606,10 +546,8 @@ exports[`TextBoxIcon component Should be render needBorder is false 1`] = `
606
546
  exports[`TextBoxIcon component Should be render needEffect is false 1`] = `
607
547
  <DocumentFragment>
608
548
  <div
609
- class="container readonly flex rowdir"
610
- data-id="containerComponent"
549
+ class="varClass customContainer border_bottom readonly borderColor_default hasBorder container flex rowdir"
611
550
  data-selector-id="textBoxIcon"
612
- data-test-id="containerComponent"
613
551
  >
614
552
  <div
615
553
  class="grow basis shrinkOff"
@@ -641,9 +579,6 @@ exports[`TextBoxIcon component Should be render needEffect is false 1`] = `
641
579
  data-test-id="containerComponent"
642
580
  />
643
581
  </div>
644
- <div
645
- class="line borderColor_default "
646
- />
647
582
  </div>
648
583
  </DocumentFragment>
649
584
  `;
@@ -651,10 +586,8 @@ exports[`TextBoxIcon component Should be render needEffect is false 1`] = `
651
586
  exports[`TextBoxIcon component Should be render needReadOnlyStyle is false 1`] = `
652
587
  <DocumentFragment>
653
588
  <div
654
- class="container effect flex rowdir"
655
- data-id="containerComponent"
589
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
656
590
  data-selector-id="textBoxIcon"
657
- data-test-id="containerComponent"
658
591
  >
659
592
  <div
660
593
  class="grow basis shrinkOff"
@@ -685,9 +618,6 @@ exports[`TextBoxIcon component Should be render needReadOnlyStyle is false 1`] =
685
618
  data-test-id="containerComponent"
686
619
  />
687
620
  </div>
688
- <div
689
- class="line borderColor_default "
690
- />
691
621
  </div>
692
622
  </DocumentFragment>
693
623
  `;
@@ -695,10 +625,8 @@ exports[`TextBoxIcon component Should be render needReadOnlyStyle is false 1`] =
695
625
  exports[`TextBoxIcon component Should be render placeholder 1`] = `
696
626
  <DocumentFragment>
697
627
  <div
698
- class="container effect flex rowdir"
699
- data-id="containerComponent"
628
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
700
629
  data-selector-id="textBoxIcon"
701
- data-test-id="containerComponent"
702
630
  >
703
631
  <div
704
632
  class="grow basis shrinkOff"
@@ -730,9 +658,6 @@ exports[`TextBoxIcon component Should be render placeholder 1`] = `
730
658
  data-test-id="containerComponent"
731
659
  />
732
660
  </div>
733
- <div
734
- class="line borderColor_default "
735
- />
736
661
  </div>
737
662
  </DocumentFragment>
738
663
  `;
@@ -740,10 +665,8 @@ exports[`TextBoxIcon component Should be render placeholder 1`] = `
740
665
  exports[`TextBoxIcon component Should be render showClearIcon is true 1`] = `
741
666
  <DocumentFragment>
742
667
  <div
743
- class="container effect flex rowdir"
744
- data-id="containerComponent"
668
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
745
669
  data-selector-id="textBoxIcon"
746
- data-test-id="containerComponent"
747
670
  >
748
671
  <div
749
672
  class="grow basis shrinkOff"
@@ -799,9 +722,6 @@ exports[`TextBoxIcon component Should be render showClearIcon is true 1`] = `
799
722
  </button>
800
723
  </div>
801
724
  </div>
802
- <div
803
- class="line borderColor_default "
804
- />
805
725
  </div>
806
726
  </DocumentFragment>
807
727
  `;
@@ -809,10 +729,8 @@ exports[`TextBoxIcon component Should be render showClearIcon is true 1`] = `
809
729
  exports[`TextBoxIcon component Should be render title 1`] = `
810
730
  <DocumentFragment>
811
731
  <div
812
- class="container disabled flex rowdir"
813
- data-id="containerComponent"
732
+ class="varClass customContainer border_bottom disabled borderColor_default hasBorder container flex rowdir"
814
733
  data-selector-id="textBoxIcon"
815
- data-test-id="containerComponent"
816
734
  data-title="TextBoxIconTitle"
817
735
  >
818
736
  <div
@@ -845,9 +763,6 @@ exports[`TextBoxIcon component Should be render title 1`] = `
845
763
  data-test-id="containerComponent"
846
764
  />
847
765
  </div>
848
- <div
849
- class="line borderColor_default "
850
- />
851
766
  </div>
852
767
  </DocumentFragment>
853
768
  `;
@@ -855,10 +770,8 @@ exports[`TextBoxIcon component Should be render title 1`] = `
855
770
  exports[`TextBoxIcon component Should be render value is number 1`] = `
856
771
  <DocumentFragment>
857
772
  <div
858
- class="container effect flex rowdir"
859
- data-id="containerComponent"
773
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
860
774
  data-selector-id="textBoxIcon"
861
- data-test-id="containerComponent"
862
775
  >
863
776
  <div
864
777
  class="grow basis shrinkOff"
@@ -889,9 +802,6 @@ exports[`TextBoxIcon component Should be render value is number 1`] = `
889
802
  data-test-id="containerComponent"
890
803
  />
891
804
  </div>
892
- <div
893
- class="line borderColor_default "
894
- />
895
805
  </div>
896
806
  </DocumentFragment>
897
807
  `;
@@ -899,10 +809,8 @@ exports[`TextBoxIcon component Should be render value is number 1`] = `
899
809
  exports[`TextBoxIcon component Should be render value is string and length greater than 1 1`] = `
900
810
  <DocumentFragment>
901
811
  <div
902
- class="container effect flex rowdir"
903
- data-id="containerComponent"
812
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
904
813
  data-selector-id="textBoxIcon"
905
- data-test-id="containerComponent"
906
814
  >
907
815
  <div
908
816
  class="grow basis shrinkOff"
@@ -958,9 +866,6 @@ exports[`TextBoxIcon component Should be render value is string and length great
958
866
  </button>
959
867
  </div>
960
868
  </div>
961
- <div
962
- class="line borderColor_default "
963
- />
964
869
  </div>
965
870
  </DocumentFragment>
966
871
  `;
@@ -968,10 +873,8 @@ exports[`TextBoxIcon component Should be render value is string and length great
968
873
  exports[`TextBoxIcon component Should be render value is string and length less than 1 1`] = `
969
874
  <DocumentFragment>
970
875
  <div
971
- class="container effect flex rowdir"
972
- data-id="containerComponent"
876
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
973
877
  data-selector-id="textBoxIcon"
974
- data-test-id="containerComponent"
975
878
  >
976
879
  <div
977
880
  class="grow basis shrinkOff"
@@ -1002,9 +905,45 @@ exports[`TextBoxIcon component Should be render value is string and length less
1002
905
  data-test-id="containerComponent"
1003
906
  />
1004
907
  </div>
908
+ </div>
909
+ </DocumentFragment>
910
+ `;
911
+
912
+ exports[`TextBoxIcon component Should be render with dataSelectorId 1`] = `
913
+ <DocumentFragment>
914
+ <div
915
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
916
+ data-selector-id="textBoxIcon_data_selector_id"
917
+ >
918
+ <div
919
+ class="grow basis shrinkOff"
920
+ data-id="boxComponent"
921
+ data-selector-id="box"
922
+ data-test-id="boxComponent"
923
+ >
924
+ <input
925
+ class=" container medium default effect borderColor_default "
926
+ data-id="textBoxIcon"
927
+ data-selector-id="textBoxIcon_data_selector_id"
928
+ data-test-id="textBoxIcon"
929
+ maxlength="250"
930
+ type="text"
931
+ value=""
932
+ />
933
+ </div>
1005
934
  <div
1006
- class="line borderColor_default "
1007
- />
935
+ class="iconContainer shrinkOff"
936
+ data-id="boxComponent"
937
+ data-selector-id="box"
938
+ data-test-id="boxComponent"
939
+ >
940
+ <div
941
+ class="flex cover rowdir"
942
+ data-id="containerComponent"
943
+ data-selector-id="container"
944
+ data-test-id="containerComponent"
945
+ />
946
+ </div>
1008
947
  </div>
1009
948
  </DocumentFragment>
1010
949
  `;
@@ -1012,10 +951,8 @@ exports[`TextBoxIcon component Should be render value is string and length less
1012
951
  exports[`TextBoxIcon component Should be render with the basic set of default props 1`] = `
1013
952
  <DocumentFragment>
1014
953
  <div
1015
- class="container effect flex rowdir"
1016
- data-id="containerComponent"
954
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1017
955
  data-selector-id="textBoxIcon"
1018
- data-test-id="containerComponent"
1019
956
  >
1020
957
  <div
1021
958
  class="grow basis shrinkOff"
@@ -1046,9 +983,6 @@ exports[`TextBoxIcon component Should be render with the basic set of default pr
1046
983
  data-test-id="containerComponent"
1047
984
  />
1048
985
  </div>
1049
- <div
1050
- class="line borderColor_default "
1051
- />
1052
986
  </div>
1053
987
  </DocumentFragment>
1054
988
  `;
@@ -1056,10 +990,8 @@ exports[`TextBoxIcon component Should be render with the basic set of default pr
1056
990
  exports[`TextBoxIcon component Should render Varient - default 1`] = `
1057
991
  <DocumentFragment>
1058
992
  <div
1059
- class="container effect flex rowdir"
1060
- data-id="containerComponent"
993
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1061
994
  data-selector-id="textBoxIcon"
1062
- data-test-id="containerComponent"
1063
995
  >
1064
996
  <div
1065
997
  class="grow basis shrinkOff"
@@ -1090,9 +1022,6 @@ exports[`TextBoxIcon component Should render Varient - default 1`] = `
1090
1022
  data-test-id="containerComponent"
1091
1023
  />
1092
1024
  </div>
1093
- <div
1094
- class="line borderColor_default "
1095
- />
1096
1025
  </div>
1097
1026
  </DocumentFragment>
1098
1027
  `;
@@ -1100,10 +1029,8 @@ exports[`TextBoxIcon component Should render Varient - default 1`] = `
1100
1029
  exports[`TextBoxIcon component Should render Varient - primary 1`] = `
1101
1030
  <DocumentFragment>
1102
1031
  <div
1103
- class="container effect flex rowdir"
1104
- data-id="containerComponent"
1032
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1105
1033
  data-selector-id="textBoxIcon"
1106
- data-test-id="containerComponent"
1107
1034
  >
1108
1035
  <div
1109
1036
  class="grow basis shrinkOff"
@@ -1134,9 +1061,6 @@ exports[`TextBoxIcon component Should render Varient - primary 1`] = `
1134
1061
  data-test-id="containerComponent"
1135
1062
  />
1136
1063
  </div>
1137
- <div
1138
- class="line borderColor_default "
1139
- />
1140
1064
  </div>
1141
1065
  </DocumentFragment>
1142
1066
  `;
@@ -1144,10 +1068,8 @@ exports[`TextBoxIcon component Should render Varient - primary 1`] = `
1144
1068
  exports[`TextBoxIcon component Should render Varient - secondary 1`] = `
1145
1069
  <DocumentFragment>
1146
1070
  <div
1147
- class="container effect flex rowdir"
1148
- data-id="containerComponent"
1071
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1149
1072
  data-selector-id="textBoxIcon"
1150
- data-test-id="containerComponent"
1151
1073
  >
1152
1074
  <div
1153
1075
  class="grow basis shrinkOff"
@@ -1178,9 +1100,6 @@ exports[`TextBoxIcon component Should render Varient - secondary 1`] = `
1178
1100
  data-test-id="containerComponent"
1179
1101
  />
1180
1102
  </div>
1181
- <div
1182
- class="line borderColor_default "
1183
- />
1184
1103
  </div>
1185
1104
  </DocumentFragment>
1186
1105
  `;
@@ -1188,10 +1107,8 @@ exports[`TextBoxIcon component Should render Varient - secondary 1`] = `
1188
1107
  exports[`TextBoxIcon component Should render borderColor - default 1`] = `
1189
1108
  <DocumentFragment>
1190
1109
  <div
1191
- class="container effect flex rowdir"
1192
- data-id="containerComponent"
1110
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1193
1111
  data-selector-id="textBoxIcon"
1194
- data-test-id="containerComponent"
1195
1112
  >
1196
1113
  <div
1197
1114
  class="grow basis shrinkOff"
@@ -1222,9 +1139,6 @@ exports[`TextBoxIcon component Should render borderColor - default 1`] = `
1222
1139
  data-test-id="containerComponent"
1223
1140
  />
1224
1141
  </div>
1225
- <div
1226
- class="line borderColor_default "
1227
- />
1228
1142
  </div>
1229
1143
  </DocumentFragment>
1230
1144
  `;
@@ -1232,10 +1146,8 @@ exports[`TextBoxIcon component Should render borderColor - default 1`] = `
1232
1146
  exports[`TextBoxIcon component Should render borderColor - error 1`] = `
1233
1147
  <DocumentFragment>
1234
1148
  <div
1235
- class="container effect flex rowdir"
1236
- data-id="containerComponent"
1149
+ class="varClass customContainer border_bottom effect borderColor_error hasBorder container flex rowdir"
1237
1150
  data-selector-id="textBoxIcon"
1238
- data-test-id="containerComponent"
1239
1151
  >
1240
1152
  <div
1241
1153
  class="grow basis shrinkOff"
@@ -1266,9 +1178,6 @@ exports[`TextBoxIcon component Should render borderColor - error 1`] = `
1266
1178
  data-test-id="containerComponent"
1267
1179
  />
1268
1180
  </div>
1269
- <div
1270
- class="line borderColor_error "
1271
- />
1272
1181
  </div>
1273
1182
  </DocumentFragment>
1274
1183
  `;
@@ -1276,10 +1185,8 @@ exports[`TextBoxIcon component Should render borderColor - error 1`] = `
1276
1185
  exports[`TextBoxIcon component Should render borderColor - transparent 1`] = `
1277
1186
  <DocumentFragment>
1278
1187
  <div
1279
- class="container effect flex rowdir"
1280
- data-id="containerComponent"
1188
+ class="varClass customContainer border_bottom effect borderColor_transparent hasBorder container flex rowdir"
1281
1189
  data-selector-id="textBoxIcon"
1282
- data-test-id="containerComponent"
1283
1190
  >
1284
1191
  <div
1285
1192
  class="grow basis shrinkOff"
@@ -1310,9 +1217,6 @@ exports[`TextBoxIcon component Should render borderColor - transparent 1`] = `
1310
1217
  data-test-id="containerComponent"
1311
1218
  />
1312
1219
  </div>
1313
- <div
1314
- class="line borderColor_transparent "
1315
- />
1316
1220
  </div>
1317
1221
  </DocumentFragment>
1318
1222
  `;
@@ -1320,10 +1224,8 @@ exports[`TextBoxIcon component Should render borderColor - transparent 1`] = `
1320
1224
  exports[`TextBoxIcon component Should render size - medium 1`] = `
1321
1225
  <DocumentFragment>
1322
1226
  <div
1323
- class="container effect flex rowdir"
1324
- data-id="containerComponent"
1227
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1325
1228
  data-selector-id="textBoxIcon"
1326
- data-test-id="containerComponent"
1327
1229
  >
1328
1230
  <div
1329
1231
  class="grow basis shrinkOff"
@@ -1354,9 +1256,6 @@ exports[`TextBoxIcon component Should render size - medium 1`] = `
1354
1256
  data-test-id="containerComponent"
1355
1257
  />
1356
1258
  </div>
1357
- <div
1358
- class="line borderColor_default "
1359
- />
1360
1259
  </div>
1361
1260
  </DocumentFragment>
1362
1261
  `;
@@ -1364,10 +1263,8 @@ exports[`TextBoxIcon component Should render size - medium 1`] = `
1364
1263
  exports[`TextBoxIcon component Should render size - small 1`] = `
1365
1264
  <DocumentFragment>
1366
1265
  <div
1367
- class="container effect flex rowdir"
1368
- data-id="containerComponent"
1266
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1369
1267
  data-selector-id="textBoxIcon"
1370
- data-test-id="containerComponent"
1371
1268
  >
1372
1269
  <div
1373
1270
  class="grow basis shrinkOff"
@@ -1398,9 +1295,6 @@ exports[`TextBoxIcon component Should render size - small 1`] = `
1398
1295
  data-test-id="containerComponent"
1399
1296
  />
1400
1297
  </div>
1401
- <div
1402
- class="line borderColor_default "
1403
- />
1404
1298
  </div>
1405
1299
  </DocumentFragment>
1406
1300
  `;
@@ -1408,10 +1302,8 @@ exports[`TextBoxIcon component Should render size - small 1`] = `
1408
1302
  exports[`TextBoxIcon component Should render size - xmedium 1`] = `
1409
1303
  <DocumentFragment>
1410
1304
  <div
1411
- class="container effect flex rowdir"
1412
- data-id="containerComponent"
1305
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1413
1306
  data-selector-id="textBoxIcon"
1414
- data-test-id="containerComponent"
1415
1307
  >
1416
1308
  <div
1417
1309
  class="grow basis shrinkOff"
@@ -1442,9 +1334,6 @@ exports[`TextBoxIcon component Should render size - xmedium 1`] = `
1442
1334
  data-test-id="containerComponent"
1443
1335
  />
1444
1336
  </div>
1445
- <div
1446
- class="line borderColor_default "
1447
- />
1448
1337
  </div>
1449
1338
  </DocumentFragment>
1450
1339
  `;
@@ -1452,10 +1341,8 @@ exports[`TextBoxIcon component Should render size - xmedium 1`] = `
1452
1341
  exports[`TextBoxIcon component Should render size - xsmall 1`] = `
1453
1342
  <DocumentFragment>
1454
1343
  <div
1455
- class="container effect flex rowdir"
1456
- data-id="containerComponent"
1344
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1457
1345
  data-selector-id="textBoxIcon"
1458
- data-test-id="containerComponent"
1459
1346
  >
1460
1347
  <div
1461
1348
  class="grow basis shrinkOff"
@@ -1486,9 +1373,6 @@ exports[`TextBoxIcon component Should render size - xsmall 1`] = `
1486
1373
  data-test-id="containerComponent"
1487
1374
  />
1488
1375
  </div>
1489
- <div
1490
- class="line borderColor_default "
1491
- />
1492
1376
  </div>
1493
1377
  </DocumentFragment>
1494
1378
  `;
@@ -1496,10 +1380,8 @@ exports[`TextBoxIcon component Should render size - xsmall 1`] = `
1496
1380
  exports[`TextBoxIcon component Should render type - number 1`] = `
1497
1381
  <DocumentFragment>
1498
1382
  <div
1499
- class="container effect flex rowdir"
1500
- data-id="containerComponent"
1383
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1501
1384
  data-selector-id="textBoxIcon"
1502
- data-test-id="containerComponent"
1503
1385
  >
1504
1386
  <div
1505
1387
  class="grow basis shrinkOff"
@@ -1530,9 +1412,6 @@ exports[`TextBoxIcon component Should render type - number 1`] = `
1530
1412
  data-test-id="containerComponent"
1531
1413
  />
1532
1414
  </div>
1533
- <div
1534
- class="line borderColor_default "
1535
- />
1536
1415
  </div>
1537
1416
  </DocumentFragment>
1538
1417
  `;
@@ -1540,10 +1419,8 @@ exports[`TextBoxIcon component Should render type - number 1`] = `
1540
1419
  exports[`TextBoxIcon component Should render type - password 1`] = `
1541
1420
  <DocumentFragment>
1542
1421
  <div
1543
- class="container effect flex rowdir"
1544
- data-id="containerComponent"
1422
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1545
1423
  data-selector-id="textBoxIcon"
1546
- data-test-id="containerComponent"
1547
1424
  >
1548
1425
  <div
1549
1426
  class="grow basis shrinkOff"
@@ -1574,9 +1451,6 @@ exports[`TextBoxIcon component Should render type - password 1`] = `
1574
1451
  data-test-id="containerComponent"
1575
1452
  />
1576
1453
  </div>
1577
- <div
1578
- class="line borderColor_default "
1579
- />
1580
1454
  </div>
1581
1455
  </DocumentFragment>
1582
1456
  `;
@@ -1584,10 +1458,8 @@ exports[`TextBoxIcon component Should render type - password 1`] = `
1584
1458
  exports[`TextBoxIcon component Should render type - text 1`] = `
1585
1459
  <DocumentFragment>
1586
1460
  <div
1587
- class="container effect flex rowdir"
1588
- data-id="containerComponent"
1461
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1589
1462
  data-selector-id="textBoxIcon"
1590
- data-test-id="containerComponent"
1591
1463
  >
1592
1464
  <div
1593
1465
  class="grow basis shrinkOff"
@@ -1618,9 +1490,6 @@ exports[`TextBoxIcon component Should render type - text 1`] = `
1618
1490
  data-test-id="containerComponent"
1619
1491
  />
1620
1492
  </div>
1621
- <div
1622
- class="line borderColor_default "
1623
- />
1624
1493
  </div>
1625
1494
  </DocumentFragment>
1626
1495
  `;
@@ -1628,10 +1497,8 @@ exports[`TextBoxIcon component Should render type - text 1`] = `
1628
1497
  exports[`TextBoxIcon component rendering the Custom Props 1`] = `
1629
1498
  <DocumentFragment>
1630
1499
  <div
1631
- class="container effect flex rowdir"
1632
- data-id="containerComponent"
1500
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1633
1501
  data-selector-id="textBoxIcon"
1634
- data-test-id="containerComponent"
1635
1502
  >
1636
1503
  <div
1637
1504
  class="grow basis shrinkOff"
@@ -1663,9 +1530,6 @@ exports[`TextBoxIcon component rendering the Custom Props 1`] = `
1663
1530
  data-test-id="containerComponent"
1664
1531
  />
1665
1532
  </div>
1666
- <div
1667
- class="line borderColor_default "
1668
- />
1669
1533
  </div>
1670
1534
  </DocumentFragment>
1671
1535
  `;
@@ -1673,10 +1537,8 @@ exports[`TextBoxIcon component rendering the Custom Props 1`] = `
1673
1537
  exports[`TextBoxIcon component rendering the Custom class 1`] = `
1674
1538
  <DocumentFragment>
1675
1539
  <div
1676
- class="container effect customTBoxWrapTextBoxIcon flex rowdir"
1677
- data-id="containerComponent"
1540
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container customTBoxWrapTextBoxIcon flex rowdir"
1678
1541
  data-selector-id="textBoxIcon"
1679
- data-test-id="containerComponent"
1680
1542
  >
1681
1543
  <div
1682
1544
  class="grow basis shrinkOff"
@@ -1707,9 +1569,6 @@ exports[`TextBoxIcon component rendering the Custom class 1`] = `
1707
1569
  data-test-id="containerComponent"
1708
1570
  />
1709
1571
  </div>
1710
- <div
1711
- class="line borderColor_default customTBoxLineTextBox"
1712
- />
1713
1572
  </div>
1714
1573
  </DocumentFragment>
1715
1574
  `;
@@ -1717,10 +1576,8 @@ exports[`TextBoxIcon component rendering the Custom class 1`] = `
1717
1576
  exports[`TextBoxIcon component rendering the i18n value 1`] = `
1718
1577
  <DocumentFragment>
1719
1578
  <div
1720
- class="container effect flex rowdir"
1721
- data-id="containerComponent"
1579
+ class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
1722
1580
  data-selector-id="textBoxIcon"
1723
- data-test-id="containerComponent"
1724
1581
  >
1725
1582
  <div
1726
1583
  class="grow basis shrinkOff"
@@ -1776,9 +1633,6 @@ exports[`TextBoxIcon component rendering the i18n value 1`] = `
1776
1633
  </button>
1777
1634
  </div>
1778
1635
  </div>
1779
- <div
1780
- class="line borderColor_default "
1781
- />
1782
1636
  </div>
1783
1637
  </DocumentFragment>
1784
1638
  `;