@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
|
@@ -12,10 +12,10 @@ exports[`Select - Should close the dropdown when clicking outside 1`] = `
|
|
|
12
12
|
data-test-id="selectComponent"
|
|
13
13
|
>
|
|
14
14
|
<div
|
|
15
|
-
class="container
|
|
16
|
-
data-id="
|
|
15
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
16
|
+
data-id="selectComponent_textBox"
|
|
17
17
|
data-selector-id="textBoxIcon"
|
|
18
|
-
data-test-id="
|
|
18
|
+
data-test-id="selectComponent_textBox"
|
|
19
19
|
>
|
|
20
20
|
<div
|
|
21
21
|
class="grow basis shrinkOff"
|
|
@@ -89,9 +89,6 @@ exports[`Select - Should close the dropdown when clicking outside 1`] = `
|
|
|
89
89
|
</div>
|
|
90
90
|
</div>
|
|
91
91
|
</div>
|
|
92
|
-
<div
|
|
93
|
-
class="line borderColor_default "
|
|
94
|
-
/>
|
|
95
92
|
</div>
|
|
96
93
|
</div>
|
|
97
94
|
</div>
|
|
@@ -110,10 +107,10 @@ exports[`Select - Should highlight the next list-items, when arrow keys pressed
|
|
|
110
107
|
data-test-id="selectComponent"
|
|
111
108
|
>
|
|
112
109
|
<div
|
|
113
|
-
class="
|
|
114
|
-
data-id="
|
|
110
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
111
|
+
data-id="selectComponent_textBox"
|
|
115
112
|
data-selector-id="textBoxIcon"
|
|
116
|
-
data-test-id="
|
|
113
|
+
data-test-id="selectComponent_textBox"
|
|
117
114
|
>
|
|
118
115
|
<div
|
|
119
116
|
class="grow basis shrinkOff"
|
|
@@ -187,9 +184,6 @@ exports[`Select - Should highlight the next list-items, when arrow keys pressed
|
|
|
187
184
|
</div>
|
|
188
185
|
</div>
|
|
189
186
|
</div>
|
|
190
|
-
<div
|
|
191
|
-
class="line borderColor_default "
|
|
192
|
-
/>
|
|
193
187
|
</div>
|
|
194
188
|
</div>
|
|
195
189
|
<div
|
|
@@ -402,10 +396,11 @@ exports[`Select - Should not open the dropdown when disabled 1`] = `
|
|
|
402
396
|
data-test-id="selectComponent_disabled"
|
|
403
397
|
>
|
|
404
398
|
<div
|
|
405
|
-
class="
|
|
406
|
-
data-id="
|
|
399
|
+
class="varClass customContainer border_bottom disabled borderColor_default hasBorder container flex rowdir"
|
|
400
|
+
data-id="selectComponent_textBox"
|
|
407
401
|
data-selector-id="textBoxIcon"
|
|
408
|
-
data-test-id="
|
|
402
|
+
data-test-id="selectComponent_textBox"
|
|
403
|
+
data-title=""
|
|
409
404
|
>
|
|
410
405
|
<div
|
|
411
406
|
class="grow basis shrinkOff"
|
|
@@ -480,9 +475,6 @@ exports[`Select - Should not open the dropdown when disabled 1`] = `
|
|
|
480
475
|
</div>
|
|
481
476
|
</div>
|
|
482
477
|
</div>
|
|
483
|
-
<div
|
|
484
|
-
class="line borderColor_default "
|
|
485
|
-
/>
|
|
486
478
|
</div>
|
|
487
479
|
</div>
|
|
488
480
|
</div>
|
|
@@ -501,10 +493,10 @@ exports[`Select - Should not open the dropdown when readonly 1`] = `
|
|
|
501
493
|
data-test-id="selectComponent_readOnly"
|
|
502
494
|
>
|
|
503
495
|
<div
|
|
504
|
-
class="
|
|
505
|
-
data-id="
|
|
496
|
+
class="varClass customContainer border_bottom readonly borderColor_default hasBorder container flex rowdir"
|
|
497
|
+
data-id="selectComponent_textBox"
|
|
506
498
|
data-selector-id="textBoxIcon"
|
|
507
|
-
data-test-id="
|
|
499
|
+
data-test-id="selectComponent_textBox"
|
|
508
500
|
>
|
|
509
501
|
<div
|
|
510
502
|
class="grow basis shrinkOff"
|
|
@@ -578,9 +570,6 @@ exports[`Select - Should not open the dropdown when readonly 1`] = `
|
|
|
578
570
|
</div>
|
|
579
571
|
</div>
|
|
580
572
|
</div>
|
|
581
|
-
<div
|
|
582
|
-
class="line borderColor_default "
|
|
583
|
-
/>
|
|
584
573
|
</div>
|
|
585
574
|
</div>
|
|
586
575
|
</div>
|
|
@@ -599,10 +588,10 @@ exports[`Select - Should open the dropdown, when click on the input 1`] = `
|
|
|
599
588
|
data-test-id="selectComponent"
|
|
600
589
|
>
|
|
601
590
|
<div
|
|
602
|
-
class="
|
|
603
|
-
data-id="
|
|
591
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
592
|
+
data-id="selectComponent_textBox"
|
|
604
593
|
data-selector-id="textBoxIcon"
|
|
605
|
-
data-test-id="
|
|
594
|
+
data-test-id="selectComponent_textBox"
|
|
606
595
|
>
|
|
607
596
|
<div
|
|
608
597
|
class="grow basis shrinkOff"
|
|
@@ -674,9 +663,6 @@ exports[`Select - Should open the dropdown, when click on the input 1`] = `
|
|
|
674
663
|
</div>
|
|
675
664
|
</div>
|
|
676
665
|
</div>
|
|
677
|
-
<div
|
|
678
|
-
class="line borderColor_default "
|
|
679
|
-
/>
|
|
680
666
|
</div>
|
|
681
667
|
</div>
|
|
682
668
|
<div
|
|
@@ -751,10 +737,10 @@ exports[`Select - Should render all the options when search value is cleared 1`]
|
|
|
751
737
|
data-test-id="selectComponent"
|
|
752
738
|
>
|
|
753
739
|
<div
|
|
754
|
-
class="
|
|
755
|
-
data-id="
|
|
740
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
741
|
+
data-id="selectComponent_textBox"
|
|
756
742
|
data-selector-id="textBoxIcon"
|
|
757
|
-
data-test-id="
|
|
743
|
+
data-test-id="selectComponent_textBox"
|
|
758
744
|
>
|
|
759
745
|
<div
|
|
760
746
|
class="grow basis shrinkOff"
|
|
@@ -828,9 +814,6 @@ exports[`Select - Should render all the options when search value is cleared 1`]
|
|
|
828
814
|
</div>
|
|
829
815
|
</div>
|
|
830
816
|
</div>
|
|
831
|
-
<div
|
|
832
|
-
class="line borderColor_default "
|
|
833
|
-
/>
|
|
834
817
|
</div>
|
|
835
818
|
</div>
|
|
836
819
|
<div
|
|
@@ -880,10 +863,10 @@ exports[`Select - Should render all the options when search value is cleared 1`]
|
|
|
880
863
|
class="search medium"
|
|
881
864
|
>
|
|
882
865
|
<div
|
|
883
|
-
class="
|
|
884
|
-
data-id="
|
|
866
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container flex rowdir"
|
|
867
|
+
data-id="selectComponent_search"
|
|
885
868
|
data-selector-id="textBoxIcon"
|
|
886
|
-
data-test-id="
|
|
869
|
+
data-test-id="selectComponent_search"
|
|
887
870
|
>
|
|
888
871
|
<div
|
|
889
872
|
class="grow basis shrinkOff"
|
|
@@ -919,9 +902,6 @@ exports[`Select - Should render all the options when search value is cleared 1`]
|
|
|
919
902
|
data-test-id="containerComponent"
|
|
920
903
|
/>
|
|
921
904
|
</div>
|
|
922
|
-
<div
|
|
923
|
-
class="line borderColor_default "
|
|
924
|
-
/>
|
|
925
905
|
</div>
|
|
926
906
|
</div>
|
|
927
907
|
</div>
|
|
@@ -1098,10 +1078,10 @@ exports[`Select - Should render given the options 1`] = `
|
|
|
1098
1078
|
data-test-id="selectComponent"
|
|
1099
1079
|
>
|
|
1100
1080
|
<div
|
|
1101
|
-
class="
|
|
1102
|
-
data-id="
|
|
1081
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
1082
|
+
data-id="selectComponent_textBox"
|
|
1103
1083
|
data-selector-id="textBoxIcon"
|
|
1104
|
-
data-test-id="
|
|
1084
|
+
data-test-id="selectComponent_textBox"
|
|
1105
1085
|
>
|
|
1106
1086
|
<div
|
|
1107
1087
|
class="grow basis shrinkOff"
|
|
@@ -1175,9 +1155,6 @@ exports[`Select - Should render given the options 1`] = `
|
|
|
1175
1155
|
</div>
|
|
1176
1156
|
</div>
|
|
1177
1157
|
</div>
|
|
1178
|
-
<div
|
|
1179
|
-
class="line borderColor_default "
|
|
1180
|
-
/>
|
|
1181
1158
|
</div>
|
|
1182
1159
|
</div>
|
|
1183
1160
|
<div
|
|
@@ -1390,10 +1367,10 @@ exports[`Select - Should render the Select component 1`] = `
|
|
|
1390
1367
|
data-test-id="selectComponent"
|
|
1391
1368
|
>
|
|
1392
1369
|
<div
|
|
1393
|
-
class="container
|
|
1394
|
-
data-id="
|
|
1370
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
1371
|
+
data-id="selectComponent_textBox"
|
|
1395
1372
|
data-selector-id="textBoxIcon"
|
|
1396
|
-
data-test-id="
|
|
1373
|
+
data-test-id="selectComponent_textBox"
|
|
1397
1374
|
>
|
|
1398
1375
|
<div
|
|
1399
1376
|
class="grow basis shrinkOff"
|
|
@@ -1465,9 +1442,6 @@ exports[`Select - Should render the Select component 1`] = `
|
|
|
1465
1442
|
</div>
|
|
1466
1443
|
</div>
|
|
1467
1444
|
</div>
|
|
1468
|
-
<div
|
|
1469
|
-
class="line borderColor_default "
|
|
1470
|
-
/>
|
|
1471
1445
|
</div>
|
|
1472
1446
|
</div>
|
|
1473
1447
|
</div>
|
|
@@ -1486,10 +1460,10 @@ exports[`Select - Should render the default selected value 1`] = `
|
|
|
1486
1460
|
data-test-id="selectComponent"
|
|
1487
1461
|
>
|
|
1488
1462
|
<div
|
|
1489
|
-
class="container
|
|
1490
|
-
data-id="
|
|
1463
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
1464
|
+
data-id="selectComponent_textBox"
|
|
1491
1465
|
data-selector-id="textBoxIcon"
|
|
1492
|
-
data-test-id="
|
|
1466
|
+
data-test-id="selectComponent_textBox"
|
|
1493
1467
|
>
|
|
1494
1468
|
<div
|
|
1495
1469
|
class="grow basis shrinkOff"
|
|
@@ -1563,9 +1537,6 @@ exports[`Select - Should render the default selected value 1`] = `
|
|
|
1563
1537
|
</div>
|
|
1564
1538
|
</div>
|
|
1565
1539
|
</div>
|
|
1566
|
-
<div
|
|
1567
|
-
class="line borderColor_default "
|
|
1568
|
-
/>
|
|
1569
1540
|
</div>
|
|
1570
1541
|
</div>
|
|
1571
1542
|
</div>
|
|
@@ -1584,10 +1555,10 @@ exports[`Select - Should render the given selected value 1`] = `
|
|
|
1584
1555
|
data-test-id="selectComponent"
|
|
1585
1556
|
>
|
|
1586
1557
|
<div
|
|
1587
|
-
class="container
|
|
1588
|
-
data-id="
|
|
1558
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
1559
|
+
data-id="selectComponent_textBox"
|
|
1589
1560
|
data-selector-id="textBoxIcon"
|
|
1590
|
-
data-test-id="
|
|
1561
|
+
data-test-id="selectComponent_textBox"
|
|
1591
1562
|
>
|
|
1592
1563
|
<div
|
|
1593
1564
|
class="grow basis shrinkOff"
|
|
@@ -1661,9 +1632,6 @@ exports[`Select - Should render the given selected value 1`] = `
|
|
|
1661
1632
|
</div>
|
|
1662
1633
|
</div>
|
|
1663
1634
|
</div>
|
|
1664
|
-
<div
|
|
1665
|
-
class="line borderColor_default "
|
|
1666
|
-
/>
|
|
1667
1635
|
</div>
|
|
1668
1636
|
</div>
|
|
1669
1637
|
</div>
|
|
@@ -1671,6 +1639,256 @@ exports[`Select - Should render the given selected value 1`] = `
|
|
|
1671
1639
|
`;
|
|
1672
1640
|
|
|
1673
1641
|
exports[`Select - Should render the only options matching search value 1`] = `
|
|
1642
|
+
<DocumentFragment>
|
|
1643
|
+
<div
|
|
1644
|
+
class="container box_medium "
|
|
1645
|
+
data-selector-id="select"
|
|
1646
|
+
>
|
|
1647
|
+
<div
|
|
1648
|
+
class=""
|
|
1649
|
+
data-id="selectComponent"
|
|
1650
|
+
data-test-id="selectComponent"
|
|
1651
|
+
>
|
|
1652
|
+
<div
|
|
1653
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
1654
|
+
data-id="selectComponent_textBox"
|
|
1655
|
+
data-selector-id="textBoxIcon"
|
|
1656
|
+
data-test-id="selectComponent_textBox"
|
|
1657
|
+
>
|
|
1658
|
+
<div
|
|
1659
|
+
class="grow basis shrinkOff"
|
|
1660
|
+
data-id="boxComponent"
|
|
1661
|
+
data-selector-id="box"
|
|
1662
|
+
data-test-id="boxComponent"
|
|
1663
|
+
>
|
|
1664
|
+
<input
|
|
1665
|
+
aria-activedescendant="1"
|
|
1666
|
+
aria-controls="1"
|
|
1667
|
+
aria-expanded="true"
|
|
1668
|
+
aria-haspopup="true"
|
|
1669
|
+
aria-label="click to select options"
|
|
1670
|
+
aria-owns="1"
|
|
1671
|
+
aria-readonly="true"
|
|
1672
|
+
autocomplete="off"
|
|
1673
|
+
class=" pointer container medium default effect focus borderColor_default inputDotted "
|
|
1674
|
+
data-id="selectComponent_textBox"
|
|
1675
|
+
data-selector-id="textBoxIcon"
|
|
1676
|
+
data-test-id="selectComponent_textBox"
|
|
1677
|
+
data-title="Option 1"
|
|
1678
|
+
maxlength="250"
|
|
1679
|
+
placeholder=""
|
|
1680
|
+
readonly=""
|
|
1681
|
+
role="Menuitem"
|
|
1682
|
+
type="text"
|
|
1683
|
+
value="Option 1"
|
|
1684
|
+
/>
|
|
1685
|
+
</div>
|
|
1686
|
+
<div
|
|
1687
|
+
class="iconContainer shrinkOff"
|
|
1688
|
+
data-id="boxComponent"
|
|
1689
|
+
data-selector-id="box"
|
|
1690
|
+
data-test-id="boxComponent"
|
|
1691
|
+
>
|
|
1692
|
+
<div
|
|
1693
|
+
class="flex cover rowdir"
|
|
1694
|
+
data-id="containerComponent"
|
|
1695
|
+
data-selector-id="container"
|
|
1696
|
+
data-test-id="containerComponent"
|
|
1697
|
+
>
|
|
1698
|
+
<div
|
|
1699
|
+
class="icon rotated shrinkOff"
|
|
1700
|
+
data-id="boxComponent"
|
|
1701
|
+
data-selector-id="box"
|
|
1702
|
+
data-test-id="boxComponent"
|
|
1703
|
+
>
|
|
1704
|
+
<div
|
|
1705
|
+
class="rightPlaceholder inflex rowdir both"
|
|
1706
|
+
data-id="containerComponent"
|
|
1707
|
+
data-selector-id="container"
|
|
1708
|
+
data-test-id="containerComponent"
|
|
1709
|
+
>
|
|
1710
|
+
<div
|
|
1711
|
+
aria-hidden="true"
|
|
1712
|
+
class="arrowIcon flex cover coldir both"
|
|
1713
|
+
data-id="selectComponent_downIcon"
|
|
1714
|
+
data-selector-id="container"
|
|
1715
|
+
data-test-id="selectComponent_downIcon"
|
|
1716
|
+
>
|
|
1717
|
+
<i
|
|
1718
|
+
aria-hidden="true"
|
|
1719
|
+
class="zd_font_icons basic icon-down "
|
|
1720
|
+
data-id="fontIcon"
|
|
1721
|
+
data-selector-id="fontIcon"
|
|
1722
|
+
data-test-id="fontIcon"
|
|
1723
|
+
style="--zd-iconfont-size: var(--zd_font_size7);"
|
|
1724
|
+
/>
|
|
1725
|
+
</div>
|
|
1726
|
+
</div>
|
|
1727
|
+
</div>
|
|
1728
|
+
</div>
|
|
1729
|
+
</div>
|
|
1730
|
+
</div>
|
|
1731
|
+
</div>
|
|
1732
|
+
<div
|
|
1733
|
+
class="main container bottomMid default"
|
|
1734
|
+
data-a11y-focus-main-area="true"
|
|
1735
|
+
data-arrow-position="mid"
|
|
1736
|
+
data-box-direction="bottom"
|
|
1737
|
+
data-id="selectComponent_suggestions"
|
|
1738
|
+
data-position="bottomMid"
|
|
1739
|
+
data-selector-id="dropBox"
|
|
1740
|
+
data-test-id="selectComponent_suggestions"
|
|
1741
|
+
dot-ui-element="dropbox"
|
|
1742
|
+
style="z-index: 4;"
|
|
1743
|
+
>
|
|
1744
|
+
<div
|
|
1745
|
+
class="subContainer shadow radius bounce defaultPalette"
|
|
1746
|
+
data-id="selectComponent_suggestions_subcontainer"
|
|
1747
|
+
data-selector-id="dropBox_subcontainer"
|
|
1748
|
+
data-test-id="selectComponent_suggestions_subcontainer"
|
|
1749
|
+
tabindex="-1"
|
|
1750
|
+
>
|
|
1751
|
+
<div
|
|
1752
|
+
class="flex rowdir"
|
|
1753
|
+
data-id="containerComponent"
|
|
1754
|
+
data-selector-id="container"
|
|
1755
|
+
data-test-id="containerComponent"
|
|
1756
|
+
>
|
|
1757
|
+
<div
|
|
1758
|
+
class="grow basis shrinkOff"
|
|
1759
|
+
data-id="boxComponent"
|
|
1760
|
+
data-selector-id="box"
|
|
1761
|
+
data-test-id="boxComponent"
|
|
1762
|
+
>
|
|
1763
|
+
<div
|
|
1764
|
+
class="flex cover coldir"
|
|
1765
|
+
data-id="containerComponent"
|
|
1766
|
+
data-selector-id="container"
|
|
1767
|
+
data-test-id="containerComponent"
|
|
1768
|
+
>
|
|
1769
|
+
<div
|
|
1770
|
+
class="notScroll shrinkOff"
|
|
1771
|
+
data-id="CardHeader"
|
|
1772
|
+
data-selector-id="cardHeader"
|
|
1773
|
+
data-test-id="CardHeader"
|
|
1774
|
+
>
|
|
1775
|
+
<div
|
|
1776
|
+
class="search medium"
|
|
1777
|
+
>
|
|
1778
|
+
<div
|
|
1779
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container flex rowdir"
|
|
1780
|
+
data-id="selectComponent_search"
|
|
1781
|
+
data-selector-id="textBoxIcon"
|
|
1782
|
+
data-test-id="selectComponent_search"
|
|
1783
|
+
>
|
|
1784
|
+
<div
|
|
1785
|
+
class="grow basis shrinkOff"
|
|
1786
|
+
data-id="boxComponent"
|
|
1787
|
+
data-selector-id="box"
|
|
1788
|
+
data-test-id="boxComponent"
|
|
1789
|
+
>
|
|
1790
|
+
<input
|
|
1791
|
+
aria-autocomplete="list"
|
|
1792
|
+
aria-controls="1"
|
|
1793
|
+
aria-describedby="2"
|
|
1794
|
+
autocomplete="off"
|
|
1795
|
+
class=" container small default effect borderColor_default "
|
|
1796
|
+
data-id="selectComponent_search"
|
|
1797
|
+
data-selector-id="textBoxIcon"
|
|
1798
|
+
data-test-id="selectComponent_search"
|
|
1799
|
+
maxlength="250"
|
|
1800
|
+
placeholder="Search"
|
|
1801
|
+
type="text"
|
|
1802
|
+
value="2"
|
|
1803
|
+
/>
|
|
1804
|
+
</div>
|
|
1805
|
+
<div
|
|
1806
|
+
class="iconContainer shrinkOff"
|
|
1807
|
+
data-id="boxComponent"
|
|
1808
|
+
data-selector-id="box"
|
|
1809
|
+
data-test-id="boxComponent"
|
|
1810
|
+
>
|
|
1811
|
+
<div
|
|
1812
|
+
class="flex cover rowdir"
|
|
1813
|
+
data-id="containerComponent"
|
|
1814
|
+
data-selector-id="container"
|
|
1815
|
+
data-test-id="containerComponent"
|
|
1816
|
+
/>
|
|
1817
|
+
</div>
|
|
1818
|
+
</div>
|
|
1819
|
+
</div>
|
|
1820
|
+
</div>
|
|
1821
|
+
<div
|
|
1822
|
+
class="small grow basis shrinkOn scrolly"
|
|
1823
|
+
data-id="CardContent"
|
|
1824
|
+
data-selector-id="cardContent"
|
|
1825
|
+
data-test-id="CardContent"
|
|
1826
|
+
>
|
|
1827
|
+
<div
|
|
1828
|
+
class="flex coldir"
|
|
1829
|
+
data-id="containerComponent"
|
|
1830
|
+
data-selector-id="container"
|
|
1831
|
+
data-test-id="containerComponent"
|
|
1832
|
+
id="1"
|
|
1833
|
+
role="listbox"
|
|
1834
|
+
tabindex="0"
|
|
1835
|
+
>
|
|
1836
|
+
<div
|
|
1837
|
+
class="listItemContainer shrinkOff"
|
|
1838
|
+
data-id="selectComponent_Options"
|
|
1839
|
+
data-selector-id="box"
|
|
1840
|
+
data-test-id="selectComponent_Options"
|
|
1841
|
+
>
|
|
1842
|
+
<li
|
|
1843
|
+
aria-label="Option 2"
|
|
1844
|
+
aria-selected="false"
|
|
1845
|
+
ariaparentrole="listbox"
|
|
1846
|
+
class="list medium default defaultHover mediumwithTick flex rowdir vCenter"
|
|
1847
|
+
data-a11y-inset-focus="true"
|
|
1848
|
+
data-a11y-list-active="true"
|
|
1849
|
+
data-id="Option 2"
|
|
1850
|
+
data-selector-id="listItem"
|
|
1851
|
+
data-test-id="Option 2"
|
|
1852
|
+
data-title="Option 2"
|
|
1853
|
+
role="option"
|
|
1854
|
+
tabindex="0"
|
|
1855
|
+
>
|
|
1856
|
+
<div
|
|
1857
|
+
class="leftBox grow basis shrinkOff"
|
|
1858
|
+
data-id="boxComponent"
|
|
1859
|
+
data-selector-id="box"
|
|
1860
|
+
data-test-id="boxComponent"
|
|
1861
|
+
>
|
|
1862
|
+
<div
|
|
1863
|
+
class="titleBox shrinkOff"
|
|
1864
|
+
data-id="boxComponent"
|
|
1865
|
+
data-selector-id="box"
|
|
1866
|
+
data-test-id="boxComponent"
|
|
1867
|
+
>
|
|
1868
|
+
<div
|
|
1869
|
+
class="value basisAuto shrinkOn"
|
|
1870
|
+
data-id="boxComponent"
|
|
1871
|
+
data-selector-id="box"
|
|
1872
|
+
data-test-id="boxComponent"
|
|
1873
|
+
>
|
|
1874
|
+
Option 2
|
|
1875
|
+
</div>
|
|
1876
|
+
</div>
|
|
1877
|
+
</div>
|
|
1878
|
+
</li>
|
|
1879
|
+
</div>
|
|
1880
|
+
</div>
|
|
1881
|
+
</div>
|
|
1882
|
+
</div>
|
|
1883
|
+
</div>
|
|
1884
|
+
</div>
|
|
1885
|
+
</div>
|
|
1886
|
+
</div>
|
|
1887
|
+
</div>
|
|
1888
|
+
</DocumentFragment>
|
|
1889
|
+
`;
|
|
1890
|
+
|
|
1891
|
+
exports[`Select - Should render the only options matching search value even with additional spaces before and after 1`] = `
|
|
1674
1892
|
<DocumentFragment>
|
|
1675
1893
|
<div
|
|
1676
1894
|
class="container box_medium "
|
|
@@ -1834,7 +2052,7 @@ exports[`Select - Should render the only options matching search value 1`] = `
|
|
|
1834
2052
|
maxlength="250"
|
|
1835
2053
|
placeholder="Search"
|
|
1836
2054
|
type="text"
|
|
1837
|
-
value="2"
|
|
2055
|
+
value=" 2 "
|
|
1838
2056
|
/>
|
|
1839
2057
|
</div>
|
|
1840
2058
|
<div
|
|
@@ -1848,7 +2066,32 @@ exports[`Select - Should render the only options matching search value 1`] = `
|
|
|
1848
2066
|
data-id="containerComponent"
|
|
1849
2067
|
data-selector-id="container"
|
|
1850
2068
|
data-test-id="containerComponent"
|
|
1851
|
-
|
|
2069
|
+
>
|
|
2070
|
+
<button
|
|
2071
|
+
class="buttonReset icon shrinkOff"
|
|
2072
|
+
data-id="selectComponent_search_ClearIcon"
|
|
2073
|
+
data-selector-id="box"
|
|
2074
|
+
data-test-id="selectComponent_search_ClearIcon"
|
|
2075
|
+
data-title="Clear"
|
|
2076
|
+
>
|
|
2077
|
+
<div
|
|
2078
|
+
aria-hidden="true"
|
|
2079
|
+
class="flex cover coldir both"
|
|
2080
|
+
data-id="containerComponent"
|
|
2081
|
+
data-selector-id="container"
|
|
2082
|
+
data-test-id="containerComponent"
|
|
2083
|
+
>
|
|
2084
|
+
<i
|
|
2085
|
+
aria-hidden="true"
|
|
2086
|
+
class="zd_font_icons basic icon-delete rtl "
|
|
2087
|
+
data-id="fontIcon"
|
|
2088
|
+
data-selector-id="fontIcon"
|
|
2089
|
+
data-test-id="fontIcon"
|
|
2090
|
+
style="--zd-iconfont-size: var(--zd_font_size14);"
|
|
2091
|
+
/>
|
|
2092
|
+
</div>
|
|
2093
|
+
</button>
|
|
2094
|
+
</div>
|
|
1852
2095
|
</div>
|
|
1853
2096
|
<div
|
|
1854
2097
|
class="line borderColor_default "
|
|
@@ -1938,10 +2181,10 @@ exports[`Select - Should render the placeholder when there is no default value 1
|
|
|
1938
2181
|
data-test-id="selectComponent"
|
|
1939
2182
|
>
|
|
1940
2183
|
<div
|
|
1941
|
-
class="container
|
|
1942
|
-
data-id="
|
|
2184
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
2185
|
+
data-id="selectComponent_textBox"
|
|
1943
2186
|
data-selector-id="textBoxIcon"
|
|
1944
|
-
data-test-id="
|
|
2187
|
+
data-test-id="selectComponent_textBox"
|
|
1945
2188
|
>
|
|
1946
2189
|
<div
|
|
1947
2190
|
class="grow basis shrinkOff"
|
|
@@ -2015,9 +2258,6 @@ exports[`Select - Should render the placeholder when there is no default value 1
|
|
|
2015
2258
|
</div>
|
|
2016
2259
|
</div>
|
|
2017
2260
|
</div>
|
|
2018
|
-
<div
|
|
2019
|
-
class="line borderColor_default "
|
|
2020
|
-
/>
|
|
2021
2261
|
</div>
|
|
2022
2262
|
</div>
|
|
2023
2263
|
</div>
|
|
@@ -2036,10 +2276,10 @@ exports[`Select - Should show the custom empty state using getCustomEmptyState p
|
|
|
2036
2276
|
data-test-id="selectComponent"
|
|
2037
2277
|
>
|
|
2038
2278
|
<div
|
|
2039
|
-
class="
|
|
2040
|
-
data-id="
|
|
2279
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
2280
|
+
data-id="selectComponent_textBox"
|
|
2041
2281
|
data-selector-id="textBoxIcon"
|
|
2042
|
-
data-test-id="
|
|
2282
|
+
data-test-id="selectComponent_textBox"
|
|
2043
2283
|
>
|
|
2044
2284
|
<div
|
|
2045
2285
|
class="grow basis shrinkOff"
|
|
@@ -2113,9 +2353,6 @@ exports[`Select - Should show the custom empty state using getCustomEmptyState p
|
|
|
2113
2353
|
</div>
|
|
2114
2354
|
</div>
|
|
2115
2355
|
</div>
|
|
2116
|
-
<div
|
|
2117
|
-
class="line borderColor_default "
|
|
2118
|
-
/>
|
|
2119
2356
|
</div>
|
|
2120
2357
|
</div>
|
|
2121
2358
|
<div
|
|
@@ -2165,10 +2402,10 @@ exports[`Select - Should show the custom empty state using getCustomEmptyState p
|
|
|
2165
2402
|
class="search medium"
|
|
2166
2403
|
>
|
|
2167
2404
|
<div
|
|
2168
|
-
class="
|
|
2169
|
-
data-id="
|
|
2405
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container flex rowdir"
|
|
2406
|
+
data-id="selectComponent_search"
|
|
2170
2407
|
data-selector-id="textBoxIcon"
|
|
2171
|
-
data-test-id="
|
|
2408
|
+
data-test-id="selectComponent_search"
|
|
2172
2409
|
>
|
|
2173
2410
|
<div
|
|
2174
2411
|
class="grow basis shrinkOff"
|
|
@@ -2204,9 +2441,6 @@ exports[`Select - Should show the custom empty state using getCustomEmptyState p
|
|
|
2204
2441
|
data-test-id="containerComponent"
|
|
2205
2442
|
/>
|
|
2206
2443
|
</div>
|
|
2207
|
-
<div
|
|
2208
|
-
class="line borderColor_default "
|
|
2209
|
-
/>
|
|
2210
2444
|
</div>
|
|
2211
2445
|
</div>
|
|
2212
2446
|
</div>
|
|
@@ -2241,10 +2475,10 @@ exports[`Select - Should show the empty message when open the dropdown with no o
|
|
|
2241
2475
|
data-test-id="selectComponent"
|
|
2242
2476
|
>
|
|
2243
2477
|
<div
|
|
2244
|
-
class="
|
|
2245
|
-
data-id="
|
|
2478
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
2479
|
+
data-id="selectComponent_textBox"
|
|
2246
2480
|
data-selector-id="textBoxIcon"
|
|
2247
|
-
data-test-id="
|
|
2481
|
+
data-test-id="selectComponent_textBox"
|
|
2248
2482
|
>
|
|
2249
2483
|
<div
|
|
2250
2484
|
class="grow basis shrinkOff"
|
|
@@ -2316,9 +2550,6 @@ exports[`Select - Should show the empty message when open the dropdown with no o
|
|
|
2316
2550
|
</div>
|
|
2317
2551
|
</div>
|
|
2318
2552
|
</div>
|
|
2319
|
-
<div
|
|
2320
|
-
class="line borderColor_default "
|
|
2321
|
-
/>
|
|
2322
2553
|
</div>
|
|
2323
2554
|
</div>
|
|
2324
2555
|
<div
|
|
@@ -2395,10 +2626,10 @@ exports[`Select - Should trigger getNextOptions, when scroll to the end of the d
|
|
|
2395
2626
|
data-test-id="selectComponent"
|
|
2396
2627
|
>
|
|
2397
2628
|
<div
|
|
2398
|
-
class="
|
|
2399
|
-
data-id="
|
|
2629
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
2630
|
+
data-id="selectComponent_textBox"
|
|
2400
2631
|
data-selector-id="textBoxIcon"
|
|
2401
|
-
data-test-id="
|
|
2632
|
+
data-test-id="selectComponent_textBox"
|
|
2402
2633
|
>
|
|
2403
2634
|
<div
|
|
2404
2635
|
class="grow basis shrinkOff"
|
|
@@ -2472,9 +2703,6 @@ exports[`Select - Should trigger getNextOptions, when scroll to the end of the d
|
|
|
2472
2703
|
</div>
|
|
2473
2704
|
</div>
|
|
2474
2705
|
</div>
|
|
2475
|
-
<div
|
|
2476
|
-
class="line borderColor_default "
|
|
2477
|
-
/>
|
|
2478
2706
|
</div>
|
|
2479
2707
|
</div>
|
|
2480
2708
|
<div
|
|
@@ -2995,10 +3223,10 @@ exports[`Select - Should trigger getNextOptions, when search with needLocalSearc
|
|
|
2995
3223
|
data-test-id="selectComponent"
|
|
2996
3224
|
>
|
|
2997
3225
|
<div
|
|
2998
|
-
class="
|
|
2999
|
-
data-id="
|
|
3226
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
3227
|
+
data-id="selectComponent_textBox"
|
|
3000
3228
|
data-selector-id="textBoxIcon"
|
|
3001
|
-
data-test-id="
|
|
3229
|
+
data-test-id="selectComponent_textBox"
|
|
3002
3230
|
>
|
|
3003
3231
|
<div
|
|
3004
3232
|
class="grow basis shrinkOff"
|
|
@@ -3072,9 +3300,6 @@ exports[`Select - Should trigger getNextOptions, when search with needLocalSearc
|
|
|
3072
3300
|
</div>
|
|
3073
3301
|
</div>
|
|
3074
3302
|
</div>
|
|
3075
|
-
<div
|
|
3076
|
-
class="line borderColor_default "
|
|
3077
|
-
/>
|
|
3078
3303
|
</div>
|
|
3079
3304
|
</div>
|
|
3080
3305
|
<div
|
|
@@ -3124,10 +3349,10 @@ exports[`Select - Should trigger getNextOptions, when search with needLocalSearc
|
|
|
3124
3349
|
class="search medium"
|
|
3125
3350
|
>
|
|
3126
3351
|
<div
|
|
3127
|
-
class="
|
|
3128
|
-
data-id="
|
|
3352
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container flex rowdir"
|
|
3353
|
+
data-id="selectComponent_search"
|
|
3129
3354
|
data-selector-id="textBoxIcon"
|
|
3130
|
-
data-test-id="
|
|
3355
|
+
data-test-id="selectComponent_search"
|
|
3131
3356
|
>
|
|
3132
3357
|
<div
|
|
3133
3358
|
class="grow basis shrinkOff"
|
|
@@ -3163,9 +3388,6 @@ exports[`Select - Should trigger getNextOptions, when search with needLocalSearc
|
|
|
3163
3388
|
data-test-id="containerComponent"
|
|
3164
3389
|
/>
|
|
3165
3390
|
</div>
|
|
3166
|
-
<div
|
|
3167
|
-
class="line borderColor_default "
|
|
3168
|
-
/>
|
|
3169
3391
|
</div>
|
|
3170
3392
|
</div>
|
|
3171
3393
|
</div>
|
|
@@ -3391,10 +3613,10 @@ exports[`Select - Should trigger onAddNewOption, when click on the custom search
|
|
|
3391
3613
|
data-test-id="selectComponent"
|
|
3392
3614
|
>
|
|
3393
3615
|
<div
|
|
3394
|
-
class="
|
|
3395
|
-
data-id="
|
|
3616
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
3617
|
+
data-id="selectComponent_textBox"
|
|
3396
3618
|
data-selector-id="textBoxIcon"
|
|
3397
|
-
data-test-id="
|
|
3619
|
+
data-test-id="selectComponent_textBox"
|
|
3398
3620
|
>
|
|
3399
3621
|
<div
|
|
3400
3622
|
class="grow basis shrinkOff"
|
|
@@ -3468,9 +3690,6 @@ exports[`Select - Should trigger onAddNewOption, when click on the custom search
|
|
|
3468
3690
|
</div>
|
|
3469
3691
|
</div>
|
|
3470
3692
|
</div>
|
|
3471
|
-
<div
|
|
3472
|
-
class="line borderColor_default "
|
|
3473
|
-
/>
|
|
3474
3693
|
</div>
|
|
3475
3694
|
</div>
|
|
3476
3695
|
<div
|
|
@@ -3520,10 +3739,10 @@ exports[`Select - Should trigger onAddNewOption, when click on the custom search
|
|
|
3520
3739
|
class="search medium"
|
|
3521
3740
|
>
|
|
3522
3741
|
<div
|
|
3523
|
-
class="
|
|
3524
|
-
data-id="
|
|
3742
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container flex rowdir"
|
|
3743
|
+
data-id="selectComponent_search"
|
|
3525
3744
|
data-selector-id="textBoxIcon"
|
|
3526
|
-
data-test-id="
|
|
3745
|
+
data-test-id="selectComponent_search"
|
|
3527
3746
|
>
|
|
3528
3747
|
<div
|
|
3529
3748
|
class="grow basis shrinkOff"
|
|
@@ -3559,9 +3778,6 @@ exports[`Select - Should trigger onAddNewOption, when click on the custom search
|
|
|
3559
3778
|
data-test-id="containerComponent"
|
|
3560
3779
|
/>
|
|
3561
3780
|
</div>
|
|
3562
|
-
<div
|
|
3563
|
-
class="line borderColor_default "
|
|
3564
|
-
/>
|
|
3565
3781
|
</div>
|
|
3566
3782
|
</div>
|
|
3567
3783
|
</div>
|
|
@@ -3596,10 +3812,10 @@ exports[`Select - Should update the value when select the option 1`] = `
|
|
|
3596
3812
|
data-test-id="selectComponent"
|
|
3597
3813
|
>
|
|
3598
3814
|
<div
|
|
3599
|
-
class="
|
|
3600
|
-
data-id="
|
|
3815
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
3816
|
+
data-id="selectComponent_textBox"
|
|
3601
3817
|
data-selector-id="textBoxIcon"
|
|
3602
|
-
data-test-id="
|
|
3818
|
+
data-test-id="selectComponent_textBox"
|
|
3603
3819
|
>
|
|
3604
3820
|
<div
|
|
3605
3821
|
class="grow basis shrinkOff"
|
|
@@ -3673,9 +3889,6 @@ exports[`Select - Should update the value when select the option 1`] = `
|
|
|
3673
3889
|
</div>
|
|
3674
3890
|
</div>
|
|
3675
3891
|
</div>
|
|
3676
|
-
<div
|
|
3677
|
-
class="line borderColor_default "
|
|
3678
|
-
/>
|
|
3679
3892
|
</div>
|
|
3680
3893
|
</div>
|
|
3681
3894
|
<div
|
|
@@ -3888,10 +4101,10 @@ exports[`Select - Should update the value when select the option 2`] = `
|
|
|
3888
4101
|
data-test-id="selectComponent"
|
|
3889
4102
|
>
|
|
3890
4103
|
<div
|
|
3891
|
-
class="
|
|
3892
|
-
data-id="
|
|
4104
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
4105
|
+
data-id="selectComponent_textBox"
|
|
3893
4106
|
data-selector-id="textBoxIcon"
|
|
3894
|
-
data-test-id="
|
|
4107
|
+
data-test-id="selectComponent_textBox"
|
|
3895
4108
|
>
|
|
3896
4109
|
<div
|
|
3897
4110
|
class="grow basis shrinkOff"
|
|
@@ -3965,9 +4178,6 @@ exports[`Select - Should update the value when select the option 2`] = `
|
|
|
3965
4178
|
</div>
|
|
3966
4179
|
</div>
|
|
3967
4180
|
</div>
|
|
3968
|
-
<div
|
|
3969
|
-
class="line borderColor_default "
|
|
3970
|
-
/>
|
|
3971
4181
|
</div>
|
|
3972
4182
|
</div>
|
|
3973
4183
|
</div>
|
|
@@ -3986,10 +4196,10 @@ exports[`Select - Should update the value, when select the option using keyboard
|
|
|
3986
4196
|
data-test-id="selectComponent"
|
|
3987
4197
|
>
|
|
3988
4198
|
<div
|
|
3989
|
-
class="
|
|
3990
|
-
data-id="
|
|
4199
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
4200
|
+
data-id="selectComponent_textBox"
|
|
3991
4201
|
data-selector-id="textBoxIcon"
|
|
3992
|
-
data-test-id="
|
|
4202
|
+
data-test-id="selectComponent_textBox"
|
|
3993
4203
|
>
|
|
3994
4204
|
<div
|
|
3995
4205
|
class="grow basis shrinkOff"
|
|
@@ -4063,9 +4273,6 @@ exports[`Select - Should update the value, when select the option using keyboard
|
|
|
4063
4273
|
</div>
|
|
4064
4274
|
</div>
|
|
4065
4275
|
</div>
|
|
4066
|
-
<div
|
|
4067
|
-
class="line borderColor_default "
|
|
4068
|
-
/>
|
|
4069
4276
|
</div>
|
|
4070
4277
|
</div>
|
|
4071
4278
|
</div>
|
|
@@ -4121,10 +4328,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with aria prope
|
|
|
4121
4328
|
data-test-id="selectComponent"
|
|
4122
4329
|
>
|
|
4123
4330
|
<div
|
|
4124
|
-
class="container
|
|
4125
|
-
data-id="
|
|
4331
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
4332
|
+
data-id="selectComponent_textBox"
|
|
4126
4333
|
data-selector-id="textBoxIcon"
|
|
4127
|
-
data-test-id="
|
|
4334
|
+
data-test-id="selectComponent_textBox"
|
|
4128
4335
|
>
|
|
4129
4336
|
<div
|
|
4130
4337
|
class="grow basis shrinkOff"
|
|
@@ -4199,9 +4406,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with aria prope
|
|
|
4199
4406
|
</div>
|
|
4200
4407
|
</div>
|
|
4201
4408
|
</div>
|
|
4202
|
-
<div
|
|
4203
|
-
class="line borderColor_default "
|
|
4204
|
-
/>
|
|
4205
4409
|
</div>
|
|
4206
4410
|
</div>
|
|
4207
4411
|
</div>
|
|
@@ -4253,10 +4457,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with autoComple
|
|
|
4253
4457
|
data-test-id="selectComponent"
|
|
4254
4458
|
>
|
|
4255
4459
|
<div
|
|
4256
|
-
class="container
|
|
4257
|
-
data-id="
|
|
4460
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
4461
|
+
data-id="selectComponent_textBox"
|
|
4258
4462
|
data-selector-id="textBoxIcon"
|
|
4259
|
-
data-test-id="
|
|
4463
|
+
data-test-id="selectComponent_textBox"
|
|
4260
4464
|
>
|
|
4261
4465
|
<div
|
|
4262
4466
|
class="grow basis shrinkOff"
|
|
@@ -4327,9 +4531,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with autoComple
|
|
|
4327
4531
|
</div>
|
|
4328
4532
|
</div>
|
|
4329
4533
|
</div>
|
|
4330
|
-
<div
|
|
4331
|
-
class="line borderColor_default "
|
|
4332
|
-
/>
|
|
4333
4534
|
</div>
|
|
4334
4535
|
</div>
|
|
4335
4536
|
</div>
|
|
@@ -4382,10 +4583,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with borderColo
|
|
|
4382
4583
|
data-test-id="selectComponent"
|
|
4383
4584
|
>
|
|
4384
4585
|
<div
|
|
4385
|
-
class="container
|
|
4386
|
-
data-id="
|
|
4586
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
4587
|
+
data-id="selectComponent_textBox"
|
|
4387
4588
|
data-selector-id="textBoxIcon"
|
|
4388
|
-
data-test-id="
|
|
4589
|
+
data-test-id="selectComponent_textBox"
|
|
4389
4590
|
>
|
|
4390
4591
|
<div
|
|
4391
4592
|
class="grow basis shrinkOff"
|
|
@@ -4457,9 +4658,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with borderColo
|
|
|
4457
4658
|
</div>
|
|
4458
4659
|
</div>
|
|
4459
4660
|
</div>
|
|
4460
|
-
<div
|
|
4461
|
-
class="line borderColor_default "
|
|
4462
|
-
/>
|
|
4463
4661
|
</div>
|
|
4464
4662
|
</div>
|
|
4465
4663
|
</div>
|
|
@@ -4512,10 +4710,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with borderColo
|
|
|
4512
4710
|
data-test-id="selectComponent"
|
|
4513
4711
|
>
|
|
4514
4712
|
<div
|
|
4515
|
-
class="container
|
|
4516
|
-
data-id="
|
|
4713
|
+
class="varClass customContainer border_bottom effect borderColor_transparent hasBorder container input flex rowdir"
|
|
4714
|
+
data-id="selectComponent_textBox"
|
|
4517
4715
|
data-selector-id="textBoxIcon"
|
|
4518
|
-
data-test-id="
|
|
4716
|
+
data-test-id="selectComponent_textBox"
|
|
4519
4717
|
>
|
|
4520
4718
|
<div
|
|
4521
4719
|
class="grow basis shrinkOff"
|
|
@@ -4587,9 +4785,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with borderColo
|
|
|
4587
4785
|
</div>
|
|
4588
4786
|
</div>
|
|
4589
4787
|
</div>
|
|
4590
|
-
<div
|
|
4591
|
-
class="line borderColor_transparent "
|
|
4592
|
-
/>
|
|
4593
4788
|
</div>
|
|
4594
4789
|
</div>
|
|
4595
4790
|
</div>
|
|
@@ -4643,10 +4838,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with customProp
|
|
|
4643
4838
|
data-test-id="selectComponent"
|
|
4644
4839
|
>
|
|
4645
4840
|
<div
|
|
4646
|
-
class="container
|
|
4647
|
-
data-id="
|
|
4841
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
4842
|
+
data-id="selectComponent_textBox"
|
|
4648
4843
|
data-selector-id="textBoxIcon"
|
|
4649
|
-
data-test-id="
|
|
4844
|
+
data-test-id="selectComponent_textBox"
|
|
4650
4845
|
>
|
|
4651
4846
|
<div
|
|
4652
4847
|
class="grow basis shrinkOff"
|
|
@@ -4719,9 +4914,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with customProp
|
|
|
4719
4914
|
</div>
|
|
4720
4915
|
</div>
|
|
4721
4916
|
</div>
|
|
4722
|
-
<div
|
|
4723
|
-
class="line borderColor_default "
|
|
4724
|
-
/>
|
|
4725
4917
|
</div>
|
|
4726
4918
|
</div>
|
|
4727
4919
|
</div>
|
|
@@ -4775,10 +4967,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with htmlId - n
|
|
|
4775
4967
|
data-test-id="selectComponent"
|
|
4776
4968
|
>
|
|
4777
4969
|
<div
|
|
4778
|
-
class="container
|
|
4779
|
-
data-id="
|
|
4970
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
4971
|
+
data-id="selectComponent_textBox"
|
|
4780
4972
|
data-selector-id="textBoxIcon"
|
|
4781
|
-
data-test-id="
|
|
4973
|
+
data-test-id="selectComponent_textBox"
|
|
4782
4974
|
>
|
|
4783
4975
|
<div
|
|
4784
4976
|
class="grow basis shrinkOff"
|
|
@@ -4851,9 +5043,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with htmlId - n
|
|
|
4851
5043
|
</div>
|
|
4852
5044
|
</div>
|
|
4853
5045
|
</div>
|
|
4854
|
-
<div
|
|
4855
|
-
class="line borderColor_default "
|
|
4856
|
-
/>
|
|
4857
5046
|
</div>
|
|
4858
5047
|
</div>
|
|
4859
5048
|
</div>
|
|
@@ -4907,10 +5096,11 @@ exports[`Select box needSelectDownIcon snapshot - Should render with isDisabled
|
|
|
4907
5096
|
data-test-id="selectComponent_disabled"
|
|
4908
5097
|
>
|
|
4909
5098
|
<div
|
|
4910
|
-
class="
|
|
4911
|
-
data-id="
|
|
5099
|
+
class="varClass customContainer border_bottom disabled borderColor_default hasBorder container flex rowdir"
|
|
5100
|
+
data-id="selectComponent_textBox"
|
|
4912
5101
|
data-selector-id="textBoxIcon"
|
|
4913
|
-
data-test-id="
|
|
5102
|
+
data-test-id="selectComponent_textBox"
|
|
5103
|
+
data-title=""
|
|
4914
5104
|
>
|
|
4915
5105
|
<div
|
|
4916
5106
|
class="grow basis shrinkOff"
|
|
@@ -4983,9 +5173,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with isDisabled
|
|
|
4983
5173
|
</div>
|
|
4984
5174
|
</div>
|
|
4985
5175
|
</div>
|
|
4986
|
-
<div
|
|
4987
|
-
class="line borderColor_default "
|
|
4988
|
-
/>
|
|
4989
5176
|
</div>
|
|
4990
5177
|
</div>
|
|
4991
5178
|
</div>
|
|
@@ -5094,10 +5281,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with isPopupOpe
|
|
|
5094
5281
|
data-test-id="selectComponent"
|
|
5095
5282
|
>
|
|
5096
5283
|
<div
|
|
5097
|
-
class="
|
|
5098
|
-
data-id="
|
|
5284
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
5285
|
+
data-id="selectComponent_textBox"
|
|
5099
5286
|
data-selector-id="textBoxIcon"
|
|
5100
|
-
data-test-id="
|
|
5287
|
+
data-test-id="selectComponent_textBox"
|
|
5101
5288
|
>
|
|
5102
5289
|
<div
|
|
5103
5290
|
class="grow basis shrinkOff"
|
|
@@ -5169,9 +5356,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with isPopupOpe
|
|
|
5169
5356
|
</div>
|
|
5170
5357
|
</div>
|
|
5171
5358
|
</div>
|
|
5172
|
-
<div
|
|
5173
|
-
class="line borderColor_default "
|
|
5174
|
-
/>
|
|
5175
5359
|
</div>
|
|
5176
5360
|
</div>
|
|
5177
5361
|
<div
|
|
@@ -5280,10 +5464,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with isReadOnly
|
|
|
5280
5464
|
data-test-id="selectComponent_readOnly"
|
|
5281
5465
|
>
|
|
5282
5466
|
<div
|
|
5283
|
-
class="
|
|
5284
|
-
data-id="
|
|
5467
|
+
class="varClass customContainer border_bottom readonly borderColor_default hasBorder container flex rowdir"
|
|
5468
|
+
data-id="selectComponent_textBox"
|
|
5285
5469
|
data-selector-id="textBoxIcon"
|
|
5286
|
-
data-test-id="
|
|
5470
|
+
data-test-id="selectComponent_textBox"
|
|
5287
5471
|
>
|
|
5288
5472
|
<div
|
|
5289
5473
|
class="grow basis shrinkOff"
|
|
@@ -5355,9 +5539,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with isReadOnly
|
|
|
5355
5539
|
</div>
|
|
5356
5540
|
</div>
|
|
5357
5541
|
</div>
|
|
5358
|
-
<div
|
|
5359
|
-
class="line borderColor_default "
|
|
5360
|
-
/>
|
|
5361
5542
|
</div>
|
|
5362
5543
|
</div>
|
|
5363
5544
|
</div>
|
|
@@ -5411,10 +5592,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with maxLength
|
|
|
5411
5592
|
data-test-id="selectComponent"
|
|
5412
5593
|
>
|
|
5413
5594
|
<div
|
|
5414
|
-
class="container
|
|
5415
|
-
data-id="
|
|
5595
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
5596
|
+
data-id="selectComponent_textBox"
|
|
5416
5597
|
data-selector-id="textBoxIcon"
|
|
5417
|
-
data-test-id="
|
|
5598
|
+
data-test-id="selectComponent_textBox"
|
|
5418
5599
|
>
|
|
5419
5600
|
<div
|
|
5420
5601
|
class="grow basis shrinkOff"
|
|
@@ -5486,9 +5667,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with maxLength
|
|
|
5486
5667
|
</div>
|
|
5487
5668
|
</div>
|
|
5488
5669
|
</div>
|
|
5489
|
-
<div
|
|
5490
|
-
class="line borderColor_default "
|
|
5491
|
-
/>
|
|
5492
5670
|
</div>
|
|
5493
5671
|
</div>
|
|
5494
5672
|
</div>
|
|
@@ -5541,10 +5719,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with needBorder
|
|
|
5541
5719
|
data-test-id="selectComponent"
|
|
5542
5720
|
>
|
|
5543
5721
|
<div
|
|
5544
|
-
class="container
|
|
5545
|
-
data-id="
|
|
5722
|
+
class="varClass customContainer effect container input flex rowdir"
|
|
5723
|
+
data-id="selectComponent_textBox"
|
|
5546
5724
|
data-selector-id="textBoxIcon"
|
|
5547
|
-
data-test-id="
|
|
5725
|
+
data-test-id="selectComponent_textBox"
|
|
5548
5726
|
>
|
|
5549
5727
|
<div
|
|
5550
5728
|
class="grow basis shrinkOff"
|
|
@@ -5668,10 +5846,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with placeHolde
|
|
|
5668
5846
|
data-test-id="selectComponent"
|
|
5669
5847
|
>
|
|
5670
5848
|
<div
|
|
5671
|
-
class="container
|
|
5672
|
-
data-id="
|
|
5849
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
5850
|
+
data-id="selectComponent_textBox"
|
|
5673
5851
|
data-selector-id="textBoxIcon"
|
|
5674
|
-
data-test-id="
|
|
5852
|
+
data-test-id="selectComponent_textBox"
|
|
5675
5853
|
>
|
|
5676
5854
|
<div
|
|
5677
5855
|
class="grow basis shrinkOff"
|
|
@@ -5743,9 +5921,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with placeHolde
|
|
|
5743
5921
|
</div>
|
|
5744
5922
|
</div>
|
|
5745
5923
|
</div>
|
|
5746
|
-
<div
|
|
5747
|
-
class="line borderColor_default "
|
|
5748
|
-
/>
|
|
5749
5924
|
</div>
|
|
5750
5925
|
</div>
|
|
5751
5926
|
</div>
|
|
@@ -5798,10 +5973,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxSiz
|
|
|
5798
5973
|
data-test-id="selectComponent"
|
|
5799
5974
|
>
|
|
5800
5975
|
<div
|
|
5801
|
-
class="container
|
|
5802
|
-
data-id="
|
|
5976
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
5977
|
+
data-id="selectComponent_textBox"
|
|
5803
5978
|
data-selector-id="textBoxIcon"
|
|
5804
|
-
data-test-id="
|
|
5979
|
+
data-test-id="selectComponent_textBox"
|
|
5805
5980
|
>
|
|
5806
5981
|
<div
|
|
5807
5982
|
class="grow basis shrinkOff"
|
|
@@ -5873,9 +6048,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxSiz
|
|
|
5873
6048
|
</div>
|
|
5874
6049
|
</div>
|
|
5875
6050
|
</div>
|
|
5876
|
-
<div
|
|
5877
|
-
class="line borderColor_default "
|
|
5878
|
-
/>
|
|
5879
6051
|
</div>
|
|
5880
6052
|
</div>
|
|
5881
6053
|
</div>
|
|
@@ -5928,10 +6100,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxSiz
|
|
|
5928
6100
|
data-test-id="selectComponent"
|
|
5929
6101
|
>
|
|
5930
6102
|
<div
|
|
5931
|
-
class="container
|
|
5932
|
-
data-id="
|
|
6103
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
6104
|
+
data-id="selectComponent_textBox"
|
|
5933
6105
|
data-selector-id="textBoxIcon"
|
|
5934
|
-
data-test-id="
|
|
6106
|
+
data-test-id="selectComponent_textBox"
|
|
5935
6107
|
>
|
|
5936
6108
|
<div
|
|
5937
6109
|
class="grow basis shrinkOff"
|
|
@@ -6003,9 +6175,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxSiz
|
|
|
6003
6175
|
</div>
|
|
6004
6176
|
</div>
|
|
6005
6177
|
</div>
|
|
6006
|
-
<div
|
|
6007
|
-
class="line borderColor_default "
|
|
6008
|
-
/>
|
|
6009
6178
|
</div>
|
|
6010
6179
|
</div>
|
|
6011
6180
|
</div>
|
|
@@ -6058,10 +6227,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxSiz
|
|
|
6058
6227
|
data-test-id="selectComponent"
|
|
6059
6228
|
>
|
|
6060
6229
|
<div
|
|
6061
|
-
class="container
|
|
6062
|
-
data-id="
|
|
6230
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
6231
|
+
data-id="selectComponent_textBox"
|
|
6063
6232
|
data-selector-id="textBoxIcon"
|
|
6064
|
-
data-test-id="
|
|
6233
|
+
data-test-id="selectComponent_textBox"
|
|
6065
6234
|
>
|
|
6066
6235
|
<div
|
|
6067
6236
|
class="grow basis shrinkOff"
|
|
@@ -6133,9 +6302,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxSiz
|
|
|
6133
6302
|
</div>
|
|
6134
6303
|
</div>
|
|
6135
6304
|
</div>
|
|
6136
|
-
<div
|
|
6137
|
-
class="line borderColor_default "
|
|
6138
|
-
/>
|
|
6139
6305
|
</div>
|
|
6140
6306
|
</div>
|
|
6141
6307
|
</div>
|
|
@@ -6188,10 +6354,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxSiz
|
|
|
6188
6354
|
data-test-id="selectComponent"
|
|
6189
6355
|
>
|
|
6190
6356
|
<div
|
|
6191
|
-
class="container
|
|
6192
|
-
data-id="
|
|
6357
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
6358
|
+
data-id="selectComponent_textBox"
|
|
6193
6359
|
data-selector-id="textBoxIcon"
|
|
6194
|
-
data-test-id="
|
|
6360
|
+
data-test-id="selectComponent_textBox"
|
|
6195
6361
|
>
|
|
6196
6362
|
<div
|
|
6197
6363
|
class="grow basis shrinkOff"
|
|
@@ -6263,9 +6429,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxSiz
|
|
|
6263
6429
|
</div>
|
|
6264
6430
|
</div>
|
|
6265
6431
|
</div>
|
|
6266
|
-
<div
|
|
6267
|
-
class="line borderColor_default "
|
|
6268
|
-
/>
|
|
6269
6432
|
</div>
|
|
6270
6433
|
</div>
|
|
6271
6434
|
</div>
|
|
@@ -6318,10 +6481,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxVar
|
|
|
6318
6481
|
data-test-id="selectComponent"
|
|
6319
6482
|
>
|
|
6320
6483
|
<div
|
|
6321
|
-
class="container
|
|
6322
|
-
data-id="
|
|
6484
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
6485
|
+
data-id="selectComponent_textBox"
|
|
6323
6486
|
data-selector-id="textBoxIcon"
|
|
6324
|
-
data-test-id="
|
|
6487
|
+
data-test-id="selectComponent_textBox"
|
|
6325
6488
|
>
|
|
6326
6489
|
<div
|
|
6327
6490
|
class="grow basis shrinkOff"
|
|
@@ -6393,9 +6556,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxVar
|
|
|
6393
6556
|
</div>
|
|
6394
6557
|
</div>
|
|
6395
6558
|
</div>
|
|
6396
|
-
<div
|
|
6397
|
-
class="line borderColor_default "
|
|
6398
|
-
/>
|
|
6399
6559
|
</div>
|
|
6400
6560
|
</div>
|
|
6401
6561
|
</div>
|
|
@@ -6448,10 +6608,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxVar
|
|
|
6448
6608
|
data-test-id="selectComponent"
|
|
6449
6609
|
>
|
|
6450
6610
|
<div
|
|
6451
|
-
class="container
|
|
6452
|
-
data-id="
|
|
6611
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
6612
|
+
data-id="selectComponent_textBox"
|
|
6453
6613
|
data-selector-id="textBoxIcon"
|
|
6454
|
-
data-test-id="
|
|
6614
|
+
data-test-id="selectComponent_textBox"
|
|
6455
6615
|
>
|
|
6456
6616
|
<div
|
|
6457
6617
|
class="grow basis shrinkOff"
|
|
@@ -6523,9 +6683,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxVar
|
|
|
6523
6683
|
</div>
|
|
6524
6684
|
</div>
|
|
6525
6685
|
</div>
|
|
6526
|
-
<div
|
|
6527
|
-
class="line borderColor_default "
|
|
6528
|
-
/>
|
|
6529
6686
|
</div>
|
|
6530
6687
|
</div>
|
|
6531
6688
|
</div>
|
|
@@ -6578,10 +6735,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxVar
|
|
|
6578
6735
|
data-test-id="selectComponent"
|
|
6579
6736
|
>
|
|
6580
6737
|
<div
|
|
6581
|
-
class="container
|
|
6582
|
-
data-id="
|
|
6738
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
6739
|
+
data-id="selectComponent_textBox"
|
|
6583
6740
|
data-selector-id="textBoxIcon"
|
|
6584
|
-
data-test-id="
|
|
6741
|
+
data-test-id="selectComponent_textBox"
|
|
6585
6742
|
>
|
|
6586
6743
|
<div
|
|
6587
6744
|
class="grow basis shrinkOff"
|
|
@@ -6653,9 +6810,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxVar
|
|
|
6653
6810
|
</div>
|
|
6654
6811
|
</div>
|
|
6655
6812
|
</div>
|
|
6656
|
-
<div
|
|
6657
|
-
class="line borderColor_default "
|
|
6658
|
-
/>
|
|
6659
6813
|
</div>
|
|
6660
6814
|
</div>
|
|
6661
6815
|
</div>
|
|
@@ -6708,10 +6862,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxVar
|
|
|
6708
6862
|
data-test-id="selectComponent"
|
|
6709
6863
|
>
|
|
6710
6864
|
<div
|
|
6711
|
-
class="container
|
|
6712
|
-
data-id="
|
|
6865
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
6866
|
+
data-id="selectComponent_textBox"
|
|
6713
6867
|
data-selector-id="textBoxIcon"
|
|
6714
|
-
data-test-id="
|
|
6868
|
+
data-test-id="selectComponent_textBox"
|
|
6715
6869
|
>
|
|
6716
6870
|
<div
|
|
6717
6871
|
class="grow basis shrinkOff"
|
|
@@ -6783,9 +6937,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with textBoxVar
|
|
|
6783
6937
|
</div>
|
|
6784
6938
|
</div>
|
|
6785
6939
|
</div>
|
|
6786
|
-
<div
|
|
6787
|
-
class="line borderColor_default "
|
|
6788
|
-
/>
|
|
6789
6940
|
</div>
|
|
6790
6941
|
</div>
|
|
6791
6942
|
</div>
|
|
@@ -6839,10 +6990,10 @@ exports[`Select box needSelectDownIcon snapshot - Should render with title - ne
|
|
|
6839
6990
|
data-test-id="selectComponent"
|
|
6840
6991
|
>
|
|
6841
6992
|
<div
|
|
6842
|
-
class="container
|
|
6843
|
-
data-id="
|
|
6993
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
6994
|
+
data-id="selectComponent_textBox"
|
|
6844
6995
|
data-selector-id="textBoxIcon"
|
|
6845
|
-
data-test-id="
|
|
6996
|
+
data-test-id="selectComponent_textBox"
|
|
6846
6997
|
>
|
|
6847
6998
|
<div
|
|
6848
6999
|
class="grow basis shrinkOff"
|
|
@@ -6915,9 +7066,6 @@ exports[`Select box needSelectDownIcon snapshot - Should render with title - ne
|
|
|
6915
7066
|
</div>
|
|
6916
7067
|
</div>
|
|
6917
7068
|
</div>
|
|
6918
|
-
<div
|
|
6919
|
-
class="line borderColor_default "
|
|
6920
|
-
/>
|
|
6921
7069
|
</div>
|
|
6922
7070
|
</div>
|
|
6923
7071
|
</div>
|
|
@@ -6936,10 +7084,10 @@ exports[`Select dataId snapshot - Should render with dataId prop - dropbox open
|
|
|
6936
7084
|
data-test-id="customDataId"
|
|
6937
7085
|
>
|
|
6938
7086
|
<div
|
|
6939
|
-
class="
|
|
6940
|
-
data-id="
|
|
7087
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
7088
|
+
data-id="customDataId_textBox"
|
|
6941
7089
|
data-selector-id="textBoxIcon"
|
|
6942
|
-
data-test-id="
|
|
7090
|
+
data-test-id="customDataId_textBox"
|
|
6943
7091
|
>
|
|
6944
7092
|
<div
|
|
6945
7093
|
class="grow basis shrinkOff"
|
|
@@ -7013,9 +7161,6 @@ exports[`Select dataId snapshot - Should render with dataId prop - dropbox open
|
|
|
7013
7161
|
</div>
|
|
7014
7162
|
</div>
|
|
7015
7163
|
</div>
|
|
7016
|
-
<div
|
|
7017
|
-
class="line borderColor_default "
|
|
7018
|
-
/>
|
|
7019
7164
|
</div>
|
|
7020
7165
|
</div>
|
|
7021
7166
|
<div
|
|
@@ -7065,10 +7210,10 @@ exports[`Select dataId snapshot - Should render with dataId prop - dropbox open
|
|
|
7065
7210
|
class="search medium"
|
|
7066
7211
|
>
|
|
7067
7212
|
<div
|
|
7068
|
-
class="
|
|
7069
|
-
data-id="
|
|
7213
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
7214
|
+
data-id="customDataId_search"
|
|
7070
7215
|
data-selector-id="textBoxIcon"
|
|
7071
|
-
data-test-id="
|
|
7216
|
+
data-test-id="customDataId_search"
|
|
7072
7217
|
>
|
|
7073
7218
|
<div
|
|
7074
7219
|
class="grow basis shrinkOff"
|
|
@@ -7104,9 +7249,6 @@ exports[`Select dataId snapshot - Should render with dataId prop - dropbox open
|
|
|
7104
7249
|
data-test-id="containerComponent"
|
|
7105
7250
|
/>
|
|
7106
7251
|
</div>
|
|
7107
|
-
<div
|
|
7108
|
-
class="line borderColor_default "
|
|
7109
|
-
/>
|
|
7110
7252
|
</div>
|
|
7111
7253
|
</div>
|
|
7112
7254
|
</div>
|
|
@@ -7373,10 +7515,11 @@ exports[`Select dataId snapshot - Should render with dataId prop - isDisabled a
|
|
|
7373
7515
|
data-test-id="customDataId_disabled"
|
|
7374
7516
|
>
|
|
7375
7517
|
<div
|
|
7376
|
-
class="
|
|
7377
|
-
data-id="
|
|
7518
|
+
class="varClass customContainer border_bottom disabled borderColor_default hasBorder container flex rowdir"
|
|
7519
|
+
data-id="customDataId_textBox"
|
|
7378
7520
|
data-selector-id="textBoxIcon"
|
|
7379
|
-
data-test-id="
|
|
7521
|
+
data-test-id="customDataId_textBox"
|
|
7522
|
+
data-title=""
|
|
7380
7523
|
>
|
|
7381
7524
|
<div
|
|
7382
7525
|
class="grow basis shrinkOff"
|
|
@@ -7449,9 +7592,6 @@ exports[`Select dataId snapshot - Should render with dataId prop - isDisabled a
|
|
|
7449
7592
|
</div>
|
|
7450
7593
|
</div>
|
|
7451
7594
|
</div>
|
|
7452
|
-
<div
|
|
7453
|
-
class="line borderColor_default "
|
|
7454
|
-
/>
|
|
7455
7595
|
</div>
|
|
7456
7596
|
</div>
|
|
7457
7597
|
</div>
|
|
@@ -7470,10 +7610,10 @@ exports[`Select dataId snapshot - Should render with dataId prop - isReadOnly a
|
|
|
7470
7610
|
data-test-id="customDataId_readOnly"
|
|
7471
7611
|
>
|
|
7472
7612
|
<div
|
|
7473
|
-
class="
|
|
7474
|
-
data-id="
|
|
7613
|
+
class="varClass customContainer border_bottom readonly borderColor_default hasBorder container flex rowdir"
|
|
7614
|
+
data-id="customDataId_textBox"
|
|
7475
7615
|
data-selector-id="textBoxIcon"
|
|
7476
|
-
data-test-id="
|
|
7616
|
+
data-test-id="customDataId_textBox"
|
|
7477
7617
|
>
|
|
7478
7618
|
<div
|
|
7479
7619
|
class="grow basis shrinkOff"
|
|
@@ -7545,9 +7685,31 @@ exports[`Select dataId snapshot - Should render with dataId prop - isReadOnly a
|
|
|
7545
7685
|
</div>
|
|
7546
7686
|
</div>
|
|
7547
7687
|
</div>
|
|
7548
|
-
|
|
7549
|
-
|
|
7550
|
-
|
|
7688
|
+
</div>
|
|
7689
|
+
</div>
|
|
7690
|
+
</div>
|
|
7691
|
+
</DocumentFragment>
|
|
7692
|
+
`;
|
|
7693
|
+
|
|
7694
|
+
exports[`Select dataId snapshot - Should render with renderCustomSelectedValue 1`] = `
|
|
7695
|
+
<DocumentFragment>
|
|
7696
|
+
<div
|
|
7697
|
+
class="container box_medium "
|
|
7698
|
+
data-selector-id="select"
|
|
7699
|
+
>
|
|
7700
|
+
<div
|
|
7701
|
+
class=""
|
|
7702
|
+
data-id="selectComponent"
|
|
7703
|
+
data-test-id="selectComponent"
|
|
7704
|
+
>
|
|
7705
|
+
<div
|
|
7706
|
+
class="varClass customContainer medium border_bottom effect borderColor_default hasBorder flex rowdir"
|
|
7707
|
+
data-selector-id="container"
|
|
7708
|
+
data-title=""
|
|
7709
|
+
>
|
|
7710
|
+
<div>
|
|
7711
|
+
Select Custom Option 2
|
|
7712
|
+
</div>
|
|
7551
7713
|
</div>
|
|
7552
7714
|
</div>
|
|
7553
7715
|
</div>
|
|
@@ -7566,10 +7728,10 @@ exports[`Select snapshot - Should render with children 1`] = `
|
|
|
7566
7728
|
data-test-id="selectComponent"
|
|
7567
7729
|
>
|
|
7568
7730
|
<div
|
|
7569
|
-
class="container
|
|
7570
|
-
data-id="
|
|
7731
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
7732
|
+
data-id="selectComponent_textBox"
|
|
7571
7733
|
data-selector-id="textBoxIcon"
|
|
7572
|
-
data-test-id="
|
|
7734
|
+
data-test-id="selectComponent_textBox"
|
|
7573
7735
|
>
|
|
7574
7736
|
<div
|
|
7575
7737
|
class="grow basis shrinkOff"
|
|
@@ -7651,9 +7813,6 @@ exports[`Select snapshot - Should render with children 1`] = `
|
|
|
7651
7813
|
</div>
|
|
7652
7814
|
</div>
|
|
7653
7815
|
</div>
|
|
7654
|
-
<div
|
|
7655
|
-
class="line borderColor_default "
|
|
7656
|
-
/>
|
|
7657
7816
|
</div>
|
|
7658
7817
|
</div>
|
|
7659
7818
|
</div>
|
|
@@ -7672,10 +7831,10 @@ exports[`Select snapshot - Should render with children and dropdown open 1`] =
|
|
|
7672
7831
|
data-test-id="selectComponent"
|
|
7673
7832
|
>
|
|
7674
7833
|
<div
|
|
7675
|
-
class="
|
|
7676
|
-
data-id="
|
|
7834
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
7835
|
+
data-id="selectComponent_textBox"
|
|
7677
7836
|
data-selector-id="textBoxIcon"
|
|
7678
|
-
data-test-id="
|
|
7837
|
+
data-test-id="selectComponent_textBox"
|
|
7679
7838
|
>
|
|
7680
7839
|
<div
|
|
7681
7840
|
class="grow basis shrinkOff"
|
|
@@ -7757,9 +7916,6 @@ exports[`Select snapshot - Should render with children and dropdown open 1`] =
|
|
|
7757
7916
|
</div>
|
|
7758
7917
|
</div>
|
|
7759
7918
|
</div>
|
|
7760
|
-
<div
|
|
7761
|
-
class="line borderColor_default "
|
|
7762
|
-
/>
|
|
7763
7919
|
</div>
|
|
7764
7920
|
</div>
|
|
7765
7921
|
<div
|
|
@@ -7834,10 +7990,10 @@ exports[`Select snapshot - Should render with className prop 1`] = `
|
|
|
7834
7990
|
data-test-id="selectComponent"
|
|
7835
7991
|
>
|
|
7836
7992
|
<div
|
|
7837
|
-
class="container
|
|
7838
|
-
data-id="
|
|
7993
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
7994
|
+
data-id="selectComponent_textBox"
|
|
7839
7995
|
data-selector-id="textBoxIcon"
|
|
7840
|
-
data-test-id="
|
|
7996
|
+
data-test-id="selectComponent_textBox"
|
|
7841
7997
|
>
|
|
7842
7998
|
<div
|
|
7843
7999
|
class="grow basis shrinkOff"
|
|
@@ -7909,9 +8065,6 @@ exports[`Select snapshot - Should render with className prop 1`] = `
|
|
|
7909
8065
|
</div>
|
|
7910
8066
|
</div>
|
|
7911
8067
|
</div>
|
|
7912
|
-
<div
|
|
7913
|
-
class="line borderColor_default "
|
|
7914
|
-
/>
|
|
7915
8068
|
</div>
|
|
7916
8069
|
</div>
|
|
7917
8070
|
</div>
|
|
@@ -7930,10 +8083,10 @@ exports[`Select snapshot - Should render with customProps 1`] = `
|
|
|
7930
8083
|
data-test-id="selectComponent"
|
|
7931
8084
|
>
|
|
7932
8085
|
<div
|
|
7933
|
-
class="
|
|
7934
|
-
data-id="
|
|
8086
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
8087
|
+
data-id="selectComponent_textBox"
|
|
7935
8088
|
data-selector-id="textBoxIcon"
|
|
7936
|
-
data-test-id="
|
|
8089
|
+
data-test-id="selectComponent_textBox"
|
|
7937
8090
|
>
|
|
7938
8091
|
<div
|
|
7939
8092
|
class="grow basis shrinkOff"
|
|
@@ -8008,9 +8161,6 @@ exports[`Select snapshot - Should render with customProps 1`] = `
|
|
|
8008
8161
|
</div>
|
|
8009
8162
|
</div>
|
|
8010
8163
|
</div>
|
|
8011
|
-
<div
|
|
8012
|
-
class="line borderColor_default "
|
|
8013
|
-
/>
|
|
8014
8164
|
</div>
|
|
8015
8165
|
</div>
|
|
8016
8166
|
<div
|
|
@@ -8060,10 +8210,10 @@ exports[`Select snapshot - Should render with customProps 1`] = `
|
|
|
8060
8210
|
class="search medium"
|
|
8061
8211
|
>
|
|
8062
8212
|
<div
|
|
8063
|
-
class="
|
|
8064
|
-
data-id="
|
|
8213
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
8214
|
+
data-id="selectComponent_search"
|
|
8065
8215
|
data-selector-id="textBoxIcon"
|
|
8066
|
-
data-test-id="
|
|
8216
|
+
data-test-id="selectComponent_search"
|
|
8067
8217
|
>
|
|
8068
8218
|
<div
|
|
8069
8219
|
class="grow basis shrinkOff"
|
|
@@ -8100,9 +8250,6 @@ exports[`Select snapshot - Should render with customProps 1`] = `
|
|
|
8100
8250
|
data-test-id="containerComponent"
|
|
8101
8251
|
/>
|
|
8102
8252
|
</div>
|
|
8103
|
-
<div
|
|
8104
|
-
class="line borderColor_default "
|
|
8105
|
-
/>
|
|
8106
8253
|
</div>
|
|
8107
8254
|
</div>
|
|
8108
8255
|
</div>
|
|
@@ -8282,10 +8429,10 @@ exports[`Select snapshot - Should render with dataSelectorId prop 1`] = `
|
|
|
8282
8429
|
data-test-id="selectComponent"
|
|
8283
8430
|
>
|
|
8284
8431
|
<div
|
|
8285
|
-
class="container
|
|
8286
|
-
data-id="
|
|
8432
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
8433
|
+
data-id="selectComponent_textBox"
|
|
8287
8434
|
data-selector-id="textBoxIcon"
|
|
8288
|
-
data-test-id="
|
|
8435
|
+
data-test-id="selectComponent_textBox"
|
|
8289
8436
|
>
|
|
8290
8437
|
<div
|
|
8291
8438
|
class="grow basis shrinkOff"
|
|
@@ -8357,9 +8504,6 @@ exports[`Select snapshot - Should render with dataSelectorId prop 1`] = `
|
|
|
8357
8504
|
</div>
|
|
8358
8505
|
</div>
|
|
8359
8506
|
</div>
|
|
8360
|
-
<div
|
|
8361
|
-
class="line borderColor_default "
|
|
8362
|
-
/>
|
|
8363
8507
|
</div>
|
|
8364
8508
|
</div>
|
|
8365
8509
|
</div>
|
|
@@ -8378,10 +8522,10 @@ exports[`Select snapshot - Should render with dropBoxSize as large 1`] = `
|
|
|
8378
8522
|
data-test-id="selectComponent"
|
|
8379
8523
|
>
|
|
8380
8524
|
<div
|
|
8381
|
-
class="
|
|
8382
|
-
data-id="
|
|
8525
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
8526
|
+
data-id="selectComponent_textBox"
|
|
8383
8527
|
data-selector-id="textBoxIcon"
|
|
8384
|
-
data-test-id="
|
|
8528
|
+
data-test-id="selectComponent_textBox"
|
|
8385
8529
|
>
|
|
8386
8530
|
<div
|
|
8387
8531
|
class="grow basis shrinkOff"
|
|
@@ -8453,9 +8597,6 @@ exports[`Select snapshot - Should render with dropBoxSize as large 1`] = `
|
|
|
8453
8597
|
</div>
|
|
8454
8598
|
</div>
|
|
8455
8599
|
</div>
|
|
8456
|
-
<div
|
|
8457
|
-
class="line borderColor_default "
|
|
8458
|
-
/>
|
|
8459
8600
|
</div>
|
|
8460
8601
|
</div>
|
|
8461
8602
|
<div
|
|
@@ -8505,10 +8646,10 @@ exports[`Select snapshot - Should render with dropBoxSize as large 1`] = `
|
|
|
8505
8646
|
class="search medium"
|
|
8506
8647
|
>
|
|
8507
8648
|
<div
|
|
8508
|
-
class="
|
|
8509
|
-
data-id="
|
|
8649
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
8650
|
+
data-id="selectComponent_search"
|
|
8510
8651
|
data-selector-id="textBoxIcon"
|
|
8511
|
-
data-test-id="
|
|
8652
|
+
data-test-id="selectComponent_search"
|
|
8512
8653
|
>
|
|
8513
8654
|
<div
|
|
8514
8655
|
class="grow basis shrinkOff"
|
|
@@ -8544,9 +8685,6 @@ exports[`Select snapshot - Should render with dropBoxSize as large 1`] = `
|
|
|
8544
8685
|
data-test-id="containerComponent"
|
|
8545
8686
|
/>
|
|
8546
8687
|
</div>
|
|
8547
|
-
<div
|
|
8548
|
-
class="line borderColor_default "
|
|
8549
|
-
/>
|
|
8550
8688
|
</div>
|
|
8551
8689
|
</div>
|
|
8552
8690
|
</div>
|
|
@@ -8585,10 +8723,10 @@ exports[`Select snapshot - Should render with dropBoxSize as medium 1`] = `
|
|
|
8585
8723
|
data-test-id="selectComponent"
|
|
8586
8724
|
>
|
|
8587
8725
|
<div
|
|
8588
|
-
class="
|
|
8589
|
-
data-id="
|
|
8726
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
8727
|
+
data-id="selectComponent_textBox"
|
|
8590
8728
|
data-selector-id="textBoxIcon"
|
|
8591
|
-
data-test-id="
|
|
8729
|
+
data-test-id="selectComponent_textBox"
|
|
8592
8730
|
>
|
|
8593
8731
|
<div
|
|
8594
8732
|
class="grow basis shrinkOff"
|
|
@@ -8660,9 +8798,6 @@ exports[`Select snapshot - Should render with dropBoxSize as medium 1`] = `
|
|
|
8660
8798
|
</div>
|
|
8661
8799
|
</div>
|
|
8662
8800
|
</div>
|
|
8663
|
-
<div
|
|
8664
|
-
class="line borderColor_default "
|
|
8665
|
-
/>
|
|
8666
8801
|
</div>
|
|
8667
8802
|
</div>
|
|
8668
8803
|
<div
|
|
@@ -8712,10 +8847,10 @@ exports[`Select snapshot - Should render with dropBoxSize as medium 1`] = `
|
|
|
8712
8847
|
class="search medium"
|
|
8713
8848
|
>
|
|
8714
8849
|
<div
|
|
8715
|
-
class="
|
|
8716
|
-
data-id="
|
|
8850
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
8851
|
+
data-id="selectComponent_search"
|
|
8717
8852
|
data-selector-id="textBoxIcon"
|
|
8718
|
-
data-test-id="
|
|
8853
|
+
data-test-id="selectComponent_search"
|
|
8719
8854
|
>
|
|
8720
8855
|
<div
|
|
8721
8856
|
class="grow basis shrinkOff"
|
|
@@ -8751,9 +8886,6 @@ exports[`Select snapshot - Should render with dropBoxSize as medium 1`] = `
|
|
|
8751
8886
|
data-test-id="containerComponent"
|
|
8752
8887
|
/>
|
|
8753
8888
|
</div>
|
|
8754
|
-
<div
|
|
8755
|
-
class="line borderColor_default "
|
|
8756
|
-
/>
|
|
8757
8889
|
</div>
|
|
8758
8890
|
</div>
|
|
8759
8891
|
</div>
|
|
@@ -8792,10 +8924,10 @@ exports[`Select snapshot - Should render with dropBoxSize as small 1`] = `
|
|
|
8792
8924
|
data-test-id="selectComponent"
|
|
8793
8925
|
>
|
|
8794
8926
|
<div
|
|
8795
|
-
class="
|
|
8796
|
-
data-id="
|
|
8927
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
8928
|
+
data-id="selectComponent_textBox"
|
|
8797
8929
|
data-selector-id="textBoxIcon"
|
|
8798
|
-
data-test-id="
|
|
8930
|
+
data-test-id="selectComponent_textBox"
|
|
8799
8931
|
>
|
|
8800
8932
|
<div
|
|
8801
8933
|
class="grow basis shrinkOff"
|
|
@@ -8867,9 +8999,6 @@ exports[`Select snapshot - Should render with dropBoxSize as small 1`] = `
|
|
|
8867
8999
|
</div>
|
|
8868
9000
|
</div>
|
|
8869
9001
|
</div>
|
|
8870
|
-
<div
|
|
8871
|
-
class="line borderColor_default "
|
|
8872
|
-
/>
|
|
8873
9002
|
</div>
|
|
8874
9003
|
</div>
|
|
8875
9004
|
<div
|
|
@@ -8919,10 +9048,10 @@ exports[`Select snapshot - Should render with dropBoxSize as small 1`] = `
|
|
|
8919
9048
|
class="search medium"
|
|
8920
9049
|
>
|
|
8921
9050
|
<div
|
|
8922
|
-
class="
|
|
8923
|
-
data-id="
|
|
9051
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container flex rowdir"
|
|
9052
|
+
data-id="selectComponent_search"
|
|
8924
9053
|
data-selector-id="textBoxIcon"
|
|
8925
|
-
data-test-id="
|
|
9054
|
+
data-test-id="selectComponent_search"
|
|
8926
9055
|
>
|
|
8927
9056
|
<div
|
|
8928
9057
|
class="grow basis shrinkOff"
|
|
@@ -8958,9 +9087,6 @@ exports[`Select snapshot - Should render with dropBoxSize as small 1`] = `
|
|
|
8958
9087
|
data-test-id="containerComponent"
|
|
8959
9088
|
/>
|
|
8960
9089
|
</div>
|
|
8961
|
-
<div
|
|
8962
|
-
class="line borderColor_default "
|
|
8963
|
-
/>
|
|
8964
9090
|
</div>
|
|
8965
9091
|
</div>
|
|
8966
9092
|
</div>
|
|
@@ -8999,10 +9125,10 @@ exports[`Select snapshot - Should render with getChildren 1`] = `
|
|
|
8999
9125
|
data-test-id="selectComponent"
|
|
9000
9126
|
>
|
|
9001
9127
|
<div
|
|
9002
|
-
class="
|
|
9003
|
-
data-id="
|
|
9128
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
9129
|
+
data-id="selectComponent_textBox"
|
|
9004
9130
|
data-selector-id="textBoxIcon"
|
|
9005
|
-
data-test-id="
|
|
9131
|
+
data-test-id="selectComponent_textBox"
|
|
9006
9132
|
>
|
|
9007
9133
|
<div
|
|
9008
9134
|
class="grow basis shrinkOff"
|
|
@@ -9074,9 +9200,6 @@ exports[`Select snapshot - Should render with getChildren 1`] = `
|
|
|
9074
9200
|
</div>
|
|
9075
9201
|
</div>
|
|
9076
9202
|
</div>
|
|
9077
|
-
<div
|
|
9078
|
-
class="line borderColor_default "
|
|
9079
|
-
/>
|
|
9080
9203
|
</div>
|
|
9081
9204
|
</div>
|
|
9082
9205
|
<div
|
|
@@ -9133,10 +9256,10 @@ exports[`Select snapshot - Should render with getFooter 1`] = `
|
|
|
9133
9256
|
data-test-id="selectComponent"
|
|
9134
9257
|
>
|
|
9135
9258
|
<div
|
|
9136
|
-
class="
|
|
9137
|
-
data-id="
|
|
9259
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
9260
|
+
data-id="selectComponent_textBox"
|
|
9138
9261
|
data-selector-id="textBoxIcon"
|
|
9139
|
-
data-test-id="
|
|
9262
|
+
data-test-id="selectComponent_textBox"
|
|
9140
9263
|
>
|
|
9141
9264
|
<div
|
|
9142
9265
|
class="grow basis shrinkOff"
|
|
@@ -9208,9 +9331,6 @@ exports[`Select snapshot - Should render with getFooter 1`] = `
|
|
|
9208
9331
|
</div>
|
|
9209
9332
|
</div>
|
|
9210
9333
|
</div>
|
|
9211
|
-
<div
|
|
9212
|
-
class="line borderColor_default "
|
|
9213
|
-
/>
|
|
9214
9334
|
</div>
|
|
9215
9335
|
</div>
|
|
9216
9336
|
<div
|
|
@@ -9295,10 +9415,10 @@ exports[`Select snapshot - Should render with iconOnHover as true 1`] = `
|
|
|
9295
9415
|
data-test-id="selectComponent"
|
|
9296
9416
|
>
|
|
9297
9417
|
<div
|
|
9298
|
-
class="container
|
|
9299
|
-
data-id="
|
|
9418
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
9419
|
+
data-id="selectComponent_textBox"
|
|
9300
9420
|
data-selector-id="textBoxIcon"
|
|
9301
|
-
data-test-id="
|
|
9421
|
+
data-test-id="selectComponent_textBox"
|
|
9302
9422
|
>
|
|
9303
9423
|
<div
|
|
9304
9424
|
class="grow basis shrinkOff"
|
|
@@ -9370,9 +9490,6 @@ exports[`Select snapshot - Should render with iconOnHover as true 1`] = `
|
|
|
9370
9490
|
</div>
|
|
9371
9491
|
</div>
|
|
9372
9492
|
</div>
|
|
9373
|
-
<div
|
|
9374
|
-
class="line borderColor_default "
|
|
9375
|
-
/>
|
|
9376
9493
|
</div>
|
|
9377
9494
|
</div>
|
|
9378
9495
|
</div>
|
|
@@ -9391,10 +9508,11 @@ exports[`Select snapshot - Should render with iconOnHover as true and isDisable
|
|
|
9391
9508
|
data-test-id="selectComponent_disabled"
|
|
9392
9509
|
>
|
|
9393
9510
|
<div
|
|
9394
|
-
class="
|
|
9395
|
-
data-id="
|
|
9511
|
+
class="varClass customContainer border_bottom disabled borderColor_default hasBorder container flex rowdir"
|
|
9512
|
+
data-id="selectComponent_textBox"
|
|
9396
9513
|
data-selector-id="textBoxIcon"
|
|
9397
|
-
data-test-id="
|
|
9514
|
+
data-test-id="selectComponent_textBox"
|
|
9515
|
+
data-title=""
|
|
9398
9516
|
>
|
|
9399
9517
|
<div
|
|
9400
9518
|
class="grow basis shrinkOff"
|
|
@@ -9467,9 +9585,6 @@ exports[`Select snapshot - Should render with iconOnHover as true and isDisable
|
|
|
9467
9585
|
</div>
|
|
9468
9586
|
</div>
|
|
9469
9587
|
</div>
|
|
9470
|
-
<div
|
|
9471
|
-
class="line borderColor_default "
|
|
9472
|
-
/>
|
|
9473
9588
|
</div>
|
|
9474
9589
|
</div>
|
|
9475
9590
|
</div>
|
|
@@ -9488,10 +9603,10 @@ exports[`Select snapshot - Should render with iconOnHover as true and isReadOnl
|
|
|
9488
9603
|
data-test-id="selectComponent_readOnly"
|
|
9489
9604
|
>
|
|
9490
9605
|
<div
|
|
9491
|
-
class="
|
|
9492
|
-
data-id="
|
|
9606
|
+
class="varClass customContainer border_bottom readonly borderColor_default hasBorder container flex rowdir"
|
|
9607
|
+
data-id="selectComponent_textBox"
|
|
9493
9608
|
data-selector-id="textBoxIcon"
|
|
9494
|
-
data-test-id="
|
|
9609
|
+
data-test-id="selectComponent_textBox"
|
|
9495
9610
|
>
|
|
9496
9611
|
<div
|
|
9497
9612
|
class="grow basis shrinkOff"
|
|
@@ -9563,9 +9678,6 @@ exports[`Select snapshot - Should render with iconOnHover as true and isReadOnl
|
|
|
9563
9678
|
</div>
|
|
9564
9679
|
</div>
|
|
9565
9680
|
</div>
|
|
9566
|
-
<div
|
|
9567
|
-
class="line borderColor_default "
|
|
9568
|
-
/>
|
|
9569
9681
|
</div>
|
|
9570
9682
|
</div>
|
|
9571
9683
|
</div>
|
|
@@ -9584,10 +9696,10 @@ exports[`Select snapshot - Should render with isLoading 1`] = `
|
|
|
9584
9696
|
data-test-id="selectComponent"
|
|
9585
9697
|
>
|
|
9586
9698
|
<div
|
|
9587
|
-
class="
|
|
9588
|
-
data-id="
|
|
9699
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder active container input flex rowdir"
|
|
9700
|
+
data-id="selectComponent_textBox"
|
|
9589
9701
|
data-selector-id="textBoxIcon"
|
|
9590
|
-
data-test-id="
|
|
9702
|
+
data-test-id="selectComponent_textBox"
|
|
9591
9703
|
>
|
|
9592
9704
|
<div
|
|
9593
9705
|
class="grow basis shrinkOff"
|
|
@@ -9659,9 +9771,6 @@ exports[`Select snapshot - Should render with isLoading 1`] = `
|
|
|
9659
9771
|
</div>
|
|
9660
9772
|
</div>
|
|
9661
9773
|
</div>
|
|
9662
|
-
<div
|
|
9663
|
-
class="line borderColor_default "
|
|
9664
|
-
/>
|
|
9665
9774
|
</div>
|
|
9666
9775
|
</div>
|
|
9667
9776
|
<div
|
|
@@ -9757,10 +9866,10 @@ exports[`Select snapshot - Should render with isParentBased as false 1`] = `
|
|
|
9757
9866
|
data-test-id="selectComponent"
|
|
9758
9867
|
>
|
|
9759
9868
|
<div
|
|
9760
|
-
class="container
|
|
9761
|
-
data-id="
|
|
9869
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
9870
|
+
data-id="selectComponent_textBox"
|
|
9762
9871
|
data-selector-id="textBoxIcon"
|
|
9763
|
-
data-test-id="
|
|
9872
|
+
data-test-id="selectComponent_textBox"
|
|
9764
9873
|
>
|
|
9765
9874
|
<div
|
|
9766
9875
|
class="grow basis shrinkOff"
|
|
@@ -9832,9 +9941,6 @@ exports[`Select snapshot - Should render with isParentBased as false 1`] = `
|
|
|
9832
9941
|
</div>
|
|
9833
9942
|
</div>
|
|
9834
9943
|
</div>
|
|
9835
|
-
<div
|
|
9836
|
-
class="line borderColor_default "
|
|
9837
|
-
/>
|
|
9838
9944
|
</div>
|
|
9839
9945
|
</div>
|
|
9840
9946
|
</div>
|
|
@@ -9887,10 +9993,10 @@ exports[`Select snapshot - Should render with size as medium 1`] = `
|
|
|
9887
9993
|
data-test-id="selectComponent"
|
|
9888
9994
|
>
|
|
9889
9995
|
<div
|
|
9890
|
-
class="container
|
|
9891
|
-
data-id="
|
|
9996
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
9997
|
+
data-id="selectComponent_textBox"
|
|
9892
9998
|
data-selector-id="textBoxIcon"
|
|
9893
|
-
data-test-id="
|
|
9999
|
+
data-test-id="selectComponent_textBox"
|
|
9894
10000
|
>
|
|
9895
10001
|
<div
|
|
9896
10002
|
class="grow basis shrinkOff"
|
|
@@ -9962,9 +10068,6 @@ exports[`Select snapshot - Should render with size as medium 1`] = `
|
|
|
9962
10068
|
</div>
|
|
9963
10069
|
</div>
|
|
9964
10070
|
</div>
|
|
9965
|
-
<div
|
|
9966
|
-
class="line borderColor_default "
|
|
9967
|
-
/>
|
|
9968
10071
|
</div>
|
|
9969
10072
|
</div>
|
|
9970
10073
|
</div>
|
|
@@ -9983,10 +10086,10 @@ exports[`Select snapshot - Should render with size as small 1`] = `
|
|
|
9983
10086
|
data-test-id="selectComponent"
|
|
9984
10087
|
>
|
|
9985
10088
|
<div
|
|
9986
|
-
class="container
|
|
9987
|
-
data-id="
|
|
10089
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
10090
|
+
data-id="selectComponent_textBox"
|
|
9988
10091
|
data-selector-id="textBoxIcon"
|
|
9989
|
-
data-test-id="
|
|
10092
|
+
data-test-id="selectComponent_textBox"
|
|
9990
10093
|
>
|
|
9991
10094
|
<div
|
|
9992
10095
|
class="grow basis shrinkOff"
|
|
@@ -10058,9 +10161,6 @@ exports[`Select snapshot - Should render with size as small 1`] = `
|
|
|
10058
10161
|
</div>
|
|
10059
10162
|
</div>
|
|
10060
10163
|
</div>
|
|
10061
|
-
<div
|
|
10062
|
-
class="line borderColor_default "
|
|
10063
|
-
/>
|
|
10064
10164
|
</div>
|
|
10065
10165
|
</div>
|
|
10066
10166
|
</div>
|
|
@@ -10079,10 +10179,10 @@ exports[`Select snapshot - Should render with title prop 1`] = `
|
|
|
10079
10179
|
data-test-id="selectComponent"
|
|
10080
10180
|
>
|
|
10081
10181
|
<div
|
|
10082
|
-
class="container
|
|
10083
|
-
data-id="
|
|
10182
|
+
class="varClass customContainer border_bottom effect borderColor_default hasBorder container input flex rowdir"
|
|
10183
|
+
data-id="selectComponent_textBox"
|
|
10084
10184
|
data-selector-id="textBoxIcon"
|
|
10085
|
-
data-test-id="
|
|
10185
|
+
data-test-id="selectComponent_textBox"
|
|
10086
10186
|
>
|
|
10087
10187
|
<div
|
|
10088
10188
|
class="grow basis shrinkOff"
|
|
@@ -10155,9 +10255,6 @@ exports[`Select snapshot - Should render with title prop 1`] = `
|
|
|
10155
10255
|
</div>
|
|
10156
10256
|
</div>
|
|
10157
10257
|
</div>
|
|
10158
|
-
<div
|
|
10159
|
-
class="line borderColor_default "
|
|
10160
|
-
/>
|
|
10161
10258
|
</div>
|
|
10162
10259
|
</div>
|
|
10163
10260
|
</div>
|