asksuite-citrus 3.17.2 → 3.17.4-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 (34) hide show
  1. package/esm2022/lib/components/accordion/extendable-panel/extendable-panel.component.mjs +2 -2
  2. package/esm2022/lib/components/arrow-tag/arrow-tag.component.mjs +2 -2
  3. package/esm2022/lib/components/autocomplete/autocomplete.component.mjs +2 -2
  4. package/esm2022/lib/components/avatar/avatar.component.mjs +2 -2
  5. package/esm2022/lib/components/box/box.component.mjs +2 -2
  6. package/esm2022/lib/components/button/button.component.mjs +2 -2
  7. package/esm2022/lib/components/character-counter/character-counter.component.mjs +2 -2
  8. package/esm2022/lib/components/checkbox/checkbox.component.mjs +2 -2
  9. package/esm2022/lib/components/chips/chips.component.mjs +2 -2
  10. package/esm2022/lib/components/date-picker/date-picker-calendar/date-picker-calendar.component.mjs +2 -2
  11. package/esm2022/lib/components/date-picker/date-picker.component.mjs +2 -2
  12. package/esm2022/lib/components/dropdown-container/dropdown-container.component.mjs +2 -2
  13. package/esm2022/lib/components/input/input.component.mjs +2 -2
  14. package/esm2022/lib/components/modal/confirmation-modal/confirmation-modal.component.mjs +2 -2
  15. package/esm2022/lib/components/modal/modal.component.mjs +2 -2
  16. package/esm2022/lib/components/pagination/pagination.component.mjs +2 -2
  17. package/esm2022/lib/components/phone-ddi/phone-ddi.component.mjs +2 -2
  18. package/esm2022/lib/components/richtext-toolbox/richtext-toolbox.component.mjs +2 -2
  19. package/esm2022/lib/components/richtext-url-prompt/richtext-url-prompt.component.mjs +2 -2
  20. package/esm2022/lib/components/select/select.component.mjs +2 -2
  21. package/esm2022/lib/components/tab-group/tab/tab.component.mjs +2 -2
  22. package/esm2022/lib/components/tab-group/tab-group.component.mjs +2 -2
  23. package/esm2022/lib/components/table/table.component.mjs +2 -2
  24. package/esm2022/lib/components/toast/toast.component.mjs +2 -2
  25. package/esm2022/lib/services/storage/storage-util.service.mjs +22 -1
  26. package/esm2022/public-api.mjs +2 -1
  27. package/fesm2022/asksuite-citrus.mjs +70 -49
  28. package/fesm2022/asksuite-citrus.mjs.map +1 -1
  29. package/lib/services/storage/storage-util.service.d.ts +2 -0
  30. package/package.json +1 -1
  31. package/public-api.d.ts +1 -0
  32. package/styles/colors-dark.scss +1 -0
  33. package/styles/colors-light.scss +3 -0
  34. package/styles/old-theme.scss +3 -1
@@ -5,6 +5,8 @@ export declare class StorageUtilService<T> {
5
5
  getItem(key: string): T;
6
6
  setItem(key: string, value: T): void;
7
7
  removeItem(key: string): void;
8
+ getItemWithExpiration(key: string): any;
9
+ setItemWithExpiration(key: string, value: any, days: number): void;
8
10
  static ɵfac: i0.ɵɵFactoryDeclaration<StorageUtilService<any>, never>;
9
11
  static ɵprov: i0.ɵɵInjectableDeclaration<StorageUtilService<any>>;
10
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asksuite-citrus",
3
- "version": "3.17.2",
3
+ "version": "3.17.4-beta.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.7",
6
6
  "@angular/core": "^17.3.7",
package/public-api.d.ts CHANGED
@@ -31,6 +31,7 @@ export * from './lib/services/toast/toast.service';
31
31
  export * from './lib/services/modal';
32
32
  export * from './lib/services/dynamic-dropdown/dynamic-dropdown.service';
33
33
  export * from './lib/services/theme/theme.service';
34
+ export * from './lib/services/storage/storage-util.service';
34
35
  export * from './lib/pipes/paginate/paginate.pipe';
35
36
  export * from './lib/pipes/force-break-line/force-break-line.pipe';
36
37
  export * from './lib/services/toast/toast.config';
@@ -360,4 +360,5 @@
360
360
  --color-background-selected-ask-default: #{$color-background-selected-ask-default};
361
361
  --color-border-contrast: #{$color-nda-1200};
362
362
  --color-background-accent-grey-subtler-default: #{$color-nd-400};
363
+ --color-message-area-scroll-gradient: #{$message-area-scroll-gradient};
363
364
  }
@@ -265,6 +265,8 @@ $color-f-900: $color-v-900;
265
265
  $color-light-neutral-NLA200: $color-nla-200;
266
266
  $color-light-neutral-NLA300: #13293921;
267
267
  $color-Y200: #FFE5B2;
268
+
269
+ $message-area-scroll-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.55) 50%, #FFF 100%);
268
270
  // livechat - tokens
269
271
 
270
272
  //TODO: REMOVE DUPLICATE SEMANTICS
@@ -777,4 +779,5 @@ $color-border-contrast: $color-nla-1200;
777
779
  --color-texticon-accent-blue-contrast: #{$color-b-600};
778
780
  --color-background-accent-grey-subtler-default: #{$color-background-accent-grey-subtler-default};
779
781
  --color-background-accent-grey-bolder-default: #{$color-nl-1700};
782
+ --color-message-area-scroll-gradient: #{$message-area-scroll-gradient};
780
783
  }
@@ -1,7 +1,9 @@
1
1
 
2
2
  // brand
3
3
  $asksuite-orange: #ff5724;
4
-
4
+
5
+ $message-area-scroll-gradient: linear-gradient(180deg, rgba(19, 28, 36, 0.00) 0%, rgba(19, 28, 36, 0.55) 50%, #131C24 100%);
6
+
5
7
  // neutral
6
8
  $white: black;
7
9