@ascentgl/ads-ui 21.119.0 → 21.120.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.119.0",
3
+ "version": "21.120.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -140,7 +140,7 @@ declare class AdsNumericBadgeComponent extends AdsIconHoverComponent {
140
140
  /** provide icon name. NOTE: the icon must be registered in icon registry **/
141
141
  name: i0.InputSignal<adsIcon>;
142
142
  /** choose ads icon theme **/
143
- theme: i0.InputSignal<"iconPrimary" | "primary" | "success" | "warn" | "white">;
143
+ theme: i0.InputSignal<"primary" | "iconPrimary" | "success" | "warn" | "white">;
144
144
  /** set badge value as number **/
145
145
  value: i0.InputSignal<number>;
146
146
  /** @ignore **/
@@ -216,7 +216,7 @@ declare class AdsButtonComponent {
216
216
  /** Whether the button is a smaller version */
217
217
  size: i0.InputSignal<Size>;
218
218
  /** Sets the "type" attribute on the button */
219
- type: i0.InputSignal<"submit" | "button" | "reset">;
219
+ type: i0.InputSignal<"button" | "submit" | "reset">;
220
220
  /** Makes the button take 100% width of its container */
221
221
  fullWidth: i0.InputSignal<boolean>;
222
222
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonComponent, never>;
@@ -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>;
@@ -936,7 +936,7 @@ declare class AdsPeakOrderManagementLogoModule {
936
936
  declare class AdsArchitectureLogoComponent extends AbstractApplicationLogoComponent {
937
937
  label: string;
938
938
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsArchitectureLogoComponent, never>;
939
- static ɵcmp: i0.ɵɵComponentDeclaration<AdsArchitectureLogoComponent, "ads-peak-essentials-logo", never, {}, {}, never, never, false, never>;
939
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdsArchitectureLogoComponent, "ads-architecture-logo", never, {}, {}, never, never, false, never>;
940
940
  }
941
941
 
942
942
  declare class AdsArchitectureLogoModule {
@@ -2873,7 +2873,7 @@ declare class AdsSortMenuComponent implements OnChanges, OnDestroy {
2873
2873
  /** All column sort/filter configs (all possible columns) */
2874
2874
  columnSortFilterConfigs: ColumnSortFilterConfig[];
2875
2875
  /** Current column sort states from the table */
2876
- columnSortStates: Map<string, "asc" | "desc" | null>;
2876
+ columnSortStates: Map<string, "desc" | "asc" | null>;
2877
2877
  /** Emits when sort configuration changes (order or direction) */
2878
2878
  sortChanged: EventEmitter<SortMenuChangeEvent>;
2879
2879
  /** Emits when sorts are removed for columns */
@@ -3054,7 +3054,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
3054
3054
  values: string[];
3055
3055
  }>;
3056
3056
  /** Event emitted when view mode changes between grid and list */
3057
- viewChanged: EventEmitter<"grid" | "list">;
3057
+ viewChanged: EventEmitter<"list" | "grid">;
3058
3058
  /** @ignore - Current view mode: grid or list */
3059
3059
  isListView: i0.WritableSignal<boolean>;
3060
3060
  /** @ignore - Cached filtered row data for list view */
@@ -3094,7 +3094,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
3094
3094
  /** @ignore */
3095
3095
  activeColumnMenu: i0.WritableSignal<string | null>;
3096
3096
  /** @ignore */
3097
- columnSortStates: i0.WritableSignal<Map<string, "asc" | "desc" | null>>;
3097
+ columnSortStates: i0.WritableSignal<Map<string, "desc" | "asc" | null>>;
3098
3098
  /** @ignore */
3099
3099
  columnFilterStates: i0.WritableSignal<Map<string, string[]>>;
3100
3100
  /** @ignore */