asksuite-citrus 3.15.6 → 3.15.7-beta.1
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/arrow-tag/arrow-tag.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/tab-group/tab/tab.component.mjs +2 -2
- package/esm2022/lib/components/tab-group/tab-group.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/esm2022/lib/services/dynamic-dropdown/dynamic-dropdown.service.mjs +4 -9
- package/esm2022/lib/services/theme/theme.service.mjs +1 -1
- package/fesm2022/asksuite-citrus.mjs +51 -56
- package/fesm2022/asksuite-citrus.mjs.map +1 -1
- package/lib/services/dynamic-dropdown/dynamic-dropdown.service.d.ts +2 -2
- package/lib/services/theme/theme.service.d.ts +1 -2
- package/package.json +1 -1
- package/styles/colors-light.scss +1 -0
@@ -1,12 +1,12 @@
|
|
1
1
|
import { TemplateRef, ViewContainerRef } from '@angular/core';
|
2
|
-
import { Overlay } from '@angular/cdk/overlay';
|
2
|
+
import { Overlay, ConnectedPosition } 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:
|
9
|
+
positionParams: ConnectedPosition | ConnectedPosition[];
|
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
|
-
type Theme = 'dark' | 'light';
|
4
|
+
export type Theme = 'dark' | 'light';
|
5
5
|
export declare class ThemeService {
|
6
6
|
private readonly storageUtilService;
|
7
7
|
themeKey: string;
|
@@ -14,4 +14,3 @@ 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
package/styles/colors-light.scss
CHANGED
@@ -753,5 +753,6 @@ $color-border-contrast: $color-nla-1200;
|
|
753
753
|
--color-border-black-default: #{$color-border-black-default};
|
754
754
|
--color-border-contrast: #{$color-border-contrast};
|
755
755
|
--color-border-inverse-contrast: #{$color-border-inverse-contrast};
|
756
|
+
--color-texticon-success: #{$color-texticon-success};
|
756
757
|
}
|
757
758
|
|