asksuite-citrus 3.15.7-beta.1 → 3.15.7-beta.2

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/dynamic-dropdown/dynamic-dropdown.service.mjs +9 -4
  26. package/esm2022/lib/services/theme/theme.service.mjs +1 -1
  27. package/fesm2022/asksuite-citrus.mjs +56 -51
  28. package/fesm2022/asksuite-citrus.mjs.map +1 -1
  29. package/lib/services/dynamic-dropdown/dynamic-dropdown.service.d.ts +2 -2
  30. package/lib/services/theme/theme.service.d.ts +2 -1
  31. package/package.json +1 -1
  32. package/styles/colors-dark.scss +1 -0
  33. package/styles/colors-light.scss +2 -0
  34. package/styles/old-theme.scss +1 -0
@@ -1,12 +1,12 @@
1
1
  import { TemplateRef, ViewContainerRef } from '@angular/core';
2
- import { Overlay, ConnectedPosition } from '@angular/cdk/overlay';
2
+ import { Overlay } from '@angular/cdk/overlay';
3
3
  import { Subject } from 'rxjs';
4
4
  import * as i0 from "@angular/core";
5
5
  export interface DropdownConfig {
6
6
  templateToRender: TemplateRef<any>;
7
7
  viewContainerRef: ViewContainerRef;
8
8
  referenceElement: HTMLElement;
9
- positionParams: ConnectedPosition | ConnectedPosition[];
9
+ positionParams: any;
10
10
  closeOnOutsideClick?: boolean;
11
11
  }
12
12
  export interface DropdownRef {
@@ -1,7 +1,7 @@
1
1
  import { StorageUtilService } from "../storage/storage-util.service";
2
2
  import { BehaviorSubject } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
- export type Theme = 'dark' | 'light';
4
+ type Theme = 'dark' | 'light';
5
5
  export declare class ThemeService {
6
6
  private readonly storageUtilService;
7
7
  themeKey: string;
@@ -14,3 +14,4 @@ export declare class ThemeService {
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<ThemeService, never>;
15
15
  static ɵprov: i0.ɵɵInjectableDeclaration<ThemeService>;
16
16
  }
17
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asksuite-citrus",
3
- "version": "3.15.7-beta.1",
3
+ "version": "3.15.7-beta.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.7",
6
6
  "@angular/core": "^17.3.7",
@@ -39,6 +39,7 @@
39
39
  --google-blue: #{$google-blue};
40
40
  --telegram-blue: #{$telegram-blue};
41
41
  --telephone-yellow: #{$telephone-yellow};
42
+ --booking-blue: #{$booking-blue};
42
43
  --primary-background: #{$primary-background};
43
44
  --secondary-background: #{$color-nda-0};
44
45
  --hover-background: #{$color-nd-100};
@@ -51,6 +51,7 @@ $instagram-pink: #d53e91;
51
51
  $google-blue: #345dc8;
52
52
  $telegram-blue: #34aadf;
53
53
  $telephone-yellow: #fecb00;
54
+ $booking-blue: #03367e;
54
55
 
55
56
  // backgrounds
56
57
  $primary-background: $white;
@@ -646,6 +647,7 @@ $color-border-contrast: $color-nla-1200;
646
647
  --google-blue: #{$google-blue};
647
648
  --telegram-blue: #{$telegram-blue};
648
649
  --telephone-yellow: #{$telephone-yellow};
650
+ --booking-blue: #{$booking-blue};
649
651
 
650
652
  // backgrounds
651
653
  --primary-background: #{$primary-background};
@@ -48,6 +48,7 @@
48
48
  $google-blue: #345dc8;
49
49
  $telegram-blue: #34aadf;
50
50
  $telephone-yellow: #fecb00;
51
+ $booking-blue: #03367e;
51
52
 
52
53
  // backgrounds
53
54
  $primary-background: $white;