asksuite-citrus 3.13.0-beta.3 → 3.14.0-beta.10
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 +17 -3
- 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 +62 -48
- package/fesm2022/asksuite-citrus.mjs.map +1 -1
- package/lib/components/phone-ddi/phone-ddi.component.d.ts +1 -0
- package/package.json +1 -1
- package/styles/colors.scss +1 -0
@@ -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;
|
package/package.json
CHANGED
package/styles/colors.scss
CHANGED
@@ -706,4 +706,5 @@ $color-texticon-danger: $color-r-600;
|
|
706
706
|
--color-elevation-surface-primary-default: #{$color-elevation-surface-primary-default};
|
707
707
|
--color-background-alpha-subtlest-hovered: #{$color-background-alpha-subtlest-hovered};
|
708
708
|
--color-icon-brand-asksuite-contrast: #{$color-icon-brand-asksuite-contrast};
|
709
|
+
--color-border-brand-asksuite-contrast: #{$color-border-brand-asksuite-contrast};
|
709
710
|
}
|