asksuite-citrus 3.7.2 → 3.8.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 +10 -0
package/package.json
CHANGED
package/styles/colors.scss
CHANGED
@@ -273,6 +273,7 @@ $color-texticon-contrast: $color-nla-1500;
|
|
273
273
|
$color-texticon-subtle: $color-nla-1200;
|
274
274
|
$color-texticon-subtlest: $color-nla-1000;
|
275
275
|
$color-texticon-disabled: $color-nla-700;
|
276
|
+
$color-texticon-link-default: $color-b-500;
|
276
277
|
|
277
278
|
$color-elevation-surface-selected-ask: $color-a-100;
|
278
279
|
$color-elevation-surface-sunken-default: $color-nl-0;
|
@@ -589,6 +590,11 @@ $color-texticon-success: $color-texticon-accent-green-contrast;
|
|
589
590
|
$color-texticon-warning: $color-texticon-accent-yellow-contrast;
|
590
591
|
|
591
592
|
|
593
|
+
$color-divider-default: $color-nl-400;
|
594
|
+
$color-skeleton: $color-nla-200;
|
595
|
+
|
596
|
+
$color-text-link-default: $color-b-500;
|
597
|
+
|
592
598
|
:root {
|
593
599
|
// brand
|
594
600
|
--asksuite-orange: #{$asksuite-orange};
|
@@ -675,4 +681,8 @@ $color-texticon-warning: $color-texticon-accent-yellow-contrast;
|
|
675
681
|
--color-text-subtlest: #{$color-text-subtlest};
|
676
682
|
--color-text-disabled: #{$color-text-disabled};
|
677
683
|
--color-text-inverse-contrast: #{$color-text-inverse-contrast};
|
684
|
+
--color-texticon-link-default: #{$color-texticon-link-default};
|
685
|
+
--color-divider-default: #{$color-divider-default};
|
686
|
+
--color-skeleton: #{$color-skeleton};
|
687
|
+
--color-text-link-default: #{$color-text-link-default};
|
678
688
|
}
|