asksuite-citrus 3.16.1 → 3.16.3
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 +5 -3
- 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/fesm2022/asksuite-citrus.mjs +50 -48
- package/fesm2022/asksuite-citrus.mjs.map +1 -1
- package/lib/components/avatar/avatar.component.d.ts +2 -1
- package/package.json +1 -1
- package/styles/colors-light.scss +1 -0
@@ -16,6 +16,7 @@ export declare class AvatarComponent {
|
|
16
16
|
avatarTitlePosition: TooltipPosition;
|
17
17
|
statusTitle: string;
|
18
18
|
large?: boolean;
|
19
|
+
small?: boolean;
|
19
20
|
selected?: boolean;
|
20
21
|
notSelect: boolean;
|
21
22
|
hover?: boolean;
|
@@ -27,5 +28,5 @@ export declare class AvatarComponent {
|
|
27
28
|
protected _initials: string;
|
28
29
|
get image(): string;
|
29
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ask-avatar", never, { "src": { "alias": "src"; "required": false; }; "status": { "alias": "status"; "required": false; }; "background": { "alias": "background"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "avatarTitle": { "alias": "avatarTitle"; "required": false; }; "avatarTitlePosition": { "alias": "avatarTitlePosition"; "required": false; }; "statusTitle": { "alias": "statusTitle"; "required": false; }; "large": { "alias": "large"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "notSelect": { "alias": "notSelect"; "required": false; }; "hover": { "alias": "hover"; "required": false; }; "isRobot": { "alias": "isRobot"; "required": false; }; "isDisable": { "alias": "isDisable"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, false, never>;
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ask-avatar", never, { "src": { "alias": "src"; "required": false; }; "status": { "alias": "status"; "required": false; }; "background": { "alias": "background"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "avatarTitle": { "alias": "avatarTitle"; "required": false; }; "avatarTitlePosition": { "alias": "avatarTitlePosition"; "required": false; }; "statusTitle": { "alias": "statusTitle"; "required": false; }; "large": { "alias": "large"; "required": false; }; "small": { "alias": "small"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "notSelect": { "alias": "notSelect"; "required": false; }; "hover": { "alias": "hover"; "required": false; }; "isRobot": { "alias": "isRobot"; "required": false; }; "isDisable": { "alias": "isDisable"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, false, never>;
|
31
32
|
}
|
package/package.json
CHANGED
package/styles/colors-light.scss
CHANGED
@@ -760,5 +760,6 @@ $color-border-contrast: $color-nla-1200;
|
|
760
760
|
--color-border-contrast: #{$color-border-contrast};
|
761
761
|
--color-border-inverse-contrast: #{$color-border-inverse-contrast};
|
762
762
|
--color-texticon-success: #{$color-texticon-success};
|
763
|
+
--color-texticon-subtler: #{$color-nla-1000};
|
763
764
|
}
|
764
765
|
|