asksuite-citrus 3.7.2 → 3.8.0-beta.0
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 +12 -4
package/package.json
CHANGED
package/styles/colors.scss
CHANGED
@@ -269,10 +269,9 @@ $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;
|
274
|
+
$color-texticon-link-default: $color-b-500;
|
276
275
|
|
277
276
|
$color-elevation-surface-selected-ask: $color-a-100;
|
278
277
|
$color-elevation-surface-sunken-default: $color-nl-0;
|
@@ -587,7 +586,10 @@ $color-texticon-danger: $color-texticon-accent-red-contrast;
|
|
587
586
|
$color-texticon-info: $color-texticon-accent-blue-contrast;
|
588
587
|
$color-texticon-success: $color-texticon-accent-green-contrast;
|
589
588
|
$color-texticon-warning: $color-texticon-accent-yellow-contrast;
|
590
|
-
|
589
|
+
$color-skeleton: $color-nla-200;
|
590
|
+
$color-text-link-default: $color-b-500;
|
591
|
+
$color-texticon-inverse-default: $color-nl-0;
|
592
|
+
$color-texticon-danger: $color-r-600;
|
591
593
|
|
592
594
|
:root {
|
593
595
|
// brand
|
@@ -675,4 +677,10 @@ $color-texticon-warning: $color-texticon-accent-yellow-contrast;
|
|
675
677
|
--color-text-subtlest: #{$color-text-subtlest};
|
676
678
|
--color-text-disabled: #{$color-text-disabled};
|
677
679
|
--color-text-inverse-contrast: #{$color-text-inverse-contrast};
|
678
|
-
}
|
680
|
+
--color-texticon-link-default: #{$color-texticon-link-default};
|
681
|
+
--color-divider-default: #{$color-divider-default};
|
682
|
+
--color-skeleton: #{$color-skeleton};
|
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};
|
686
|
+
}
|