@proximus/lavender-angular 1.4.15-alpha.13 → 1.4.15-alpha.15
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/CHANGELOG.md +8 -0
- package/fesm2022/proximus-lavender-angular.mjs +347 -320
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +114 -108
- package/package.json +1 -1
|
@@ -6352,6 +6352,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
6352
6352
|
type: Input,
|
|
6353
6353
|
args: ['word-break-all--desktop']
|
|
6354
6354
|
}] } });
|
|
6355
|
+
/**
|
|
6356
|
+
* @description Type-only wrapper for <px-appleseed>
|
|
6357
|
+
*/
|
|
6358
|
+
class PxAppleseed {
|
|
6359
|
+
elementRef;
|
|
6360
|
+
set amount(value) {
|
|
6361
|
+
this.elementRef.nativeElement['amount'] = value;
|
|
6362
|
+
}
|
|
6363
|
+
get amount() {
|
|
6364
|
+
return this.elementRef.nativeElement['amount'];
|
|
6365
|
+
}
|
|
6366
|
+
set active(value) {
|
|
6367
|
+
this.elementRef.nativeElement['active'] = value;
|
|
6368
|
+
}
|
|
6369
|
+
get active() {
|
|
6370
|
+
return this.elementRef.nativeElement['active'];
|
|
6371
|
+
}
|
|
6372
|
+
constructor(elementRef) {
|
|
6373
|
+
this.elementRef = elementRef;
|
|
6374
|
+
}
|
|
6375
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6376
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxAppleseed, isStandalone: true, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
6377
|
+
}
|
|
6378
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
6379
|
+
type: Directive,
|
|
6380
|
+
args: [{
|
|
6381
|
+
selector: 'px-appleseed',
|
|
6382
|
+
standalone: true,
|
|
6383
|
+
}]
|
|
6384
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
6385
|
+
type: Input
|
|
6386
|
+
}], active: [{
|
|
6387
|
+
type: Input
|
|
6388
|
+
}] } });
|
|
6389
|
+
/**
|
|
6390
|
+
* @description Type-only wrapper for <px-carousel>
|
|
6391
|
+
*/
|
|
6392
|
+
class PxCarousel {
|
|
6393
|
+
elementRef;
|
|
6394
|
+
constructor(elementRef) {
|
|
6395
|
+
this.elementRef = elementRef;
|
|
6396
|
+
}
|
|
6397
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6398
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarousel, isStandalone: true, selector: "px-carousel", ngImport: i0 });
|
|
6399
|
+
}
|
|
6400
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, decorators: [{
|
|
6401
|
+
type: Directive,
|
|
6402
|
+
args: [{
|
|
6403
|
+
selector: 'px-carousel',
|
|
6404
|
+
standalone: true,
|
|
6405
|
+
}]
|
|
6406
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
6407
|
+
/**
|
|
6408
|
+
* @description Type-only wrapper for <px-carousel-item>
|
|
6409
|
+
*/
|
|
6410
|
+
class PxCarouselItem {
|
|
6411
|
+
elementRef;
|
|
6412
|
+
CAROUSEL_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
6413
|
+
constructor(elementRef) {
|
|
6414
|
+
this.elementRef = elementRef;
|
|
6415
|
+
this.elementRef.nativeElement.addEventListener('CAROUSEL_ITEM_CONNECTED_EVENT', (e) => {
|
|
6416
|
+
this.CAROUSEL_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
6417
|
+
});
|
|
6418
|
+
}
|
|
6419
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6420
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarouselItem, isStandalone: true, selector: "px-carousel-item", outputs: { CAROUSEL_ITEM_CONNECTED_EVENT: "CAROUSEL_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
6421
|
+
}
|
|
6422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
6423
|
+
type: Directive,
|
|
6424
|
+
args: [{
|
|
6425
|
+
selector: 'px-carousel-item',
|
|
6426
|
+
standalone: true,
|
|
6427
|
+
}]
|
|
6428
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { CAROUSEL_ITEM_CONNECTED_EVENT: [{
|
|
6429
|
+
type: Output
|
|
6430
|
+
}] } });
|
|
6355
6431
|
/**
|
|
6356
6432
|
* @description Type-only wrapper for <px-cell>
|
|
6357
6433
|
*/
|
|
@@ -10181,82 +10257,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
10181
10257
|
}], change: [{
|
|
10182
10258
|
type: Output
|
|
10183
10259
|
}] } });
|
|
10184
|
-
/**
|
|
10185
|
-
* @description Type-only wrapper for <px-appleseed>
|
|
10186
|
-
*/
|
|
10187
|
-
class PxAppleseed {
|
|
10188
|
-
elementRef;
|
|
10189
|
-
set amount(value) {
|
|
10190
|
-
this.elementRef.nativeElement['amount'] = value;
|
|
10191
|
-
}
|
|
10192
|
-
get amount() {
|
|
10193
|
-
return this.elementRef.nativeElement['amount'];
|
|
10194
|
-
}
|
|
10195
|
-
set active(value) {
|
|
10196
|
-
this.elementRef.nativeElement['active'] = value;
|
|
10197
|
-
}
|
|
10198
|
-
get active() {
|
|
10199
|
-
return this.elementRef.nativeElement['active'];
|
|
10200
|
-
}
|
|
10201
|
-
constructor(elementRef) {
|
|
10202
|
-
this.elementRef = elementRef;
|
|
10203
|
-
}
|
|
10204
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10205
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxAppleseed, isStandalone: true, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
10206
|
-
}
|
|
10207
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
10208
|
-
type: Directive,
|
|
10209
|
-
args: [{
|
|
10210
|
-
selector: 'px-appleseed',
|
|
10211
|
-
standalone: true,
|
|
10212
|
-
}]
|
|
10213
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
10214
|
-
type: Input
|
|
10215
|
-
}], active: [{
|
|
10216
|
-
type: Input
|
|
10217
|
-
}] } });
|
|
10218
|
-
/**
|
|
10219
|
-
* @description Type-only wrapper for <px-carousel>
|
|
10220
|
-
*/
|
|
10221
|
-
class PxCarousel {
|
|
10222
|
-
elementRef;
|
|
10223
|
-
constructor(elementRef) {
|
|
10224
|
-
this.elementRef = elementRef;
|
|
10225
|
-
}
|
|
10226
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10227
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarousel, isStandalone: true, selector: "px-carousel", ngImport: i0 });
|
|
10228
|
-
}
|
|
10229
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, decorators: [{
|
|
10230
|
-
type: Directive,
|
|
10231
|
-
args: [{
|
|
10232
|
-
selector: 'px-carousel',
|
|
10233
|
-
standalone: true,
|
|
10234
|
-
}]
|
|
10235
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
10236
|
-
/**
|
|
10237
|
-
* @description Type-only wrapper for <px-carousel-item>
|
|
10238
|
-
*/
|
|
10239
|
-
class PxCarouselItem {
|
|
10240
|
-
elementRef;
|
|
10241
|
-
CAROUSEL_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
10242
|
-
constructor(elementRef) {
|
|
10243
|
-
this.elementRef = elementRef;
|
|
10244
|
-
this.elementRef.nativeElement.addEventListener('CAROUSEL_ITEM_CONNECTED_EVENT', (e) => {
|
|
10245
|
-
this.CAROUSEL_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
10246
|
-
});
|
|
10247
|
-
}
|
|
10248
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10249
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarouselItem, isStandalone: true, selector: "px-carousel-item", outputs: { CAROUSEL_ITEM_CONNECTED_EVENT: "CAROUSEL_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
10250
|
-
}
|
|
10251
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
10252
|
-
type: Directive,
|
|
10253
|
-
args: [{
|
|
10254
|
-
selector: 'px-carousel-item',
|
|
10255
|
-
standalone: true,
|
|
10256
|
-
}]
|
|
10257
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { CAROUSEL_ITEM_CONNECTED_EVENT: [{
|
|
10258
|
-
type: Output
|
|
10259
|
-
}] } });
|
|
10260
10260
|
/**
|
|
10261
10261
|
* @description Type-only wrapper for <px-checkbox>
|
|
10262
10262
|
*/
|
|
@@ -13231,6 +13231,107 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
13231
13231
|
type: Input,
|
|
13232
13232
|
args: ['word-break-all--desktop']
|
|
13233
13233
|
}] } });
|
|
13234
|
+
/**
|
|
13235
|
+
* @description Type-only wrapper for <px-drawer>
|
|
13236
|
+
*/
|
|
13237
|
+
class PxDrawer {
|
|
13238
|
+
elementRef;
|
|
13239
|
+
set open(value) {
|
|
13240
|
+
this.elementRef.nativeElement['open'] = value;
|
|
13241
|
+
}
|
|
13242
|
+
get open() {
|
|
13243
|
+
return this.elementRef.nativeElement['open'];
|
|
13244
|
+
}
|
|
13245
|
+
set ariaLabelCloseButton(value) {
|
|
13246
|
+
this.elementRef.nativeElement['ariaLabelCloseButton'] = value;
|
|
13247
|
+
}
|
|
13248
|
+
get ariaLabelCloseButton() {
|
|
13249
|
+
return this.elementRef.nativeElement['ariaLabelCloseButton'];
|
|
13250
|
+
}
|
|
13251
|
+
set openedby(value) {
|
|
13252
|
+
this.elementRef.nativeElement['openedby'] = value;
|
|
13253
|
+
}
|
|
13254
|
+
get openedby() {
|
|
13255
|
+
return this.elementRef.nativeElement['openedby'];
|
|
13256
|
+
}
|
|
13257
|
+
set closedby(value) {
|
|
13258
|
+
this.elementRef.nativeElement['closedby'] = value;
|
|
13259
|
+
}
|
|
13260
|
+
get closedby() {
|
|
13261
|
+
return this.elementRef.nativeElement['closedby'];
|
|
13262
|
+
}
|
|
13263
|
+
set fullscreen(value) {
|
|
13264
|
+
this.elementRef.nativeElement['fullscreen'] = value;
|
|
13265
|
+
}
|
|
13266
|
+
get fullscreen() {
|
|
13267
|
+
return this.elementRef.nativeElement['fullscreen'];
|
|
13268
|
+
}
|
|
13269
|
+
set fullscreenMobile(value) {
|
|
13270
|
+
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
13271
|
+
}
|
|
13272
|
+
get fullscreenMobile() {
|
|
13273
|
+
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
13274
|
+
}
|
|
13275
|
+
set fullscreenTablet(value) {
|
|
13276
|
+
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
13277
|
+
}
|
|
13278
|
+
get fullscreenTablet() {
|
|
13279
|
+
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
13280
|
+
}
|
|
13281
|
+
set fullscreenLaptop(value) {
|
|
13282
|
+
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
13283
|
+
}
|
|
13284
|
+
get fullscreenLaptop() {
|
|
13285
|
+
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
13286
|
+
}
|
|
13287
|
+
set fullscreenDesktop(value) {
|
|
13288
|
+
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
13289
|
+
}
|
|
13290
|
+
get fullscreenDesktop() {
|
|
13291
|
+
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
13292
|
+
}
|
|
13293
|
+
HIDE_EVENT = new EventEmitter();
|
|
13294
|
+
constructor(elementRef) {
|
|
13295
|
+
this.elementRef = elementRef;
|
|
13296
|
+
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
13297
|
+
this.HIDE_EVENT.emit(e.detail);
|
|
13298
|
+
});
|
|
13299
|
+
}
|
|
13300
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13301
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxDrawer, isStandalone: true, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby", closedby: "closedby", fullscreen: "fullscreen", fullscreenMobile: ["fullscreen--mobile", "fullscreenMobile"], fullscreenTablet: ["fullscreen--tablet", "fullscreenTablet"], fullscreenLaptop: ["fullscreen--laptop", "fullscreenLaptop"], fullscreenDesktop: ["fullscreen--desktop", "fullscreenDesktop"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
13302
|
+
}
|
|
13303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, decorators: [{
|
|
13304
|
+
type: Directive,
|
|
13305
|
+
args: [{
|
|
13306
|
+
selector: 'px-drawer',
|
|
13307
|
+
standalone: true,
|
|
13308
|
+
}]
|
|
13309
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
13310
|
+
type: Input
|
|
13311
|
+
}], ariaLabelCloseButton: [{
|
|
13312
|
+
type: Input,
|
|
13313
|
+
args: ['aria-label-close-button']
|
|
13314
|
+
}], openedby: [{
|
|
13315
|
+
type: Input
|
|
13316
|
+
}], closedby: [{
|
|
13317
|
+
type: Input
|
|
13318
|
+
}], fullscreen: [{
|
|
13319
|
+
type: Input
|
|
13320
|
+
}], fullscreenMobile: [{
|
|
13321
|
+
type: Input,
|
|
13322
|
+
args: ['fullscreen--mobile']
|
|
13323
|
+
}], fullscreenTablet: [{
|
|
13324
|
+
type: Input,
|
|
13325
|
+
args: ['fullscreen--tablet']
|
|
13326
|
+
}], fullscreenLaptop: [{
|
|
13327
|
+
type: Input,
|
|
13328
|
+
args: ['fullscreen--laptop']
|
|
13329
|
+
}], fullscreenDesktop: [{
|
|
13330
|
+
type: Input,
|
|
13331
|
+
args: ['fullscreen--desktop']
|
|
13332
|
+
}], HIDE_EVENT: [{
|
|
13333
|
+
type: Output
|
|
13334
|
+
}] } });
|
|
13234
13335
|
/**
|
|
13235
13336
|
* @description Type-only wrapper for <px-dropdown>
|
|
13236
13337
|
*/
|
|
@@ -13755,107 +13856,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
13755
13856
|
type: Input,
|
|
13756
13857
|
args: ['word-break-all--desktop']
|
|
13757
13858
|
}] } });
|
|
13758
|
-
/**
|
|
13759
|
-
* @description Type-only wrapper for <px-drawer>
|
|
13760
|
-
*/
|
|
13761
|
-
class PxDrawer {
|
|
13762
|
-
elementRef;
|
|
13763
|
-
set open(value) {
|
|
13764
|
-
this.elementRef.nativeElement['open'] = value;
|
|
13765
|
-
}
|
|
13766
|
-
get open() {
|
|
13767
|
-
return this.elementRef.nativeElement['open'];
|
|
13768
|
-
}
|
|
13769
|
-
set ariaLabelCloseButton(value) {
|
|
13770
|
-
this.elementRef.nativeElement['ariaLabelCloseButton'] = value;
|
|
13771
|
-
}
|
|
13772
|
-
get ariaLabelCloseButton() {
|
|
13773
|
-
return this.elementRef.nativeElement['ariaLabelCloseButton'];
|
|
13774
|
-
}
|
|
13775
|
-
set openedby(value) {
|
|
13776
|
-
this.elementRef.nativeElement['openedby'] = value;
|
|
13777
|
-
}
|
|
13778
|
-
get openedby() {
|
|
13779
|
-
return this.elementRef.nativeElement['openedby'];
|
|
13780
|
-
}
|
|
13781
|
-
set closedby(value) {
|
|
13782
|
-
this.elementRef.nativeElement['closedby'] = value;
|
|
13783
|
-
}
|
|
13784
|
-
get closedby() {
|
|
13785
|
-
return this.elementRef.nativeElement['closedby'];
|
|
13786
|
-
}
|
|
13787
|
-
set fullscreen(value) {
|
|
13788
|
-
this.elementRef.nativeElement['fullscreen'] = value;
|
|
13789
|
-
}
|
|
13790
|
-
get fullscreen() {
|
|
13791
|
-
return this.elementRef.nativeElement['fullscreen'];
|
|
13792
|
-
}
|
|
13793
|
-
set fullscreenMobile(value) {
|
|
13794
|
-
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
13795
|
-
}
|
|
13796
|
-
get fullscreenMobile() {
|
|
13797
|
-
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
13798
|
-
}
|
|
13799
|
-
set fullscreenTablet(value) {
|
|
13800
|
-
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
13801
|
-
}
|
|
13802
|
-
get fullscreenTablet() {
|
|
13803
|
-
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
13804
|
-
}
|
|
13805
|
-
set fullscreenLaptop(value) {
|
|
13806
|
-
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
13807
|
-
}
|
|
13808
|
-
get fullscreenLaptop() {
|
|
13809
|
-
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
13810
|
-
}
|
|
13811
|
-
set fullscreenDesktop(value) {
|
|
13812
|
-
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
13813
|
-
}
|
|
13814
|
-
get fullscreenDesktop() {
|
|
13815
|
-
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
13816
|
-
}
|
|
13817
|
-
HIDE_EVENT = new EventEmitter();
|
|
13818
|
-
constructor(elementRef) {
|
|
13819
|
-
this.elementRef = elementRef;
|
|
13820
|
-
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
13821
|
-
this.HIDE_EVENT.emit(e.detail);
|
|
13822
|
-
});
|
|
13823
|
-
}
|
|
13824
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13825
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxDrawer, isStandalone: true, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby", closedby: "closedby", fullscreen: "fullscreen", fullscreenMobile: ["fullscreen--mobile", "fullscreenMobile"], fullscreenTablet: ["fullscreen--tablet", "fullscreenTablet"], fullscreenLaptop: ["fullscreen--laptop", "fullscreenLaptop"], fullscreenDesktop: ["fullscreen--desktop", "fullscreenDesktop"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
13826
|
-
}
|
|
13827
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, decorators: [{
|
|
13828
|
-
type: Directive,
|
|
13829
|
-
args: [{
|
|
13830
|
-
selector: 'px-drawer',
|
|
13831
|
-
standalone: true,
|
|
13832
|
-
}]
|
|
13833
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
13834
|
-
type: Input
|
|
13835
|
-
}], ariaLabelCloseButton: [{
|
|
13836
|
-
type: Input,
|
|
13837
|
-
args: ['aria-label-close-button']
|
|
13838
|
-
}], openedby: [{
|
|
13839
|
-
type: Input
|
|
13840
|
-
}], closedby: [{
|
|
13841
|
-
type: Input
|
|
13842
|
-
}], fullscreen: [{
|
|
13843
|
-
type: Input
|
|
13844
|
-
}], fullscreenMobile: [{
|
|
13845
|
-
type: Input,
|
|
13846
|
-
args: ['fullscreen--mobile']
|
|
13847
|
-
}], fullscreenTablet: [{
|
|
13848
|
-
type: Input,
|
|
13849
|
-
args: ['fullscreen--tablet']
|
|
13850
|
-
}], fullscreenLaptop: [{
|
|
13851
|
-
type: Input,
|
|
13852
|
-
args: ['fullscreen--laptop']
|
|
13853
|
-
}], fullscreenDesktop: [{
|
|
13854
|
-
type: Input,
|
|
13855
|
-
args: ['fullscreen--desktop']
|
|
13856
|
-
}], HIDE_EVENT: [{
|
|
13857
|
-
type: Output
|
|
13858
|
-
}] } });
|
|
13859
13859
|
/**
|
|
13860
13860
|
* @description Type-only wrapper for <px-fieldset>
|
|
13861
13861
|
*/
|
|
@@ -31650,6 +31650,12 @@ class PxSelectableBox {
|
|
|
31650
31650
|
get hideFooter() {
|
|
31651
31651
|
return this.elementRef.nativeElement['hideFooter'];
|
|
31652
31652
|
}
|
|
31653
|
+
set footerPosition(value) {
|
|
31654
|
+
this.elementRef.nativeElement['footerPosition'] = value;
|
|
31655
|
+
}
|
|
31656
|
+
get footerPosition() {
|
|
31657
|
+
return this.elementRef.nativeElement['footerPosition'];
|
|
31658
|
+
}
|
|
31653
31659
|
set grow(value) {
|
|
31654
31660
|
this.elementRef.nativeElement['grow'] = value;
|
|
31655
31661
|
}
|
|
@@ -31966,7 +31972,7 @@ class PxSelectableBox {
|
|
|
31966
31972
|
this.elementRef = elementRef;
|
|
31967
31973
|
}
|
|
31968
31974
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
31969
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBox, isStandalone: true, selector: "px-selectable-box", inputs: { inverted: "inverted", hideFooter: ["hide-footer", "hideFooter"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
31975
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBox, isStandalone: true, selector: "px-selectable-box", inputs: { inverted: "inverted", hideFooter: ["hide-footer", "hideFooter"], footerPosition: ["footer-position", "footerPosition"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
31970
31976
|
}
|
|
31971
31977
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBox, decorators: [{
|
|
31972
31978
|
type: Directive,
|
|
@@ -31979,6 +31985,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
31979
31985
|
}], hideFooter: [{
|
|
31980
31986
|
type: Input,
|
|
31981
31987
|
args: ['hide-footer']
|
|
31988
|
+
}], footerPosition: [{
|
|
31989
|
+
type: Input,
|
|
31990
|
+
args: ['footer-position']
|
|
31982
31991
|
}], grow: [{
|
|
31983
31992
|
type: Input
|
|
31984
31993
|
}], growMobile: [{
|
|
@@ -32166,6 +32175,12 @@ class PxSelectableBoxCheckbox {
|
|
|
32166
32175
|
get disabled() {
|
|
32167
32176
|
return this.elementRef.nativeElement['disabled'];
|
|
32168
32177
|
}
|
|
32178
|
+
set footerPosition(value) {
|
|
32179
|
+
this.elementRef.nativeElement['footerPosition'] = value;
|
|
32180
|
+
}
|
|
32181
|
+
get footerPosition() {
|
|
32182
|
+
return this.elementRef.nativeElement['footerPosition'];
|
|
32183
|
+
}
|
|
32169
32184
|
set grow(value) {
|
|
32170
32185
|
this.elementRef.nativeElement['grow'] = value;
|
|
32171
32186
|
}
|
|
@@ -32486,7 +32501,7 @@ class PxSelectableBoxCheckbox {
|
|
|
32486
32501
|
});
|
|
32487
32502
|
}
|
|
32488
32503
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxCheckbox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
32489
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxCheckbox, isStandalone: true, selector: "px-selectable-box-checkbox", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
32504
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxCheckbox, isStandalone: true, selector: "px-selectable-box-checkbox", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", footerPosition: ["footer-position", "footerPosition"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
32490
32505
|
}
|
|
32491
32506
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxCheckbox, decorators: [{
|
|
32492
32507
|
type: Directive,
|
|
@@ -32504,6 +32519,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
32504
32519
|
type: Input
|
|
32505
32520
|
}], disabled: [{
|
|
32506
32521
|
type: Input
|
|
32522
|
+
}], footerPosition: [{
|
|
32523
|
+
type: Input,
|
|
32524
|
+
args: ['footer-position']
|
|
32507
32525
|
}], grow: [{
|
|
32508
32526
|
type: Input
|
|
32509
32527
|
}], growMobile: [{
|
|
@@ -32693,6 +32711,12 @@ class PxSelectableBoxRadio {
|
|
|
32693
32711
|
get disabled() {
|
|
32694
32712
|
return this.elementRef.nativeElement['disabled'];
|
|
32695
32713
|
}
|
|
32714
|
+
set footerPosition(value) {
|
|
32715
|
+
this.elementRef.nativeElement['footerPosition'] = value;
|
|
32716
|
+
}
|
|
32717
|
+
get footerPosition() {
|
|
32718
|
+
return this.elementRef.nativeElement['footerPosition'];
|
|
32719
|
+
}
|
|
32696
32720
|
set grow(value) {
|
|
32697
32721
|
this.elementRef.nativeElement['grow'] = value;
|
|
32698
32722
|
}
|
|
@@ -33021,7 +33045,7 @@ class PxSelectableBoxRadio {
|
|
|
33021
33045
|
});
|
|
33022
33046
|
}
|
|
33023
33047
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33024
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxRadio, isStandalone: true, selector: "px-selectable-box-radio", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { SELECTABLE_BOX_RADIO_CONNECTED_EVENT: "SELECTABLE_BOX_RADIO_CONNECTED_EVENT", SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: "SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT", change: "change" }, ngImport: i0 });
|
|
33048
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxRadio, isStandalone: true, selector: "px-selectable-box-radio", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", footerPosition: ["footer-position", "footerPosition"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { SELECTABLE_BOX_RADIO_CONNECTED_EVENT: "SELECTABLE_BOX_RADIO_CONNECTED_EVENT", SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: "SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT", change: "change" }, ngImport: i0 });
|
|
33025
33049
|
}
|
|
33026
33050
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxRadio, decorators: [{
|
|
33027
33051
|
type: Directive,
|
|
@@ -33039,6 +33063,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
33039
33063
|
type: Input
|
|
33040
33064
|
}], disabled: [{
|
|
33041
33065
|
type: Input
|
|
33066
|
+
}], footerPosition: [{
|
|
33067
|
+
type: Input,
|
|
33068
|
+
args: ['footer-position']
|
|
33042
33069
|
}], grow: [{
|
|
33043
33070
|
type: Input
|
|
33044
33071
|
}], growMobile: [{
|
|
@@ -34243,57 +34270,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
34243
34270
|
type: Input,
|
|
34244
34271
|
args: ['word-break-all--desktop']
|
|
34245
34272
|
}] } });
|
|
34246
|
-
/**
|
|
34247
|
-
* @description Type-only wrapper for <px-spinner>
|
|
34248
|
-
*/
|
|
34249
|
-
class PxSpinner {
|
|
34250
|
-
elementRef;
|
|
34251
|
-
set size(value) {
|
|
34252
|
-
this.elementRef.nativeElement['size'] = value;
|
|
34253
|
-
}
|
|
34254
|
-
get size() {
|
|
34255
|
-
return this.elementRef.nativeElement['size'];
|
|
34256
|
-
}
|
|
34257
|
-
set inverted(value) {
|
|
34258
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
34259
|
-
}
|
|
34260
|
-
get inverted() {
|
|
34261
|
-
return this.elementRef.nativeElement['inverted'];
|
|
34262
|
-
}
|
|
34263
|
-
set timeout(value) {
|
|
34264
|
-
this.elementRef.nativeElement['timeout'] = value;
|
|
34265
|
-
}
|
|
34266
|
-
get timeout() {
|
|
34267
|
-
return this.elementRef.nativeElement['timeout'];
|
|
34268
|
-
}
|
|
34269
|
-
set ariaLabel(value) {
|
|
34270
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
34271
|
-
}
|
|
34272
|
-
get ariaLabel() {
|
|
34273
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
34274
|
-
}
|
|
34275
|
-
constructor(elementRef) {
|
|
34276
|
-
this.elementRef = elementRef;
|
|
34277
|
-
}
|
|
34278
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
34279
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpinner, isStandalone: true, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
34280
|
-
}
|
|
34281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
|
|
34282
|
-
type: Directive,
|
|
34283
|
-
args: [{
|
|
34284
|
-
selector: 'px-spinner',
|
|
34285
|
-
standalone: true,
|
|
34286
|
-
}]
|
|
34287
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
34288
|
-
type: Input
|
|
34289
|
-
}], inverted: [{
|
|
34290
|
-
type: Input
|
|
34291
|
-
}], timeout: [{
|
|
34292
|
-
type: Input
|
|
34293
|
-
}], ariaLabel: [{
|
|
34294
|
-
type: Input,
|
|
34295
|
-
args: ['aria-label']
|
|
34296
|
-
}] } });
|
|
34297
34273
|
/**
|
|
34298
34274
|
* @description Type-only wrapper for <px-span>
|
|
34299
34275
|
*/
|
|
@@ -34834,6 +34810,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
34834
34810
|
type: Input,
|
|
34835
34811
|
args: ['word-break-all--desktop']
|
|
34836
34812
|
}] } });
|
|
34813
|
+
/**
|
|
34814
|
+
* @description Type-only wrapper for <px-spinner>
|
|
34815
|
+
*/
|
|
34816
|
+
class PxSpinner {
|
|
34817
|
+
elementRef;
|
|
34818
|
+
set size(value) {
|
|
34819
|
+
this.elementRef.nativeElement['size'] = value;
|
|
34820
|
+
}
|
|
34821
|
+
get size() {
|
|
34822
|
+
return this.elementRef.nativeElement['size'];
|
|
34823
|
+
}
|
|
34824
|
+
set inverted(value) {
|
|
34825
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
34826
|
+
}
|
|
34827
|
+
get inverted() {
|
|
34828
|
+
return this.elementRef.nativeElement['inverted'];
|
|
34829
|
+
}
|
|
34830
|
+
set timeout(value) {
|
|
34831
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
34832
|
+
}
|
|
34833
|
+
get timeout() {
|
|
34834
|
+
return this.elementRef.nativeElement['timeout'];
|
|
34835
|
+
}
|
|
34836
|
+
set ariaLabel(value) {
|
|
34837
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
34838
|
+
}
|
|
34839
|
+
get ariaLabel() {
|
|
34840
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
34841
|
+
}
|
|
34842
|
+
constructor(elementRef) {
|
|
34843
|
+
this.elementRef = elementRef;
|
|
34844
|
+
}
|
|
34845
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
34846
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpinner, isStandalone: true, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
34847
|
+
}
|
|
34848
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
|
|
34849
|
+
type: Directive,
|
|
34850
|
+
args: [{
|
|
34851
|
+
selector: 'px-spinner',
|
|
34852
|
+
standalone: true,
|
|
34853
|
+
}]
|
|
34854
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
34855
|
+
type: Input
|
|
34856
|
+
}], inverted: [{
|
|
34857
|
+
type: Input
|
|
34858
|
+
}], timeout: [{
|
|
34859
|
+
type: Input
|
|
34860
|
+
}], ariaLabel: [{
|
|
34861
|
+
type: Input,
|
|
34862
|
+
args: ['aria-label']
|
|
34863
|
+
}] } });
|
|
34837
34864
|
/**
|
|
34838
34865
|
* @description Type-only wrapper for <px-status>
|
|
34839
34866
|
*/
|
|
@@ -37258,80 +37285,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
37258
37285
|
type: Input,
|
|
37259
37286
|
args: ['word-break-all--desktop']
|
|
37260
37287
|
}] } });
|
|
37261
|
-
/**
|
|
37262
|
-
* @description Type-only wrapper for <px-timeline>
|
|
37263
|
-
*/
|
|
37264
|
-
class PxTimeline {
|
|
37265
|
-
elementRef;
|
|
37266
|
-
set inverted(value) {
|
|
37267
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
37268
|
-
}
|
|
37269
|
-
get inverted() {
|
|
37270
|
-
return this.elementRef.nativeElement['inverted'];
|
|
37271
|
-
}
|
|
37272
|
-
constructor(elementRef) {
|
|
37273
|
-
this.elementRef = elementRef;
|
|
37274
|
-
}
|
|
37275
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
37276
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimeline, isStandalone: true, selector: "px-timeline", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
37277
|
-
}
|
|
37278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, decorators: [{
|
|
37279
|
-
type: Directive,
|
|
37280
|
-
args: [{
|
|
37281
|
-
selector: 'px-timeline',
|
|
37282
|
-
standalone: true,
|
|
37283
|
-
}]
|
|
37284
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
37285
|
-
type: Input
|
|
37286
|
-
}] } });
|
|
37287
|
-
/**
|
|
37288
|
-
* @description Type-only wrapper for <px-timeline-item>
|
|
37289
|
-
*/
|
|
37290
|
-
class PxTimelineItem {
|
|
37291
|
-
elementRef;
|
|
37292
|
-
set inverted(value) {
|
|
37293
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
37294
|
-
}
|
|
37295
|
-
get inverted() {
|
|
37296
|
-
return this.elementRef.nativeElement['inverted'];
|
|
37297
|
-
}
|
|
37298
|
-
set lastchild(value) {
|
|
37299
|
-
this.elementRef.nativeElement['lastchild'] = value;
|
|
37300
|
-
}
|
|
37301
|
-
get lastchild() {
|
|
37302
|
-
return this.elementRef.nativeElement['lastchild'];
|
|
37303
|
-
}
|
|
37304
|
-
set item(value) {
|
|
37305
|
-
this.elementRef.nativeElement['item'] = value;
|
|
37306
|
-
}
|
|
37307
|
-
get item() {
|
|
37308
|
-
return this.elementRef.nativeElement['item'];
|
|
37309
|
-
}
|
|
37310
|
-
TIMELINE_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
37311
|
-
constructor(elementRef) {
|
|
37312
|
-
this.elementRef = elementRef;
|
|
37313
|
-
this.elementRef.nativeElement.addEventListener('TIMELINE_ITEM_CONNECTED_EVENT', (e) => {
|
|
37314
|
-
this.TIMELINE_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
37315
|
-
});
|
|
37316
|
-
}
|
|
37317
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
37318
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimelineItem, isStandalone: true, selector: "px-timeline-item", inputs: { inverted: "inverted", lastchild: "lastchild", item: "item" }, outputs: { TIMELINE_ITEM_CONNECTED_EVENT: "TIMELINE_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
37319
|
-
}
|
|
37320
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, decorators: [{
|
|
37321
|
-
type: Directive,
|
|
37322
|
-
args: [{
|
|
37323
|
-
selector: 'px-timeline-item',
|
|
37324
|
-
standalone: true,
|
|
37325
|
-
}]
|
|
37326
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
37327
|
-
type: Input
|
|
37328
|
-
}], lastchild: [{
|
|
37329
|
-
type: Input
|
|
37330
|
-
}], item: [{
|
|
37331
|
-
type: Input
|
|
37332
|
-
}], TIMELINE_ITEM_CONNECTED_EVENT: [{
|
|
37333
|
-
type: Output
|
|
37334
|
-
}] } });
|
|
37335
37288
|
/**
|
|
37336
37289
|
* @description Type-only wrapper for <px-tile>
|
|
37337
37290
|
*/
|
|
@@ -40555,6 +40508,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
40555
40508
|
}], change: [{
|
|
40556
40509
|
type: Output
|
|
40557
40510
|
}] } });
|
|
40511
|
+
/**
|
|
40512
|
+
* @description Type-only wrapper for <px-timeline>
|
|
40513
|
+
*/
|
|
40514
|
+
class PxTimeline {
|
|
40515
|
+
elementRef;
|
|
40516
|
+
set inverted(value) {
|
|
40517
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
40518
|
+
}
|
|
40519
|
+
get inverted() {
|
|
40520
|
+
return this.elementRef.nativeElement['inverted'];
|
|
40521
|
+
}
|
|
40522
|
+
constructor(elementRef) {
|
|
40523
|
+
this.elementRef = elementRef;
|
|
40524
|
+
}
|
|
40525
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
40526
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimeline, isStandalone: true, selector: "px-timeline", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
40527
|
+
}
|
|
40528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, decorators: [{
|
|
40529
|
+
type: Directive,
|
|
40530
|
+
args: [{
|
|
40531
|
+
selector: 'px-timeline',
|
|
40532
|
+
standalone: true,
|
|
40533
|
+
}]
|
|
40534
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
40535
|
+
type: Input
|
|
40536
|
+
}] } });
|
|
40537
|
+
/**
|
|
40538
|
+
* @description Type-only wrapper for <px-timeline-item>
|
|
40539
|
+
*/
|
|
40540
|
+
class PxTimelineItem {
|
|
40541
|
+
elementRef;
|
|
40542
|
+
set inverted(value) {
|
|
40543
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
40544
|
+
}
|
|
40545
|
+
get inverted() {
|
|
40546
|
+
return this.elementRef.nativeElement['inverted'];
|
|
40547
|
+
}
|
|
40548
|
+
set lastchild(value) {
|
|
40549
|
+
this.elementRef.nativeElement['lastchild'] = value;
|
|
40550
|
+
}
|
|
40551
|
+
get lastchild() {
|
|
40552
|
+
return this.elementRef.nativeElement['lastchild'];
|
|
40553
|
+
}
|
|
40554
|
+
set item(value) {
|
|
40555
|
+
this.elementRef.nativeElement['item'] = value;
|
|
40556
|
+
}
|
|
40557
|
+
get item() {
|
|
40558
|
+
return this.elementRef.nativeElement['item'];
|
|
40559
|
+
}
|
|
40560
|
+
TIMELINE_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
40561
|
+
constructor(elementRef) {
|
|
40562
|
+
this.elementRef = elementRef;
|
|
40563
|
+
this.elementRef.nativeElement.addEventListener('TIMELINE_ITEM_CONNECTED_EVENT', (e) => {
|
|
40564
|
+
this.TIMELINE_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
40565
|
+
});
|
|
40566
|
+
}
|
|
40567
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
40568
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimelineItem, isStandalone: true, selector: "px-timeline-item", inputs: { inverted: "inverted", lastchild: "lastchild", item: "item" }, outputs: { TIMELINE_ITEM_CONNECTED_EVENT: "TIMELINE_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
40569
|
+
}
|
|
40570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, decorators: [{
|
|
40571
|
+
type: Directive,
|
|
40572
|
+
args: [{
|
|
40573
|
+
selector: 'px-timeline-item',
|
|
40574
|
+
standalone: true,
|
|
40575
|
+
}]
|
|
40576
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
40577
|
+
type: Input
|
|
40578
|
+
}], lastchild: [{
|
|
40579
|
+
type: Input
|
|
40580
|
+
}], item: [{
|
|
40581
|
+
type: Input
|
|
40582
|
+
}], TIMELINE_ITEM_CONNECTED_EVENT: [{
|
|
40583
|
+
type: Output
|
|
40584
|
+
}] } });
|
|
40558
40585
|
/**
|
|
40559
40586
|
* @description Type-only wrapper for <px-typography>
|
|
40560
40587
|
*/
|
|
@@ -41302,7 +41329,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41302
41329
|
}] } });
|
|
41303
41330
|
class Lavender {
|
|
41304
41331
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41305
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch,
|
|
41332
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41306
41333
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41307
41334
|
}
|
|
41308
41335
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41320,22 +41347,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41320
41347
|
PxButtonWrapper,
|
|
41321
41348
|
PxButtonIcon,
|
|
41322
41349
|
PxCard,
|
|
41350
|
+
PxAppleseed,
|
|
41351
|
+
PxCarousel,
|
|
41352
|
+
PxCarouselItem,
|
|
41323
41353
|
PxCell,
|
|
41324
41354
|
PxCellButton,
|
|
41325
41355
|
PxCellCheckbox,
|
|
41326
41356
|
PxCellLink,
|
|
41327
41357
|
PxCellRadio,
|
|
41328
41358
|
PxCellSwitch,
|
|
41329
|
-
PxAppleseed,
|
|
41330
|
-
PxCarousel,
|
|
41331
|
-
PxCarouselItem,
|
|
41332
41359
|
PxCheckbox,
|
|
41333
41360
|
PxColorOption,
|
|
41334
41361
|
PxColorOptionLink,
|
|
41335
41362
|
PxContainer,
|
|
41336
41363
|
PxContentHeader,
|
|
41337
|
-
PxDropdown,
|
|
41338
41364
|
PxDrawer,
|
|
41365
|
+
PxDropdown,
|
|
41339
41366
|
PxFieldset,
|
|
41340
41367
|
PxGrid,
|
|
41341
41368
|
PxH1,
|
|
@@ -41377,8 +41404,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41377
41404
|
PxSelectableBoxRadio,
|
|
41378
41405
|
PxSeparator,
|
|
41379
41406
|
PxSkeleton,
|
|
41380
|
-
PxSpinner,
|
|
41381
41407
|
PxSpan,
|
|
41408
|
+
PxSpinner,
|
|
41382
41409
|
PxStatus,
|
|
41383
41410
|
PxStatusCard,
|
|
41384
41411
|
PxStickyContainer,
|
|
@@ -41394,14 +41421,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41394
41421
|
PxTab,
|
|
41395
41422
|
PxTabPanel,
|
|
41396
41423
|
PxTag,
|
|
41397
|
-
PxTimeline,
|
|
41398
|
-
PxTimelineItem,
|
|
41399
41424
|
PxTile,
|
|
41400
41425
|
PxTileButton,
|
|
41401
41426
|
PxTileCheckbox,
|
|
41402
41427
|
PxTileLink,
|
|
41403
41428
|
PxTileRadio,
|
|
41404
41429
|
PxTileSwitch,
|
|
41430
|
+
PxTimeline,
|
|
41431
|
+
PxTimelineItem,
|
|
41405
41432
|
PxTypography,
|
|
41406
41433
|
PxPatch,
|
|
41407
41434
|
PxIcon,
|
|
@@ -41422,22 +41449,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41422
41449
|
PxButtonWrapper,
|
|
41423
41450
|
PxButtonIcon,
|
|
41424
41451
|
PxCard,
|
|
41452
|
+
PxAppleseed,
|
|
41453
|
+
PxCarousel,
|
|
41454
|
+
PxCarouselItem,
|
|
41425
41455
|
PxCell,
|
|
41426
41456
|
PxCellButton,
|
|
41427
41457
|
PxCellCheckbox,
|
|
41428
41458
|
PxCellLink,
|
|
41429
41459
|
PxCellRadio,
|
|
41430
41460
|
PxCellSwitch,
|
|
41431
|
-
PxAppleseed,
|
|
41432
|
-
PxCarousel,
|
|
41433
|
-
PxCarouselItem,
|
|
41434
41461
|
PxCheckbox,
|
|
41435
41462
|
PxColorOption,
|
|
41436
41463
|
PxColorOptionLink,
|
|
41437
41464
|
PxContainer,
|
|
41438
41465
|
PxContentHeader,
|
|
41439
|
-
PxDropdown,
|
|
41440
41466
|
PxDrawer,
|
|
41467
|
+
PxDropdown,
|
|
41441
41468
|
PxFieldset,
|
|
41442
41469
|
PxGrid,
|
|
41443
41470
|
PxH1,
|
|
@@ -41479,8 +41506,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41479
41506
|
PxSelectableBoxRadio,
|
|
41480
41507
|
PxSeparator,
|
|
41481
41508
|
PxSkeleton,
|
|
41482
|
-
PxSpinner,
|
|
41483
41509
|
PxSpan,
|
|
41510
|
+
PxSpinner,
|
|
41484
41511
|
PxStatus,
|
|
41485
41512
|
PxStatusCard,
|
|
41486
41513
|
PxStickyContainer,
|
|
@@ -41496,14 +41523,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41496
41523
|
PxTab,
|
|
41497
41524
|
PxTabPanel,
|
|
41498
41525
|
PxTag,
|
|
41499
|
-
PxTimeline,
|
|
41500
|
-
PxTimelineItem,
|
|
41501
41526
|
PxTile,
|
|
41502
41527
|
PxTileButton,
|
|
41503
41528
|
PxTileCheckbox,
|
|
41504
41529
|
PxTileLink,
|
|
41505
41530
|
PxTileRadio,
|
|
41506
41531
|
PxTileSwitch,
|
|
41532
|
+
PxTimeline,
|
|
41533
|
+
PxTimelineItem,
|
|
41507
41534
|
PxTypography,
|
|
41508
41535
|
PxPatch,
|
|
41509
41536
|
PxIcon,
|