asksuite-citrus 3.14.0-beta.9 → 3.15.0

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.
Files changed (42) hide show
  1. package/esm2022/lib/asksuite-citrus.module.mjs +25 -5
  2. package/esm2022/lib/components/accordion/extendable-panel/extendable-panel.component.mjs +2 -2
  3. package/esm2022/lib/components/arrow-tag/arrow-tag.component.mjs +28 -0
  4. package/esm2022/lib/components/autocomplete/autocomplete.component.mjs +2 -2
  5. package/esm2022/lib/components/avatar/avatar.component.mjs +2 -2
  6. package/esm2022/lib/components/box/box.component.mjs +2 -2
  7. package/esm2022/lib/components/button/button.component.mjs +2 -2
  8. package/esm2022/lib/components/character-counter/character-counter.component.mjs +2 -2
  9. package/esm2022/lib/components/checkbox/checkbox.component.mjs +2 -2
  10. package/esm2022/lib/components/chips/chips.component.mjs +2 -2
  11. package/esm2022/lib/components/date-picker/date-picker-calendar/date-picker-calendar.component.mjs +2 -2
  12. package/esm2022/lib/components/date-picker/date-picker.component.mjs +2 -2
  13. package/esm2022/lib/components/dropdown-container/dropdown-container.component.mjs +2 -2
  14. package/esm2022/lib/components/input/input.component.mjs +13 -3
  15. package/esm2022/lib/components/modal/confirmation-modal/confirmation-modal.component.mjs +2 -2
  16. package/esm2022/lib/components/modal/modal.component.mjs +2 -2
  17. package/esm2022/lib/components/pagination/pagination.component.mjs +2 -2
  18. package/esm2022/lib/components/phone-ddi/phone-ddi.component.mjs +17 -3
  19. package/esm2022/lib/components/richtext-toolbox/richtext-toolbox.component.mjs +2 -2
  20. package/esm2022/lib/components/richtext-url-prompt/richtext-url-prompt.component.mjs +2 -2
  21. package/esm2022/lib/components/select/select.component.mjs +2 -2
  22. package/esm2022/lib/components/tab-group/tab/tab.component.mjs +19 -0
  23. package/esm2022/lib/components/tab-group/tab-group.component.mjs +37 -0
  24. package/esm2022/lib/components/table/table.component.mjs +2 -2
  25. package/esm2022/lib/components/tag/tag.component.mjs +25 -0
  26. package/esm2022/lib/components/toast/toast.component.mjs +4 -4
  27. package/esm2022/public-api.mjs +5 -1
  28. package/fesm2022/asksuite-citrus.mjs +188 -48
  29. package/fesm2022/asksuite-citrus.mjs.map +1 -1
  30. package/lib/asksuite-citrus.module.d.ts +26 -22
  31. package/lib/components/arrow-tag/arrow-tag.component.d.ts +8 -0
  32. package/lib/components/input/input.component.d.ts +2 -0
  33. package/lib/components/phone-ddi/phone-ddi.component.d.ts +1 -0
  34. package/lib/components/tab-group/tab/tab.component.d.ts +9 -0
  35. package/lib/components/tab-group/tab-group.component.d.ts +12 -0
  36. package/lib/components/tag/tag.component.d.ts +9 -0
  37. package/package.json +1 -1
  38. package/public-api.d.ts +4 -0
  39. package/styles/colors-dark.scss +3 -1
  40. package/styles/colors-light.scss +19 -4
  41. package/styles/list-item.scss +1 -1
  42. package/styles/theme-primitives.scss +3 -3
@@ -30,32 +30,36 @@ import * as i27 from "./components/character-counter/character-counter.component
30
30
  import * as i28 from "./components/accordion/accordion.component";
31
31
  import * as i29 from "./components/accordion/extendable-panel/extendable-panel.component";
32
32
  import * as i30 from "./components/table/table.component";
33
- import * as i31 from "./components/pagination/pagination.component";
34
- import * as i32 from "./pipes/paginate/paginate.pipe";
35
- import * as i33 from "./directives/richtext-toolbox/richtext-toolbox.directive";
36
- import * as i34 from "./components/richtext-url-prompt/richtext-url-prompt.component";
37
- import * as i35 from "./components/richtext-toolbox/richtext-toolbox.component";
38
- import * as i36 from "./directives/button/ask-text-button.directive";
39
- import * as i37 from "./pipes/force-break-line/force-break-line.pipe";
40
- import * as i38 from "./components/modal/confirmation-modal/confirmation-modal.component";
41
- import * as i39 from "./components/loading-bar/loading-bar.component";
42
- import * as i40 from "./directives/button/ask-stroked-button.directive";
43
- import * as i41 from "./directives/input/input.directive";
44
- import * as i42 from "./directives/list-item/list-item.directive";
45
- import * as i43 from "@angular/common";
46
- import * as i44 from "@angular/forms";
47
- import * as i45 from "@angular/cdk/overlay";
48
- import * as i46 from "@ngx-translate/core";
49
- import * as i47 from "ngx-skeleton-loader";
50
- import * as i48 from "@angular/material/tooltip";
51
- import * as i49 from "ngx-mask";
52
- import * as i50 from "@angular/material/progress-bar";
53
- import * as i51 from "./components/icon/icon.component";
33
+ import * as i31 from "./components/tag/tag.component";
34
+ import * as i32 from "./components/pagination/pagination.component";
35
+ import * as i33 from "./pipes/paginate/paginate.pipe";
36
+ import * as i34 from "./directives/richtext-toolbox/richtext-toolbox.directive";
37
+ import * as i35 from "./components/richtext-url-prompt/richtext-url-prompt.component";
38
+ import * as i36 from "./components/richtext-toolbox/richtext-toolbox.component";
39
+ import * as i37 from "./directives/button/ask-text-button.directive";
40
+ import * as i38 from "./pipes/force-break-line/force-break-line.pipe";
41
+ import * as i39 from "./components/modal/confirmation-modal/confirmation-modal.component";
42
+ import * as i40 from "./components/loading-bar/loading-bar.component";
43
+ import * as i41 from "./directives/button/ask-stroked-button.directive";
44
+ import * as i42 from "./directives/input/input.directive";
45
+ import * as i43 from "./directives/list-item/list-item.directive";
46
+ import * as i44 from "./components/arrow-tag/arrow-tag.component";
47
+ import * as i45 from "./components/tab-group/tab-group.component";
48
+ import * as i46 from "./components/tab-group/tab/tab.component";
49
+ import * as i47 from "@angular/common";
50
+ import * as i48 from "@angular/forms";
51
+ import * as i49 from "@angular/cdk/overlay";
52
+ import * as i50 from "@ngx-translate/core";
53
+ import * as i51 from "ngx-skeleton-loader";
54
+ import * as i52 from "@angular/material/tooltip";
55
+ import * as i53 from "ngx-mask";
56
+ import * as i54 from "@angular/material/progress-bar";
57
+ import * as i55 from "./components/icon/icon.component";
54
58
  export declare class AsksuiteCitrusModule {
55
59
  static forRoot(params?: {
56
60
  flagUrl?: string;
57
61
  }): ModuleWithProviders<AsksuiteCitrusModule>;
58
62
  static ɵfac: i0.ɵɵFactoryDeclaration<AsksuiteCitrusModule, never>;
59
- static ɵmod: i0.ɵɵNgModuleDeclaration<AsksuiteCitrusModule, [typeof i1.ButtonComponent, typeof i2.InputComponent, typeof i3.SelectComponent, typeof i4.BoxComponent, typeof i5.AvatarComponent, typeof i6.DropdownContainerComponent, typeof i7.AskDropdownDirective, typeof i8.AutocompleteComponent, typeof i9.PhoneDdiComponent, typeof i10.ChipsComponent, typeof i11.CheckboxComponent, typeof i12.DatePickerComponent, typeof i13.DatePickerCalendarComponent, typeof i14.SkeletonComponent, typeof i15.SpinnerComponent, typeof i16.SpinnerDirective, typeof i17.BadgeDirective, typeof i18.AutofocusDirective, typeof i19.ScrollDirective, typeof i20.AskTooltipDirective, typeof i21.ToastComponent, typeof i22.AskButtonDirective, typeof i23.ModalComponent, typeof i24.ModalBodyDirective, typeof i25.ModalHeaderDirective, typeof i26.ModalFooterDirective, typeof i27.CharacterCounterComponent, typeof i28.AccordionComponent, typeof i29.ExtendablePanelComponent, typeof i30.TableComponent, typeof i31.PaginationComponent, typeof i32.PaginatePipe, typeof i33.RichtextToolboxDirective, typeof i34.RichtextUrlPromptComponent, typeof i35.RichtextToolboxComponent, typeof i36.AskTextButtonDirective, typeof i37.ForceBreakLinePipe, typeof i38.ConfirmationModalComponent, typeof i39.LoadingBarComponent, typeof i40.AskStrokedButtonDirective, typeof i41.InputDirective, typeof i42.ListItemDirective], [typeof i43.CommonModule, typeof i44.FormsModule, typeof i44.ReactiveFormsModule, typeof i45.CdkOverlayOrigin, typeof i45.CdkConnectedOverlay, typeof i45.OverlayModule, typeof i46.TranslateModule, typeof i47.NgxSkeletonLoaderModule, typeof i48.MatTooltipModule, typeof i49.NgxMaskDirective, typeof i49.NgxMaskPipe, typeof i50.MatProgressBarModule, typeof i51.IconComponent], [typeof i1.ButtonComponent, typeof i2.InputComponent, typeof i3.SelectComponent, typeof i4.BoxComponent, typeof i5.AvatarComponent, typeof i6.DropdownContainerComponent, typeof i7.AskDropdownDirective, typeof i8.AutocompleteComponent, typeof i9.PhoneDdiComponent, typeof i10.ChipsComponent, typeof i11.CheckboxComponent, typeof i12.DatePickerComponent, typeof i13.DatePickerCalendarComponent, typeof i14.SkeletonComponent, typeof i16.SpinnerDirective, typeof i17.BadgeDirective, typeof i18.AutofocusDirective, typeof i19.ScrollDirective, typeof i20.AskTooltipDirective, typeof i22.AskButtonDirective, typeof i36.AskTextButtonDirective, typeof i24.ModalBodyDirective, typeof i25.ModalHeaderDirective, typeof i26.ModalFooterDirective, typeof i27.CharacterCounterComponent, typeof i28.AccordionComponent, typeof i29.ExtendablePanelComponent, typeof i30.TableComponent, typeof i31.PaginationComponent, typeof i32.PaginatePipe, typeof i33.RichtextToolboxDirective, typeof i37.ForceBreakLinePipe, typeof i39.LoadingBarComponent, typeof i40.AskStrokedButtonDirective, typeof i41.InputDirective, typeof i42.ListItemDirective, typeof i51.IconComponent]>;
63
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AsksuiteCitrusModule, [typeof i1.ButtonComponent, typeof i2.InputComponent, typeof i3.SelectComponent, typeof i4.BoxComponent, typeof i5.AvatarComponent, typeof i6.DropdownContainerComponent, typeof i7.AskDropdownDirective, typeof i8.AutocompleteComponent, typeof i9.PhoneDdiComponent, typeof i10.ChipsComponent, typeof i11.CheckboxComponent, typeof i12.DatePickerComponent, typeof i13.DatePickerCalendarComponent, typeof i14.SkeletonComponent, typeof i15.SpinnerComponent, typeof i16.SpinnerDirective, typeof i17.BadgeDirective, typeof i18.AutofocusDirective, typeof i19.ScrollDirective, typeof i20.AskTooltipDirective, typeof i21.ToastComponent, typeof i22.AskButtonDirective, typeof i23.ModalComponent, typeof i24.ModalBodyDirective, typeof i25.ModalHeaderDirective, typeof i26.ModalFooterDirective, typeof i27.CharacterCounterComponent, typeof i28.AccordionComponent, typeof i29.ExtendablePanelComponent, typeof i30.TableComponent, typeof i31.TagComponent, typeof i32.PaginationComponent, typeof i33.PaginatePipe, typeof i34.RichtextToolboxDirective, typeof i35.RichtextUrlPromptComponent, typeof i36.RichtextToolboxComponent, typeof i37.AskTextButtonDirective, typeof i38.ForceBreakLinePipe, typeof i39.ConfirmationModalComponent, typeof i40.LoadingBarComponent, typeof i41.AskStrokedButtonDirective, typeof i42.InputDirective, typeof i43.ListItemDirective, typeof i44.ArrowTagComponent, typeof i45.TabGroupComponent, typeof i46.TabComponent], [typeof i47.CommonModule, typeof i48.FormsModule, typeof i48.ReactiveFormsModule, typeof i49.CdkOverlayOrigin, typeof i49.CdkConnectedOverlay, typeof i49.OverlayModule, typeof i50.TranslateModule, typeof i51.NgxSkeletonLoaderModule, typeof i52.MatTooltipModule, typeof i53.NgxMaskDirective, typeof i53.NgxMaskPipe, typeof i54.MatProgressBarModule, typeof i55.IconComponent], [typeof i1.ButtonComponent, typeof i2.InputComponent, typeof i3.SelectComponent, typeof i4.BoxComponent, typeof i5.AvatarComponent, typeof i6.DropdownContainerComponent, typeof i7.AskDropdownDirective, typeof i8.AutocompleteComponent, typeof i9.PhoneDdiComponent, typeof i10.ChipsComponent, typeof i11.CheckboxComponent, typeof i12.DatePickerComponent, typeof i13.DatePickerCalendarComponent, typeof i14.SkeletonComponent, typeof i16.SpinnerDirective, typeof i17.BadgeDirective, typeof i18.AutofocusDirective, typeof i19.ScrollDirective, typeof i20.AskTooltipDirective, typeof i22.AskButtonDirective, typeof i37.AskTextButtonDirective, typeof i24.ModalBodyDirective, typeof i25.ModalHeaderDirective, typeof i26.ModalFooterDirective, typeof i27.CharacterCounterComponent, typeof i28.AccordionComponent, typeof i29.ExtendablePanelComponent, typeof i30.TableComponent, typeof i32.PaginationComponent, typeof i33.PaginatePipe, typeof i34.RichtextToolboxDirective, typeof i38.ForceBreakLinePipe, typeof i40.LoadingBarComponent, typeof i41.AskStrokedButtonDirective, typeof i42.InputDirective, typeof i43.ListItemDirective, typeof i55.IconComponent, typeof i31.TagComponent, typeof i44.ArrowTagComponent, typeof i45.TabGroupComponent, typeof i46.TabComponent]>;
60
64
  static ɵinj: i0.ɵɵInjectorDeclaration<AsksuiteCitrusModule>;
61
65
  }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ArrowTagComponent {
3
+ value: string;
4
+ backgroundColor: string;
5
+ fontColor: string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArrowTagComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ArrowTagComponent, "ask-arrow-tag", never, { "value": { "alias": "value"; "required": true; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "fontColor": { "alias": "fontColor"; "required": false; }; }, {}, never, never, false, never>;
8
+ }
@@ -34,6 +34,8 @@ export declare class InputComponent implements ControlValueAccessor {
34
34
  handleInput(event: Event): void;
35
35
  handleFocus(event: FocusEvent): void;
36
36
  handleBlur(event: FocusEvent): void;
37
+ focusInput(): void;
38
+ blurInput(): void;
37
39
  registerOnChange(fn: any): void;
38
40
  registerOnTouched(fn: any): void;
39
41
  setDisabledState(isDisabled: boolean): void;
@@ -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;
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TabComponent {
3
+ value: any;
4
+ callbackFn: Function;
5
+ active: boolean;
6
+ protected onClick(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "ask-tab", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
9
+ }
@@ -0,0 +1,12 @@
1
+ import { AfterContentInit, EventEmitter, QueryList } from '@angular/core';
2
+ import { TabComponent } from "./tab/tab.component";
3
+ import * as i0 from "@angular/core";
4
+ export declare class TabGroupComponent implements AfterContentInit {
5
+ active: any;
6
+ activeChange: EventEmitter<any>;
7
+ tabs: QueryList<TabComponent>;
8
+ ngAfterContentInit(): void;
9
+ onTabChange(tab: TabComponent): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabGroupComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabGroupComponent, "ask-tab-group", never, { "active": { "alias": "active"; "required": false; }; }, { "activeChange": "activeChange"; }, ["tabs"], ["*"], false, never>;
12
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TagComponent {
3
+ prefix: string;
4
+ content: string | number | null;
5
+ suffix: string;
6
+ bold: boolean;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "ask-tag", never, { "prefix": { "alias": "prefix"; "required": false; }; "content": { "alias": "content"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "bold": { "alias": "bold"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asksuite-citrus",
3
- "version": "3.14.0-beta.9",
3
+ "version": "3.15.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.7",
6
6
  "@angular/core": "^17.3.7",
package/public-api.d.ts CHANGED
@@ -19,6 +19,10 @@ export * from './lib/components/table/table.component';
19
19
  export * from './lib/components/pagination/pagination.component';
20
20
  export * from './lib/components/loading-bar/loading-bar.component';
21
21
  export * from './lib/components/icon/icon.component';
22
+ export * from './lib/components/tag/tag.component';
23
+ export * from './lib/components/arrow-tag/arrow-tag.component';
24
+ export * from './lib/components/tab-group/tab-group.component';
25
+ export * from './lib/components/tab-group/tab/tab.component';
22
26
  export * from './lib/directives';
23
27
  export * from './lib/components/modal/directives';
24
28
  export * from './lib/services/toast/toast.service';
@@ -320,7 +320,7 @@
320
320
  --color-background-inverse-hovered: #{$color-nda-200};
321
321
  --color-background-inverse-pressed: #{$color-nda-300};
322
322
  --color-elevation-surface-sunken: #{$color-nd-100};
323
- --color-elevation-surface-default: #{$color-nd-100};
323
+ --color-elevation-surface-default: #{$color-nd-0};
324
324
  --color-elevation-surface-hovered: #{$color-nd-200};
325
325
  --color-elevation-surface-selected-ask: #{$color-a-1000};
326
326
  --color-elevation-surface-selected-flow: #{$color-f-1000};
@@ -350,4 +350,6 @@
350
350
  --color-background-accent-grey-subtler-hovered: #{$color-background-accent-grey-subtler-hovered};
351
351
  --color-background-selected-ask: #{$color-o-900};
352
352
  --color-border-subtle: #{$color-nda-1000};
353
+ --color-Y200: #{$color-Y200};
354
+ --color-background-selected-ask-default: #{$color-background-selected-ask-default};
353
355
  }
@@ -240,7 +240,7 @@ $color-y-800: #a66e0c;
240
240
  $color-y-900: #775409;
241
241
  $color-a-100: #f9e7e2;
242
242
  $color-a-1000: $color-o-1000;
243
- $color-a-200: $color-o-200;
243
+ $color-a-200: hsla(13, 84%, 87%, 1);
244
244
  $color-a-300: #fbaf99;
245
245
  $color-a-400: $color-o-400;
246
246
  $color-a-500: $color-o-500;
@@ -261,6 +261,7 @@ $color-f-900: $color-v-900;
261
261
 
262
262
  $color-light-neutral-NLA200: $color-nla-200;
263
263
  $color-light-neutral-NLA300: #13293921;
264
+ $color-Y200: #FFE5B2;
264
265
  // livechat - tokens
265
266
 
266
267
  //TODO: REMOVE DUPLICATE SEMANTICS
@@ -288,6 +289,7 @@ $color-background-disabled: $color-nla-200;
288
289
  $color-text-contrast: $color-nla-1500;
289
290
  $color-text-subtlest: $color-nla-1000;
290
291
  $color-text-disabled: #13293961;
292
+ $color-background-selected-ask-default: $color-a-200;
291
293
  $color-text-inverse-contrast: $color-nl-0;
292
294
 
293
295
  $color-icon-brand-asksuite-contrast: $color-a-600;
@@ -456,9 +458,9 @@ $color-background-inverse-pressed: $color-nla-300;
456
458
  $color-background-success-contrast-default: $color-g-600;
457
459
  $color-background-success-contrast-hovered: $color-g-700;
458
460
  $color-background-success-contrast-pressed: $color-g-800;
459
- $color-background-warning-contrast-default: $color-y-500;
460
- $color-background-warning-contrast-hovered: $color-y-600;
461
- $color-background-warning-contrast-pressed: $color-y-700;
461
+ $color-background-warning-contrast-default: $color-y-600;
462
+ $color-background-warning-contrast-hovered: $color-y-700;
463
+ $color-background-warning-contrast-pressed: $color-y-800;
462
464
 
463
465
  $color-border-accent-blue: $color-b-600;
464
466
  $color-border-accent-green: $color-g-600;
@@ -583,6 +585,8 @@ $color-texticon-danger: $color-texticon-accent-red-contrast;
583
585
  $color-texticon-info: $color-texticon-accent-blue-contrast;
584
586
  $color-texticon-success: $color-texticon-accent-green-contrast;
585
587
  $color-texticon-warning: $color-texticon-accent-yellow-contrast;
588
+ $color-texticon-black-default: $color-nla-1500;
589
+ $color-texticon-black-disabled: $color-nla-700;
586
590
  $color-skeleton: $color-nla-200;
587
591
  $color-text-link-default: $color-b-500;
588
592
  $color-texticon-inverse-default: $color-nl-0;
@@ -650,6 +654,8 @@ $color-texticon-danger: $color-r-600;
650
654
  --font-color-300: #{$grey-300};
651
655
 
652
656
  // new livechat
657
+ --color-background-inverse-hovered: #{$color-background-inverse-hovered};
658
+ --color-background-inverse-pressed: #{$color-background-inverse-pressed};
653
659
  --color-elevation-surface-default: #{$color-nl-0};
654
660
  --color-light-neutral-NLA200: #{$color-light-neutral-NLA200};
655
661
  --color-light-neutral-NLA300: #{$color-light-neutral-NLA300};
@@ -674,6 +680,7 @@ $color-texticon-danger: $color-r-600;
674
680
  --color-background-brand-asksuite-contrast-default: #{$color-background-brand-asksuite-contrast-default};
675
681
  --color-background-brand-asksuite-subtler-hovered: #{$color-background-brand-asksuite-subtler-hovered};
676
682
  --color-background-alpha-subtlest-default: #{$color-background-alpha-subtlest-default};
683
+ --color-background-alpha-subtlest-pressed: #{$color-background-alpha-subtlest-pressed};
677
684
  --color-background-inverse-default: #{$color-background-inverse-default};
678
685
  --color-background-disabled: #{$color-background-disabled};
679
686
  --color-background-skeleton: #{$color-background-disabled};
@@ -694,6 +701,8 @@ $color-texticon-danger: $color-r-600;
694
701
  --color-texticon-accent-red-bold: #{$color-texticon-accent-red-bold};
695
702
  --color-texticon-accent-green-bold: #{$color-texticon-accent-green-bold};
696
703
  --color-texticon-accent-yellow-bold: #{$color-texticon-accent-yellow-bold};
704
+ --color-texticon-black-default: #{$color-nla-1500};
705
+ --color-texticon-black-disabled: #{$color-nla-700};
697
706
  --color-background-accent-red-subtlest-default: #{$color-background-accent-red-subtlest-default};
698
707
  --color-background-accent-red-subtlest-hovered: #{$color-background-accent-red-subtlest-hovered};
699
708
  --color-background-accent-red-subtlest-pressed: #{$color-background-accent-red-subtlest-pressed};
@@ -706,7 +715,11 @@ $color-texticon-danger: $color-r-600;
706
715
  --color-background-accent-green-contrast-default: #{$color-background-accent-green-contrast-default};
707
716
  --color-background-accent-green-contrast-hovered: #{$color-background-accent-green-contrast-hovered};
708
717
  --color-background-accent-green-contrast-pressed: #{$color-background-accent-green-contrast-pressed};
718
+ --color-background-accent-grey-subtlest-hovered: #{$color-background-accent-grey-subtlest-hovered};
719
+ --color-background-accent-grey-inverse-hovered: #{$color-background-accent-grey-inverse-hovered};
720
+ --color-background-accent-grey-inverse-pressed: #{$color-background-accent-grey-inverse-pressed};
709
721
  --color-background-brand-asksuite-subtler-default: #{$color-background-brand-asksuite-subtler-default};
722
+ --color-background-warning-contrast-default: #{$color-background-warning-contrast-default};
710
723
  --color-border-matted-alpha-primary: #{$color-nl-0};
711
724
  --color-elevation-surface-primary-default: #{$color-elevation-surface-primary-default};
712
725
  --color-background-alpha-subtlest-hovered: #{$color-background-alpha-subtlest-hovered};
@@ -719,5 +732,7 @@ $color-texticon-danger: $color-r-600;
719
732
  --color-background-accent-grey-bold-default: #{$color-background-accent-grey-bold-default};
720
733
  --color-border-inverse-subtle: #{$color-border-inverse-subtle};
721
734
  --color-background-accent-grey-subtler-hovered: #{$color-background-accent-grey-subtler-hovered};
735
+ --color-Y200: #{$color-Y200};
736
+ --color-background-selected-ask-default: #{$color-background-selected-ask-default};
722
737
  }
723
738
 
@@ -3,6 +3,6 @@
3
3
 
4
4
  &:hover {
5
5
  cursor: pointer;
6
- background-color: var(--grey-50);
6
+ background-color: var(--color-background-inverse-hovered);
7
7
  }
8
8
  }
@@ -106,7 +106,7 @@ $color-a-500: $color-o-500;
106
106
  $color-a-600: $color-o-600;
107
107
  $color-a-700: $color-o-700;
108
108
  $color-a-800: $color-o-800;
109
- $color-a-900: $color-o-900;
109
+ $color-a-900: hsla(13, 56%, 27%, 1);
110
110
  $color-a-1000: $color-o-1000;
111
111
  $color-f-100: $color-v-100;
112
112
  $color-f-200: $color-v-200;
@@ -194,11 +194,11 @@ $color-nda-1400: rgba(217, 229, 242, 0.81);
194
194
  $color-nda-1500: rgba(217, 229, 242, 0.88);
195
195
  $color-nda-1600: rgba(217, 229, 242, 0.94);
196
196
  $color-nda-1700: #d9e5f2;
197
-
197
+ $color-Y200: #FFE5B2;
198
198
 
199
199
 
200
200
  //outros
201
-
201
+ $color-background-selected-ask-default: $color-a-900;
202
202
  $color-light-neutral-nla200: $color-nda-200;
203
203
  $color-light-neutral-nla300: $color-nda-0;
204
204
  $color-elevation-surface-sunken-default: $color-nd-0;