asksuite-citrus 3.6.6-beta.3 → 3.6.7-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.
Files changed (25) hide show
  1. package/esm2022/lib/components/accordion/extendable-panel/extendable-panel.component.mjs +2 -2
  2. package/esm2022/lib/components/autocomplete/autocomplete.component.mjs +2 -2
  3. package/esm2022/lib/components/avatar/avatar.component.mjs +2 -2
  4. package/esm2022/lib/components/box/box.component.mjs +2 -2
  5. package/esm2022/lib/components/button/button.component.mjs +2 -2
  6. package/esm2022/lib/components/character-counter/character-counter.component.mjs +2 -2
  7. package/esm2022/lib/components/checkbox/checkbox.component.mjs +2 -2
  8. package/esm2022/lib/components/chips/chips.component.mjs +2 -2
  9. package/esm2022/lib/components/date-picker/date-picker-calendar/date-picker-calendar.component.mjs +2 -2
  10. package/esm2022/lib/components/date-picker/date-picker.component.mjs +2 -2
  11. package/esm2022/lib/components/dropdown-container/dropdown-container.component.mjs +2 -2
  12. package/esm2022/lib/components/input/input.component.mjs +2 -2
  13. package/esm2022/lib/components/modal/confirmation-modal/confirmation-modal.component.mjs +2 -2
  14. package/esm2022/lib/components/modal/modal.component.mjs +2 -2
  15. package/esm2022/lib/components/pagination/pagination.component.mjs +2 -2
  16. package/esm2022/lib/components/phone-ddi/phone-ddi.component.mjs +2 -2
  17. package/esm2022/lib/components/richtext-toolbox/richtext-toolbox.component.mjs +2 -2
  18. package/esm2022/lib/components/richtext-url-prompt/richtext-url-prompt.component.mjs +2 -2
  19. package/esm2022/lib/components/select/select.component.mjs +2 -2
  20. package/esm2022/lib/components/table/table.component.mjs +2 -2
  21. package/esm2022/lib/components/toast/toast.component.mjs +2 -2
  22. package/fesm2022/asksuite-citrus.mjs +42 -42
  23. package/fesm2022/asksuite-citrus.mjs.map +1 -1
  24. package/package.json +1 -1
  25. package/styles/colors.scss +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asksuite-citrus",
3
- "version": "3.6.6-beta.3",
3
+ "version": "3.6.7-beta.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.7",
6
6
  "@angular/core": "^17.3.7",
@@ -271,6 +271,7 @@ $color-texticon-contrast: $color-nla-1500;
271
271
  $color-texticon-subtle: $color-nla-1200;
272
272
  $color-texticon-subtlest: $color-nla-1000;
273
273
  $color-texticon-disabled: $color-nla-700;
274
+ $color-texticon-link-default: $color-b-500;
274
275
 
275
276
  $color-elevation-surface-selected-ask: $color-a-100;
276
277
  $color-elevation-surface-sunken-default: $color-nl-0;
@@ -291,6 +292,9 @@ $color-text-contrast: $color-nla-1500;
291
292
  $color-text-subtlest: $color-nla-1000;
292
293
  $color-text-disabled: #13293961;
293
294
 
295
+ $color-divider-default: $color-nl-400;
296
+ $color-skeleton: $color-nla-200;
297
+
294
298
  :root {
295
299
  // brand
296
300
  --asksuite-orange: #{$asksuite-orange};
@@ -376,4 +380,7 @@ $color-text-disabled: #13293961;
376
380
  --color-text-contrast: #{$color-text-contrast};
377
381
  --color-text-subtlest: #{$color-text-subtlest};
378
382
  --color-text-disabled: #{$color-text-disabled};
383
+ --color-texticon-link-default: #{$color-texticon-link-default};
384
+ --color-divider-default: #{$color-divider-default};
385
+ --color-skeleton: #{$color-skeleton};
379
386
  }