@zohodesk/components 1.2.34 → 1.2.35
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/README.md +9 -0
- package/es/Accordion/__tests__/Accordion.spec.js +11 -0
- package/es/Accordion/__tests__/AccordionItem.spec.js +16 -0
- package/es/Accordion/__tests__/__snapshots__/Accordion.spec.js.snap +12 -0
- package/es/Accordion/__tests__/__snapshots__/AccordionItem.spec.js.snap +23 -0
- package/es/Animation/__tests__/Animation.spec.js +14 -0
- package/es/Animation/__tests__/__snapshots__/Animation.spec.js.snap +11 -0
- package/es/Card/__tests__/Card.spec.js +11 -0
- package/es/Card/__tests__/__snapshots__/Card.spec.js.snap +12 -0
- package/es/DateTime/DateWidget.js +2 -1
- package/es/DateTime/__tests__/CalendarView.spec.js +13 -0
- package/es/DateTime/__tests__/DateTime.spec.js +21 -0
- package/es/DateTime/__tests__/DateTimePopupFooter.spec.js +11 -0
- package/es/DateTime/__tests__/DateTimePopupHeader.spec.js +11 -0
- package/es/DateTime/__tests__/DateWidget.spec.js +11 -0
- package/es/DateTime/__tests__/DaysRow.spec.js +13 -0
- package/es/DateTime/__tests__/Time.spec.js +11 -0
- package/es/DateTime/__tests__/YearView.spec.js +11 -0
- package/es/DateTime/__tests__/__snapshots__/CalendarView.spec.js.snap +312 -0
- package/es/DateTime/__tests__/__snapshots__/DateTime.spec.js.snap +938 -0
- package/es/DateTime/__tests__/__snapshots__/DateTimePopupFooter.spec.js.snap +34 -0
- package/es/DateTime/__tests__/__snapshots__/DateTimePopupHeader.spec.js.snap +72 -0
- package/es/DateTime/__tests__/__snapshots__/DateWidget.spec.js.snap +79 -0
- package/es/DateTime/__tests__/__snapshots__/DaysRow.spec.js.snap +12 -0
- package/es/DateTime/__tests__/__snapshots__/Time.spec.js.snap +310 -0
- package/es/DateTime/__tests__/__snapshots__/YearView.spec.js.snap +61 -0
- package/es/DropBox/DropBoxElement/__tests__/DropBoxElement.spec.js +11 -0
- package/es/DropBox/DropBoxElement/__tests__/__snapshots__/DropBoxElement.spec.js.snap +33 -0
- package/es/DropBox/__tests__/DropBox.spec.js +11 -0
- package/es/DropBox/__tests__/__snapshots__/DropBox.spec.js.snap +33 -0
- package/es/DropDown/__tests__/DropDown.spec.js +11 -0
- package/es/DropDown/__tests__/DropDownHeading.spec.js +11 -0
- package/es/DropDown/__tests__/DropDownItem.spec.js +11 -0
- package/es/DropDown/__tests__/DropDownSearch.spec.js +11 -0
- package/es/DropDown/__tests__/DropDownSeparator.spec.js +11 -0
- package/es/DropDown/__tests__/__snapshots__/DropDown.spec.js.snap +51 -0
- package/es/DropDown/__tests__/__snapshots__/DropDownHeading.spec.js.snap +12 -0
- package/es/DropDown/__tests__/__snapshots__/DropDownItem.spec.js.snap +11 -0
- package/es/DropDown/__tests__/__snapshots__/DropDownSearch.spec.js.snap +18 -0
- package/es/DropDown/__tests__/__snapshots__/DropDownSeparator.spec.js.snap +9 -0
- package/es/Heading/__tests__/Heading.spec.js +11 -0
- package/es/Heading/__tests__/__snapshots__/Heading.spec.js.snap +9 -0
- package/es/Layout/__tests__/Box.spec.js +11 -0
- package/es/Layout/__tests__/Container.spec.js +11 -0
- package/es/Layout/__tests__/__snapshots__/Box.spec.js.snap +16 -0
- package/es/Layout/__tests__/__snapshots__/Container.spec.js.snap +16 -0
- package/es/ListItem/__tests__/ListContainer.spec.js +11 -0
- package/es/ListItem/__tests__/ListItem.spec.js +11 -0
- package/es/ListItem/__tests__/ListItemWithAvatar.spec.js +11 -0
- package/es/ListItem/__tests__/ListItemWithCheckBox.spec.js +11 -0
- package/es/ListItem/__tests__/ListItemWithIcon.spec.js +11 -0
- package/es/ListItem/__tests__/ListItemWithRadio.spec.js +11 -0
- package/es/ListItem/__tests__/__snapshots__/ListContainer.spec.js.snap +14 -0
- package/es/ListItem/__tests__/__snapshots__/ListItem.spec.js.snap +15 -0
- package/es/ListItem/__tests__/__snapshots__/ListItemWithAvatar.spec.js.snap +24 -0
- package/es/ListItem/__tests__/__snapshots__/ListItemWithCheckBox.spec.js.snap +71 -0
- package/es/ListItem/__tests__/__snapshots__/ListItemWithIcon.spec.js.snap +24 -0
- package/es/ListItem/__tests__/__snapshots__/ListItemWithRadio.spec.js.snap +70 -0
- package/es/Modal/__tests__/Modal.spec.js +15 -0
- package/es/Modal/__tests__/__snapshots__/Modal.spec.js.snap +26 -0
- package/es/MultiSelect/MobileHeader/__tests__/MobileHeader.spec.js +11 -0
- package/es/MultiSelect/MobileHeader/__tests__/__snapshots__/MobileHeader.spec.js.snap +39 -0
- package/es/MultiSelect/MultiSelect.js +2 -1
- package/es/MultiSelect/__tests__/AdvancedGroupMultiSelect.spec.js +12 -0
- package/es/MultiSelect/__tests__/AdvancedMultiSelect.spec.js +12 -0
- package/es/MultiSelect/__tests__/EmptyState.spec.js +15 -0
- package/es/MultiSelect/__tests__/MultiSelect.spec.js +11 -0
- package/es/MultiSelect/__tests__/MultiSelectHeader.spec.js +21 -0
- package/es/MultiSelect/__tests__/MultiSelectWithAvatar.spec.js +11 -0
- package/es/MultiSelect/__tests__/SelectedOptions.spec.js +28 -0
- package/es/MultiSelect/__tests__/Suggestions.spec.js +13 -0
- package/es/MultiSelect/__tests__/__snapshots__/AdvancedGroupMultiSelect.spec.js.snap +74 -0
- package/es/MultiSelect/__tests__/__snapshots__/AdvancedMultiSelect.spec.js.snap +74 -0
- package/es/MultiSelect/__tests__/__snapshots__/EmptyState.spec.js.snap +12 -0
- package/es/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +86 -0
- package/es/MultiSelect/__tests__/__snapshots__/MultiSelectHeader.spec.js.snap +42 -0
- package/es/MultiSelect/__tests__/__snapshots__/MultiSelectWithAvatar.spec.js.snap +85 -0
- package/es/MultiSelect/__tests__/__snapshots__/SelectedOptions.spec.js.snap +80 -0
- package/es/MultiSelect/__tests__/__snapshots__/Suggestions.spec.js.snap +20 -0
- package/es/PopOver/__tests__/PopOver.spec.js +11 -0
- package/es/PopOver/__tests__/__snapshots__/PopOver.spec.js.snap +13 -0
- package/es/ResponsiveDropBox/__tests__/ResponsiveDropBox.spec.js +11 -0
- package/es/ResponsiveDropBox/__tests__/__snapshots__/ResponsiveDropBox.spec.js.snap +39 -0
- package/es/Select/__tests__/GroupSelect.spec.js +19 -0
- package/es/Select/__tests__/Select.spec.js +12 -0
- package/es/Select/__tests__/SelectWithAvatar.spec.js +12 -0
- package/es/Select/__tests__/SelectWithIcon.spec.js +12 -0
- package/es/Select/__tests__/__snapshots__/GroupSelect.spec.js.snap +90 -0
- package/es/Select/__tests__/__snapshots__/Select.spec.js.snap +97 -0
- package/es/Select/__tests__/__snapshots__/SelectWithAvatar.spec.js.snap +45 -0
- package/es/Select/__tests__/__snapshots__/SelectWithIcon.spec.js.snap +108 -0
- package/es/Tab/__tests__/Tab.spec.js +11 -0
- package/es/Tab/__tests__/TabContent.spec.js +11 -0
- package/es/Tab/__tests__/TabContentWrapper.spec.js +11 -0
- package/es/Tab/__tests__/TabWrapper.spec.js +11 -0
- package/es/Tab/__tests__/Tabs.spec.js +11 -0
- package/es/Tab/__tests__/__snapshots__/Tab.spec.js.snap +22 -0
- package/es/Tab/__tests__/__snapshots__/TabContent.spec.js.snap +19 -0
- package/es/Tab/__tests__/__snapshots__/TabContentWrapper.spec.js.snap +12 -0
- package/es/Tab/__tests__/__snapshots__/TabWrapper.spec.js.snap +20 -0
- package/es/Tab/__tests__/__snapshots__/Tabs.spec.js.snap +33 -0
- package/es/Tag/__tests__/Tag.spec.js +3 -3
- package/es/Tag/__tests__/__snapshots__/Tag.spec.js.snap +162 -162
- package/es/VelocityAnimation/VelocityAnimation/__tests__/VelocityAnimation.spec.js +11 -0
- package/es/VelocityAnimation/VelocityAnimation/__tests__/__snapshots__/VelocityAnimation.spec.js.snap +9 -0
- package/es/VelocityAnimation/VelocityAnimationGroup/__tests__/VelocityAnimationGroup.spec.js +19 -0
- package/es/VelocityAnimation/VelocityAnimationGroup/__tests__/__snapshots__/VelocityAnimationGroup.spec.js.snap +11 -0
- package/es/semantic/Button/__tests__/Button.spec.js +11 -0
- package/es/semantic/Button/__tests__/__snapshots__/Button.spec.js.snap +15 -0
- package/es/v1/DateTime/DateWidget.js +2 -1
- package/es/v1/MultiSelect/MultiSelect.js +2 -1
- package/lib/Accordion/__tests__/Accordion.spec.js +18 -0
- package/lib/Accordion/__tests__/AccordionItem.spec.js +24 -0
- package/lib/Accordion/__tests__/__snapshots__/Accordion.spec.js.snap +12 -0
- package/lib/Accordion/__tests__/__snapshots__/AccordionItem.spec.js.snap +23 -0
- package/lib/Animation/__tests__/Animation.spec.js +21 -0
- package/lib/Animation/__tests__/__snapshots__/Animation.spec.js.snap +11 -0
- package/lib/Card/__tests__/Card.spec.js +18 -0
- package/lib/Card/__tests__/__snapshots__/Card.spec.js.snap +12 -0
- package/lib/DateTime/DateWidget.js +2 -1
- package/lib/DateTime/__tests__/CalendarView.spec.js +20 -0
- package/lib/DateTime/__tests__/DateTime.spec.js +28 -0
- package/lib/DateTime/__tests__/DateTimePopupFooter.spec.js +18 -0
- package/lib/DateTime/__tests__/DateTimePopupHeader.spec.js +18 -0
- package/lib/DateTime/__tests__/DateWidget.spec.js +18 -0
- package/lib/DateTime/__tests__/DaysRow.spec.js +20 -0
- package/lib/DateTime/__tests__/Time.spec.js +18 -0
- package/lib/DateTime/__tests__/YearView.spec.js +18 -0
- package/lib/DateTime/__tests__/__snapshots__/CalendarView.spec.js.snap +312 -0
- package/lib/DateTime/__tests__/__snapshots__/DateTime.spec.js.snap +938 -0
- package/lib/DateTime/__tests__/__snapshots__/DateTimePopupFooter.spec.js.snap +34 -0
- package/lib/DateTime/__tests__/__snapshots__/DateTimePopupHeader.spec.js.snap +72 -0
- package/lib/DateTime/__tests__/__snapshots__/DateWidget.spec.js.snap +79 -0
- package/lib/DateTime/__tests__/__snapshots__/DaysRow.spec.js.snap +12 -0
- package/lib/DateTime/__tests__/__snapshots__/Time.spec.js.snap +310 -0
- package/lib/DateTime/__tests__/__snapshots__/YearView.spec.js.snap +61 -0
- package/lib/DropBox/DropBoxElement/__tests__/DropBoxElement.spec.js +18 -0
- package/lib/DropBox/DropBoxElement/__tests__/__snapshots__/DropBoxElement.spec.js.snap +33 -0
- package/lib/DropBox/__tests__/DropBox.spec.js +18 -0
- package/lib/DropBox/__tests__/__snapshots__/DropBox.spec.js.snap +33 -0
- package/lib/DropDown/__tests__/DropDown.spec.js +18 -0
- package/lib/DropDown/__tests__/DropDownHeading.spec.js +18 -0
- package/lib/DropDown/__tests__/DropDownItem.spec.js +18 -0
- package/lib/DropDown/__tests__/DropDownSearch.spec.js +18 -0
- package/lib/DropDown/__tests__/DropDownSeparator.spec.js +18 -0
- package/lib/DropDown/__tests__/__snapshots__/DropDown.spec.js.snap +51 -0
- package/lib/DropDown/__tests__/__snapshots__/DropDownHeading.spec.js.snap +12 -0
- package/lib/DropDown/__tests__/__snapshots__/DropDownItem.spec.js.snap +11 -0
- package/lib/DropDown/__tests__/__snapshots__/DropDownSearch.spec.js.snap +18 -0
- package/lib/DropDown/__tests__/__snapshots__/DropDownSeparator.spec.js.snap +9 -0
- package/lib/Heading/__tests__/Heading.spec.js +18 -0
- package/lib/Heading/__tests__/__snapshots__/Heading.spec.js.snap +9 -0
- package/lib/Layout/__tests__/Box.spec.js +18 -0
- package/lib/Layout/__tests__/Container.spec.js +18 -0
- package/lib/Layout/__tests__/__snapshots__/Box.spec.js.snap +16 -0
- package/lib/Layout/__tests__/__snapshots__/Container.spec.js.snap +16 -0
- package/lib/ListItem/__tests__/ListContainer.spec.js +18 -0
- package/lib/ListItem/__tests__/ListItem.spec.js +18 -0
- package/lib/ListItem/__tests__/ListItemWithAvatar.spec.js +18 -0
- package/lib/ListItem/__tests__/ListItemWithCheckBox.spec.js +18 -0
- package/lib/ListItem/__tests__/ListItemWithIcon.spec.js +18 -0
- package/lib/ListItem/__tests__/ListItemWithRadio.spec.js +18 -0
- package/lib/ListItem/__tests__/__snapshots__/ListContainer.spec.js.snap +14 -0
- package/lib/ListItem/__tests__/__snapshots__/ListItem.spec.js.snap +15 -0
- package/lib/ListItem/__tests__/__snapshots__/ListItemWithAvatar.spec.js.snap +24 -0
- package/lib/ListItem/__tests__/__snapshots__/ListItemWithCheckBox.spec.js.snap +71 -0
- package/lib/ListItem/__tests__/__snapshots__/ListItemWithIcon.spec.js.snap +24 -0
- package/lib/ListItem/__tests__/__snapshots__/ListItemWithRadio.spec.js.snap +70 -0
- package/lib/Modal/__tests__/Modal.spec.js +22 -0
- package/lib/Modal/__tests__/__snapshots__/Modal.spec.js.snap +26 -0
- package/lib/MultiSelect/MobileHeader/__tests__/MobileHeader.spec.js +18 -0
- package/lib/MultiSelect/MobileHeader/__tests__/__snapshots__/MobileHeader.spec.js.snap +39 -0
- package/lib/MultiSelect/MultiSelect.js +2 -1
- package/lib/MultiSelect/__tests__/AdvancedGroupMultiSelect.spec.js +20 -0
- package/lib/MultiSelect/__tests__/AdvancedMultiSelect.spec.js +20 -0
- package/lib/MultiSelect/__tests__/EmptyState.spec.js +22 -0
- package/lib/MultiSelect/__tests__/MultiSelect.spec.js +18 -0
- package/lib/MultiSelect/__tests__/MultiSelectHeader.spec.js +28 -0
- package/lib/MultiSelect/__tests__/MultiSelectWithAvatar.spec.js +18 -0
- package/lib/MultiSelect/__tests__/SelectedOptions.spec.js +35 -0
- package/lib/MultiSelect/__tests__/Suggestions.spec.js +20 -0
- package/lib/MultiSelect/__tests__/__snapshots__/AdvancedGroupMultiSelect.spec.js.snap +74 -0
- package/lib/MultiSelect/__tests__/__snapshots__/AdvancedMultiSelect.spec.js.snap +74 -0
- package/lib/MultiSelect/__tests__/__snapshots__/EmptyState.spec.js.snap +12 -0
- package/lib/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +86 -0
- package/lib/MultiSelect/__tests__/__snapshots__/MultiSelectHeader.spec.js.snap +42 -0
- package/lib/MultiSelect/__tests__/__snapshots__/MultiSelectWithAvatar.spec.js.snap +85 -0
- package/lib/MultiSelect/__tests__/__snapshots__/SelectedOptions.spec.js.snap +80 -0
- package/lib/MultiSelect/__tests__/__snapshots__/Suggestions.spec.js.snap +20 -0
- package/lib/PopOver/__tests__/PopOver.spec.js +18 -0
- package/lib/PopOver/__tests__/__snapshots__/PopOver.spec.js.snap +13 -0
- package/lib/ResponsiveDropBox/__tests__/ResponsiveDropBox.spec.js +18 -0
- package/lib/ResponsiveDropBox/__tests__/__snapshots__/ResponsiveDropBox.spec.js.snap +39 -0
- package/lib/Select/__tests__/GroupSelect.spec.js +27 -0
- package/lib/Select/__tests__/Select.spec.js +20 -0
- package/lib/Select/__tests__/SelectWithAvatar.spec.js +20 -0
- package/lib/Select/__tests__/SelectWithIcon.spec.js +20 -0
- package/lib/Select/__tests__/__snapshots__/GroupSelect.spec.js.snap +90 -0
- package/lib/Select/__tests__/__snapshots__/Select.spec.js.snap +97 -0
- package/lib/Select/__tests__/__snapshots__/SelectWithAvatar.spec.js.snap +45 -0
- package/lib/Select/__tests__/__snapshots__/SelectWithIcon.spec.js.snap +108 -0
- package/lib/Tab/__tests__/Tab.spec.js +18 -0
- package/lib/Tab/__tests__/TabContent.spec.js +18 -0
- package/lib/Tab/__tests__/TabContentWrapper.spec.js +18 -0
- package/lib/Tab/__tests__/TabWrapper.spec.js +18 -0
- package/lib/Tab/__tests__/Tabs.spec.js +18 -0
- package/lib/Tab/__tests__/__snapshots__/Tab.spec.js.snap +22 -0
- package/lib/Tab/__tests__/__snapshots__/TabContent.spec.js.snap +19 -0
- package/lib/Tab/__tests__/__snapshots__/TabContentWrapper.spec.js.snap +12 -0
- package/lib/Tab/__tests__/__snapshots__/TabWrapper.spec.js.snap +20 -0
- package/lib/Tab/__tests__/__snapshots__/Tabs.spec.js.snap +33 -0
- package/lib/Tag/__tests__/Tag.spec.js +3 -3
- package/lib/Tag/__tests__/__snapshots__/Tag.spec.js.snap +162 -162
- package/lib/VelocityAnimation/VelocityAnimation/__tests__/VelocityAnimation.spec.js +18 -0
- package/lib/VelocityAnimation/VelocityAnimation/__tests__/__snapshots__/VelocityAnimation.spec.js.snap +9 -0
- package/lib/VelocityAnimation/VelocityAnimationGroup/__tests__/VelocityAnimationGroup.spec.js +26 -0
- package/lib/VelocityAnimation/VelocityAnimationGroup/__tests__/__snapshots__/VelocityAnimationGroup.spec.js.snap +11 -0
- package/lib/semantic/Button/__tests__/Button.spec.js +18 -0
- package/lib/semantic/Button/__tests__/__snapshots__/Button.spec.js.snap +15 -0
- package/lib/v1/DateTime/DateWidget.js +2 -1
- package/lib/v1/MultiSelect/MultiSelect.js +2 -1
- package/package.json +5 -5
- package/result.json +1 -1
|
@@ -448,11 +448,11 @@ exports[`Tag component Should be render with the basic set of default props 1`]
|
|
|
448
448
|
</DocumentFragment>
|
|
449
449
|
`;
|
|
450
450
|
|
|
451
|
-
exports[`Tag component Should render active - danger 1`] = `
|
|
451
|
+
exports[`Tag component Should render active - palette danger, size medium , closePalette danger 1`] = `
|
|
452
452
|
<DocumentFragment>
|
|
453
453
|
<div
|
|
454
454
|
aria-labelledby="1"
|
|
455
|
-
class="container effect selected activedanger
|
|
455
|
+
class="container effect selected activedanger activemediumEffect medium lgRadius danger "
|
|
456
456
|
data-id="tag_TagSelected"
|
|
457
457
|
data-selector-id="tag"
|
|
458
458
|
data-test-id="tag_TagSelected"
|
|
@@ -460,7 +460,7 @@ exports[`Tag component Should render active - danger 1`] = `
|
|
|
460
460
|
>
|
|
461
461
|
<div
|
|
462
462
|
aria-hidden="true"
|
|
463
|
-
class="text
|
|
463
|
+
class="text mediumtext"
|
|
464
464
|
id="1"
|
|
465
465
|
/>
|
|
466
466
|
<button
|
|
@@ -493,11 +493,11 @@ exports[`Tag component Should render active - danger 1`] = `
|
|
|
493
493
|
</DocumentFragment>
|
|
494
494
|
`;
|
|
495
495
|
|
|
496
|
-
exports[`Tag component Should render active - danger
|
|
496
|
+
exports[`Tag component Should render active - palette danger, size medium , closePalette primary 1`] = `
|
|
497
497
|
<DocumentFragment>
|
|
498
498
|
<div
|
|
499
|
-
aria-labelledby="
|
|
500
|
-
class="container effect selected activedanger
|
|
499
|
+
aria-labelledby="1"
|
|
500
|
+
class="container effect selected activedanger activemediumEffect medium lgRadius danger "
|
|
501
501
|
data-id="tag_TagSelected"
|
|
502
502
|
data-selector-id="tag"
|
|
503
503
|
data-test-id="tag_TagSelected"
|
|
@@ -505,8 +505,8 @@ exports[`Tag component Should render active - danger 2`] = `
|
|
|
505
505
|
>
|
|
506
506
|
<div
|
|
507
507
|
aria-hidden="true"
|
|
508
|
-
class="text
|
|
509
|
-
id="
|
|
508
|
+
class="text mediumtext"
|
|
509
|
+
id="1"
|
|
510
510
|
/>
|
|
511
511
|
<button
|
|
512
512
|
aria-label="Delete"
|
|
@@ -538,11 +538,11 @@ exports[`Tag component Should render active - danger 2`] = `
|
|
|
538
538
|
</DocumentFragment>
|
|
539
539
|
`;
|
|
540
540
|
|
|
541
|
-
exports[`Tag component Should render active - danger
|
|
541
|
+
exports[`Tag component Should render active - palette danger, size small , closePalette danger 1`] = `
|
|
542
542
|
<DocumentFragment>
|
|
543
543
|
<div
|
|
544
|
-
aria-labelledby="
|
|
545
|
-
class="container effect selected activedanger
|
|
544
|
+
aria-labelledby="1"
|
|
545
|
+
class="container effect selected activedanger activesmallEffect small lgRadius danger "
|
|
546
546
|
data-id="tag_TagSelected"
|
|
547
547
|
data-selector-id="tag"
|
|
548
548
|
data-test-id="tag_TagSelected"
|
|
@@ -550,8 +550,8 @@ exports[`Tag component Should render active - danger 3`] = `
|
|
|
550
550
|
>
|
|
551
551
|
<div
|
|
552
552
|
aria-hidden="true"
|
|
553
|
-
class="text
|
|
554
|
-
id="
|
|
553
|
+
class="text smalltext"
|
|
554
|
+
id="1"
|
|
555
555
|
/>
|
|
556
556
|
<button
|
|
557
557
|
aria-label="Delete"
|
|
@@ -583,11 +583,11 @@ exports[`Tag component Should render active - danger 3`] = `
|
|
|
583
583
|
</DocumentFragment>
|
|
584
584
|
`;
|
|
585
585
|
|
|
586
|
-
exports[`Tag component Should render active - danger
|
|
586
|
+
exports[`Tag component Should render active - palette danger, size small , closePalette primary 1`] = `
|
|
587
587
|
<DocumentFragment>
|
|
588
588
|
<div
|
|
589
|
-
aria-labelledby="
|
|
590
|
-
class="container effect selected activedanger
|
|
589
|
+
aria-labelledby="1"
|
|
590
|
+
class="container effect selected activedanger activesmallEffect small lgRadius danger "
|
|
591
591
|
data-id="tag_TagSelected"
|
|
592
592
|
data-selector-id="tag"
|
|
593
593
|
data-test-id="tag_TagSelected"
|
|
@@ -595,8 +595,8 @@ exports[`Tag component Should render active - danger 4`] = `
|
|
|
595
595
|
>
|
|
596
596
|
<div
|
|
597
597
|
aria-hidden="true"
|
|
598
|
-
class="text
|
|
599
|
-
id="
|
|
598
|
+
class="text smalltext"
|
|
599
|
+
id="1"
|
|
600
600
|
/>
|
|
601
601
|
<button
|
|
602
602
|
aria-label="Delete"
|
|
@@ -628,11 +628,11 @@ exports[`Tag component Should render active - danger 4`] = `
|
|
|
628
628
|
</DocumentFragment>
|
|
629
629
|
`;
|
|
630
630
|
|
|
631
|
-
exports[`Tag component Should render active - dark 1`] = `
|
|
631
|
+
exports[`Tag component Should render active - palette dark, size medium , closePalette danger 1`] = `
|
|
632
632
|
<DocumentFragment>
|
|
633
633
|
<div
|
|
634
634
|
aria-labelledby="1"
|
|
635
|
-
class="container effect selected undefined
|
|
635
|
+
class="container effect selected undefined activemediumEffect medium lgRadius dark "
|
|
636
636
|
data-id="tag_TagSelected"
|
|
637
637
|
data-selector-id="tag"
|
|
638
638
|
data-test-id="tag_TagSelected"
|
|
@@ -640,7 +640,7 @@ exports[`Tag component Should render active - dark 1`] = `
|
|
|
640
640
|
>
|
|
641
641
|
<div
|
|
642
642
|
aria-hidden="true"
|
|
643
|
-
class="text
|
|
643
|
+
class="text mediumtext"
|
|
644
644
|
id="1"
|
|
645
645
|
/>
|
|
646
646
|
<button
|
|
@@ -673,11 +673,11 @@ exports[`Tag component Should render active - dark 1`] = `
|
|
|
673
673
|
</DocumentFragment>
|
|
674
674
|
`;
|
|
675
675
|
|
|
676
|
-
exports[`Tag component Should render active - dark
|
|
676
|
+
exports[`Tag component Should render active - palette dark, size medium , closePalette primary 1`] = `
|
|
677
677
|
<DocumentFragment>
|
|
678
678
|
<div
|
|
679
|
-
aria-labelledby="
|
|
680
|
-
class="container effect selected undefined
|
|
679
|
+
aria-labelledby="1"
|
|
680
|
+
class="container effect selected undefined activemediumEffect medium lgRadius dark "
|
|
681
681
|
data-id="tag_TagSelected"
|
|
682
682
|
data-selector-id="tag"
|
|
683
683
|
data-test-id="tag_TagSelected"
|
|
@@ -685,8 +685,8 @@ exports[`Tag component Should render active - dark 2`] = `
|
|
|
685
685
|
>
|
|
686
686
|
<div
|
|
687
687
|
aria-hidden="true"
|
|
688
|
-
class="text
|
|
689
|
-
id="
|
|
688
|
+
class="text mediumtext"
|
|
689
|
+
id="1"
|
|
690
690
|
/>
|
|
691
691
|
<button
|
|
692
692
|
aria-label="Delete"
|
|
@@ -718,11 +718,11 @@ exports[`Tag component Should render active - dark 2`] = `
|
|
|
718
718
|
</DocumentFragment>
|
|
719
719
|
`;
|
|
720
720
|
|
|
721
|
-
exports[`Tag component Should render active - dark
|
|
721
|
+
exports[`Tag component Should render active - palette dark, size small , closePalette danger 1`] = `
|
|
722
722
|
<DocumentFragment>
|
|
723
723
|
<div
|
|
724
|
-
aria-labelledby="
|
|
725
|
-
class="container effect selected undefined
|
|
724
|
+
aria-labelledby="1"
|
|
725
|
+
class="container effect selected undefined activesmallEffect small lgRadius dark "
|
|
726
726
|
data-id="tag_TagSelected"
|
|
727
727
|
data-selector-id="tag"
|
|
728
728
|
data-test-id="tag_TagSelected"
|
|
@@ -730,8 +730,8 @@ exports[`Tag component Should render active - dark 3`] = `
|
|
|
730
730
|
>
|
|
731
731
|
<div
|
|
732
732
|
aria-hidden="true"
|
|
733
|
-
class="text
|
|
734
|
-
id="
|
|
733
|
+
class="text smalltext"
|
|
734
|
+
id="1"
|
|
735
735
|
/>
|
|
736
736
|
<button
|
|
737
737
|
aria-label="Delete"
|
|
@@ -763,11 +763,11 @@ exports[`Tag component Should render active - dark 3`] = `
|
|
|
763
763
|
</DocumentFragment>
|
|
764
764
|
`;
|
|
765
765
|
|
|
766
|
-
exports[`Tag component Should render active - dark
|
|
766
|
+
exports[`Tag component Should render active - palette dark, size small , closePalette primary 1`] = `
|
|
767
767
|
<DocumentFragment>
|
|
768
768
|
<div
|
|
769
|
-
aria-labelledby="
|
|
770
|
-
class="container effect selected undefined
|
|
769
|
+
aria-labelledby="1"
|
|
770
|
+
class="container effect selected undefined activesmallEffect small lgRadius dark "
|
|
771
771
|
data-id="tag_TagSelected"
|
|
772
772
|
data-selector-id="tag"
|
|
773
773
|
data-test-id="tag_TagSelected"
|
|
@@ -775,8 +775,8 @@ exports[`Tag component Should render active - dark 4`] = `
|
|
|
775
775
|
>
|
|
776
776
|
<div
|
|
777
777
|
aria-hidden="true"
|
|
778
|
-
class="text
|
|
779
|
-
id="
|
|
778
|
+
class="text smalltext"
|
|
779
|
+
id="1"
|
|
780
780
|
/>
|
|
781
781
|
<button
|
|
782
782
|
aria-label="Delete"
|
|
@@ -808,11 +808,11 @@ exports[`Tag component Should render active - dark 4`] = `
|
|
|
808
808
|
</DocumentFragment>
|
|
809
809
|
`;
|
|
810
810
|
|
|
811
|
-
exports[`Tag component Should render active - darkPrimaryDotted 1`] = `
|
|
811
|
+
exports[`Tag component Should render active - palette darkPrimaryDotted, size medium , closePalette danger 1`] = `
|
|
812
812
|
<DocumentFragment>
|
|
813
813
|
<div
|
|
814
814
|
aria-labelledby="1"
|
|
815
|
-
class="container effect selected undefined
|
|
815
|
+
class="container effect selected undefined activemediumEffect medium lgRadius darkPrimaryDotted "
|
|
816
816
|
data-id="tag_TagSelected"
|
|
817
817
|
data-selector-id="tag"
|
|
818
818
|
data-test-id="tag_TagSelected"
|
|
@@ -820,7 +820,7 @@ exports[`Tag component Should render active - darkPrimaryDotted 1`] = `
|
|
|
820
820
|
>
|
|
821
821
|
<div
|
|
822
822
|
aria-hidden="true"
|
|
823
|
-
class="text
|
|
823
|
+
class="text mediumtext"
|
|
824
824
|
id="1"
|
|
825
825
|
/>
|
|
826
826
|
<button
|
|
@@ -853,11 +853,11 @@ exports[`Tag component Should render active - darkPrimaryDotted 1`] = `
|
|
|
853
853
|
</DocumentFragment>
|
|
854
854
|
`;
|
|
855
855
|
|
|
856
|
-
exports[`Tag component Should render active - darkPrimaryDotted
|
|
856
|
+
exports[`Tag component Should render active - palette darkPrimaryDotted, size medium , closePalette primary 1`] = `
|
|
857
857
|
<DocumentFragment>
|
|
858
858
|
<div
|
|
859
|
-
aria-labelledby="
|
|
860
|
-
class="container effect selected undefined
|
|
859
|
+
aria-labelledby="1"
|
|
860
|
+
class="container effect selected undefined activemediumEffect medium lgRadius darkPrimaryDotted "
|
|
861
861
|
data-id="tag_TagSelected"
|
|
862
862
|
data-selector-id="tag"
|
|
863
863
|
data-test-id="tag_TagSelected"
|
|
@@ -865,8 +865,8 @@ exports[`Tag component Should render active - darkPrimaryDotted 2`] = `
|
|
|
865
865
|
>
|
|
866
866
|
<div
|
|
867
867
|
aria-hidden="true"
|
|
868
|
-
class="text
|
|
869
|
-
id="
|
|
868
|
+
class="text mediumtext"
|
|
869
|
+
id="1"
|
|
870
870
|
/>
|
|
871
871
|
<button
|
|
872
872
|
aria-label="Delete"
|
|
@@ -898,11 +898,11 @@ exports[`Tag component Should render active - darkPrimaryDotted 2`] = `
|
|
|
898
898
|
</DocumentFragment>
|
|
899
899
|
`;
|
|
900
900
|
|
|
901
|
-
exports[`Tag component Should render active - darkPrimaryDotted
|
|
901
|
+
exports[`Tag component Should render active - palette darkPrimaryDotted, size small , closePalette danger 1`] = `
|
|
902
902
|
<DocumentFragment>
|
|
903
903
|
<div
|
|
904
|
-
aria-labelledby="
|
|
905
|
-
class="container effect selected undefined
|
|
904
|
+
aria-labelledby="1"
|
|
905
|
+
class="container effect selected undefined activesmallEffect small lgRadius darkPrimaryDotted "
|
|
906
906
|
data-id="tag_TagSelected"
|
|
907
907
|
data-selector-id="tag"
|
|
908
908
|
data-test-id="tag_TagSelected"
|
|
@@ -910,8 +910,8 @@ exports[`Tag component Should render active - darkPrimaryDotted 3`] = `
|
|
|
910
910
|
>
|
|
911
911
|
<div
|
|
912
912
|
aria-hidden="true"
|
|
913
|
-
class="text
|
|
914
|
-
id="
|
|
913
|
+
class="text smalltext"
|
|
914
|
+
id="1"
|
|
915
915
|
/>
|
|
916
916
|
<button
|
|
917
917
|
aria-label="Delete"
|
|
@@ -943,11 +943,11 @@ exports[`Tag component Should render active - darkPrimaryDotted 3`] = `
|
|
|
943
943
|
</DocumentFragment>
|
|
944
944
|
`;
|
|
945
945
|
|
|
946
|
-
exports[`Tag component Should render active - darkPrimaryDotted
|
|
946
|
+
exports[`Tag component Should render active - palette darkPrimaryDotted, size small , closePalette primary 1`] = `
|
|
947
947
|
<DocumentFragment>
|
|
948
948
|
<div
|
|
949
|
-
aria-labelledby="
|
|
950
|
-
class="container effect selected undefined
|
|
949
|
+
aria-labelledby="1"
|
|
950
|
+
class="container effect selected undefined activesmallEffect small lgRadius darkPrimaryDotted "
|
|
951
951
|
data-id="tag_TagSelected"
|
|
952
952
|
data-selector-id="tag"
|
|
953
953
|
data-test-id="tag_TagSelected"
|
|
@@ -955,8 +955,8 @@ exports[`Tag component Should render active - darkPrimaryDotted 4`] = `
|
|
|
955
955
|
>
|
|
956
956
|
<div
|
|
957
957
|
aria-hidden="true"
|
|
958
|
-
class="text
|
|
959
|
-
id="
|
|
958
|
+
class="text smalltext"
|
|
959
|
+
id="1"
|
|
960
960
|
/>
|
|
961
961
|
<button
|
|
962
962
|
aria-label="Delete"
|
|
@@ -988,11 +988,11 @@ exports[`Tag component Should render active - darkPrimaryDotted 4`] = `
|
|
|
988
988
|
</DocumentFragment>
|
|
989
989
|
`;
|
|
990
990
|
|
|
991
|
-
exports[`Tag component Should render active - default 1`] = `
|
|
991
|
+
exports[`Tag component Should render active - palette default, size medium , closePalette danger 1`] = `
|
|
992
992
|
<DocumentFragment>
|
|
993
993
|
<div
|
|
994
994
|
aria-labelledby="1"
|
|
995
|
-
class="container effect selected activedefault
|
|
995
|
+
class="container effect selected activedefault activemediumEffect medium lgRadius default "
|
|
996
996
|
data-id="tag_TagSelected"
|
|
997
997
|
data-selector-id="tag"
|
|
998
998
|
data-test-id="tag_TagSelected"
|
|
@@ -1000,7 +1000,7 @@ exports[`Tag component Should render active - default 1`] = `
|
|
|
1000
1000
|
>
|
|
1001
1001
|
<div
|
|
1002
1002
|
aria-hidden="true"
|
|
1003
|
-
class="text
|
|
1003
|
+
class="text mediumtext"
|
|
1004
1004
|
id="1"
|
|
1005
1005
|
/>
|
|
1006
1006
|
<button
|
|
@@ -1033,11 +1033,11 @@ exports[`Tag component Should render active - default 1`] = `
|
|
|
1033
1033
|
</DocumentFragment>
|
|
1034
1034
|
`;
|
|
1035
1035
|
|
|
1036
|
-
exports[`Tag component Should render active - default
|
|
1036
|
+
exports[`Tag component Should render active - palette default, size medium , closePalette primary 1`] = `
|
|
1037
1037
|
<DocumentFragment>
|
|
1038
1038
|
<div
|
|
1039
|
-
aria-labelledby="
|
|
1040
|
-
class="container effect selected activedefault
|
|
1039
|
+
aria-labelledby="1"
|
|
1040
|
+
class="container effect selected activedefault activemediumEffect medium lgRadius default "
|
|
1041
1041
|
data-id="tag_TagSelected"
|
|
1042
1042
|
data-selector-id="tag"
|
|
1043
1043
|
data-test-id="tag_TagSelected"
|
|
@@ -1045,8 +1045,8 @@ exports[`Tag component Should render active - default 2`] = `
|
|
|
1045
1045
|
>
|
|
1046
1046
|
<div
|
|
1047
1047
|
aria-hidden="true"
|
|
1048
|
-
class="text
|
|
1049
|
-
id="
|
|
1048
|
+
class="text mediumtext"
|
|
1049
|
+
id="1"
|
|
1050
1050
|
/>
|
|
1051
1051
|
<button
|
|
1052
1052
|
aria-label="Delete"
|
|
@@ -1078,11 +1078,11 @@ exports[`Tag component Should render active - default 2`] = `
|
|
|
1078
1078
|
</DocumentFragment>
|
|
1079
1079
|
`;
|
|
1080
1080
|
|
|
1081
|
-
exports[`Tag component Should render active - default
|
|
1081
|
+
exports[`Tag component Should render active - palette default, size small , closePalette danger 1`] = `
|
|
1082
1082
|
<DocumentFragment>
|
|
1083
1083
|
<div
|
|
1084
|
-
aria-labelledby="
|
|
1085
|
-
class="container effect selected activedefault
|
|
1084
|
+
aria-labelledby="1"
|
|
1085
|
+
class="container effect selected activedefault activesmallEffect small lgRadius default "
|
|
1086
1086
|
data-id="tag_TagSelected"
|
|
1087
1087
|
data-selector-id="tag"
|
|
1088
1088
|
data-test-id="tag_TagSelected"
|
|
@@ -1090,8 +1090,8 @@ exports[`Tag component Should render active - default 3`] = `
|
|
|
1090
1090
|
>
|
|
1091
1091
|
<div
|
|
1092
1092
|
aria-hidden="true"
|
|
1093
|
-
class="text
|
|
1094
|
-
id="
|
|
1093
|
+
class="text smalltext"
|
|
1094
|
+
id="1"
|
|
1095
1095
|
/>
|
|
1096
1096
|
<button
|
|
1097
1097
|
aria-label="Delete"
|
|
@@ -1123,11 +1123,11 @@ exports[`Tag component Should render active - default 3`] = `
|
|
|
1123
1123
|
</DocumentFragment>
|
|
1124
1124
|
`;
|
|
1125
1125
|
|
|
1126
|
-
exports[`Tag component Should render active - default
|
|
1126
|
+
exports[`Tag component Should render active - palette default, size small , closePalette primary 1`] = `
|
|
1127
1127
|
<DocumentFragment>
|
|
1128
1128
|
<div
|
|
1129
|
-
aria-labelledby="
|
|
1130
|
-
class="container effect selected activedefault
|
|
1129
|
+
aria-labelledby="1"
|
|
1130
|
+
class="container effect selected activedefault activesmallEffect small lgRadius default "
|
|
1131
1131
|
data-id="tag_TagSelected"
|
|
1132
1132
|
data-selector-id="tag"
|
|
1133
1133
|
data-test-id="tag_TagSelected"
|
|
@@ -1135,8 +1135,8 @@ exports[`Tag component Should render active - default 4`] = `
|
|
|
1135
1135
|
>
|
|
1136
1136
|
<div
|
|
1137
1137
|
aria-hidden="true"
|
|
1138
|
-
class="text
|
|
1139
|
-
id="
|
|
1138
|
+
class="text smalltext"
|
|
1139
|
+
id="1"
|
|
1140
1140
|
/>
|
|
1141
1141
|
<button
|
|
1142
1142
|
aria-label="Delete"
|
|
@@ -1168,11 +1168,11 @@ exports[`Tag component Should render active - default 4`] = `
|
|
|
1168
1168
|
</DocumentFragment>
|
|
1169
1169
|
`;
|
|
1170
1170
|
|
|
1171
|
-
exports[`Tag component Should render active - defaultLink 1`] = `
|
|
1171
|
+
exports[`Tag component Should render active - palette defaultLink, size medium , closePalette danger 1`] = `
|
|
1172
1172
|
<DocumentFragment>
|
|
1173
1173
|
<div
|
|
1174
1174
|
aria-labelledby="1"
|
|
1175
|
-
class="container effect selected activedefaultLink
|
|
1175
|
+
class="container effect selected activedefaultLink activemediumEffect medium lgRadius defaultLink "
|
|
1176
1176
|
data-id="tag_TagSelected"
|
|
1177
1177
|
data-selector-id="tag"
|
|
1178
1178
|
data-test-id="tag_TagSelected"
|
|
@@ -1180,7 +1180,7 @@ exports[`Tag component Should render active - defaultLink 1`] = `
|
|
|
1180
1180
|
>
|
|
1181
1181
|
<div
|
|
1182
1182
|
aria-hidden="true"
|
|
1183
|
-
class="text
|
|
1183
|
+
class="text mediumtext"
|
|
1184
1184
|
id="1"
|
|
1185
1185
|
/>
|
|
1186
1186
|
<button
|
|
@@ -1213,11 +1213,11 @@ exports[`Tag component Should render active - defaultLink 1`] = `
|
|
|
1213
1213
|
</DocumentFragment>
|
|
1214
1214
|
`;
|
|
1215
1215
|
|
|
1216
|
-
exports[`Tag component Should render active - defaultLink
|
|
1216
|
+
exports[`Tag component Should render active - palette defaultLink, size medium , closePalette primary 1`] = `
|
|
1217
1217
|
<DocumentFragment>
|
|
1218
1218
|
<div
|
|
1219
|
-
aria-labelledby="
|
|
1220
|
-
class="container effect selected activedefaultLink
|
|
1219
|
+
aria-labelledby="1"
|
|
1220
|
+
class="container effect selected activedefaultLink activemediumEffect medium lgRadius defaultLink "
|
|
1221
1221
|
data-id="tag_TagSelected"
|
|
1222
1222
|
data-selector-id="tag"
|
|
1223
1223
|
data-test-id="tag_TagSelected"
|
|
@@ -1225,8 +1225,8 @@ exports[`Tag component Should render active - defaultLink 2`] = `
|
|
|
1225
1225
|
>
|
|
1226
1226
|
<div
|
|
1227
1227
|
aria-hidden="true"
|
|
1228
|
-
class="text
|
|
1229
|
-
id="
|
|
1228
|
+
class="text mediumtext"
|
|
1229
|
+
id="1"
|
|
1230
1230
|
/>
|
|
1231
1231
|
<button
|
|
1232
1232
|
aria-label="Delete"
|
|
@@ -1258,11 +1258,11 @@ exports[`Tag component Should render active - defaultLink 2`] = `
|
|
|
1258
1258
|
</DocumentFragment>
|
|
1259
1259
|
`;
|
|
1260
1260
|
|
|
1261
|
-
exports[`Tag component Should render active - defaultLink
|
|
1261
|
+
exports[`Tag component Should render active - palette defaultLink, size small , closePalette danger 1`] = `
|
|
1262
1262
|
<DocumentFragment>
|
|
1263
1263
|
<div
|
|
1264
|
-
aria-labelledby="
|
|
1265
|
-
class="container effect selected activedefaultLink
|
|
1264
|
+
aria-labelledby="1"
|
|
1265
|
+
class="container effect selected activedefaultLink activesmallEffect small lgRadius defaultLink "
|
|
1266
1266
|
data-id="tag_TagSelected"
|
|
1267
1267
|
data-selector-id="tag"
|
|
1268
1268
|
data-test-id="tag_TagSelected"
|
|
@@ -1270,8 +1270,8 @@ exports[`Tag component Should render active - defaultLink 3`] = `
|
|
|
1270
1270
|
>
|
|
1271
1271
|
<div
|
|
1272
1272
|
aria-hidden="true"
|
|
1273
|
-
class="text
|
|
1274
|
-
id="
|
|
1273
|
+
class="text smalltext"
|
|
1274
|
+
id="1"
|
|
1275
1275
|
/>
|
|
1276
1276
|
<button
|
|
1277
1277
|
aria-label="Delete"
|
|
@@ -1303,11 +1303,11 @@ exports[`Tag component Should render active - defaultLink 3`] = `
|
|
|
1303
1303
|
</DocumentFragment>
|
|
1304
1304
|
`;
|
|
1305
1305
|
|
|
1306
|
-
exports[`Tag component Should render active - defaultLink
|
|
1306
|
+
exports[`Tag component Should render active - palette defaultLink, size small , closePalette primary 1`] = `
|
|
1307
1307
|
<DocumentFragment>
|
|
1308
1308
|
<div
|
|
1309
|
-
aria-labelledby="
|
|
1310
|
-
class="container effect selected activedefaultLink
|
|
1309
|
+
aria-labelledby="1"
|
|
1310
|
+
class="container effect selected activedefaultLink activesmallEffect small lgRadius defaultLink "
|
|
1311
1311
|
data-id="tag_TagSelected"
|
|
1312
1312
|
data-selector-id="tag"
|
|
1313
1313
|
data-test-id="tag_TagSelected"
|
|
@@ -1315,8 +1315,8 @@ exports[`Tag component Should render active - defaultLink 4`] = `
|
|
|
1315
1315
|
>
|
|
1316
1316
|
<div
|
|
1317
1317
|
aria-hidden="true"
|
|
1318
|
-
class="text
|
|
1319
|
-
id="
|
|
1318
|
+
class="text smalltext"
|
|
1319
|
+
id="1"
|
|
1320
1320
|
/>
|
|
1321
1321
|
<button
|
|
1322
1322
|
aria-label="Delete"
|
|
@@ -1348,11 +1348,11 @@ exports[`Tag component Should render active - defaultLink 4`] = `
|
|
|
1348
1348
|
</DocumentFragment>
|
|
1349
1349
|
`;
|
|
1350
1350
|
|
|
1351
|
-
exports[`Tag component Should render active - primaryDotted 1`] = `
|
|
1351
|
+
exports[`Tag component Should render active - palette primaryDotted, size medium , closePalette danger 1`] = `
|
|
1352
1352
|
<DocumentFragment>
|
|
1353
1353
|
<div
|
|
1354
1354
|
aria-labelledby="1"
|
|
1355
|
-
class="container effect selected activeprimaryDotted
|
|
1355
|
+
class="container effect selected activeprimaryDotted activemediumEffect medium lgRadius primaryDotted "
|
|
1356
1356
|
data-id="tag_TagSelected"
|
|
1357
1357
|
data-selector-id="tag"
|
|
1358
1358
|
data-test-id="tag_TagSelected"
|
|
@@ -1360,7 +1360,7 @@ exports[`Tag component Should render active - primaryDotted 1`] = `
|
|
|
1360
1360
|
>
|
|
1361
1361
|
<div
|
|
1362
1362
|
aria-hidden="true"
|
|
1363
|
-
class="text
|
|
1363
|
+
class="text mediumtext"
|
|
1364
1364
|
id="1"
|
|
1365
1365
|
/>
|
|
1366
1366
|
<button
|
|
@@ -1393,11 +1393,11 @@ exports[`Tag component Should render active - primaryDotted 1`] = `
|
|
|
1393
1393
|
</DocumentFragment>
|
|
1394
1394
|
`;
|
|
1395
1395
|
|
|
1396
|
-
exports[`Tag component Should render active - primaryDotted
|
|
1396
|
+
exports[`Tag component Should render active - palette primaryDotted, size medium , closePalette primary 1`] = `
|
|
1397
1397
|
<DocumentFragment>
|
|
1398
1398
|
<div
|
|
1399
|
-
aria-labelledby="
|
|
1400
|
-
class="container effect selected activeprimaryDotted
|
|
1399
|
+
aria-labelledby="1"
|
|
1400
|
+
class="container effect selected activeprimaryDotted activemediumEffect medium lgRadius primaryDotted "
|
|
1401
1401
|
data-id="tag_TagSelected"
|
|
1402
1402
|
data-selector-id="tag"
|
|
1403
1403
|
data-test-id="tag_TagSelected"
|
|
@@ -1405,8 +1405,8 @@ exports[`Tag component Should render active - primaryDotted 2`] = `
|
|
|
1405
1405
|
>
|
|
1406
1406
|
<div
|
|
1407
1407
|
aria-hidden="true"
|
|
1408
|
-
class="text
|
|
1409
|
-
id="
|
|
1408
|
+
class="text mediumtext"
|
|
1409
|
+
id="1"
|
|
1410
1410
|
/>
|
|
1411
1411
|
<button
|
|
1412
1412
|
aria-label="Delete"
|
|
@@ -1438,11 +1438,11 @@ exports[`Tag component Should render active - primaryDotted 2`] = `
|
|
|
1438
1438
|
</DocumentFragment>
|
|
1439
1439
|
`;
|
|
1440
1440
|
|
|
1441
|
-
exports[`Tag component Should render active - primaryDotted
|
|
1441
|
+
exports[`Tag component Should render active - palette primaryDotted, size small , closePalette danger 1`] = `
|
|
1442
1442
|
<DocumentFragment>
|
|
1443
1443
|
<div
|
|
1444
|
-
aria-labelledby="
|
|
1445
|
-
class="container effect selected activeprimaryDotted
|
|
1444
|
+
aria-labelledby="1"
|
|
1445
|
+
class="container effect selected activeprimaryDotted activesmallEffect small lgRadius primaryDotted "
|
|
1446
1446
|
data-id="tag_TagSelected"
|
|
1447
1447
|
data-selector-id="tag"
|
|
1448
1448
|
data-test-id="tag_TagSelected"
|
|
@@ -1450,8 +1450,8 @@ exports[`Tag component Should render active - primaryDotted 3`] = `
|
|
|
1450
1450
|
>
|
|
1451
1451
|
<div
|
|
1452
1452
|
aria-hidden="true"
|
|
1453
|
-
class="text
|
|
1454
|
-
id="
|
|
1453
|
+
class="text smalltext"
|
|
1454
|
+
id="1"
|
|
1455
1455
|
/>
|
|
1456
1456
|
<button
|
|
1457
1457
|
aria-label="Delete"
|
|
@@ -1483,11 +1483,11 @@ exports[`Tag component Should render active - primaryDotted 3`] = `
|
|
|
1483
1483
|
</DocumentFragment>
|
|
1484
1484
|
`;
|
|
1485
1485
|
|
|
1486
|
-
exports[`Tag component Should render active - primaryDotted
|
|
1486
|
+
exports[`Tag component Should render active - palette primaryDotted, size small , closePalette primary 1`] = `
|
|
1487
1487
|
<DocumentFragment>
|
|
1488
1488
|
<div
|
|
1489
|
-
aria-labelledby="
|
|
1490
|
-
class="container effect selected activeprimaryDotted
|
|
1489
|
+
aria-labelledby="1"
|
|
1490
|
+
class="container effect selected activeprimaryDotted activesmallEffect small lgRadius primaryDotted "
|
|
1491
1491
|
data-id="tag_TagSelected"
|
|
1492
1492
|
data-selector-id="tag"
|
|
1493
1493
|
data-test-id="tag_TagSelected"
|
|
@@ -1495,8 +1495,8 @@ exports[`Tag component Should render active - primaryDotted 4`] = `
|
|
|
1495
1495
|
>
|
|
1496
1496
|
<div
|
|
1497
1497
|
aria-hidden="true"
|
|
1498
|
-
class="text
|
|
1499
|
-
id="
|
|
1498
|
+
class="text smalltext"
|
|
1499
|
+
id="1"
|
|
1500
1500
|
/>
|
|
1501
1501
|
<button
|
|
1502
1502
|
aria-label="Delete"
|
|
@@ -1528,11 +1528,11 @@ exports[`Tag component Should render active - primaryDotted 4`] = `
|
|
|
1528
1528
|
</DocumentFragment>
|
|
1529
1529
|
`;
|
|
1530
1530
|
|
|
1531
|
-
exports[`Tag component Should render active - pureDarkDotted 1`] = `
|
|
1531
|
+
exports[`Tag component Should render active - palette pureDarkDotted, size medium , closePalette danger 1`] = `
|
|
1532
1532
|
<DocumentFragment>
|
|
1533
1533
|
<div
|
|
1534
1534
|
aria-labelledby="1"
|
|
1535
|
-
class="container effect selected undefined
|
|
1535
|
+
class="container effect selected undefined activemediumEffect medium lgRadius pureDarkDotted "
|
|
1536
1536
|
data-id="tag_TagSelected"
|
|
1537
1537
|
data-selector-id="tag"
|
|
1538
1538
|
data-test-id="tag_TagSelected"
|
|
@@ -1540,7 +1540,7 @@ exports[`Tag component Should render active - pureDarkDotted 1`] = `
|
|
|
1540
1540
|
>
|
|
1541
1541
|
<div
|
|
1542
1542
|
aria-hidden="true"
|
|
1543
|
-
class="text
|
|
1543
|
+
class="text mediumtext"
|
|
1544
1544
|
id="1"
|
|
1545
1545
|
/>
|
|
1546
1546
|
<button
|
|
@@ -1573,11 +1573,11 @@ exports[`Tag component Should render active - pureDarkDotted 1`] = `
|
|
|
1573
1573
|
</DocumentFragment>
|
|
1574
1574
|
`;
|
|
1575
1575
|
|
|
1576
|
-
exports[`Tag component Should render active - pureDarkDotted
|
|
1576
|
+
exports[`Tag component Should render active - palette pureDarkDotted, size medium , closePalette primary 1`] = `
|
|
1577
1577
|
<DocumentFragment>
|
|
1578
1578
|
<div
|
|
1579
|
-
aria-labelledby="
|
|
1580
|
-
class="container effect selected undefined
|
|
1579
|
+
aria-labelledby="1"
|
|
1580
|
+
class="container effect selected undefined activemediumEffect medium lgRadius pureDarkDotted "
|
|
1581
1581
|
data-id="tag_TagSelected"
|
|
1582
1582
|
data-selector-id="tag"
|
|
1583
1583
|
data-test-id="tag_TagSelected"
|
|
@@ -1585,8 +1585,8 @@ exports[`Tag component Should render active - pureDarkDotted 2`] = `
|
|
|
1585
1585
|
>
|
|
1586
1586
|
<div
|
|
1587
1587
|
aria-hidden="true"
|
|
1588
|
-
class="text
|
|
1589
|
-
id="
|
|
1588
|
+
class="text mediumtext"
|
|
1589
|
+
id="1"
|
|
1590
1590
|
/>
|
|
1591
1591
|
<button
|
|
1592
1592
|
aria-label="Delete"
|
|
@@ -1618,11 +1618,11 @@ exports[`Tag component Should render active - pureDarkDotted 2`] = `
|
|
|
1618
1618
|
</DocumentFragment>
|
|
1619
1619
|
`;
|
|
1620
1620
|
|
|
1621
|
-
exports[`Tag component Should render active - pureDarkDotted
|
|
1621
|
+
exports[`Tag component Should render active - palette pureDarkDotted, size small , closePalette danger 1`] = `
|
|
1622
1622
|
<DocumentFragment>
|
|
1623
1623
|
<div
|
|
1624
|
-
aria-labelledby="
|
|
1625
|
-
class="container effect selected undefined
|
|
1624
|
+
aria-labelledby="1"
|
|
1625
|
+
class="container effect selected undefined activesmallEffect small lgRadius pureDarkDotted "
|
|
1626
1626
|
data-id="tag_TagSelected"
|
|
1627
1627
|
data-selector-id="tag"
|
|
1628
1628
|
data-test-id="tag_TagSelected"
|
|
@@ -1630,8 +1630,8 @@ exports[`Tag component Should render active - pureDarkDotted 3`] = `
|
|
|
1630
1630
|
>
|
|
1631
1631
|
<div
|
|
1632
1632
|
aria-hidden="true"
|
|
1633
|
-
class="text
|
|
1634
|
-
id="
|
|
1633
|
+
class="text smalltext"
|
|
1634
|
+
id="1"
|
|
1635
1635
|
/>
|
|
1636
1636
|
<button
|
|
1637
1637
|
aria-label="Delete"
|
|
@@ -1663,11 +1663,11 @@ exports[`Tag component Should render active - pureDarkDotted 3`] = `
|
|
|
1663
1663
|
</DocumentFragment>
|
|
1664
1664
|
`;
|
|
1665
1665
|
|
|
1666
|
-
exports[`Tag component Should render active - pureDarkDotted
|
|
1666
|
+
exports[`Tag component Should render active - palette pureDarkDotted, size small , closePalette primary 1`] = `
|
|
1667
1667
|
<DocumentFragment>
|
|
1668
1668
|
<div
|
|
1669
|
-
aria-labelledby="
|
|
1670
|
-
class="container effect selected undefined
|
|
1669
|
+
aria-labelledby="1"
|
|
1670
|
+
class="container effect selected undefined activesmallEffect small lgRadius pureDarkDotted "
|
|
1671
1671
|
data-id="tag_TagSelected"
|
|
1672
1672
|
data-selector-id="tag"
|
|
1673
1673
|
data-test-id="tag_TagSelected"
|
|
@@ -1675,8 +1675,8 @@ exports[`Tag component Should render active - pureDarkDotted 4`] = `
|
|
|
1675
1675
|
>
|
|
1676
1676
|
<div
|
|
1677
1677
|
aria-hidden="true"
|
|
1678
|
-
class="text
|
|
1679
|
-
id="
|
|
1678
|
+
class="text smalltext"
|
|
1679
|
+
id="1"
|
|
1680
1680
|
/>
|
|
1681
1681
|
<button
|
|
1682
1682
|
aria-label="Delete"
|
|
@@ -1708,11 +1708,11 @@ exports[`Tag component Should render active - pureDarkDotted 4`] = `
|
|
|
1708
1708
|
</DocumentFragment>
|
|
1709
1709
|
`;
|
|
1710
1710
|
|
|
1711
|
-
exports[`Tag component Should render active - pureDotted 1`] = `
|
|
1711
|
+
exports[`Tag component Should render active - palette pureDotted, size medium , closePalette danger 1`] = `
|
|
1712
1712
|
<DocumentFragment>
|
|
1713
1713
|
<div
|
|
1714
1714
|
aria-labelledby="1"
|
|
1715
|
-
class="container effect selected activepureDotted
|
|
1715
|
+
class="container effect selected activepureDotted activemediumEffect medium lgRadius pureDotted "
|
|
1716
1716
|
data-id="tag_TagSelected"
|
|
1717
1717
|
data-selector-id="tag"
|
|
1718
1718
|
data-test-id="tag_TagSelected"
|
|
@@ -1720,7 +1720,7 @@ exports[`Tag component Should render active - pureDotted 1`] = `
|
|
|
1720
1720
|
>
|
|
1721
1721
|
<div
|
|
1722
1722
|
aria-hidden="true"
|
|
1723
|
-
class="text
|
|
1723
|
+
class="text mediumtext"
|
|
1724
1724
|
id="1"
|
|
1725
1725
|
/>
|
|
1726
1726
|
<button
|
|
@@ -1753,11 +1753,11 @@ exports[`Tag component Should render active - pureDotted 1`] = `
|
|
|
1753
1753
|
</DocumentFragment>
|
|
1754
1754
|
`;
|
|
1755
1755
|
|
|
1756
|
-
exports[`Tag component Should render active - pureDotted
|
|
1756
|
+
exports[`Tag component Should render active - palette pureDotted, size medium , closePalette primary 1`] = `
|
|
1757
1757
|
<DocumentFragment>
|
|
1758
1758
|
<div
|
|
1759
|
-
aria-labelledby="
|
|
1760
|
-
class="container effect selected activepureDotted
|
|
1759
|
+
aria-labelledby="1"
|
|
1760
|
+
class="container effect selected activepureDotted activemediumEffect medium lgRadius pureDotted "
|
|
1761
1761
|
data-id="tag_TagSelected"
|
|
1762
1762
|
data-selector-id="tag"
|
|
1763
1763
|
data-test-id="tag_TagSelected"
|
|
@@ -1765,8 +1765,8 @@ exports[`Tag component Should render active - pureDotted 2`] = `
|
|
|
1765
1765
|
>
|
|
1766
1766
|
<div
|
|
1767
1767
|
aria-hidden="true"
|
|
1768
|
-
class="text
|
|
1769
|
-
id="
|
|
1768
|
+
class="text mediumtext"
|
|
1769
|
+
id="1"
|
|
1770
1770
|
/>
|
|
1771
1771
|
<button
|
|
1772
1772
|
aria-label="Delete"
|
|
@@ -1798,11 +1798,11 @@ exports[`Tag component Should render active - pureDotted 2`] = `
|
|
|
1798
1798
|
</DocumentFragment>
|
|
1799
1799
|
`;
|
|
1800
1800
|
|
|
1801
|
-
exports[`Tag component Should render active - pureDotted
|
|
1801
|
+
exports[`Tag component Should render active - palette pureDotted, size small , closePalette danger 1`] = `
|
|
1802
1802
|
<DocumentFragment>
|
|
1803
1803
|
<div
|
|
1804
|
-
aria-labelledby="
|
|
1805
|
-
class="container effect selected activepureDotted
|
|
1804
|
+
aria-labelledby="1"
|
|
1805
|
+
class="container effect selected activepureDotted activesmallEffect small lgRadius pureDotted "
|
|
1806
1806
|
data-id="tag_TagSelected"
|
|
1807
1807
|
data-selector-id="tag"
|
|
1808
1808
|
data-test-id="tag_TagSelected"
|
|
@@ -1810,8 +1810,8 @@ exports[`Tag component Should render active - pureDotted 3`] = `
|
|
|
1810
1810
|
>
|
|
1811
1811
|
<div
|
|
1812
1812
|
aria-hidden="true"
|
|
1813
|
-
class="text
|
|
1814
|
-
id="
|
|
1813
|
+
class="text smalltext"
|
|
1814
|
+
id="1"
|
|
1815
1815
|
/>
|
|
1816
1816
|
<button
|
|
1817
1817
|
aria-label="Delete"
|
|
@@ -1843,11 +1843,11 @@ exports[`Tag component Should render active - pureDotted 3`] = `
|
|
|
1843
1843
|
</DocumentFragment>
|
|
1844
1844
|
`;
|
|
1845
1845
|
|
|
1846
|
-
exports[`Tag component Should render active - pureDotted
|
|
1846
|
+
exports[`Tag component Should render active - palette pureDotted, size small , closePalette primary 1`] = `
|
|
1847
1847
|
<DocumentFragment>
|
|
1848
1848
|
<div
|
|
1849
|
-
aria-labelledby="
|
|
1850
|
-
class="container effect selected activepureDotted
|
|
1849
|
+
aria-labelledby="1"
|
|
1850
|
+
class="container effect selected activepureDotted activesmallEffect small lgRadius pureDotted "
|
|
1851
1851
|
data-id="tag_TagSelected"
|
|
1852
1852
|
data-selector-id="tag"
|
|
1853
1853
|
data-test-id="tag_TagSelected"
|
|
@@ -1855,8 +1855,8 @@ exports[`Tag component Should render active - pureDotted 4`] = `
|
|
|
1855
1855
|
>
|
|
1856
1856
|
<div
|
|
1857
1857
|
aria-hidden="true"
|
|
1858
|
-
class="text
|
|
1859
|
-
id="
|
|
1858
|
+
class="text smalltext"
|
|
1859
|
+
id="1"
|
|
1860
1860
|
/>
|
|
1861
1861
|
<button
|
|
1862
1862
|
aria-label="Delete"
|
|
@@ -1888,11 +1888,11 @@ exports[`Tag component Should render active - pureDotted 4`] = `
|
|
|
1888
1888
|
</DocumentFragment>
|
|
1889
1889
|
`;
|
|
1890
1890
|
|
|
1891
|
-
exports[`Tag component Should render active - secondary 1`] = `
|
|
1891
|
+
exports[`Tag component Should render active - palette secondary, size medium , closePalette danger 1`] = `
|
|
1892
1892
|
<DocumentFragment>
|
|
1893
1893
|
<div
|
|
1894
1894
|
aria-labelledby="1"
|
|
1895
|
-
class="container effect selected activesecondary
|
|
1895
|
+
class="container effect selected activesecondary activemediumEffect medium lgRadius secondary "
|
|
1896
1896
|
data-id="tag_TagSelected"
|
|
1897
1897
|
data-selector-id="tag"
|
|
1898
1898
|
data-test-id="tag_TagSelected"
|
|
@@ -1900,7 +1900,7 @@ exports[`Tag component Should render active - secondary 1`] = `
|
|
|
1900
1900
|
>
|
|
1901
1901
|
<div
|
|
1902
1902
|
aria-hidden="true"
|
|
1903
|
-
class="text
|
|
1903
|
+
class="text mediumtext"
|
|
1904
1904
|
id="1"
|
|
1905
1905
|
/>
|
|
1906
1906
|
<button
|
|
@@ -1933,11 +1933,11 @@ exports[`Tag component Should render active - secondary 1`] = `
|
|
|
1933
1933
|
</DocumentFragment>
|
|
1934
1934
|
`;
|
|
1935
1935
|
|
|
1936
|
-
exports[`Tag component Should render active - secondary
|
|
1936
|
+
exports[`Tag component Should render active - palette secondary, size medium , closePalette primary 1`] = `
|
|
1937
1937
|
<DocumentFragment>
|
|
1938
1938
|
<div
|
|
1939
|
-
aria-labelledby="
|
|
1940
|
-
class="container effect selected activesecondary
|
|
1939
|
+
aria-labelledby="1"
|
|
1940
|
+
class="container effect selected activesecondary activemediumEffect medium lgRadius secondary "
|
|
1941
1941
|
data-id="tag_TagSelected"
|
|
1942
1942
|
data-selector-id="tag"
|
|
1943
1943
|
data-test-id="tag_TagSelected"
|
|
@@ -1945,8 +1945,8 @@ exports[`Tag component Should render active - secondary 2`] = `
|
|
|
1945
1945
|
>
|
|
1946
1946
|
<div
|
|
1947
1947
|
aria-hidden="true"
|
|
1948
|
-
class="text
|
|
1949
|
-
id="
|
|
1948
|
+
class="text mediumtext"
|
|
1949
|
+
id="1"
|
|
1950
1950
|
/>
|
|
1951
1951
|
<button
|
|
1952
1952
|
aria-label="Delete"
|
|
@@ -1978,11 +1978,11 @@ exports[`Tag component Should render active - secondary 2`] = `
|
|
|
1978
1978
|
</DocumentFragment>
|
|
1979
1979
|
`;
|
|
1980
1980
|
|
|
1981
|
-
exports[`Tag component Should render active - secondary
|
|
1981
|
+
exports[`Tag component Should render active - palette secondary, size small , closePalette danger 1`] = `
|
|
1982
1982
|
<DocumentFragment>
|
|
1983
1983
|
<div
|
|
1984
|
-
aria-labelledby="
|
|
1985
|
-
class="container effect selected activesecondary
|
|
1984
|
+
aria-labelledby="1"
|
|
1985
|
+
class="container effect selected activesecondary activesmallEffect small lgRadius secondary "
|
|
1986
1986
|
data-id="tag_TagSelected"
|
|
1987
1987
|
data-selector-id="tag"
|
|
1988
1988
|
data-test-id="tag_TagSelected"
|
|
@@ -1990,8 +1990,8 @@ exports[`Tag component Should render active - secondary 3`] = `
|
|
|
1990
1990
|
>
|
|
1991
1991
|
<div
|
|
1992
1992
|
aria-hidden="true"
|
|
1993
|
-
class="text
|
|
1994
|
-
id="
|
|
1993
|
+
class="text smalltext"
|
|
1994
|
+
id="1"
|
|
1995
1995
|
/>
|
|
1996
1996
|
<button
|
|
1997
1997
|
aria-label="Delete"
|
|
@@ -2023,11 +2023,11 @@ exports[`Tag component Should render active - secondary 3`] = `
|
|
|
2023
2023
|
</DocumentFragment>
|
|
2024
2024
|
`;
|
|
2025
2025
|
|
|
2026
|
-
exports[`Tag component Should render active - secondary
|
|
2026
|
+
exports[`Tag component Should render active - palette secondary, size small , closePalette primary 1`] = `
|
|
2027
2027
|
<DocumentFragment>
|
|
2028
2028
|
<div
|
|
2029
|
-
aria-labelledby="
|
|
2030
|
-
class="container effect selected activesecondary
|
|
2029
|
+
aria-labelledby="1"
|
|
2030
|
+
class="container effect selected activesecondary activesmallEffect small lgRadius secondary "
|
|
2031
2031
|
data-id="tag_TagSelected"
|
|
2032
2032
|
data-selector-id="tag"
|
|
2033
2033
|
data-test-id="tag_TagSelected"
|
|
@@ -2035,8 +2035,8 @@ exports[`Tag component Should render active - secondary 4`] = `
|
|
|
2035
2035
|
>
|
|
2036
2036
|
<div
|
|
2037
2037
|
aria-hidden="true"
|
|
2038
|
-
class="text
|
|
2039
|
-
id="
|
|
2038
|
+
class="text smalltext"
|
|
2039
|
+
id="1"
|
|
2040
2040
|
/>
|
|
2041
2041
|
<button
|
|
2042
2042
|
aria-label="Delete"
|