@ascentgl/ads-ui 21.99.0 → 21.100.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
|
@@ -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<"
|
|
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>;
|
|
@@ -2574,7 +2574,7 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
|
|
|
2574
2574
|
/** Component width. Must include units of measure: px, %, em, rem, etc. */
|
|
2575
2575
|
width: i0.InputSignal<string>;
|
|
2576
2576
|
/** The Chevron Icon size () */
|
|
2577
|
-
chevronSize: i0.InputSignal<"
|
|
2577
|
+
chevronSize: i0.InputSignal<"base" | "xs">;
|
|
2578
2578
|
/** Header padding size () */
|
|
2579
2579
|
headerPadding: i0.InputSignal<string>;
|
|
2580
2580
|
/** Content padding size () */
|
|
@@ -2768,7 +2768,7 @@ declare class AdsSortMenuComponent implements OnChanges, OnDestroy {
|
|
|
2768
2768
|
/** All column sort/filter configs (all possible columns) */
|
|
2769
2769
|
columnSortFilterConfigs: ColumnSortFilterConfig[];
|
|
2770
2770
|
/** Current column sort states from the table */
|
|
2771
|
-
columnSortStates: Map<string, "
|
|
2771
|
+
columnSortStates: Map<string, "desc" | "asc" | null>;
|
|
2772
2772
|
/** Emits when sort configuration changes (order or direction) */
|
|
2773
2773
|
sortChanged: EventEmitter<SortMenuChangeEvent>;
|
|
2774
2774
|
/** Emits when sorts are removed for columns */
|
|
@@ -2944,7 +2944,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
|
|
|
2944
2944
|
values: string[];
|
|
2945
2945
|
}>;
|
|
2946
2946
|
/** Event emitted when view mode changes between grid and list */
|
|
2947
|
-
viewChanged: EventEmitter<"
|
|
2947
|
+
viewChanged: EventEmitter<"list" | "grid">;
|
|
2948
2948
|
/** @ignore - Current view mode: grid or list */
|
|
2949
2949
|
isListView: i0.WritableSignal<boolean>;
|
|
2950
2950
|
/** @ignore - Cached filtered row data for list view */
|
|
@@ -2984,7 +2984,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
|
|
|
2984
2984
|
/** @ignore */
|
|
2985
2985
|
activeColumnMenu: i0.WritableSignal<string | null>;
|
|
2986
2986
|
/** @ignore */
|
|
2987
|
-
columnSortStates: i0.WritableSignal<Map<string, "
|
|
2987
|
+
columnSortStates: i0.WritableSignal<Map<string, "desc" | "asc" | null>>;
|
|
2988
2988
|
/** @ignore */
|
|
2989
2989
|
columnFilterStates: i0.WritableSignal<Map<string, string[]>>;
|
|
2990
2990
|
/** @ignore */
|