@proximus/lavender-angular 1.4.10-alpha.3 → 1.4.10-alpha.5
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/lavender.directive.d.ts
CHANGED
|
@@ -2199,16 +2199,35 @@ export declare class PxCellSwitch {
|
|
|
2199
2199
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PxCellSwitch, "px-cell-switch", never, { "inverted": { "alias": "inverted"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "separator": { "alias": "separator"; "required": false; }; "separatorMobile": { "alias": "separator--mobile"; "required": false; }; "separatorTablet": { "alias": "separator--tablet"; "required": false; }; "separatorLaptop": { "alias": "separator--laptop"; "required": false; }; "separatorDesktop": { "alias": "separator--desktop"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; "radiusMobile": { "alias": "radius--mobile"; "required": false; }; "radiusTablet": { "alias": "radius--tablet"; "required": false; }; "radiusLaptop": { "alias": "radius--laptop"; "required": false; }; "radiusDesktop": { "alias": "radius--desktop"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "backgroundColor": { "alias": "background-color"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "grow": { "alias": "grow"; "required": false; }; "growMobile": { "alias": "grow--mobile"; "required": false; }; "growTablet": { "alias": "grow--tablet"; "required": false; }; "growLaptop": { "alias": "grow--laptop"; "required": false; }; "growDesktop": { "alias": "grow--desktop"; "required": false; }; "shrink": { "alias": "shrink"; "required": false; }; "shrinkMobile": { "alias": "shrink--mobile"; "required": false; }; "shrinkTablet": { "alias": "shrink--tablet"; "required": false; }; "shrinkLaptop": { "alias": "shrink--laptop"; "required": false; }; "shrinkDesktop": { "alias": "shrink--desktop"; "required": false; }; "basis": { "alias": "basis"; "required": false; }; "basisMobile": { "alias": "basis--mobile"; "required": false; }; "basisTablet": { "alias": "basis--tablet"; "required": false; }; "basisLaptop": { "alias": "basis--laptop"; "required": false; }; "basisDesktop": { "alias": "basis--desktop"; "required": false; }; "alignSelf": { "alias": "align-self"; "required": false; }; "alignSelfMobile": { "alias": "align-self--mobile"; "required": false; }; "alignSelfTablet": { "alias": "align-self--tablet"; "required": false; }; "alignSelfLaptop": { "alias": "align-self--laptop"; "required": false; }; "alignSelfDesktop": { "alias": "align-self--desktop"; "required": false; }; "justifySelf": { "alias": "justify-self"; "required": false; }; "justifySelfMobile": { "alias": "justify-self--mobile"; "required": false; }; "justifySelfTablet": { "alias": "justify-self--tablet"; "required": false; }; "justifySelfLaptop": { "alias": "justify-self--laptop"; "required": false; }; "justifySelfDesktop": { "alias": "justify-self--desktop"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "hiddenMobile": { "alias": "hidden--mobile"; "required": false; }; "hiddenTablet": { "alias": "hidden--tablet"; "required": false; }; "hiddenLaptop": { "alias": "hidden--laptop"; "required": false; }; "hiddenDesktop": { "alias": "hidden--desktop"; "required": false; }; "shownSr": { "alias": "shown--sr"; "required": false; }; "shownSrMobile": { "alias": "shown--sr--mobile"; "required": false; }; "shownSrTablet": { "alias": "shown--sr--tablet"; "required": false; }; "shownSrLaptop": { "alias": "shown--sr--laptop"; "required": false; }; "shownSrDesktop": { "alias": "shown--sr--desktop"; "required": false; }; "colSpan": { "alias": "col-span"; "required": false; }; "colSpanMobile": { "alias": "col-span--mobile"; "required": false; }; "colSpanTablet": { "alias": "col-span--tablet"; "required": false; }; "colSpanLaptop": { "alias": "col-span--laptop"; "required": false; }; "colSpanDesktop": { "alias": "col-span--desktop"; "required": false; }; "order": { "alias": "order"; "required": false; }; "orderMobile": { "alias": "order--mobile"; "required": false; }; "orderTablet": { "alias": "order--tablet"; "required": false; }; "orderLaptop": { "alias": "order--laptop"; "required": false; }; "orderDesktop": { "alias": "order--desktop"; "required": false; }; "stickyTop": { "alias": "sticky-top"; "required": false; }; "stickyBottom": { "alias": "sticky-bottom"; "required": false; }; }, { "change": "change"; }, never, never, false, never>;
|
|
2200
2200
|
}
|
|
2201
2201
|
/**
|
|
2202
|
-
* @description Type-only wrapper for <px-
|
|
2202
|
+
* @description Type-only wrapper for <px-checkbox>
|
|
2203
2203
|
*/
|
|
2204
|
-
export declare class
|
|
2204
|
+
export declare class PxCheckbox {
|
|
2205
2205
|
private elementRef;
|
|
2206
|
-
set
|
|
2207
|
-
get
|
|
2208
|
-
set
|
|
2209
|
-
get
|
|
2210
|
-
set
|
|
2211
|
-
get
|
|
2206
|
+
set state(value: unknown);
|
|
2207
|
+
get state(): unknown;
|
|
2208
|
+
set variant(value: unknown);
|
|
2209
|
+
get variant(): unknown;
|
|
2210
|
+
set indeterminate(value: unknown);
|
|
2211
|
+
get indeterminate(): unknown;
|
|
2212
|
+
set inverted(value: unknown);
|
|
2213
|
+
get inverted(): unknown;
|
|
2214
|
+
set hover(value: unknown);
|
|
2215
|
+
get hover(): unknown;
|
|
2216
|
+
/** The name of the checkbox. */
|
|
2217
|
+
set name(value: string);
|
|
2218
|
+
get name(): string;
|
|
2219
|
+
/** The value of the checkbox. */
|
|
2220
|
+
set value(value: string);
|
|
2221
|
+
get value(): string;
|
|
2222
|
+
/** Whether the checkbox is checked. */
|
|
2223
|
+
set checked(value: boolean);
|
|
2224
|
+
get checked(): boolean;
|
|
2225
|
+
/** Whether the checkbox is disabled. */
|
|
2226
|
+
set disabled(value: boolean);
|
|
2227
|
+
get disabled(): boolean;
|
|
2228
|
+
/** Whether the checkbox is required. */
|
|
2229
|
+
set required(value: boolean);
|
|
2230
|
+
get required(): boolean;
|
|
2212
2231
|
set grow(value: unknown);
|
|
2213
2232
|
get grow(): unknown;
|
|
2214
2233
|
set growMobile(value: unknown);
|
|
@@ -2304,20 +2323,20 @@ export declare class PxColorOption {
|
|
|
2304
2323
|
set stickyBottom(value: unknown);
|
|
2305
2324
|
get stickyBottom(): unknown;
|
|
2306
2325
|
constructor(elementRef: ElementRef);
|
|
2307
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
2308
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
2326
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PxCheckbox, never>;
|
|
2327
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PxCheckbox, "px-checkbox", never, { "state": { "alias": "state"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "hover": { "alias": "hover"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "grow": { "alias": "grow"; "required": false; }; "growMobile": { "alias": "grow--mobile"; "required": false; }; "growTablet": { "alias": "grow--tablet"; "required": false; }; "growLaptop": { "alias": "grow--laptop"; "required": false; }; "growDesktop": { "alias": "grow--desktop"; "required": false; }; "shrink": { "alias": "shrink"; "required": false; }; "shrinkMobile": { "alias": "shrink--mobile"; "required": false; }; "shrinkTablet": { "alias": "shrink--tablet"; "required": false; }; "shrinkLaptop": { "alias": "shrink--laptop"; "required": false; }; "shrinkDesktop": { "alias": "shrink--desktop"; "required": false; }; "basis": { "alias": "basis"; "required": false; }; "basisMobile": { "alias": "basis--mobile"; "required": false; }; "basisTablet": { "alias": "basis--tablet"; "required": false; }; "basisLaptop": { "alias": "basis--laptop"; "required": false; }; "basisDesktop": { "alias": "basis--desktop"; "required": false; }; "alignSelf": { "alias": "align-self"; "required": false; }; "alignSelfMobile": { "alias": "align-self--mobile"; "required": false; }; "alignSelfTablet": { "alias": "align-self--tablet"; "required": false; }; "alignSelfLaptop": { "alias": "align-self--laptop"; "required": false; }; "alignSelfDesktop": { "alias": "align-self--desktop"; "required": false; }; "justifySelf": { "alias": "justify-self"; "required": false; }; "justifySelfMobile": { "alias": "justify-self--mobile"; "required": false; }; "justifySelfTablet": { "alias": "justify-self--tablet"; "required": false; }; "justifySelfLaptop": { "alias": "justify-self--laptop"; "required": false; }; "justifySelfDesktop": { "alias": "justify-self--desktop"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "hiddenMobile": { "alias": "hidden--mobile"; "required": false; }; "hiddenTablet": { "alias": "hidden--tablet"; "required": false; }; "hiddenLaptop": { "alias": "hidden--laptop"; "required": false; }; "hiddenDesktop": { "alias": "hidden--desktop"; "required": false; }; "shownSr": { "alias": "shown--sr"; "required": false; }; "shownSrMobile": { "alias": "shown--sr--mobile"; "required": false; }; "shownSrTablet": { "alias": "shown--sr--tablet"; "required": false; }; "shownSrLaptop": { "alias": "shown--sr--laptop"; "required": false; }; "shownSrDesktop": { "alias": "shown--sr--desktop"; "required": false; }; "colSpan": { "alias": "col-span"; "required": false; }; "colSpanMobile": { "alias": "col-span--mobile"; "required": false; }; "colSpanTablet": { "alias": "col-span--tablet"; "required": false; }; "colSpanLaptop": { "alias": "col-span--laptop"; "required": false; }; "colSpanDesktop": { "alias": "col-span--desktop"; "required": false; }; "order": { "alias": "order"; "required": false; }; "orderMobile": { "alias": "order--mobile"; "required": false; }; "orderTablet": { "alias": "order--tablet"; "required": false; }; "orderLaptop": { "alias": "order--laptop"; "required": false; }; "orderDesktop": { "alias": "order--desktop"; "required": false; }; "stickyTop": { "alias": "sticky-top"; "required": false; }; "stickyBottom": { "alias": "sticky-bottom"; "required": false; }; }, {}, never, never, false, never>;
|
|
2309
2328
|
}
|
|
2310
2329
|
/**
|
|
2311
|
-
* @description Type-only wrapper for <px-color-option
|
|
2330
|
+
* @description Type-only wrapper for <px-color-option>
|
|
2312
2331
|
*/
|
|
2313
|
-
export declare class
|
|
2332
|
+
export declare class PxColorOption {
|
|
2314
2333
|
private elementRef;
|
|
2334
|
+
set size(value: unknown);
|
|
2335
|
+
get size(): unknown;
|
|
2315
2336
|
set deviceColor(value: unknown);
|
|
2316
2337
|
get deviceColor(): unknown;
|
|
2317
2338
|
set unavailable(value: unknown);
|
|
2318
2339
|
get unavailable(): unknown;
|
|
2319
|
-
set selected(value: unknown);
|
|
2320
|
-
get selected(): unknown;
|
|
2321
2340
|
set grow(value: unknown);
|
|
2322
2341
|
get grow(): unknown;
|
|
2323
2342
|
set growMobile(value: unknown);
|
|
@@ -2412,41 +2431,21 @@ export declare class PxColorOptionLink {
|
|
|
2412
2431
|
get stickyTop(): unknown;
|
|
2413
2432
|
set stickyBottom(value: unknown);
|
|
2414
2433
|
get stickyBottom(): unknown;
|
|
2415
|
-
CLICK_EVENT: EventEmitter<CustomEvent<any>>;
|
|
2416
2434
|
constructor(elementRef: ElementRef);
|
|
2417
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
2418
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
2435
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PxColorOption, never>;
|
|
2436
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PxColorOption, "px-color-option", never, { "size": { "alias": "size"; "required": false; }; "deviceColor": { "alias": "device-color"; "required": false; }; "unavailable": { "alias": "unavailable"; "required": false; }; "grow": { "alias": "grow"; "required": false; }; "growMobile": { "alias": "grow--mobile"; "required": false; }; "growTablet": { "alias": "grow--tablet"; "required": false; }; "growLaptop": { "alias": "grow--laptop"; "required": false; }; "growDesktop": { "alias": "grow--desktop"; "required": false; }; "shrink": { "alias": "shrink"; "required": false; }; "shrinkMobile": { "alias": "shrink--mobile"; "required": false; }; "shrinkTablet": { "alias": "shrink--tablet"; "required": false; }; "shrinkLaptop": { "alias": "shrink--laptop"; "required": false; }; "shrinkDesktop": { "alias": "shrink--desktop"; "required": false; }; "basis": { "alias": "basis"; "required": false; }; "basisMobile": { "alias": "basis--mobile"; "required": false; }; "basisTablet": { "alias": "basis--tablet"; "required": false; }; "basisLaptop": { "alias": "basis--laptop"; "required": false; }; "basisDesktop": { "alias": "basis--desktop"; "required": false; }; "alignSelf": { "alias": "align-self"; "required": false; }; "alignSelfMobile": { "alias": "align-self--mobile"; "required": false; }; "alignSelfTablet": { "alias": "align-self--tablet"; "required": false; }; "alignSelfLaptop": { "alias": "align-self--laptop"; "required": false; }; "alignSelfDesktop": { "alias": "align-self--desktop"; "required": false; }; "justifySelf": { "alias": "justify-self"; "required": false; }; "justifySelfMobile": { "alias": "justify-self--mobile"; "required": false; }; "justifySelfTablet": { "alias": "justify-self--tablet"; "required": false; }; "justifySelfLaptop": { "alias": "justify-self--laptop"; "required": false; }; "justifySelfDesktop": { "alias": "justify-self--desktop"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "hiddenMobile": { "alias": "hidden--mobile"; "required": false; }; "hiddenTablet": { "alias": "hidden--tablet"; "required": false; }; "hiddenLaptop": { "alias": "hidden--laptop"; "required": false; }; "hiddenDesktop": { "alias": "hidden--desktop"; "required": false; }; "shownSr": { "alias": "shown--sr"; "required": false; }; "shownSrMobile": { "alias": "shown--sr--mobile"; "required": false; }; "shownSrTablet": { "alias": "shown--sr--tablet"; "required": false; }; "shownSrLaptop": { "alias": "shown--sr--laptop"; "required": false; }; "shownSrDesktop": { "alias": "shown--sr--desktop"; "required": false; }; "colSpan": { "alias": "col-span"; "required": false; }; "colSpanMobile": { "alias": "col-span--mobile"; "required": false; }; "colSpanTablet": { "alias": "col-span--tablet"; "required": false; }; "colSpanLaptop": { "alias": "col-span--laptop"; "required": false; }; "colSpanDesktop": { "alias": "col-span--desktop"; "required": false; }; "order": { "alias": "order"; "required": false; }; "orderMobile": { "alias": "order--mobile"; "required": false; }; "orderTablet": { "alias": "order--tablet"; "required": false; }; "orderLaptop": { "alias": "order--laptop"; "required": false; }; "orderDesktop": { "alias": "order--desktop"; "required": false; }; "stickyTop": { "alias": "sticky-top"; "required": false; }; "stickyBottom": { "alias": "sticky-bottom"; "required": false; }; }, {}, never, never, false, never>;
|
|
2419
2437
|
}
|
|
2420
2438
|
/**
|
|
2421
|
-
* @description Type-only wrapper for <px-
|
|
2439
|
+
* @description Type-only wrapper for <px-color-option-link>
|
|
2422
2440
|
*/
|
|
2423
|
-
export declare class
|
|
2441
|
+
export declare class PxColorOptionLink {
|
|
2424
2442
|
private elementRef;
|
|
2425
|
-
set
|
|
2426
|
-
get
|
|
2427
|
-
set
|
|
2428
|
-
get
|
|
2429
|
-
set
|
|
2430
|
-
get
|
|
2431
|
-
set inverted(value: unknown);
|
|
2432
|
-
get inverted(): unknown;
|
|
2433
|
-
set hover(value: unknown);
|
|
2434
|
-
get hover(): unknown;
|
|
2435
|
-
/** The name of the checkbox. */
|
|
2436
|
-
set name(value: string);
|
|
2437
|
-
get name(): string;
|
|
2438
|
-
/** The value of the checkbox. */
|
|
2439
|
-
set value(value: string);
|
|
2440
|
-
get value(): string;
|
|
2441
|
-
/** Whether the checkbox is checked. */
|
|
2442
|
-
set checked(value: boolean);
|
|
2443
|
-
get checked(): boolean;
|
|
2444
|
-
/** Whether the checkbox is disabled. */
|
|
2445
|
-
set disabled(value: boolean);
|
|
2446
|
-
get disabled(): boolean;
|
|
2447
|
-
/** Whether the checkbox is required. */
|
|
2448
|
-
set required(value: boolean);
|
|
2449
|
-
get required(): boolean;
|
|
2443
|
+
set deviceColor(value: unknown);
|
|
2444
|
+
get deviceColor(): unknown;
|
|
2445
|
+
set unavailable(value: unknown);
|
|
2446
|
+
get unavailable(): unknown;
|
|
2447
|
+
set selected(value: unknown);
|
|
2448
|
+
get selected(): unknown;
|
|
2450
2449
|
set grow(value: unknown);
|
|
2451
2450
|
get grow(): unknown;
|
|
2452
2451
|
set growMobile(value: unknown);
|
|
@@ -2541,9 +2540,10 @@ export declare class PxCheckbox {
|
|
|
2541
2540
|
get stickyTop(): unknown;
|
|
2542
2541
|
set stickyBottom(value: unknown);
|
|
2543
2542
|
get stickyBottom(): unknown;
|
|
2543
|
+
CLICK_EVENT: EventEmitter<CustomEvent<any>>;
|
|
2544
2544
|
constructor(elementRef: ElementRef);
|
|
2545
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
2546
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
2545
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PxColorOptionLink, never>;
|
|
2546
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PxColorOptionLink, "px-color-option-link", never, { "deviceColor": { "alias": "device-color"; "required": false; }; "unavailable": { "alias": "unavailable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "grow": { "alias": "grow"; "required": false; }; "growMobile": { "alias": "grow--mobile"; "required": false; }; "growTablet": { "alias": "grow--tablet"; "required": false; }; "growLaptop": { "alias": "grow--laptop"; "required": false; }; "growDesktop": { "alias": "grow--desktop"; "required": false; }; "shrink": { "alias": "shrink"; "required": false; }; "shrinkMobile": { "alias": "shrink--mobile"; "required": false; }; "shrinkTablet": { "alias": "shrink--tablet"; "required": false; }; "shrinkLaptop": { "alias": "shrink--laptop"; "required": false; }; "shrinkDesktop": { "alias": "shrink--desktop"; "required": false; }; "basis": { "alias": "basis"; "required": false; }; "basisMobile": { "alias": "basis--mobile"; "required": false; }; "basisTablet": { "alias": "basis--tablet"; "required": false; }; "basisLaptop": { "alias": "basis--laptop"; "required": false; }; "basisDesktop": { "alias": "basis--desktop"; "required": false; }; "alignSelf": { "alias": "align-self"; "required": false; }; "alignSelfMobile": { "alias": "align-self--mobile"; "required": false; }; "alignSelfTablet": { "alias": "align-self--tablet"; "required": false; }; "alignSelfLaptop": { "alias": "align-self--laptop"; "required": false; }; "alignSelfDesktop": { "alias": "align-self--desktop"; "required": false; }; "justifySelf": { "alias": "justify-self"; "required": false; }; "justifySelfMobile": { "alias": "justify-self--mobile"; "required": false; }; "justifySelfTablet": { "alias": "justify-self--tablet"; "required": false; }; "justifySelfLaptop": { "alias": "justify-self--laptop"; "required": false; }; "justifySelfDesktop": { "alias": "justify-self--desktop"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "hiddenMobile": { "alias": "hidden--mobile"; "required": false; }; "hiddenTablet": { "alias": "hidden--tablet"; "required": false; }; "hiddenLaptop": { "alias": "hidden--laptop"; "required": false; }; "hiddenDesktop": { "alias": "hidden--desktop"; "required": false; }; "shownSr": { "alias": "shown--sr"; "required": false; }; "shownSrMobile": { "alias": "shown--sr--mobile"; "required": false; }; "shownSrTablet": { "alias": "shown--sr--tablet"; "required": false; }; "shownSrLaptop": { "alias": "shown--sr--laptop"; "required": false; }; "shownSrDesktop": { "alias": "shown--sr--desktop"; "required": false; }; "colSpan": { "alias": "col-span"; "required": false; }; "colSpanMobile": { "alias": "col-span--mobile"; "required": false; }; "colSpanTablet": { "alias": "col-span--tablet"; "required": false; }; "colSpanLaptop": { "alias": "col-span--laptop"; "required": false; }; "colSpanDesktop": { "alias": "col-span--desktop"; "required": false; }; "order": { "alias": "order"; "required": false; }; "orderMobile": { "alias": "order--mobile"; "required": false; }; "orderTablet": { "alias": "order--tablet"; "required": false; }; "orderLaptop": { "alias": "order--laptop"; "required": false; }; "orderDesktop": { "alias": "order--desktop"; "required": false; }; "stickyTop": { "alias": "sticky-top"; "required": false; }; "stickyBottom": { "alias": "sticky-bottom"; "required": false; }; }, { "CLICK_EVENT": "CLICK_EVENT"; }, never, never, false, never>;
|
|
2547
2547
|
}
|
|
2548
2548
|
/**
|
|
2549
2549
|
* @description Type-only wrapper for <px-container>
|
|
@@ -8957,6 +8957,6 @@ export declare class PxScarletThemeProvider {
|
|
|
8957
8957
|
}
|
|
8958
8958
|
export declare class Lavender {
|
|
8959
8959
|
static ɵfac: i0.ɵɵFactoryDeclaration<Lavender, never>;
|
|
8960
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<Lavender, [typeof PxAccordion, typeof PxAgGridTable, typeof PxAgGridTableThButton, typeof PxAgGridTableThContent, typeof PxBanner, typeof PxBreadcrumbItem, typeof PxBreadcrumb, typeof PxButton, typeof PxButtonWrapper, typeof PxButtonIcon, typeof PxCard, typeof PxAppleseed, typeof PxCarousel, typeof PxCarouselItem, typeof PxCell, typeof PxCellButton, typeof PxCellCheckbox, typeof PxCellLink, typeof PxCellRadio, typeof PxCellSwitch, typeof
|
|
8960
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<Lavender, [typeof PxAccordion, typeof PxAgGridTable, typeof PxAgGridTableThButton, typeof PxAgGridTableThContent, typeof PxBanner, typeof PxBreadcrumbItem, typeof PxBreadcrumb, typeof PxButton, typeof PxButtonWrapper, typeof PxButtonIcon, typeof PxCard, typeof PxAppleseed, typeof PxCarousel, typeof PxCarouselItem, typeof PxCell, typeof PxCellButton, typeof PxCellCheckbox, typeof PxCellLink, typeof PxCellRadio, typeof PxCellSwitch, typeof PxCheckbox, typeof PxColorOption, typeof PxColorOptionLink, typeof PxContainer, typeof PxContentHeader, typeof PxDrawer, typeof PxDropdown, typeof PxFieldset, typeof PxGrid, typeof PxH1, typeof PxH2, typeof PxH3, typeof PxH4, typeof PxH5, typeof PxH6, typeof PxHeadingGroup, typeof PxImg, typeof PxPicture, typeof PxInput, typeof PxSelect, typeof PxTextarea, typeof PxFileupload, typeof PxPage, typeof PxSpacer, typeof PxStack, typeof PxVstack, typeof PxHstack, typeof PxA, typeof PxAWrapper, typeof PxList, typeof PxListItem, typeof PxModal, typeof PxP, typeof PxPillar, typeof PxCardActions, typeof PxCardContainer, typeof PxCardHeading, typeof PxPrice, typeof PxRadio, typeof PxRadioBase, typeof PxRadioGroup, typeof PxRibbon, typeof PxSection, typeof PxSelectableBox, typeof PxSelectableBoxCheckbox, typeof PxSelectableBoxRadio, typeof PxSeparator, typeof PxSkeleton, typeof PxSpan, typeof PxSpinner, typeof PxStatus, typeof PxStatusCard, typeof PxStickyContainer, typeof PxThemeSwitcher, typeof PxSwitch, typeof PxTable, typeof PxTbody, typeof PxTd, typeof PxTh, typeof PxThead, typeof PxTr, typeof PxTabs, typeof PxTab, typeof PxTabPanel, typeof PxTag, typeof PxTile, typeof PxTileButton, typeof PxTileCheckbox, typeof PxTileLink, typeof PxTileRadio, typeof PxTileSwitch, typeof PxTimeline, typeof PxTimelineItem, typeof PxTypography, typeof PxPatch, typeof PxIcon, typeof PxIconSet, typeof PxThemeProvider, typeof PxProximusThemeProvider, typeof PxScarletThemeProvider], never, [typeof PxAccordion, typeof PxAgGridTable, typeof PxAgGridTableThButton, typeof PxAgGridTableThContent, typeof PxBanner, typeof PxBreadcrumbItem, typeof PxBreadcrumb, typeof PxButton, typeof PxButtonWrapper, typeof PxButtonIcon, typeof PxCard, typeof PxAppleseed, typeof PxCarousel, typeof PxCarouselItem, typeof PxCell, typeof PxCellButton, typeof PxCellCheckbox, typeof PxCellLink, typeof PxCellRadio, typeof PxCellSwitch, typeof PxCheckbox, typeof PxColorOption, typeof PxColorOptionLink, typeof PxContainer, typeof PxContentHeader, typeof PxDrawer, typeof PxDropdown, typeof PxFieldset, typeof PxGrid, typeof PxH1, typeof PxH2, typeof PxH3, typeof PxH4, typeof PxH5, typeof PxH6, typeof PxHeadingGroup, typeof PxImg, typeof PxPicture, typeof PxInput, typeof PxSelect, typeof PxTextarea, typeof PxFileupload, typeof PxPage, typeof PxSpacer, typeof PxStack, typeof PxVstack, typeof PxHstack, typeof PxA, typeof PxAWrapper, typeof PxList, typeof PxListItem, typeof PxModal, typeof PxP, typeof PxPillar, typeof PxCardActions, typeof PxCardContainer, typeof PxCardHeading, typeof PxPrice, typeof PxRadio, typeof PxRadioBase, typeof PxRadioGroup, typeof PxRibbon, typeof PxSection, typeof PxSelectableBox, typeof PxSelectableBoxCheckbox, typeof PxSelectableBoxRadio, typeof PxSeparator, typeof PxSkeleton, typeof PxSpan, typeof PxSpinner, typeof PxStatus, typeof PxStatusCard, typeof PxStickyContainer, typeof PxThemeSwitcher, typeof PxSwitch, typeof PxTable, typeof PxTbody, typeof PxTd, typeof PxTh, typeof PxThead, typeof PxTr, typeof PxTabs, typeof PxTab, typeof PxTabPanel, typeof PxTag, typeof PxTile, typeof PxTileButton, typeof PxTileCheckbox, typeof PxTileLink, typeof PxTileRadio, typeof PxTileSwitch, typeof PxTimeline, typeof PxTimelineItem, typeof PxTypography, typeof PxPatch, typeof PxIcon, typeof PxIconSet, typeof PxThemeProvider, typeof PxProximusThemeProvider, typeof PxScarletThemeProvider]>;
|
|
8961
8961
|
static ɵinj: i0.ɵɵInjectorDeclaration<Lavender>;
|
|
8962
8962
|
}
|