@ascentgl/ads-ui 20.30.0 → 20.31.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/fesm2022/ascentgl-ads-ui.mjs +34 -35
- package/fesm2022/ascentgl-ads-ui.mjs.map +1 -1
- package/index.d.ts +6 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -135,7 +135,7 @@ declare class AdsNumericBadgeComponent extends AdsIconHoverComponent {
|
|
|
135
135
|
/** provide icon name. NOTE: the icon must be registered in icon registry **/
|
|
136
136
|
name: i0.InputSignal<adsIcon>;
|
|
137
137
|
/** choose ads icon theme **/
|
|
138
|
-
theme: i0.InputSignal<"
|
|
138
|
+
theme: i0.InputSignal<"primary" | "iconPrimary" | "success" | "warn" | "white">;
|
|
139
139
|
/** set badge value as number **/
|
|
140
140
|
value: i0.InputSignal<number>;
|
|
141
141
|
/** @ignore **/
|
|
@@ -224,7 +224,7 @@ declare class AdsButtonModule {
|
|
|
224
224
|
|
|
225
225
|
declare class AdsButtonContainerComponent {
|
|
226
226
|
/** How buttons in the container should be placed */
|
|
227
|
-
justify: i0.InputSignal<"
|
|
227
|
+
justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
|
|
228
228
|
/** The gap between elements */
|
|
229
229
|
gap: i0.InputSignal<number>;
|
|
230
230
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
|
|
@@ -2327,7 +2327,7 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
|
|
|
2327
2327
|
/** Component width. Must include units of measure: px, %, em, rem, etc. */
|
|
2328
2328
|
width: i0.InputSignal<string>;
|
|
2329
2329
|
/** The Chevron Icon size () */
|
|
2330
|
-
chevronSize: i0.InputSignal<"
|
|
2330
|
+
chevronSize: i0.InputSignal<"xs" | "base">;
|
|
2331
2331
|
/** Header padding size size () */
|
|
2332
2332
|
headerPadding: i0.InputSignal<string>;
|
|
2333
2333
|
/** Content padding size size () */
|
|
@@ -2372,7 +2372,7 @@ declare class AdsTableComponent implements AfterViewInit, OnDestroy {
|
|
|
2372
2372
|
/** The grid's height */
|
|
2373
2373
|
height: string;
|
|
2374
2374
|
/** Custom header template for the table header actions */
|
|
2375
|
-
headerTemplate?: TemplateRef<
|
|
2375
|
+
headerTemplate?: TemplateRef<unknown>;
|
|
2376
2376
|
/** The grid options for ag-Grid */
|
|
2377
2377
|
gridOptions?: GridOptions;
|
|
2378
2378
|
/** The data to be displayed in the grid */
|
|
@@ -2385,9 +2385,9 @@ declare class AdsTableComponent implements AfterViewInit, OnDestroy {
|
|
|
2385
2385
|
defaultColDef: ColDef<GENERIC_COLLECTION>;
|
|
2386
2386
|
/** Loading data status */
|
|
2387
2387
|
loading: boolean;
|
|
2388
|
-
/**
|
|
2388
|
+
/** Column data by breakPoints */
|
|
2389
2389
|
columnDefsByBreakpoint: Record<TableBreakpoint, ColDef[]>;
|
|
2390
|
-
/** Show/hide the header with column visibility button */
|
|
2390
|
+
/** Show/hide the header with the column visibility button */
|
|
2391
2391
|
showHeaderActions: boolean;
|
|
2392
2392
|
/** Event emitted when all filters are cleared */
|
|
2393
2393
|
filtersCleared: EventEmitter<void>;
|