@ascentgl/ads-ui 22.0.1 → 22.0.3
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
|
@@ -96,7 +96,7 @@ declare class AdsNumericBadgeComponent extends AdsIconHoverComponent {
|
|
|
96
96
|
/** provide icon name. NOTE: the icon must be registered in icon registry **/
|
|
97
97
|
name: i0.InputSignal<adsIcon>;
|
|
98
98
|
/** choose ads icon theme **/
|
|
99
|
-
theme: i0.InputSignal<"
|
|
99
|
+
theme: i0.InputSignal<"primary" | "iconPrimary" | "success" | "warn" | "white">;
|
|
100
100
|
/** set badge value as number **/
|
|
101
101
|
value: i0.InputSignal<number>;
|
|
102
102
|
/** @ignore **/
|
|
@@ -159,7 +159,7 @@ declare class AdsButtonComponent {
|
|
|
159
159
|
/** Whether the button is a smaller version */
|
|
160
160
|
size: i0.InputSignal<Size>;
|
|
161
161
|
/** Sets the "type" attribute on the button */
|
|
162
|
-
type: i0.InputSignal<"
|
|
162
|
+
type: i0.InputSignal<"button" | "submit" | "reset">;
|
|
163
163
|
/** Makes the button take 100% width of its container */
|
|
164
164
|
fullWidth: i0.InputSignal<boolean>;
|
|
165
165
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonComponent, never>;
|
|
@@ -724,7 +724,7 @@ declare class AdsAscentLogoComponent extends AbstractLogoComponent implements Af
|
|
|
724
724
|
/**
|
|
725
725
|
* Logo size
|
|
726
726
|
*/
|
|
727
|
-
size: i0.InputSignal<"
|
|
727
|
+
size: i0.InputSignal<"small" | "large">;
|
|
728
728
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsAscentLogoComponent, never>;
|
|
729
729
|
static ɵcmp: i0.ɵɵComponentDeclaration<AdsAscentLogoComponent, "ads-ascent-logo", never, { "invertTheme": { "alias": "invertTheme"; "required": false; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
730
730
|
}
|
|
@@ -2261,7 +2261,7 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
|
|
|
2261
2261
|
/** Component width. Must include units of measure: px, %, em, rem, etc. */
|
|
2262
2262
|
width: i0.InputSignal<string>;
|
|
2263
2263
|
/** The Chevron Icon size () */
|
|
2264
|
-
chevronSize: i0.InputSignal<"
|
|
2264
|
+
chevronSize: i0.InputSignal<"xs" | "base">;
|
|
2265
2265
|
/** Header padding size () */
|
|
2266
2266
|
headerPadding: i0.InputSignal<string>;
|
|
2267
2267
|
/** Content padding size () */
|
|
@@ -2520,7 +2520,7 @@ declare class AdsSortMenuComponent implements OnChanges, OnDestroy {
|
|
|
2520
2520
|
/** All column sort/filter configs (all possible columns) */
|
|
2521
2521
|
columnSortFilterConfigs: ColumnSortFilterConfig[];
|
|
2522
2522
|
/** Current column sort states from the table */
|
|
2523
|
-
columnSortStates: Map<string, "
|
|
2523
|
+
columnSortStates: Map<string, "asc" | "desc" | null>;
|
|
2524
2524
|
/** Emits when sort configuration changes (order or direction) */
|
|
2525
2525
|
sortChanged: EventEmitter<SortMenuChangeEvent>;
|
|
2526
2526
|
/** Emits when sorts are removed for columns */
|
|
@@ -2637,7 +2637,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
|
|
|
2637
2637
|
values: string[];
|
|
2638
2638
|
}>;
|
|
2639
2639
|
/** Event emitted when view mode changes between grid and list */
|
|
2640
|
-
viewChanged: EventEmitter<"
|
|
2640
|
+
viewChanged: EventEmitter<"grid" | "list">;
|
|
2641
2641
|
/** @ignore - Current view mode: grid or list */
|
|
2642
2642
|
isListView: i0.WritableSignal<boolean>;
|
|
2643
2643
|
/** @ignore - Cached filtered row data for list view */
|
|
@@ -2677,7 +2677,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
|
|
|
2677
2677
|
/** @ignore */
|
|
2678
2678
|
activeColumnMenu: i0.WritableSignal<string | null>;
|
|
2679
2679
|
/** @ignore */
|
|
2680
|
-
columnSortStates: i0.WritableSignal<Map<string, "
|
|
2680
|
+
columnSortStates: i0.WritableSignal<Map<string, "asc" | "desc" | null>>;
|
|
2681
2681
|
/** @ignore */
|
|
2682
2682
|
columnFilterStates: i0.WritableSignal<Map<string, string[]>>;
|
|
2683
2683
|
/** @ignore */
|
|
@@ -3441,7 +3441,7 @@ declare class AdsHorizontalStepperComponent {
|
|
|
3441
3441
|
/**
|
|
3442
3442
|
* Stepper size
|
|
3443
3443
|
*/
|
|
3444
|
-
size: i0.InputSignal<"
|
|
3444
|
+
size: i0.InputSignal<"xs" | "base">;
|
|
3445
3445
|
/** @ignore */
|
|
3446
3446
|
protected isBaseSize: i0.Signal<boolean>;
|
|
3447
3447
|
/** Event emitted when a step is clicked */
|