asksuite-citrus 3.9.1 → 3.9.2
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/esm2022/lib/components/accordion/extendable-panel/extendable-panel.component.mjs +2 -2
- package/esm2022/lib/components/autocomplete/autocomplete.component.mjs +2 -2
- package/esm2022/lib/components/avatar/avatar.component.mjs +2 -2
- package/esm2022/lib/components/box/box.component.mjs +2 -2
- package/esm2022/lib/components/button/button.component.mjs +2 -2
- package/esm2022/lib/components/character-counter/character-counter.component.mjs +2 -2
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +2 -2
- package/esm2022/lib/components/chips/chips.component.mjs +2 -2
- package/esm2022/lib/components/date-picker/date-picker-calendar/date-picker-calendar.component.mjs +2 -2
- package/esm2022/lib/components/date-picker/date-picker.component.mjs +2 -2
- package/esm2022/lib/components/dropdown-container/dropdown-container.component.mjs +2 -2
- package/esm2022/lib/components/input/input.component.mjs +2 -2
- package/esm2022/lib/components/modal/confirmation-modal/confirmation-modal.component.mjs +2 -2
- package/esm2022/lib/components/modal/modal.component.mjs +2 -2
- package/esm2022/lib/components/pagination/pagination.component.mjs +2 -2
- package/esm2022/lib/components/phone-ddi/phone-ddi.component.mjs +2 -2
- package/esm2022/lib/components/richtext-toolbox/richtext-toolbox.component.mjs +2 -2
- package/esm2022/lib/components/richtext-url-prompt/richtext-url-prompt.component.mjs +2 -2
- package/esm2022/lib/components/select/select.component.mjs +2 -2
- package/esm2022/lib/components/table/table.component.mjs +2 -2
- package/esm2022/lib/components/toast/toast.component.mjs +2 -2
- package/fesm2022/asksuite-citrus.mjs +42 -42
- package/fesm2022/asksuite-citrus.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/colors.scss +4 -6
package/package.json
CHANGED
package/styles/colors.scss
CHANGED
@@ -269,8 +269,6 @@ $color-light-neutral-NLA300: #13293921;
|
|
269
269
|
//TODO: REMOVE DUPLICATE SEMANTICS
|
270
270
|
$color-texticon-brand-asksuite-contrast: $color-a-600;
|
271
271
|
$color-texticon-inverse-default: $color-nl-0;
|
272
|
-
$color-texticon-contrast: $color-nla-1500;
|
273
|
-
$color-texticon-subtle: $color-nla-1200;
|
274
272
|
$color-texticon-subtlest: $color-nla-1000;
|
275
273
|
$color-texticon-disabled: $color-nla-700;
|
276
274
|
$color-texticon-link-default: $color-b-500;
|
@@ -588,12 +586,10 @@ $color-texticon-danger: $color-texticon-accent-red-contrast;
|
|
588
586
|
$color-texticon-info: $color-texticon-accent-blue-contrast;
|
589
587
|
$color-texticon-success: $color-texticon-accent-green-contrast;
|
590
588
|
$color-texticon-warning: $color-texticon-accent-yellow-contrast;
|
591
|
-
|
592
|
-
|
593
|
-
$color-divider-default: $color-nl-400;
|
594
589
|
$color-skeleton: $color-nla-200;
|
595
|
-
|
596
590
|
$color-text-link-default: $color-b-500;
|
591
|
+
$color-texticon-inverse-default: $color-nl-0;
|
592
|
+
$color-texticon-danger: $color-r-600;
|
597
593
|
|
598
594
|
:root {
|
599
595
|
// brand
|
@@ -685,6 +681,8 @@ $color-text-link-default: $color-b-500;
|
|
685
681
|
--color-divider-default: #{$color-divider-default};
|
686
682
|
--color-skeleton: #{$color-skeleton};
|
687
683
|
--color-text-link-default: #{$color-text-link-default};
|
684
|
+
--color-texticon-danger: #{$color-texticon-danger};
|
685
|
+
--color-background-danger-contrast-default: #{$color-background-danger-contrast-default};
|
688
686
|
--color-background-accent-green-subtle-default: #{$color-background-accent-green-subtle-default};
|
689
687
|
--color-background-accent-grey-contrast-default: #{$color-background-accent-grey-contrast-default};
|
690
688
|
--color-background-accent-red-subtle-default: #{$color-background-accent-red-subtle-default};
|