@ascentgl/ads-ui 20.30.0 → 20.32.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 +39 -40
- package/fesm2022/ascentgl-ads-ui.mjs.map +1 -1
- package/index.d.ts +5 -5
- 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 **/
|
|
@@ -870,7 +870,7 @@ declare class AdsGenericLogoComponent extends AbstractApplicationLogoComponent {
|
|
|
870
870
|
|
|
871
871
|
declare class AdsGenericLogoModule {
|
|
872
872
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsGenericLogoModule, never>;
|
|
873
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsGenericLogoModule, [typeof AdsGenericLogoComponent], [typeof i2.CommonModule], [typeof AdsGenericLogoComponent]>;
|
|
873
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsGenericLogoModule, [typeof AdsGenericLogoComponent], [typeof i2.CommonModule, typeof AdsAscentLogoModule], [typeof AdsGenericLogoComponent]>;
|
|
874
874
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsGenericLogoModule>;
|
|
875
875
|
}
|
|
876
876
|
|
|
@@ -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>;
|