asksuite-citrus 3.17.30-beta.1 → 3.17.30
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 +30 -31
- 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/fesm2022/asksuite-citrus.mjs +77 -78
- package/fesm2022/asksuite-citrus.mjs.map +1 -1
- package/lib/components/phone-ddi/phone-ddi.component.d.ts +2 -3
- package/package.json +1 -1
- package/styles/colors-dark.scss +1 -0
- package/styles/colors-light.scss +1 -1
|
@@ -44,9 +44,7 @@ export declare class PhoneDdiComponent extends OverlayComponent implements OnIni
|
|
|
44
44
|
handleFlagClick(event?: Event): void;
|
|
45
45
|
showOptions(): void;
|
|
46
46
|
hideOptions(): void;
|
|
47
|
-
onChangePhoneNumber(number: string
|
|
48
|
-
private normalizePhoneInput;
|
|
49
|
-
private removeDdiFromNumber;
|
|
47
|
+
onChangePhoneNumber(number: string): void;
|
|
50
48
|
registerOnChange(fn: any): void;
|
|
51
49
|
registerOnTouched(fn: any): void;
|
|
52
50
|
writeValue(value: any): void;
|
|
@@ -57,6 +55,7 @@ export declare class PhoneDdiComponent extends OverlayComponent implements OnIni
|
|
|
57
55
|
private getDefaultCountryFlag;
|
|
58
56
|
private handleInputChange;
|
|
59
57
|
handlePhoneChange(event: any): void;
|
|
58
|
+
normalizePhoneNumberBr(input: string): string;
|
|
60
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneDdiComponent, never>;
|
|
61
60
|
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneDdiComponent, "ask-phone-ddi", never, { "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "useCountryCode": { "alias": "useCountryCode"; "required": false; }; "disableMask": { "alias": "disableMask"; "required": false; }; "inferCountryCodeByNumber": { "alias": "inferCountryCodeByNumber"; "required": false; }; }, { "valueChange": "valueChange"; "onChangeFlag": "onChangeFlag"; }, never, never, false, never>;
|
|
62
61
|
}
|
package/package.json
CHANGED
package/styles/colors-dark.scss
CHANGED
|
@@ -381,4 +381,5 @@
|
|
|
381
381
|
--color-border-sophia-contrast: #{$color-border-brand-sophia-contrast};
|
|
382
382
|
--color-border-sophia-bold: #{$color-border-brand-sophia-bold};
|
|
383
383
|
--color-border-sophia-bolder: #{$color-border-brand-sophia-bolder};
|
|
384
|
+
--color-background-danger-subtlest-default: #{$color-r-1000};
|
|
384
385
|
}
|
package/styles/colors-light.scss
CHANGED
|
@@ -873,5 +873,5 @@ $color-border-contrast: $color-nla-1200;
|
|
|
873
873
|
--color-border-sophia-contrast: #{$color-border-brand-sophia-contrast};
|
|
874
874
|
--color-border-sophia-bold: #{$color-border-brand-sophia-bold};
|
|
875
875
|
--color-border-sophia-bolder: #{$color-border-brand-sophia-bolder};
|
|
876
|
-
|
|
876
|
+
--color-background-danger-subtlest-default: #{$color-r-100};
|
|
877
877
|
}
|