@ascentgl/ads-ui 21.89.0 → 21.90.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.89.0",
3
+ "version": "21.90.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -230,7 +230,7 @@ declare class AdsButtonModule {
230
230
 
231
231
  declare class AdsButtonContainerComponent {
232
232
  /** How buttons in the container should be placed */
233
- justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
233
+ justify: i0.InputSignal<"flex-start" | "flex-end" | "center">;
234
234
  /** The gap between elements */
235
235
  gap: i0.InputSignal<number>;
236
236
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
@@ -2564,7 +2564,7 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
2564
2564
  /** Component width. Must include units of measure: px, %, em, rem, etc. */
2565
2565
  width: i0.InputSignal<string>;
2566
2566
  /** The Chevron Icon size () */
2567
- chevronSize: i0.InputSignal<"xs" | "base">;
2567
+ chevronSize: i0.InputSignal<"base" | "xs">;
2568
2568
  /** Header padding size () */
2569
2569
  headerPadding: i0.InputSignal<string>;
2570
2570
  /** Content padding size () */
@@ -2758,7 +2758,7 @@ declare class AdsSortMenuComponent implements OnChanges, OnDestroy {
2758
2758
  /** All column sort/filter configs (all possible columns) */
2759
2759
  columnSortFilterConfigs: ColumnSortFilterConfig[];
2760
2760
  /** Current column sort states from the table */
2761
- columnSortStates: Map<string, "asc" | "desc" | null>;
2761
+ columnSortStates: Map<string, "desc" | "asc" | null>;
2762
2762
  /** Emits when sort configuration changes (order or direction) */
2763
2763
  sortChanged: EventEmitter<SortMenuChangeEvent>;
2764
2764
  /** Emits when sorts are removed for columns */
@@ -2930,7 +2930,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
2930
2930
  values: string[];
2931
2931
  }>;
2932
2932
  /** Event emitted when view mode changes between grid and list */
2933
- viewChanged: EventEmitter<"grid" | "list">;
2933
+ viewChanged: EventEmitter<"list" | "grid">;
2934
2934
  /** @ignore - Current view mode: grid or list */
2935
2935
  isListView: i0.WritableSignal<boolean>;
2936
2936
  /** @ignore - Number of list rows currently rendered (grows in batches) */
@@ -2974,7 +2974,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
2974
2974
  /** @ignore */
2975
2975
  activeColumnMenu: i0.WritableSignal<string | null>;
2976
2976
  /** @ignore */
2977
- columnSortStates: i0.WritableSignal<Map<string, "asc" | "desc" | null>>;
2977
+ columnSortStates: i0.WritableSignal<Map<string, "desc" | "asc" | null>>;
2978
2978
  /** @ignore */
2979
2979
  columnFilterStates: i0.WritableSignal<Map<string, string[]>>;
2980
2980
  /** @ignore */