@proximus/lavender-angular 1.4.15-alpha.13 → 1.4.15-alpha.14

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.
@@ -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
  */
@@ -15076,6 +15076,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
15076
15076
  type: Input,
15077
15077
  args: ['word-break-all--desktop']
15078
15078
  }] } });
15079
+ /**
15080
+ * @description Type-only wrapper for <px-heading-group>
15081
+ */
15082
+ class PxHeadingGroup {
15083
+ elementRef;
15084
+ constructor(elementRef) {
15085
+ this.elementRef = elementRef;
15086
+ }
15087
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxHeadingGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
15088
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxHeadingGroup, isStandalone: true, selector: "px-heading-group", ngImport: i0 });
15089
+ }
15090
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxHeadingGroup, decorators: [{
15091
+ type: Directive,
15092
+ args: [{
15093
+ selector: 'px-heading-group',
15094
+ standalone: true,
15095
+ }]
15096
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
15079
15097
  /**
15080
15098
  * @description Type-only wrapper for <px-h1>
15081
15099
  */
@@ -18430,24 +18448,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
18430
18448
  type: Input,
18431
18449
  args: ['word-break-all--desktop']
18432
18450
  }] } });
18433
- /**
18434
- * @description Type-only wrapper for <px-heading-group>
18435
- */
18436
- class PxHeadingGroup {
18437
- elementRef;
18438
- constructor(elementRef) {
18439
- this.elementRef = elementRef;
18440
- }
18441
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxHeadingGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
18442
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxHeadingGroup, isStandalone: true, selector: "px-heading-group", ngImport: i0 });
18443
- }
18444
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxHeadingGroup, decorators: [{
18445
- type: Directive,
18446
- args: [{
18447
- selector: 'px-heading-group',
18448
- standalone: true,
18449
- }]
18450
- }], ctorParameters: () => [{ type: i0.ElementRef }] });
18451
18451
  /**
18452
18452
  * @description Type-only wrapper for <px-img>
18453
18453
  */
@@ -34243,57 +34243,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
34243
34243
  type: Input,
34244
34244
  args: ['word-break-all--desktop']
34245
34245
  }] } });
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
34246
  /**
34298
34247
  * @description Type-only wrapper for <px-span>
34299
34248
  */
@@ -34834,6 +34783,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
34834
34783
  type: Input,
34835
34784
  args: ['word-break-all--desktop']
34836
34785
  }] } });
34786
+ /**
34787
+ * @description Type-only wrapper for <px-spinner>
34788
+ */
34789
+ class PxSpinner {
34790
+ elementRef;
34791
+ set size(value) {
34792
+ this.elementRef.nativeElement['size'] = value;
34793
+ }
34794
+ get size() {
34795
+ return this.elementRef.nativeElement['size'];
34796
+ }
34797
+ set inverted(value) {
34798
+ this.elementRef.nativeElement['inverted'] = value;
34799
+ }
34800
+ get inverted() {
34801
+ return this.elementRef.nativeElement['inverted'];
34802
+ }
34803
+ set timeout(value) {
34804
+ this.elementRef.nativeElement['timeout'] = value;
34805
+ }
34806
+ get timeout() {
34807
+ return this.elementRef.nativeElement['timeout'];
34808
+ }
34809
+ set ariaLabel(value) {
34810
+ this.elementRef.nativeElement['ariaLabel'] = value;
34811
+ }
34812
+ get ariaLabel() {
34813
+ return this.elementRef.nativeElement['ariaLabel'];
34814
+ }
34815
+ constructor(elementRef) {
34816
+ this.elementRef = elementRef;
34817
+ }
34818
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
34819
+ 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 });
34820
+ }
34821
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
34822
+ type: Directive,
34823
+ args: [{
34824
+ selector: 'px-spinner',
34825
+ standalone: true,
34826
+ }]
34827
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
34828
+ type: Input
34829
+ }], inverted: [{
34830
+ type: Input
34831
+ }], timeout: [{
34832
+ type: Input
34833
+ }], ariaLabel: [{
34834
+ type: Input,
34835
+ args: ['aria-label']
34836
+ }] } });
34837
34837
  /**
34838
34838
  * @description Type-only wrapper for <px-status>
34839
34839
  */
@@ -35905,42 +35905,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
35905
35905
  }], CLOSE_EVENT: [{
35906
35906
  type: Output
35907
35907
  }] } });
35908
- /**
35909
- * @description Type-only wrapper for <px-sticky-container>
35910
- */
35911
- class PxStickyContainer {
35912
- elementRef;
35913
- set offsetLeft(value) {
35914
- this.elementRef.nativeElement['offsetLeft'] = value;
35915
- }
35916
- get offsetLeft() {
35917
- return this.elementRef.nativeElement['offsetLeft'];
35918
- }
35919
- set offsetRight(value) {
35920
- this.elementRef.nativeElement['offsetRight'] = value;
35921
- }
35922
- get offsetRight() {
35923
- return this.elementRef.nativeElement['offsetRight'];
35924
- }
35925
- constructor(elementRef) {
35926
- this.elementRef = elementRef;
35927
- }
35928
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStickyContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
35929
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxStickyContainer, isStandalone: true, selector: "px-sticky-container", inputs: { offsetLeft: ["offset-left", "offsetLeft"], offsetRight: ["offset-right", "offsetRight"] }, ngImport: i0 });
35930
- }
35931
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStickyContainer, decorators: [{
35932
- type: Directive,
35933
- args: [{
35934
- selector: 'px-sticky-container',
35935
- standalone: true,
35936
- }]
35937
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { offsetLeft: [{
35938
- type: Input,
35939
- args: ['offset-left']
35940
- }], offsetRight: [{
35941
- type: Input,
35942
- args: ['offset-right']
35943
- }] } });
35944
35908
  /**
35945
35909
  * @description Type-only wrapper for <px-theme-switcher>
35946
35910
  */
@@ -37258,80 +37222,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
37258
37222
  type: Input,
37259
37223
  args: ['word-break-all--desktop']
37260
37224
  }] } });
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
37225
  /**
37336
37226
  * @description Type-only wrapper for <px-tile>
37337
37227
  */
@@ -40555,6 +40445,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
40555
40445
  }], change: [{
40556
40446
  type: Output
40557
40447
  }] } });
40448
+ /**
40449
+ * @description Type-only wrapper for <px-timeline>
40450
+ */
40451
+ class PxTimeline {
40452
+ elementRef;
40453
+ set inverted(value) {
40454
+ this.elementRef.nativeElement['inverted'] = value;
40455
+ }
40456
+ get inverted() {
40457
+ return this.elementRef.nativeElement['inverted'];
40458
+ }
40459
+ constructor(elementRef) {
40460
+ this.elementRef = elementRef;
40461
+ }
40462
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
40463
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimeline, isStandalone: true, selector: "px-timeline", inputs: { inverted: "inverted" }, ngImport: i0 });
40464
+ }
40465
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, decorators: [{
40466
+ type: Directive,
40467
+ args: [{
40468
+ selector: 'px-timeline',
40469
+ standalone: true,
40470
+ }]
40471
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
40472
+ type: Input
40473
+ }] } });
40474
+ /**
40475
+ * @description Type-only wrapper for <px-timeline-item>
40476
+ */
40477
+ class PxTimelineItem {
40478
+ elementRef;
40479
+ set inverted(value) {
40480
+ this.elementRef.nativeElement['inverted'] = value;
40481
+ }
40482
+ get inverted() {
40483
+ return this.elementRef.nativeElement['inverted'];
40484
+ }
40485
+ set lastchild(value) {
40486
+ this.elementRef.nativeElement['lastchild'] = value;
40487
+ }
40488
+ get lastchild() {
40489
+ return this.elementRef.nativeElement['lastchild'];
40490
+ }
40491
+ set item(value) {
40492
+ this.elementRef.nativeElement['item'] = value;
40493
+ }
40494
+ get item() {
40495
+ return this.elementRef.nativeElement['item'];
40496
+ }
40497
+ TIMELINE_ITEM_CONNECTED_EVENT = new EventEmitter();
40498
+ constructor(elementRef) {
40499
+ this.elementRef = elementRef;
40500
+ this.elementRef.nativeElement.addEventListener('TIMELINE_ITEM_CONNECTED_EVENT', (e) => {
40501
+ this.TIMELINE_ITEM_CONNECTED_EVENT.emit(e.detail);
40502
+ });
40503
+ }
40504
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
40505
+ 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 });
40506
+ }
40507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, decorators: [{
40508
+ type: Directive,
40509
+ args: [{
40510
+ selector: 'px-timeline-item',
40511
+ standalone: true,
40512
+ }]
40513
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
40514
+ type: Input
40515
+ }], lastchild: [{
40516
+ type: Input
40517
+ }], item: [{
40518
+ type: Input
40519
+ }], TIMELINE_ITEM_CONNECTED_EVENT: [{
40520
+ type: Output
40521
+ }] } });
40558
40522
  /**
40559
40523
  * @description Type-only wrapper for <px-typography>
40560
40524
  */
@@ -40581,6 +40545,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
40581
40545
  }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
40582
40546
  type: Input
40583
40547
  }] } });
40548
+ /**
40549
+ * @description Type-only wrapper for <px-sticky-container>
40550
+ */
40551
+ class PxStickyContainer {
40552
+ elementRef;
40553
+ set offsetLeft(value) {
40554
+ this.elementRef.nativeElement['offsetLeft'] = value;
40555
+ }
40556
+ get offsetLeft() {
40557
+ return this.elementRef.nativeElement['offsetLeft'];
40558
+ }
40559
+ set offsetRight(value) {
40560
+ this.elementRef.nativeElement['offsetRight'] = value;
40561
+ }
40562
+ get offsetRight() {
40563
+ return this.elementRef.nativeElement['offsetRight'];
40564
+ }
40565
+ constructor(elementRef) {
40566
+ this.elementRef = elementRef;
40567
+ }
40568
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStickyContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
40569
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxStickyContainer, isStandalone: true, selector: "px-sticky-container", inputs: { offsetLeft: ["offset-left", "offsetLeft"], offsetRight: ["offset-right", "offsetRight"] }, ngImport: i0 });
40570
+ }
40571
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStickyContainer, decorators: [{
40572
+ type: Directive,
40573
+ args: [{
40574
+ selector: 'px-sticky-container',
40575
+ standalone: true,
40576
+ }]
40577
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { offsetLeft: [{
40578
+ type: Input,
40579
+ args: ['offset-left']
40580
+ }], offsetRight: [{
40581
+ type: Input,
40582
+ args: ['offset-right']
40583
+ }] } });
40584
40584
  /**
40585
40585
  * @description Type-only wrapper for <px-patch>
40586
40586
  */
@@ -41302,7 +41302,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41302
41302
  }] } });
41303
41303
  class Lavender {
41304
41304
  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, PxAppleseed, PxCarousel, PxCarouselItem, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDropdown, PxDrawer, 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, PxSpinner, PxSpan, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTimeline, PxTimelineItem, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxAppleseed, PxCarousel, PxCarouselItem, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDropdown, PxDrawer, 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, PxSpinner, PxSpan, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTimeline, PxTimelineItem, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
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, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxHeadingGroup, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, 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, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxStickyContainer, 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, PxHeadingGroup, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, 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, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxStickyContainer, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
41306
41306
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
41307
41307
  }
41308
41308
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
@@ -41320,31 +41320,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41320
41320
  PxButtonWrapper,
41321
41321
  PxButtonIcon,
41322
41322
  PxCard,
41323
+ PxAppleseed,
41324
+ PxCarousel,
41325
+ PxCarouselItem,
41323
41326
  PxCell,
41324
41327
  PxCellButton,
41325
41328
  PxCellCheckbox,
41326
41329
  PxCellLink,
41327
41330
  PxCellRadio,
41328
41331
  PxCellSwitch,
41329
- PxAppleseed,
41330
- PxCarousel,
41331
- PxCarouselItem,
41332
41332
  PxCheckbox,
41333
41333
  PxColorOption,
41334
41334
  PxColorOptionLink,
41335
41335
  PxContainer,
41336
41336
  PxContentHeader,
41337
- PxDropdown,
41338
41337
  PxDrawer,
41338
+ PxDropdown,
41339
41339
  PxFieldset,
41340
41340
  PxGrid,
41341
+ PxHeadingGroup,
41341
41342
  PxH1,
41342
41343
  PxH2,
41343
41344
  PxH3,
41344
41345
  PxH4,
41345
41346
  PxH5,
41346
41347
  PxH6,
41347
- PxHeadingGroup,
41348
41348
  PxImg,
41349
41349
  PxPicture,
41350
41350
  PxInput,
@@ -41377,11 +41377,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41377
41377
  PxSelectableBoxRadio,
41378
41378
  PxSeparator,
41379
41379
  PxSkeleton,
41380
- PxSpinner,
41381
41380
  PxSpan,
41381
+ PxSpinner,
41382
41382
  PxStatus,
41383
41383
  PxStatusCard,
41384
- PxStickyContainer,
41385
41384
  PxThemeSwitcher,
41386
41385
  PxSwitch,
41387
41386
  PxTable,
@@ -41394,15 +41393,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41394
41393
  PxTab,
41395
41394
  PxTabPanel,
41396
41395
  PxTag,
41397
- PxTimeline,
41398
- PxTimelineItem,
41399
41396
  PxTile,
41400
41397
  PxTileButton,
41401
41398
  PxTileCheckbox,
41402
41399
  PxTileLink,
41403
41400
  PxTileRadio,
41404
41401
  PxTileSwitch,
41402
+ PxTimeline,
41403
+ PxTimelineItem,
41405
41404
  PxTypography,
41405
+ PxStickyContainer,
41406
41406
  PxPatch,
41407
41407
  PxIcon,
41408
41408
  PxIconSet,
@@ -41422,31 +41422,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41422
41422
  PxButtonWrapper,
41423
41423
  PxButtonIcon,
41424
41424
  PxCard,
41425
+ PxAppleseed,
41426
+ PxCarousel,
41427
+ PxCarouselItem,
41425
41428
  PxCell,
41426
41429
  PxCellButton,
41427
41430
  PxCellCheckbox,
41428
41431
  PxCellLink,
41429
41432
  PxCellRadio,
41430
41433
  PxCellSwitch,
41431
- PxAppleseed,
41432
- PxCarousel,
41433
- PxCarouselItem,
41434
41434
  PxCheckbox,
41435
41435
  PxColorOption,
41436
41436
  PxColorOptionLink,
41437
41437
  PxContainer,
41438
41438
  PxContentHeader,
41439
- PxDropdown,
41440
41439
  PxDrawer,
41440
+ PxDropdown,
41441
41441
  PxFieldset,
41442
41442
  PxGrid,
41443
+ PxHeadingGroup,
41443
41444
  PxH1,
41444
41445
  PxH2,
41445
41446
  PxH3,
41446
41447
  PxH4,
41447
41448
  PxH5,
41448
41449
  PxH6,
41449
- PxHeadingGroup,
41450
41450
  PxImg,
41451
41451
  PxPicture,
41452
41452
  PxInput,
@@ -41479,11 +41479,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41479
41479
  PxSelectableBoxRadio,
41480
41480
  PxSeparator,
41481
41481
  PxSkeleton,
41482
- PxSpinner,
41483
41482
  PxSpan,
41483
+ PxSpinner,
41484
41484
  PxStatus,
41485
41485
  PxStatusCard,
41486
- PxStickyContainer,
41487
41486
  PxThemeSwitcher,
41488
41487
  PxSwitch,
41489
41488
  PxTable,
@@ -41496,15 +41495,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41496
41495
  PxTab,
41497
41496
  PxTabPanel,
41498
41497
  PxTag,
41499
- PxTimeline,
41500
- PxTimelineItem,
41501
41498
  PxTile,
41502
41499
  PxTileButton,
41503
41500
  PxTileCheckbox,
41504
41501
  PxTileLink,
41505
41502
  PxTileRadio,
41506
41503
  PxTileSwitch,
41504
+ PxTimeline,
41505
+ PxTimelineItem,
41507
41506
  PxTypography,
41507
+ PxStickyContainer,
41508
41508
  PxPatch,
41509
41509
  PxIcon,
41510
41510
  PxIconSet,