asksuite-citrus 3.10.1-beta.1 → 3.11.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 (26) hide show
  1. package/esm2022/lib/components/accordion/extendable-panel/extendable-panel.component.mjs +2 -2
  2. package/esm2022/lib/components/autocomplete/autocomplete.component.mjs +23 -3
  3. package/esm2022/lib/components/avatar/avatar.component.mjs +2 -2
  4. package/esm2022/lib/components/box/box.component.mjs +2 -2
  5. package/esm2022/lib/components/button/button.component.mjs +2 -2
  6. package/esm2022/lib/components/character-counter/character-counter.component.mjs +2 -2
  7. package/esm2022/lib/components/checkbox/checkbox.component.mjs +2 -2
  8. package/esm2022/lib/components/chips/chips.component.mjs +2 -2
  9. package/esm2022/lib/components/date-picker/date-picker-calendar/date-picker-calendar.component.mjs +2 -2
  10. package/esm2022/lib/components/date-picker/date-picker.component.mjs +2 -2
  11. package/esm2022/lib/components/dropdown-container/dropdown-container.component.mjs +2 -2
  12. package/esm2022/lib/components/input/input.component.mjs +2 -2
  13. package/esm2022/lib/components/modal/confirmation-modal/confirmation-modal.component.mjs +2 -2
  14. package/esm2022/lib/components/modal/modal.component.mjs +2 -2
  15. package/esm2022/lib/components/pagination/pagination.component.mjs +2 -2
  16. package/esm2022/lib/components/phone-ddi/phone-ddi.component.mjs +2 -2
  17. package/esm2022/lib/components/richtext-toolbox/richtext-toolbox.component.mjs +2 -2
  18. package/esm2022/lib/components/richtext-url-prompt/richtext-url-prompt.component.mjs +2 -2
  19. package/esm2022/lib/components/select/select.component.mjs +2 -2
  20. package/esm2022/lib/components/table/table.component.mjs +2 -2
  21. package/esm2022/lib/components/toast/toast.component.mjs +2 -2
  22. package/fesm2022/asksuite-citrus.mjs +62 -42
  23. package/fesm2022/asksuite-citrus.mjs.map +1 -1
  24. package/lib/components/autocomplete/autocomplete.component.d.ts +3 -1
  25. package/package.json +1 -1
  26. package/styles/colors.scss +0 -14
@@ -47,6 +47,7 @@ export declare class AutocompleteComponent extends OverlayComponent implements A
47
47
  filterFn?: (item: string) => any[];
48
48
  displayFn?: (item: any) => string;
49
49
  multiple: boolean;
50
+ maxOptions: number;
50
51
  valueProp: string;
51
52
  options: any[];
52
53
  fixedOptions: any[];
@@ -80,6 +81,7 @@ export declare class AutocompleteComponent extends OverlayComponent implements A
80
81
  get selectedOptions(): any[];
81
82
  handleSelectAll(checked: boolean): void;
82
83
  valueChange(option: any, value: boolean): void;
84
+ shouldProcessMaxOptions(option: any, value: boolean): boolean;
83
85
  selectAllOptions(selected: boolean): void;
84
86
  handleChipAction(option: any): void;
85
87
  display(option: any): string | undefined;
@@ -93,5 +95,5 @@ export declare class AutocompleteComponent extends OverlayComponent implements A
93
95
  registerOnTouched(fn: any): void;
94
96
  setDisabledState(isDisabled: boolean): void;
95
97
  static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
96
- static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "ask-autocomplete", never, { "filterFn": { "alias": "filterFn"; "required": false; }; "displayFn": { "alias": "displayFn"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "valueProp": { "alias": "valueProp"; "required": false; }; "options": { "alias": "options"; "required": false; }; "fixedOptions": { "alias": "fixedOptions"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; "allOptionsSelectedText": { "alias": "allOptionsSelectedText"; "required": false; }; "selectAllMessage": { "alias": "selectAllMessage"; "required": false; }; "iconPropReference": { "alias": "iconPropReference"; "required": false; }; "enableRemove": { "alias": "enableRemove"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, { "itemCheck": "itemCheck"; "selectionDone": "selectionDone"; "optionRemoved": "optionRemoved"; }, never, never, false, never>;
98
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "ask-autocomplete", never, { "filterFn": { "alias": "filterFn"; "required": false; }; "displayFn": { "alias": "displayFn"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "maxOptions": { "alias": "maxOptions"; "required": false; }; "valueProp": { "alias": "valueProp"; "required": false; }; "options": { "alias": "options"; "required": false; }; "fixedOptions": { "alias": "fixedOptions"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; "allOptionsSelectedText": { "alias": "allOptionsSelectedText"; "required": false; }; "selectAllMessage": { "alias": "selectAllMessage"; "required": false; }; "iconPropReference": { "alias": "iconPropReference"; "required": false; }; "enableRemove": { "alias": "enableRemove"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, { "itemCheck": "itemCheck"; "selectionDone": "selectionDone"; "optionRemoved": "optionRemoved"; }, never, never, false, never>;
97
99
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asksuite-citrus",
3
- "version": "3.10.1-beta.1",
3
+ "version": "3.11.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.7",
6
6
  "@angular/core": "^17.3.7",
@@ -685,21 +685,7 @@ $color-texticon-danger: $color-r-600;
685
685
  --color-background-danger-contrast-default: #{$color-background-danger-contrast-default};
686
686
  --color-background-accent-green-subtle-default: #{$color-background-accent-green-subtle-default};
687
687
  --color-background-accent-grey-contrast-default: #{$color-background-accent-grey-contrast-default};
688
- --color-background-accent-grey-subtle-default: #{$color-background-accent-grey-subtle-default};
689
688
  --color-background-accent-red-subtle-default: #{$color-background-accent-red-subtle-default};
690
689
  --color-texticon-accent-red-bold: #{$color-texticon-accent-red-bold};
691
690
  --color-texticon-accent-green-bold: #{$color-texticon-accent-green-bold};
692
- --color-texticon-accent-yellow-bold: #{$color-texticon-accent-yellow-bold};
693
- --color-background-accent-red-subtlest-default: #{$color-background-accent-red-subtlest-default};
694
- --color-background-accent-red-subtlest-hovered: #{$color-background-accent-red-subtlest-hovered};
695
- --color-background-accent-red-subtlest-pressed: #{$color-background-accent-red-subtlest-pressed};
696
- --color-background-accent-green-subtlest-default: #{$color-background-accent-green-subtlest-default};
697
- --color-background-accent-green-subtlest-hovered: #{$color-background-accent-green-subtlest-hovered};
698
- --color-background-accent-green-subtlest-pressed: #{$color-background-accent-green-subtlest-pressed};
699
- --color-background-accent-yellow-subtlest-default: #{$color-background-accent-yellow-subtlest-default};
700
- --color-background-accent-yellow-subtlest-hovered: #{$color-background-accent-yellow-subtlest-hovered};
701
- --color-background-accent-yellow-subtlest-pressed: #{$color-background-accent-yellow-subtlest-pressed};
702
- --color-background-accent-green-contrast-default: #{$color-background-accent-green-contrast-default};
703
- --color-background-accent-green-contrast-hovered: #{$color-background-accent-green-contrast-hovered};
704
- --color-background-accent-green-contrast-pressed: #{$color-background-accent-green-contrast-pressed};
705
691
  }