asksuite-citrus 3.14.0-beta.1 → 3.14.0-beta.11

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 (47) hide show
  1. package/esm2022/lib/asksuite-citrus.module.mjs +25 -5
  2. package/esm2022/lib/components/accordion/extendable-panel/extendable-panel.component.mjs +2 -2
  3. package/esm2022/lib/components/arrow-tag/arrow-tag.component.mjs +28 -0
  4. package/esm2022/lib/components/autocomplete/autocomplete.component.mjs +2 -2
  5. package/esm2022/lib/components/avatar/avatar.component.mjs +2 -2
  6. package/esm2022/lib/components/box/box.component.mjs +2 -2
  7. package/esm2022/lib/components/button/button.component.mjs +2 -2
  8. package/esm2022/lib/components/character-counter/character-counter.component.mjs +2 -2
  9. package/esm2022/lib/components/checkbox/checkbox.component.mjs +2 -2
  10. package/esm2022/lib/components/chips/chips.component.mjs +2 -2
  11. package/esm2022/lib/components/date-picker/date-picker-calendar/date-picker-calendar.component.mjs +2 -2
  12. package/esm2022/lib/components/date-picker/date-picker.component.mjs +2 -2
  13. package/esm2022/lib/components/dropdown-container/dropdown-container.component.mjs +2 -2
  14. package/esm2022/lib/components/input/input.component.mjs +13 -3
  15. package/esm2022/lib/components/modal/confirmation-modal/confirmation-modal.component.mjs +2 -2
  16. package/esm2022/lib/components/modal/modal.component.mjs +2 -2
  17. package/esm2022/lib/components/pagination/pagination.component.mjs +2 -2
  18. package/esm2022/lib/components/phone-ddi/phone-ddi.component.mjs +17 -3
  19. package/esm2022/lib/components/richtext-toolbox/richtext-toolbox.component.mjs +2 -2
  20. package/esm2022/lib/components/richtext-url-prompt/richtext-url-prompt.component.mjs +2 -2
  21. package/esm2022/lib/components/select/select.component.mjs +2 -2
  22. package/esm2022/lib/components/tab-group/tab/tab.component.mjs +19 -0
  23. package/esm2022/lib/components/tab-group/tab-group.component.mjs +37 -0
  24. package/esm2022/lib/components/table/table.component.mjs +2 -2
  25. package/esm2022/lib/components/tag/tag.component.mjs +25 -0
  26. package/esm2022/lib/components/toast/toast.component.mjs +2 -2
  27. package/esm2022/lib/services/storage/storage-util.service.mjs +25 -0
  28. package/esm2022/lib/services/theme/theme.service.mjs +19 -6
  29. package/esm2022/public-api.mjs +5 -1
  30. package/fesm2022/asksuite-citrus.mjs +227 -52
  31. package/fesm2022/asksuite-citrus.mjs.map +1 -1
  32. package/lib/asksuite-citrus.module.d.ts +26 -22
  33. package/lib/components/arrow-tag/arrow-tag.component.d.ts +8 -0
  34. package/lib/components/input/input.component.d.ts +2 -0
  35. package/lib/components/phone-ddi/phone-ddi.component.d.ts +1 -0
  36. package/lib/components/tab-group/tab/tab.component.d.ts +9 -0
  37. package/lib/components/tab-group/tab-group.component.d.ts +12 -0
  38. package/lib/components/tag/tag.component.d.ts +9 -0
  39. package/lib/services/storage/storage-util.service.d.ts +10 -0
  40. package/lib/services/theme/theme.service.d.ts +7 -1
  41. package/package.json +1 -1
  42. package/public-api.d.ts +4 -0
  43. package/styles/colors-dark.scss +2 -2
  44. package/styles/colors-light.scss +8 -1
  45. package/styles/quill.scss +5 -0
  46. package/styles/theme-colors.scss +2 -2
  47. package/styles/tooltip.scss +3 -2
@@ -30,32 +30,36 @@ import * as i27 from "./components/character-counter/character-counter.component
30
30
  import * as i28 from "./components/accordion/accordion.component";
31
31
  import * as i29 from "./components/accordion/extendable-panel/extendable-panel.component";
32
32
  import * as i30 from "./components/table/table.component";
33
- import * as i31 from "./components/pagination/pagination.component";
34
- import * as i32 from "./pipes/paginate/paginate.pipe";
35
- import * as i33 from "./directives/richtext-toolbox/richtext-toolbox.directive";
36
- import * as i34 from "./components/richtext-url-prompt/richtext-url-prompt.component";
37
- import * as i35 from "./components/richtext-toolbox/richtext-toolbox.component";
38
- import * as i36 from "./directives/button/ask-text-button.directive";
39
- import * as i37 from "./pipes/force-break-line/force-break-line.pipe";
40
- import * as i38 from "./components/modal/confirmation-modal/confirmation-modal.component";
41
- import * as i39 from "./components/loading-bar/loading-bar.component";
42
- import * as i40 from "./directives/button/ask-stroked-button.directive";
43
- import * as i41 from "./directives/input/input.directive";
44
- import * as i42 from "./directives/list-item/list-item.directive";
45
- import * as i43 from "@angular/common";
46
- import * as i44 from "@angular/forms";
47
- import * as i45 from "@angular/cdk/overlay";
48
- import * as i46 from "@ngx-translate/core";
49
- import * as i47 from "ngx-skeleton-loader";
50
- import * as i48 from "@angular/material/tooltip";
51
- import * as i49 from "ngx-mask";
52
- import * as i50 from "@angular/material/progress-bar";
53
- import * as i51 from "./components/icon/icon.component";
33
+ import * as i31 from "./components/tag/tag.component";
34
+ import * as i32 from "./components/pagination/pagination.component";
35
+ import * as i33 from "./pipes/paginate/paginate.pipe";
36
+ import * as i34 from "./directives/richtext-toolbox/richtext-toolbox.directive";
37
+ import * as i35 from "./components/richtext-url-prompt/richtext-url-prompt.component";
38
+ import * as i36 from "./components/richtext-toolbox/richtext-toolbox.component";
39
+ import * as i37 from "./directives/button/ask-text-button.directive";
40
+ import * as i38 from "./pipes/force-break-line/force-break-line.pipe";
41
+ import * as i39 from "./components/modal/confirmation-modal/confirmation-modal.component";
42
+ import * as i40 from "./components/loading-bar/loading-bar.component";
43
+ import * as i41 from "./directives/button/ask-stroked-button.directive";
44
+ import * as i42 from "./directives/input/input.directive";
45
+ import * as i43 from "./directives/list-item/list-item.directive";
46
+ import * as i44 from "./components/arrow-tag/arrow-tag.component";
47
+ import * as i45 from "./components/tab-group/tab-group.component";
48
+ import * as i46 from "./components/tab-group/tab/tab.component";
49
+ import * as i47 from "@angular/common";
50
+ import * as i48 from "@angular/forms";
51
+ import * as i49 from "@angular/cdk/overlay";
52
+ import * as i50 from "@ngx-translate/core";
53
+ import * as i51 from "ngx-skeleton-loader";
54
+ import * as i52 from "@angular/material/tooltip";
55
+ import * as i53 from "ngx-mask";
56
+ import * as i54 from "@angular/material/progress-bar";
57
+ import * as i55 from "./components/icon/icon.component";
54
58
  export declare class AsksuiteCitrusModule {
55
59
  static forRoot(params?: {
56
60
  flagUrl?: string;
57
61
  }): ModuleWithProviders<AsksuiteCitrusModule>;
58
62
  static ɵfac: i0.ɵɵFactoryDeclaration<AsksuiteCitrusModule, never>;
59
- static ɵmod: i0.ɵɵNgModuleDeclaration<AsksuiteCitrusModule, [typeof i1.ButtonComponent, typeof i2.InputComponent, typeof i3.SelectComponent, typeof i4.BoxComponent, typeof i5.AvatarComponent, typeof i6.DropdownContainerComponent, typeof i7.AskDropdownDirective, typeof i8.AutocompleteComponent, typeof i9.PhoneDdiComponent, typeof i10.ChipsComponent, typeof i11.CheckboxComponent, typeof i12.DatePickerComponent, typeof i13.DatePickerCalendarComponent, typeof i14.SkeletonComponent, typeof i15.SpinnerComponent, typeof i16.SpinnerDirective, typeof i17.BadgeDirective, typeof i18.AutofocusDirective, typeof i19.ScrollDirective, typeof i20.AskTooltipDirective, typeof i21.ToastComponent, typeof i22.AskButtonDirective, typeof i23.ModalComponent, typeof i24.ModalBodyDirective, typeof i25.ModalHeaderDirective, typeof i26.ModalFooterDirective, typeof i27.CharacterCounterComponent, typeof i28.AccordionComponent, typeof i29.ExtendablePanelComponent, typeof i30.TableComponent, typeof i31.PaginationComponent, typeof i32.PaginatePipe, typeof i33.RichtextToolboxDirective, typeof i34.RichtextUrlPromptComponent, typeof i35.RichtextToolboxComponent, typeof i36.AskTextButtonDirective, typeof i37.ForceBreakLinePipe, typeof i38.ConfirmationModalComponent, typeof i39.LoadingBarComponent, typeof i40.AskStrokedButtonDirective, typeof i41.InputDirective, typeof i42.ListItemDirective], [typeof i43.CommonModule, typeof i44.FormsModule, typeof i44.ReactiveFormsModule, typeof i45.CdkOverlayOrigin, typeof i45.CdkConnectedOverlay, typeof i45.OverlayModule, typeof i46.TranslateModule, typeof i47.NgxSkeletonLoaderModule, typeof i48.MatTooltipModule, typeof i49.NgxMaskDirective, typeof i49.NgxMaskPipe, typeof i50.MatProgressBarModule, typeof i51.IconComponent], [typeof i1.ButtonComponent, typeof i2.InputComponent, typeof i3.SelectComponent, typeof i4.BoxComponent, typeof i5.AvatarComponent, typeof i6.DropdownContainerComponent, typeof i7.AskDropdownDirective, typeof i8.AutocompleteComponent, typeof i9.PhoneDdiComponent, typeof i10.ChipsComponent, typeof i11.CheckboxComponent, typeof i12.DatePickerComponent, typeof i13.DatePickerCalendarComponent, typeof i14.SkeletonComponent, typeof i16.SpinnerDirective, typeof i17.BadgeDirective, typeof i18.AutofocusDirective, typeof i19.ScrollDirective, typeof i20.AskTooltipDirective, typeof i22.AskButtonDirective, typeof i36.AskTextButtonDirective, typeof i24.ModalBodyDirective, typeof i25.ModalHeaderDirective, typeof i26.ModalFooterDirective, typeof i27.CharacterCounterComponent, typeof i28.AccordionComponent, typeof i29.ExtendablePanelComponent, typeof i30.TableComponent, typeof i31.PaginationComponent, typeof i32.PaginatePipe, typeof i33.RichtextToolboxDirective, typeof i37.ForceBreakLinePipe, typeof i39.LoadingBarComponent, typeof i40.AskStrokedButtonDirective, typeof i41.InputDirective, typeof i42.ListItemDirective, typeof i51.IconComponent]>;
63
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AsksuiteCitrusModule, [typeof i1.ButtonComponent, typeof i2.InputComponent, typeof i3.SelectComponent, typeof i4.BoxComponent, typeof i5.AvatarComponent, typeof i6.DropdownContainerComponent, typeof i7.AskDropdownDirective, typeof i8.AutocompleteComponent, typeof i9.PhoneDdiComponent, typeof i10.ChipsComponent, typeof i11.CheckboxComponent, typeof i12.DatePickerComponent, typeof i13.DatePickerCalendarComponent, typeof i14.SkeletonComponent, typeof i15.SpinnerComponent, typeof i16.SpinnerDirective, typeof i17.BadgeDirective, typeof i18.AutofocusDirective, typeof i19.ScrollDirective, typeof i20.AskTooltipDirective, typeof i21.ToastComponent, typeof i22.AskButtonDirective, typeof i23.ModalComponent, typeof i24.ModalBodyDirective, typeof i25.ModalHeaderDirective, typeof i26.ModalFooterDirective, typeof i27.CharacterCounterComponent, typeof i28.AccordionComponent, typeof i29.ExtendablePanelComponent, typeof i30.TableComponent, typeof i31.TagComponent, typeof i32.PaginationComponent, typeof i33.PaginatePipe, typeof i34.RichtextToolboxDirective, typeof i35.RichtextUrlPromptComponent, typeof i36.RichtextToolboxComponent, typeof i37.AskTextButtonDirective, typeof i38.ForceBreakLinePipe, typeof i39.ConfirmationModalComponent, typeof i40.LoadingBarComponent, typeof i41.AskStrokedButtonDirective, typeof i42.InputDirective, typeof i43.ListItemDirective, typeof i44.ArrowTagComponent, typeof i45.TabGroupComponent, typeof i46.TabComponent], [typeof i47.CommonModule, typeof i48.FormsModule, typeof i48.ReactiveFormsModule, typeof i49.CdkOverlayOrigin, typeof i49.CdkConnectedOverlay, typeof i49.OverlayModule, typeof i50.TranslateModule, typeof i51.NgxSkeletonLoaderModule, typeof i52.MatTooltipModule, typeof i53.NgxMaskDirective, typeof i53.NgxMaskPipe, typeof i54.MatProgressBarModule, typeof i55.IconComponent], [typeof i1.ButtonComponent, typeof i2.InputComponent, typeof i3.SelectComponent, typeof i4.BoxComponent, typeof i5.AvatarComponent, typeof i6.DropdownContainerComponent, typeof i7.AskDropdownDirective, typeof i8.AutocompleteComponent, typeof i9.PhoneDdiComponent, typeof i10.ChipsComponent, typeof i11.CheckboxComponent, typeof i12.DatePickerComponent, typeof i13.DatePickerCalendarComponent, typeof i14.SkeletonComponent, typeof i16.SpinnerDirective, typeof i17.BadgeDirective, typeof i18.AutofocusDirective, typeof i19.ScrollDirective, typeof i20.AskTooltipDirective, typeof i22.AskButtonDirective, typeof i37.AskTextButtonDirective, typeof i24.ModalBodyDirective, typeof i25.ModalHeaderDirective, typeof i26.ModalFooterDirective, typeof i27.CharacterCounterComponent, typeof i28.AccordionComponent, typeof i29.ExtendablePanelComponent, typeof i30.TableComponent, typeof i32.PaginationComponent, typeof i33.PaginatePipe, typeof i34.RichtextToolboxDirective, typeof i38.ForceBreakLinePipe, typeof i40.LoadingBarComponent, typeof i41.AskStrokedButtonDirective, typeof i42.InputDirective, typeof i43.ListItemDirective, typeof i55.IconComponent, typeof i31.TagComponent, typeof i44.ArrowTagComponent, typeof i45.TabGroupComponent, typeof i46.TabComponent]>;
60
64
  static ɵinj: i0.ɵɵInjectorDeclaration<AsksuiteCitrusModule>;
61
65
  }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ArrowTagComponent {
3
+ value: string;
4
+ backgroundColor: string;
5
+ fontColor: string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArrowTagComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ArrowTagComponent, "ask-arrow-tag", never, { "value": { "alias": "value"; "required": true; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "fontColor": { "alias": "fontColor"; "required": false; }; }, {}, never, never, false, never>;
8
+ }
@@ -34,6 +34,8 @@ export declare class InputComponent implements ControlValueAccessor {
34
34
  handleInput(event: Event): void;
35
35
  handleFocus(event: FocusEvent): void;
36
36
  handleBlur(event: FocusEvent): void;
37
+ focusInput(): void;
38
+ blurInput(): void;
37
39
  registerOnChange(fn: any): void;
38
40
  registerOnTouched(fn: any): void;
39
41
  setDisabledState(isDisabled: boolean): void;
@@ -30,6 +30,7 @@ export declare class PhoneDdiComponent extends OverlayComponent implements OnIni
30
30
  private scrollSub?;
31
31
  constructor(overlay: Overlay, viewContainerRef: ViewContainerRef, countryFlagService: CountryFlagService);
32
32
  ngOnInit(): void;
33
+ onPaste(event: any): void;
33
34
  handleOptionSelected(item: any): void;
34
35
  display(option: any): string;
35
36
  shouldClose(event: MouseEvent): boolean;
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TabComponent {
3
+ value: any;
4
+ callbackFn: Function;
5
+ active: boolean;
6
+ protected onClick(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "ask-tab", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
9
+ }
@@ -0,0 +1,12 @@
1
+ import { AfterContentInit, EventEmitter, QueryList } from '@angular/core';
2
+ import { TabComponent } from "./tab/tab.component";
3
+ import * as i0 from "@angular/core";
4
+ export declare class TabGroupComponent implements AfterContentInit {
5
+ active: any;
6
+ activeChange: EventEmitter<any>;
7
+ tabs: QueryList<TabComponent>;
8
+ ngAfterContentInit(): void;
9
+ onTabChange(tab: TabComponent): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabGroupComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabGroupComponent, "ask-tab-group", never, { "active": { "alias": "active"; "required": false; }; }, { "activeChange": "activeChange"; }, ["tabs"], ["*"], false, never>;
12
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TagComponent {
3
+ prefix: string;
4
+ content: string | number | null;
5
+ suffix: string;
6
+ bold: boolean;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "ask-tag", never, { "prefix": { "alias": "prefix"; "required": false; }; "content": { "alias": "content"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "bold": { "alias": "bold"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class StorageUtilService<T> {
3
+ private localstorage;
4
+ constructor(localstorage: Storage);
5
+ getItem(key: string): T;
6
+ setItem(key: string, value: T): void;
7
+ removeItem(key: string): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<StorageUtilService<any>, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<StorageUtilService<any>>;
10
+ }
@@ -1,7 +1,13 @@
1
+ import { StorageUtilService } from "../storage/storage-util.service";
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class ThemeService {
3
- constructor();
4
+ private readonly storageUtilService;
5
+ theme: 'dark' | 'light';
6
+ themeKey: string;
7
+ constructor(storageUtilService: StorageUtilService<'dark' | 'light'>);
8
+ getTheme(): "dark" | "light";
4
9
  setTheme(theme: 'dark' | 'light'): void;
10
+ private saveTheme;
5
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ThemeService, never>;
6
12
  static ɵprov: i0.ɵɵInjectableDeclaration<ThemeService>;
7
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asksuite-citrus",
3
- "version": "3.14.0-beta.1",
3
+ "version": "3.14.0-beta.11",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.7",
6
6
  "@angular/core": "^17.3.7",
package/public-api.d.ts CHANGED
@@ -19,6 +19,10 @@ export * from './lib/components/table/table.component';
19
19
  export * from './lib/components/pagination/pagination.component';
20
20
  export * from './lib/components/loading-bar/loading-bar.component';
21
21
  export * from './lib/components/icon/icon.component';
22
+ export * from './lib/components/tag/tag.component';
23
+ export * from './lib/components/arrow-tag/arrow-tag.component';
24
+ export * from './lib/components/tab-group/tab-group.component';
25
+ export * from './lib/components/tab-group/tab/tab.component';
22
26
  export * from './lib/directives';
23
27
  export * from './lib/components/modal/directives';
24
28
  export * from './lib/services/toast/toast.service';
@@ -319,7 +319,7 @@
319
319
  --color-background-inverse-default: #{$color-nd-0};
320
320
  --color-background-inverse-hovered: #{$color-nda-200};
321
321
  --color-background-inverse-pressed: #{$color-nda-300};
322
- --color-elevation-surface-sunken: #{$color-nd-0};
322
+ --color-elevation-surface-sunken: #{$color-nd-100};
323
323
  --color-elevation-surface-default: #{$color-nd-100};
324
324
  --color-elevation-surface-hovered: #{$color-nd-200};
325
325
  --color-elevation-surface-selected-ask: #{$color-a-1000};
@@ -332,7 +332,7 @@
332
332
 
333
333
  --color-text-contrast: #{$color-nda-1500};
334
334
  --color-text-subtlest: #{$color-nda-1000};
335
- --color-text-disabled: #{$color-nda-0};
335
+ --color-text-disabled: #{$color-nda-700};
336
336
  --color-text-inverse-contrast: #{$color-nd-0};
337
337
  --color-skeleton: #{$color-nda-200};
338
338
  --color-text-link-default: #{$color-b-500};
@@ -246,7 +246,7 @@ $color-a-400: $color-o-400;
246
246
  $color-a-500: $color-o-500;
247
247
  $color-a-600: #ff5724;
248
248
  $color-a-700: $color-o-700;
249
- $color-a-800: $color-o-800;
249
+ $color-a-800: #9e3d22;
250
250
  $color-a-900: $color-o-900;
251
251
  $color-f-100: $color-v-100;
252
252
  $color-f-1000: $color-v-1000;
@@ -650,6 +650,7 @@ $color-texticon-danger: $color-r-600;
650
650
  --font-color-300: #{$grey-300};
651
651
 
652
652
  // new livechat
653
+ --color-elevation-surface-default: #{$color-nl-0};
653
654
  --color-light-neutral-NLA200: #{$color-light-neutral-NLA200};
654
655
  --color-light-neutral-NLA300: #{$color-light-neutral-NLA300};
655
656
  --color-texticon-brand-asksuite-contrast: #{$color-texticon-brand-asksuite-contrast};
@@ -658,18 +659,24 @@ $color-texticon-danger: $color-r-600;
658
659
  --color-texticon-subtle: #{$color-texticon-subtle};
659
660
  --color-texticon-subtlest: #{$color-texticon-subtlest};
660
661
  --color-texticon-disabled: #{$color-texticon-disabled};
662
+ --color-texticon-brand-asksuite-bold: #{$color-a-800};
661
663
  --color-elevation-surface-selected-ask: #{$color-elevation-surface-selected-ask};
664
+ --color-elevation-surface-sunken: #{$color-nl-100};
662
665
  --color-elevation-surface-sunken-default: #{$color-elevation-surface-sunken-default};
663
666
  --color-elevation-surface-sunken-hovered: #{$color-elevation-surface-sunken-hovered};
664
667
  --color-elevation-surface-selected: #{$color-elevation-surface-selected};
665
668
  --color-elevation-shadow-raised: #{$color-elevation-shadow-raised};
669
+ --color-elevation-surface-overlay: #{$color-nl-0};
666
670
  --color-border-default: #{$color-border-default};
667
671
  --color-border-brand-asksuite-subtle: #{$color-border-brand-asksuite-subtle};
672
+ --color-background-accent-grey-inverse-default: #{$color-nl-0};
668
673
  --color-background-alpha-bolder-default: #{$color-background-alpha-bolder-default};
669
674
  --color-background-brand-asksuite-contrast-default: #{$color-background-brand-asksuite-contrast-default};
675
+ --color-background-brand-asksuite-subtler-hovered: #{$color-background-brand-asksuite-subtler-hovered};
670
676
  --color-background-alpha-subtlest-default: #{$color-background-alpha-subtlest-default};
671
677
  --color-background-inverse-default: #{$color-background-inverse-default};
672
678
  --color-background-disabled: #{$color-background-disabled};
679
+ --color-background-skeleton: #{$color-background-disabled};
673
680
  --color-text-contrast: #{$color-text-contrast};
674
681
  --color-text-subtlest: #{$color-text-subtlest};
675
682
  --color-text-disabled: #{$color-text-disabled};
package/styles/quill.scss CHANGED
@@ -6,6 +6,11 @@
6
6
  word-break: break-word;
7
7
  }
8
8
 
9
+ .ql-editor::placeholder {
10
+ color: red;
11
+ opacity: 1;
12
+ }
13
+
9
14
  .bubble-toolbox {
10
15
  position: absolute;
11
16
  background-color: var(--grey-800);
@@ -1,4 +1,4 @@
1
- // @forward "colors-light";
1
+ @forward "colors-light";
2
2
 
3
3
  @use "colors-dark";
4
4
  @use "colors-light";
@@ -10,4 +10,4 @@ body.light{
10
10
 
11
11
  body.dark{
12
12
  @include colors-dark.theme();
13
- }
13
+ }
@@ -1,6 +1,6 @@
1
1
  .ask-tooltip {
2
- background-color: var(--grey-400);
3
- color: var(--white);
2
+ background-color: var(--color-background-alpha-bolder-default);
3
+ color: var(--color-texticon-inverse-default);
4
4
  padding: 4px;
5
5
  border-radius: 8px;
6
6
  position: relative;
@@ -46,4 +46,5 @@
46
46
 
47
47
  ::ng-deep mat-tooltip-component .mat-mdc-tooltip .mdc-tooltip__surface {
48
48
  background-color: transparent !important;
49
+ color: var(--color-texticon-inverse-default) !important;
49
50
  }