asksuite-citrus 3.6.6-beta.1 → 3.6.6-beta.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/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/table/table.component.mjs +2 -2
- package/esm2022/lib/components/toast/toast.component.mjs +2 -2
- package/fesm2022/asksuite-citrus.mjs +44 -42
- 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.scss +25 -0
@@ -19,11 +19,12 @@ export declare class AvatarComponent {
|
|
19
19
|
selected?: boolean;
|
20
20
|
hover?: boolean;
|
21
21
|
isRobot?: boolean;
|
22
|
+
isDisable?: boolean;
|
22
23
|
set name(value: string);
|
23
24
|
private generateName;
|
24
25
|
static readonly BOT_ICON: string;
|
25
26
|
protected _initials: string;
|
26
27
|
get image(): string;
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
28
|
-
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; }; "hover": { "alias": "hover"; "required": false; }; "isRobot": { "alias": "isRobot"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, false, never>;
|
29
|
+
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; }; "hover": { "alias": "hover"; "required": false; }; "isRobot": { "alias": "isRobot"; "required": false; }; "isDisable": { "alias": "isDisable"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, false, never>;
|
29
30
|
}
|
package/package.json
CHANGED
package/styles/colors.scss
CHANGED
@@ -351,4 +351,29 @@ $color-text-disabled: #13293961;
|
|
351
351
|
--font-color-100: #{$grey-800};
|
352
352
|
--font-color-200: #{$grey-500};
|
353
353
|
--font-color-300: #{$grey-300};
|
354
|
+
|
355
|
+
// new livechat
|
356
|
+
--color-light-neutral-NLA200: #{$color-light-neutral-NLA200};
|
357
|
+
--color-light-neutral-NLA300: #{$color-light-neutral-NLA300};
|
358
|
+
--color-texticon-brand-asksuite-contrast: #{$color-texticon-brand-asksuite-contrast};
|
359
|
+
--color-texticon-inverse-default: #{$color-texticon-inverse-default};
|
360
|
+
--color-texticon-contrast: #{$color-texticon-contrast};
|
361
|
+
--color-texticon-subtle: #{$color-texticon-subtle};
|
362
|
+
--color-texticon-subtlest: #{$color-texticon-subtlest};
|
363
|
+
--color-texticon-disabled: #{$color-texticon-disabled};
|
364
|
+
--color-elevation-surface-selected-ask: #{$color-elevation-surface-selected-ask};
|
365
|
+
--color-elevation-surface-sunken-default: #{$color-elevation-surface-sunken-default};
|
366
|
+
--color-elevation-surface-sunken-hovered: #{$color-elevation-surface-sunken-hovered};
|
367
|
+
--color-elevation-surface-selected: #{$color-elevation-surface-selected};
|
368
|
+
--color-elevation-shadow-raised: #{$color-elevation-shadow-raised};
|
369
|
+
--color-border-default: #{$color-border-default};
|
370
|
+
--color-border-brand-asksuite-subtle: #{$color-border-brand-asksuite-subtle};
|
371
|
+
--color-background-alpha-bolder-default: #{$color-background-alpha-bolder-default};
|
372
|
+
--color-background-brand-asksuite-contrast-default: #{$color-background-brand-asksuite-contrast-default};
|
373
|
+
--color-background-alpha-subtlest-default: #{$color-background-alpha-subtlest-default};
|
374
|
+
--color-background-inverse-default: #{$color-background-inverse-default};
|
375
|
+
--color-background-disabled: #{$color-background-disabled};
|
376
|
+
--color-text-contrast: #{$color-text-contrast};
|
377
|
+
--color-text-subtlest: #{$color-text-subtlest};
|
378
|
+
--color-text-disabled: #{$color-text-disabled};
|
354
379
|
}
|