@ascentgl/ads-ui 21.103.0 → 21.104.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ascentgl/ads-ui",
3
- "version": "21.103.0",
3
+ "version": "21.104.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -231,7 +231,7 @@ declare class AdsButtonModule {
231
231
 
232
232
  declare class AdsButtonContainerComponent {
233
233
  /** How buttons in the container should be placed */
234
- justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
234
+ justify: i0.InputSignal<"flex-start" | "flex-end" | "center">;
235
235
  /** The gap between elements */
236
236
  gap: i0.InputSignal<number>;
237
237
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
@@ -2515,6 +2515,8 @@ declare class AdsChipComponent {
2515
2515
  disabled: i0.InputSignal<boolean>;
2516
2516
  /** Show delete icon before text */
2517
2517
  deletable: i0.InputSignal<boolean>;
2518
+ /** Show pointer cursor to indicate the chip is clickable */
2519
+ clickable: i0.InputSignal<boolean>;
2518
2520
  /** Enable dropdown mode */
2519
2521
  dropdown: i0.InputSignal<boolean>;
2520
2522
  /** Dropdown options when dropdown mode is enabled */
@@ -2540,7 +2542,7 @@ declare class AdsChipComponent {
2540
2542
  /** @ignore */
2541
2543
  selectOption(option: ChipDropdownOption): void;
2542
2544
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsChipComponent, never>;
2543
- static ɵcmp: i0.ɵɵComponentDeclaration<AdsChipComponent, "ads-chip", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "showCheckedIcon": { "alias": "showCheckedIcon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "deletable": { "alias": "deletable"; "required": false; "isSignal": true; }; "dropdown": { "alias": "dropdown"; "required": false; "isSignal": true; }; "dropdownOptions": { "alias": "dropdownOptions"; "required": false; "isSignal": true; }; }, { "deleted": "deleted"; "selected": "selected"; "optionSelected": "optionSelected"; }, never, ["*"], false, never>;
2545
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdsChipComponent, "ads-chip", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "showCheckedIcon": { "alias": "showCheckedIcon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "deletable": { "alias": "deletable"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "dropdown": { "alias": "dropdown"; "required": false; "isSignal": true; }; "dropdownOptions": { "alias": "dropdownOptions"; "required": false; "isSignal": true; }; }, { "deleted": "deleted"; "selected": "selected"; "optionSelected": "optionSelected"; }, never, ["*"], false, never>;
2544
2546
  }
2545
2547
 
2546
2548
  declare class AdsChipModule {
@@ -2573,7 +2575,7 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
2573
2575
  /** Component width. Must include units of measure: px, %, em, rem, etc. */
2574
2576
  width: i0.InputSignal<string>;
2575
2577
  /** The Chevron Icon size () */
2576
- chevronSize: i0.InputSignal<"xs" | "base">;
2578
+ chevronSize: i0.InputSignal<"base" | "xs">;
2577
2579
  /** Header padding size () */
2578
2580
  headerPadding: i0.InputSignal<string>;
2579
2581
  /** Content padding size () */
@@ -2790,7 +2792,7 @@ declare class AdsSortMenuComponent implements OnChanges, OnDestroy {
2790
2792
  /** All column sort/filter configs (all possible columns) */
2791
2793
  columnSortFilterConfigs: ColumnSortFilterConfig[];
2792
2794
  /** Current column sort states from the table */
2793
- columnSortStates: Map<string, "asc" | "desc" | null>;
2795
+ columnSortStates: Map<string, "desc" | "asc" | null>;
2794
2796
  /** Emits when sort configuration changes (order or direction) */
2795
2797
  sortChanged: EventEmitter<SortMenuChangeEvent>;
2796
2798
  /** Emits when sorts are removed for columns */
@@ -3006,7 +3008,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
3006
3008
  /** @ignore */
3007
3009
  activeColumnMenu: i0.WritableSignal<string | null>;
3008
3010
  /** @ignore */
3009
- columnSortStates: i0.WritableSignal<Map<string, "asc" | "desc" | null>>;
3011
+ columnSortStates: i0.WritableSignal<Map<string, "desc" | "asc" | null>>;
3010
3012
  /** @ignore */
3011
3013
  columnFilterStates: i0.WritableSignal<Map<string, string[]>>;
3012
3014
  /** @ignore */