asksuite-citrus 3.17.23-beta.0 → 3.17.24
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/checkbox-v2/checkbox-v2.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/modal/modal.config.mjs +1 -1
- package/esm2022/lib/services/modal/modal.service.mjs +12 -2
- package/fesm2022/asksuite-citrus.mjs +61 -51
- package/fesm2022/asksuite-citrus.mjs.map +1 -1
- package/lib/services/modal/modal.config.d.ts +2 -0
- package/package.json +4 -4
- package/styles/colors-light.scss +2 -0
@@ -6,6 +6,8 @@ export type ModalConfig = {
|
|
6
6
|
fullscreen?: boolean;
|
7
7
|
maxWidth?: number;
|
8
8
|
scroll?: boolean;
|
9
|
+
panelClass?: string | string[];
|
10
|
+
backdropClass?: string | string[];
|
9
11
|
};
|
10
12
|
export declare const ASK_MODAL_CONFIG: InjectionToken<ModalConfig>;
|
11
13
|
export declare const ASK_MODAL_DATA: InjectionToken<any>;
|
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "asksuite-citrus",
|
3
|
-
"version": "3.17.
|
3
|
+
"version": "3.17.24",
|
4
4
|
"peerDependencies": {
|
5
|
-
"@angular/common": "^
|
6
|
-
"@angular/core": "^
|
7
|
-
"@angular/material": "^
|
5
|
+
"@angular/common": "^17.3.7",
|
6
|
+
"@angular/core": "^17.3.7",
|
7
|
+
"@angular/material": "^17.3.10",
|
8
8
|
"@ngx-translate/core": "^15.0.0",
|
9
9
|
"@ngx-translate/http-loader": "^8.0.0",
|
10
10
|
"libphonenumber-js": "^1.10.61",
|
package/styles/colors-light.scss
CHANGED
@@ -739,6 +739,7 @@ $color-border-contrast: $color-nla-1200;
|
|
739
739
|
--font-color-300: #{$grey-300};
|
740
740
|
|
741
741
|
// new livechat
|
742
|
+
--color-background-accent-grey-subtlest-default: #{$color-background-accent-grey-subtlest-default};
|
742
743
|
--color-background-inverse-hovered: #{$color-background-inverse-hovered};
|
743
744
|
--color-background-inverse-pressed: #{$color-background-inverse-pressed};
|
744
745
|
--color-background-accent-inverse-default: #{$color-background-accent-inverse-default};
|
@@ -856,6 +857,7 @@ $color-border-contrast: $color-nla-1200;
|
|
856
857
|
--color-background-accent-magenta-subtlest-default: #{$color-background-accent-magenta-subtlest-default};
|
857
858
|
--color-background-alpha-inverse-pressed: #{$color-nla-300};
|
858
859
|
|
860
|
+
--color-background-sophia-bold-default: #{$color-background-brand-sophia-bold-default};
|
859
861
|
--color-background-sophia-contrast-default: #{$color-background-brand-sophia-contrast-default};
|
860
862
|
--color-background-sophia-contrast-hovered: #{$color-background-brand-sophia-contrast-hovered};
|
861
863
|
--color-background-sophia-contrast-pressed: #{$color-background-brand-sophia-contrast-pressed};
|