@proximus/lavender-angular 2.0.0-alpha.120 → 2.0.0-alpha.121
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 +4 -0
- package/esm2022/lavender.directive.mjs +347 -347
- package/fesm2022/proximus-lavender-angular.mjs +346 -346
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +114 -114
- package/package.json +1 -1
|
@@ -16976,45 +16976,102 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
16976
16976
|
}]
|
|
16977
16977
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
16978
16978
|
/**
|
|
16979
|
-
* @description Type-only wrapper for <px-
|
|
16979
|
+
* @description Type-only wrapper for <px-img>
|
|
16980
16980
|
*/
|
|
16981
|
-
class
|
|
16981
|
+
class PxImg {
|
|
16982
16982
|
elementRef;
|
|
16983
|
-
|
|
16984
|
-
|
|
16983
|
+
/** The URL of the image. */
|
|
16984
|
+
set src(value) {
|
|
16985
|
+
this.elementRef.nativeElement['src'] = value;
|
|
16985
16986
|
}
|
|
16986
|
-
get
|
|
16987
|
-
return this.elementRef.nativeElement['
|
|
16987
|
+
get src() {
|
|
16988
|
+
return this.elementRef.nativeElement['src'];
|
|
16988
16989
|
}
|
|
16989
|
-
|
|
16990
|
-
|
|
16990
|
+
/** The alternative text for the image. */
|
|
16991
|
+
set alt(value) {
|
|
16992
|
+
this.elementRef.nativeElement['alt'] = value;
|
|
16991
16993
|
}
|
|
16992
|
-
get
|
|
16993
|
-
return this.elementRef.nativeElement['
|
|
16994
|
+
get alt() {
|
|
16995
|
+
return this.elementRef.nativeElement['alt'];
|
|
16994
16996
|
}
|
|
16995
|
-
|
|
16996
|
-
|
|
16997
|
+
/** The loading strategy for the image ('lazy' or 'eager'). */
|
|
16998
|
+
set loading(value) {
|
|
16999
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
16997
17000
|
}
|
|
16998
|
-
get
|
|
16999
|
-
return this.elementRef.nativeElement['
|
|
17001
|
+
get loading() {
|
|
17002
|
+
return this.elementRef.nativeElement['loading'];
|
|
17000
17003
|
}
|
|
17001
|
-
set
|
|
17002
|
-
this.elementRef.nativeElement['
|
|
17004
|
+
set borderRadius(value) {
|
|
17005
|
+
this.elementRef.nativeElement['borderRadius'] = value;
|
|
17003
17006
|
}
|
|
17004
|
-
get
|
|
17005
|
-
return this.elementRef.nativeElement['
|
|
17007
|
+
get borderRadius() {
|
|
17008
|
+
return this.elementRef.nativeElement['borderRadius'];
|
|
17006
17009
|
}
|
|
17007
|
-
set
|
|
17008
|
-
this.elementRef.nativeElement['
|
|
17010
|
+
set noBorderRadius(value) {
|
|
17011
|
+
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
17009
17012
|
}
|
|
17010
|
-
get
|
|
17011
|
-
return this.elementRef.nativeElement['
|
|
17013
|
+
get noBorderRadius() {
|
|
17014
|
+
return this.elementRef.nativeElement['noBorderRadius'];
|
|
17012
17015
|
}
|
|
17013
|
-
set
|
|
17014
|
-
this.elementRef.nativeElement['
|
|
17016
|
+
set noBorderRadiusMobile(value) {
|
|
17017
|
+
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
17015
17018
|
}
|
|
17016
|
-
get
|
|
17017
|
-
return this.elementRef.nativeElement['
|
|
17019
|
+
get noBorderRadiusMobile() {
|
|
17020
|
+
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
17021
|
+
}
|
|
17022
|
+
set noBorderRadiusTablet(value) {
|
|
17023
|
+
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
17024
|
+
}
|
|
17025
|
+
get noBorderRadiusTablet() {
|
|
17026
|
+
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
17027
|
+
}
|
|
17028
|
+
set noBorderRadiusLaptop(value) {
|
|
17029
|
+
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
17030
|
+
}
|
|
17031
|
+
get noBorderRadiusLaptop() {
|
|
17032
|
+
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
17033
|
+
}
|
|
17034
|
+
set width(value) {
|
|
17035
|
+
this.elementRef.nativeElement['width'] = value;
|
|
17036
|
+
}
|
|
17037
|
+
get width() {
|
|
17038
|
+
return this.elementRef.nativeElement['width'];
|
|
17039
|
+
}
|
|
17040
|
+
set widthMobile(value) {
|
|
17041
|
+
this.elementRef.nativeElement['widthMobile'] = value;
|
|
17042
|
+
}
|
|
17043
|
+
get widthMobile() {
|
|
17044
|
+
return this.elementRef.nativeElement['widthMobile'];
|
|
17045
|
+
}
|
|
17046
|
+
set widthTablet(value) {
|
|
17047
|
+
this.elementRef.nativeElement['widthTablet'] = value;
|
|
17048
|
+
}
|
|
17049
|
+
get widthTablet() {
|
|
17050
|
+
return this.elementRef.nativeElement['widthTablet'];
|
|
17051
|
+
}
|
|
17052
|
+
set widthLaptop(value) {
|
|
17053
|
+
this.elementRef.nativeElement['widthLaptop'] = value;
|
|
17054
|
+
}
|
|
17055
|
+
get widthLaptop() {
|
|
17056
|
+
return this.elementRef.nativeElement['widthLaptop'];
|
|
17057
|
+
}
|
|
17058
|
+
set widthDesktop(value) {
|
|
17059
|
+
this.elementRef.nativeElement['widthDesktop'] = value;
|
|
17060
|
+
}
|
|
17061
|
+
get widthDesktop() {
|
|
17062
|
+
return this.elementRef.nativeElement['widthDesktop'];
|
|
17063
|
+
}
|
|
17064
|
+
set cover(value) {
|
|
17065
|
+
this.elementRef.nativeElement['cover'] = value;
|
|
17066
|
+
}
|
|
17067
|
+
get cover() {
|
|
17068
|
+
return this.elementRef.nativeElement['cover'];
|
|
17069
|
+
}
|
|
17070
|
+
set disabled(value) {
|
|
17071
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
17072
|
+
}
|
|
17073
|
+
get disabled() {
|
|
17074
|
+
return this.elementRef.nativeElement['disabled'];
|
|
17018
17075
|
}
|
|
17019
17076
|
set grow(value) {
|
|
17020
17077
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -17298,37 +17355,56 @@ class PxInput {
|
|
|
17298
17355
|
get stickyBottom() {
|
|
17299
17356
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
17300
17357
|
}
|
|
17301
|
-
event = new EventEmitter();
|
|
17302
17358
|
constructor(elementRef) {
|
|
17303
17359
|
this.elementRef = elementRef;
|
|
17304
|
-
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
17305
|
-
this.event.emit(e.detail);
|
|
17306
|
-
});
|
|
17307
17360
|
}
|
|
17308
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
17309
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
17361
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxImg, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
17362
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxImg, selector: "px-img", inputs: { src: "src", alt: "alt", loading: "loading", borderRadius: ["border-radius", "borderRadius"], noBorderRadius: ["no-border-radius", "noBorderRadius"], noBorderRadiusMobile: ["no-border-radius--mobile", "noBorderRadiusMobile"], noBorderRadiusTablet: ["no-border-radius--tablet", "noBorderRadiusTablet"], noBorderRadiusLaptop: ["no-border-radius--laptop", "noBorderRadiusLaptop"], width: "width", widthMobile: ["width--mobile", "widthMobile"], widthTablet: ["width--tablet", "widthTablet"], widthLaptop: ["width--laptop", "widthLaptop"], widthDesktop: ["width--desktop", "widthDesktop"], cover: "cover", 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"] }, ngImport: i0 });
|
|
17310
17363
|
}
|
|
17311
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
17364
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxImg, decorators: [{
|
|
17312
17365
|
type: Directive,
|
|
17313
17366
|
args: [{
|
|
17314
|
-
selector: 'px-
|
|
17367
|
+
selector: 'px-img',
|
|
17315
17368
|
}]
|
|
17316
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
17369
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { src: [{
|
|
17317
17370
|
type: Input
|
|
17318
|
-
}],
|
|
17371
|
+
}], alt: [{
|
|
17319
17372
|
type: Input
|
|
17320
|
-
}],
|
|
17373
|
+
}], loading: [{
|
|
17374
|
+
type: Input
|
|
17375
|
+
}], borderRadius: [{
|
|
17321
17376
|
type: Input,
|
|
17322
|
-
args: ['
|
|
17323
|
-
}],
|
|
17377
|
+
args: ['border-radius']
|
|
17378
|
+
}], noBorderRadius: [{
|
|
17324
17379
|
type: Input,
|
|
17325
|
-
args: ['
|
|
17326
|
-
}],
|
|
17380
|
+
args: ['no-border-radius']
|
|
17381
|
+
}], noBorderRadiusMobile: [{
|
|
17327
17382
|
type: Input,
|
|
17328
|
-
args: ['
|
|
17329
|
-
}],
|
|
17383
|
+
args: ['no-border-radius--mobile']
|
|
17384
|
+
}], noBorderRadiusTablet: [{
|
|
17330
17385
|
type: Input,
|
|
17331
|
-
args: ['
|
|
17386
|
+
args: ['no-border-radius--tablet']
|
|
17387
|
+
}], noBorderRadiusLaptop: [{
|
|
17388
|
+
type: Input,
|
|
17389
|
+
args: ['no-border-radius--laptop']
|
|
17390
|
+
}], width: [{
|
|
17391
|
+
type: Input
|
|
17392
|
+
}], widthMobile: [{
|
|
17393
|
+
type: Input,
|
|
17394
|
+
args: ['width--mobile']
|
|
17395
|
+
}], widthTablet: [{
|
|
17396
|
+
type: Input,
|
|
17397
|
+
args: ['width--tablet']
|
|
17398
|
+
}], widthLaptop: [{
|
|
17399
|
+
type: Input,
|
|
17400
|
+
args: ['width--laptop']
|
|
17401
|
+
}], widthDesktop: [{
|
|
17402
|
+
type: Input,
|
|
17403
|
+
args: ['width--desktop']
|
|
17404
|
+
}], cover: [{
|
|
17405
|
+
type: Input
|
|
17406
|
+
}], disabled: [{
|
|
17407
|
+
type: Input
|
|
17332
17408
|
}], grow: [{
|
|
17333
17409
|
type: Input
|
|
17334
17410
|
}], growMobile: [{
|
|
@@ -17465,49 +17541,101 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
17465
17541
|
}], stickyBottom: [{
|
|
17466
17542
|
type: Input,
|
|
17467
17543
|
args: ['sticky-bottom']
|
|
17468
|
-
}], event: [{
|
|
17469
|
-
type: Output
|
|
17470
17544
|
}] } });
|
|
17471
17545
|
/**
|
|
17472
|
-
* @description Type-only wrapper for <px-
|
|
17546
|
+
* @description Type-only wrapper for <px-picture>
|
|
17473
17547
|
*/
|
|
17474
|
-
class
|
|
17548
|
+
class PxPicture {
|
|
17475
17549
|
elementRef;
|
|
17476
|
-
set
|
|
17477
|
-
this.elementRef.nativeElement['
|
|
17550
|
+
set loading(value) {
|
|
17551
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
17478
17552
|
}
|
|
17479
|
-
get
|
|
17480
|
-
return this.elementRef.nativeElement['
|
|
17553
|
+
get loading() {
|
|
17554
|
+
return this.elementRef.nativeElement['loading'];
|
|
17481
17555
|
}
|
|
17482
|
-
set
|
|
17483
|
-
this.elementRef.nativeElement['
|
|
17556
|
+
set alt(value) {
|
|
17557
|
+
this.elementRef.nativeElement['alt'] = value;
|
|
17484
17558
|
}
|
|
17485
|
-
get
|
|
17486
|
-
return this.elementRef.nativeElement['
|
|
17559
|
+
get alt() {
|
|
17560
|
+
return this.elementRef.nativeElement['alt'];
|
|
17487
17561
|
}
|
|
17488
|
-
set
|
|
17489
|
-
this.elementRef.nativeElement['
|
|
17562
|
+
set src(value) {
|
|
17563
|
+
this.elementRef.nativeElement['src'] = value;
|
|
17490
17564
|
}
|
|
17491
|
-
get
|
|
17492
|
-
return this.elementRef.nativeElement['
|
|
17565
|
+
get src() {
|
|
17566
|
+
return this.elementRef.nativeElement['src'];
|
|
17493
17567
|
}
|
|
17494
|
-
set
|
|
17495
|
-
this.elementRef.nativeElement['
|
|
17568
|
+
set borderRadius(value) {
|
|
17569
|
+
this.elementRef.nativeElement['borderRadius'] = value;
|
|
17496
17570
|
}
|
|
17497
|
-
get
|
|
17498
|
-
return this.elementRef.nativeElement['
|
|
17571
|
+
get borderRadius() {
|
|
17572
|
+
return this.elementRef.nativeElement['borderRadius'];
|
|
17499
17573
|
}
|
|
17500
|
-
set
|
|
17501
|
-
this.elementRef.nativeElement['
|
|
17574
|
+
set noBorderRadius(value) {
|
|
17575
|
+
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
17502
17576
|
}
|
|
17503
|
-
get
|
|
17504
|
-
return this.elementRef.nativeElement['
|
|
17577
|
+
get noBorderRadius() {
|
|
17578
|
+
return this.elementRef.nativeElement['noBorderRadius'];
|
|
17505
17579
|
}
|
|
17506
|
-
set
|
|
17507
|
-
this.elementRef.nativeElement['
|
|
17580
|
+
set noBorderRadiusMobile(value) {
|
|
17581
|
+
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
17508
17582
|
}
|
|
17509
|
-
get
|
|
17510
|
-
return this.elementRef.nativeElement['
|
|
17583
|
+
get noBorderRadiusMobile() {
|
|
17584
|
+
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
17585
|
+
}
|
|
17586
|
+
set noBorderRadiusTablet(value) {
|
|
17587
|
+
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
17588
|
+
}
|
|
17589
|
+
get noBorderRadiusTablet() {
|
|
17590
|
+
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
17591
|
+
}
|
|
17592
|
+
set noBorderRadiusLaptop(value) {
|
|
17593
|
+
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
17594
|
+
}
|
|
17595
|
+
get noBorderRadiusLaptop() {
|
|
17596
|
+
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
17597
|
+
}
|
|
17598
|
+
set width(value) {
|
|
17599
|
+
this.elementRef.nativeElement['width'] = value;
|
|
17600
|
+
}
|
|
17601
|
+
get width() {
|
|
17602
|
+
return this.elementRef.nativeElement['width'];
|
|
17603
|
+
}
|
|
17604
|
+
set widthMobile(value) {
|
|
17605
|
+
this.elementRef.nativeElement['widthMobile'] = value;
|
|
17606
|
+
}
|
|
17607
|
+
get widthMobile() {
|
|
17608
|
+
return this.elementRef.nativeElement['widthMobile'];
|
|
17609
|
+
}
|
|
17610
|
+
set widthTablet(value) {
|
|
17611
|
+
this.elementRef.nativeElement['widthTablet'] = value;
|
|
17612
|
+
}
|
|
17613
|
+
get widthTablet() {
|
|
17614
|
+
return this.elementRef.nativeElement['widthTablet'];
|
|
17615
|
+
}
|
|
17616
|
+
set widthLaptop(value) {
|
|
17617
|
+
this.elementRef.nativeElement['widthLaptop'] = value;
|
|
17618
|
+
}
|
|
17619
|
+
get widthLaptop() {
|
|
17620
|
+
return this.elementRef.nativeElement['widthLaptop'];
|
|
17621
|
+
}
|
|
17622
|
+
set widthDesktop(value) {
|
|
17623
|
+
this.elementRef.nativeElement['widthDesktop'] = value;
|
|
17624
|
+
}
|
|
17625
|
+
get widthDesktop() {
|
|
17626
|
+
return this.elementRef.nativeElement['widthDesktop'];
|
|
17627
|
+
}
|
|
17628
|
+
set cover(value) {
|
|
17629
|
+
this.elementRef.nativeElement['cover'] = value;
|
|
17630
|
+
}
|
|
17631
|
+
get cover() {
|
|
17632
|
+
return this.elementRef.nativeElement['cover'];
|
|
17633
|
+
}
|
|
17634
|
+
set disabled(value) {
|
|
17635
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
17636
|
+
}
|
|
17637
|
+
get disabled() {
|
|
17638
|
+
return this.elementRef.nativeElement['disabled'];
|
|
17511
17639
|
}
|
|
17512
17640
|
set grow(value) {
|
|
17513
17641
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -17791,37 +17919,56 @@ class PxSelect {
|
|
|
17791
17919
|
get stickyBottom() {
|
|
17792
17920
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
17793
17921
|
}
|
|
17794
|
-
event = new EventEmitter();
|
|
17795
17922
|
constructor(elementRef) {
|
|
17796
17923
|
this.elementRef = elementRef;
|
|
17797
|
-
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
17798
|
-
this.event.emit(e.detail);
|
|
17799
|
-
});
|
|
17800
17924
|
}
|
|
17801
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
17802
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
17925
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPicture, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
17926
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxPicture, selector: "px-picture", inputs: { loading: "loading", alt: "alt", src: "src", borderRadius: ["border-radius", "borderRadius"], noBorderRadius: ["no-border-radius", "noBorderRadius"], noBorderRadiusMobile: ["no-border-radius--mobile", "noBorderRadiusMobile"], noBorderRadiusTablet: ["no-border-radius--tablet", "noBorderRadiusTablet"], noBorderRadiusLaptop: ["no-border-radius--laptop", "noBorderRadiusLaptop"], width: "width", widthMobile: ["width--mobile", "widthMobile"], widthTablet: ["width--tablet", "widthTablet"], widthLaptop: ["width--laptop", "widthLaptop"], widthDesktop: ["width--desktop", "widthDesktop"], cover: "cover", 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"] }, ngImport: i0 });
|
|
17803
17927
|
}
|
|
17804
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
17928
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPicture, decorators: [{
|
|
17805
17929
|
type: Directive,
|
|
17806
17930
|
args: [{
|
|
17807
|
-
selector: 'px-
|
|
17931
|
+
selector: 'px-picture',
|
|
17808
17932
|
}]
|
|
17809
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
17933
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { loading: [{
|
|
17810
17934
|
type: Input
|
|
17811
|
-
}],
|
|
17935
|
+
}], alt: [{
|
|
17812
17936
|
type: Input
|
|
17813
|
-
}],
|
|
17937
|
+
}], src: [{
|
|
17938
|
+
type: Input
|
|
17939
|
+
}], borderRadius: [{
|
|
17814
17940
|
type: Input,
|
|
17815
|
-
args: ['
|
|
17816
|
-
}],
|
|
17941
|
+
args: ['border-radius']
|
|
17942
|
+
}], noBorderRadius: [{
|
|
17817
17943
|
type: Input,
|
|
17818
|
-
args: ['
|
|
17819
|
-
}],
|
|
17944
|
+
args: ['no-border-radius']
|
|
17945
|
+
}], noBorderRadiusMobile: [{
|
|
17820
17946
|
type: Input,
|
|
17821
|
-
args: ['
|
|
17822
|
-
}],
|
|
17947
|
+
args: ['no-border-radius--mobile']
|
|
17948
|
+
}], noBorderRadiusTablet: [{
|
|
17823
17949
|
type: Input,
|
|
17824
|
-
args: ['
|
|
17950
|
+
args: ['no-border-radius--tablet']
|
|
17951
|
+
}], noBorderRadiusLaptop: [{
|
|
17952
|
+
type: Input,
|
|
17953
|
+
args: ['no-border-radius--laptop']
|
|
17954
|
+
}], width: [{
|
|
17955
|
+
type: Input
|
|
17956
|
+
}], widthMobile: [{
|
|
17957
|
+
type: Input,
|
|
17958
|
+
args: ['width--mobile']
|
|
17959
|
+
}], widthTablet: [{
|
|
17960
|
+
type: Input,
|
|
17961
|
+
args: ['width--tablet']
|
|
17962
|
+
}], widthLaptop: [{
|
|
17963
|
+
type: Input,
|
|
17964
|
+
args: ['width--laptop']
|
|
17965
|
+
}], widthDesktop: [{
|
|
17966
|
+
type: Input,
|
|
17967
|
+
args: ['width--desktop']
|
|
17968
|
+
}], cover: [{
|
|
17969
|
+
type: Input
|
|
17970
|
+
}], disabled: [{
|
|
17971
|
+
type: Input
|
|
17825
17972
|
}], grow: [{
|
|
17826
17973
|
type: Input
|
|
17827
17974
|
}], growMobile: [{
|
|
@@ -17958,13 +18105,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
17958
18105
|
}], stickyBottom: [{
|
|
17959
18106
|
type: Input,
|
|
17960
18107
|
args: ['sticky-bottom']
|
|
17961
|
-
}], event: [{
|
|
17962
|
-
type: Output
|
|
17963
18108
|
}] } });
|
|
17964
18109
|
/**
|
|
17965
|
-
* @description Type-only wrapper for <px-
|
|
18110
|
+
* @description Type-only wrapper for <px-input>
|
|
17966
18111
|
*/
|
|
17967
|
-
class
|
|
18112
|
+
class PxInput {
|
|
17968
18113
|
elementRef;
|
|
17969
18114
|
set state(value) {
|
|
17970
18115
|
this.elementRef.nativeElement['state'] = value;
|
|
@@ -18291,13 +18436,13 @@ class PxTextarea {
|
|
|
18291
18436
|
this.event.emit(e.detail);
|
|
18292
18437
|
});
|
|
18293
18438
|
}
|
|
18294
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
18295
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
18439
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxInput, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18440
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxInput, selector: "px-input", inputs: { state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], 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"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
18296
18441
|
}
|
|
18297
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
18442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxInput, decorators: [{
|
|
18298
18443
|
type: Directive,
|
|
18299
18444
|
args: [{
|
|
18300
|
-
selector: 'px-
|
|
18445
|
+
selector: 'px-input',
|
|
18301
18446
|
}]
|
|
18302
18447
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
18303
18448
|
type: Input
|
|
@@ -18455,9 +18600,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
18455
18600
|
type: Output
|
|
18456
18601
|
}] } });
|
|
18457
18602
|
/**
|
|
18458
|
-
* @description Type-only wrapper for <px-
|
|
18603
|
+
* @description Type-only wrapper for <px-select>
|
|
18459
18604
|
*/
|
|
18460
|
-
class
|
|
18605
|
+
class PxSelect {
|
|
18461
18606
|
elementRef;
|
|
18462
18607
|
set state(value) {
|
|
18463
18608
|
this.elementRef.nativeElement['state'] = value;
|
|
@@ -18784,13 +18929,13 @@ class PxFileupload {
|
|
|
18784
18929
|
this.event.emit(e.detail);
|
|
18785
18930
|
});
|
|
18786
18931
|
}
|
|
18787
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
18788
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
18932
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelect, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18933
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSelect, selector: "px-select", inputs: { state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], 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"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
18789
18934
|
}
|
|
18790
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
18935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelect, decorators: [{
|
|
18791
18936
|
type: Directive,
|
|
18792
18937
|
args: [{
|
|
18793
|
-
selector: 'px-
|
|
18938
|
+
selector: 'px-select',
|
|
18794
18939
|
}]
|
|
18795
18940
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
18796
18941
|
type: Input
|
|
@@ -18948,102 +19093,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
18948
19093
|
type: Output
|
|
18949
19094
|
}] } });
|
|
18950
19095
|
/**
|
|
18951
|
-
* @description Type-only wrapper for <px-
|
|
19096
|
+
* @description Type-only wrapper for <px-textarea>
|
|
18952
19097
|
*/
|
|
18953
|
-
class
|
|
19098
|
+
class PxTextarea {
|
|
18954
19099
|
elementRef;
|
|
18955
|
-
|
|
18956
|
-
|
|
18957
|
-
this.elementRef.nativeElement['src'] = value;
|
|
18958
|
-
}
|
|
18959
|
-
get src() {
|
|
18960
|
-
return this.elementRef.nativeElement['src'];
|
|
18961
|
-
}
|
|
18962
|
-
/** The alternative text for the image. */
|
|
18963
|
-
set alt(value) {
|
|
18964
|
-
this.elementRef.nativeElement['alt'] = value;
|
|
18965
|
-
}
|
|
18966
|
-
get alt() {
|
|
18967
|
-
return this.elementRef.nativeElement['alt'];
|
|
18968
|
-
}
|
|
18969
|
-
/** The loading strategy for the image ('lazy' or 'eager'). */
|
|
18970
|
-
set loading(value) {
|
|
18971
|
-
this.elementRef.nativeElement['loading'] = value;
|
|
18972
|
-
}
|
|
18973
|
-
get loading() {
|
|
18974
|
-
return this.elementRef.nativeElement['loading'];
|
|
18975
|
-
}
|
|
18976
|
-
set borderRadius(value) {
|
|
18977
|
-
this.elementRef.nativeElement['borderRadius'] = value;
|
|
18978
|
-
}
|
|
18979
|
-
get borderRadius() {
|
|
18980
|
-
return this.elementRef.nativeElement['borderRadius'];
|
|
18981
|
-
}
|
|
18982
|
-
set noBorderRadius(value) {
|
|
18983
|
-
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
18984
|
-
}
|
|
18985
|
-
get noBorderRadius() {
|
|
18986
|
-
return this.elementRef.nativeElement['noBorderRadius'];
|
|
18987
|
-
}
|
|
18988
|
-
set noBorderRadiusMobile(value) {
|
|
18989
|
-
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
18990
|
-
}
|
|
18991
|
-
get noBorderRadiusMobile() {
|
|
18992
|
-
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
18993
|
-
}
|
|
18994
|
-
set noBorderRadiusTablet(value) {
|
|
18995
|
-
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
18996
|
-
}
|
|
18997
|
-
get noBorderRadiusTablet() {
|
|
18998
|
-
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
18999
|
-
}
|
|
19000
|
-
set noBorderRadiusLaptop(value) {
|
|
19001
|
-
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
19002
|
-
}
|
|
19003
|
-
get noBorderRadiusLaptop() {
|
|
19004
|
-
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
19005
|
-
}
|
|
19006
|
-
set width(value) {
|
|
19007
|
-
this.elementRef.nativeElement['width'] = value;
|
|
19008
|
-
}
|
|
19009
|
-
get width() {
|
|
19010
|
-
return this.elementRef.nativeElement['width'];
|
|
19011
|
-
}
|
|
19012
|
-
set widthMobile(value) {
|
|
19013
|
-
this.elementRef.nativeElement['widthMobile'] = value;
|
|
19100
|
+
set state(value) {
|
|
19101
|
+
this.elementRef.nativeElement['state'] = value;
|
|
19014
19102
|
}
|
|
19015
|
-
get
|
|
19016
|
-
return this.elementRef.nativeElement['
|
|
19103
|
+
get state() {
|
|
19104
|
+
return this.elementRef.nativeElement['state'];
|
|
19017
19105
|
}
|
|
19018
|
-
set
|
|
19019
|
-
this.elementRef.nativeElement['
|
|
19106
|
+
set extended(value) {
|
|
19107
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
19020
19108
|
}
|
|
19021
|
-
get
|
|
19022
|
-
return this.elementRef.nativeElement['
|
|
19109
|
+
get extended() {
|
|
19110
|
+
return this.elementRef.nativeElement['extended'];
|
|
19023
19111
|
}
|
|
19024
|
-
set
|
|
19025
|
-
this.elementRef.nativeElement['
|
|
19112
|
+
set extendedMobile(value) {
|
|
19113
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
19026
19114
|
}
|
|
19027
|
-
get
|
|
19028
|
-
return this.elementRef.nativeElement['
|
|
19115
|
+
get extendedMobile() {
|
|
19116
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
19029
19117
|
}
|
|
19030
|
-
set
|
|
19031
|
-
this.elementRef.nativeElement['
|
|
19118
|
+
set extendedTablet(value) {
|
|
19119
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
19032
19120
|
}
|
|
19033
|
-
get
|
|
19034
|
-
return this.elementRef.nativeElement['
|
|
19121
|
+
get extendedTablet() {
|
|
19122
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
19035
19123
|
}
|
|
19036
|
-
set
|
|
19037
|
-
this.elementRef.nativeElement['
|
|
19124
|
+
set extendedLaptop(value) {
|
|
19125
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
19038
19126
|
}
|
|
19039
|
-
get
|
|
19040
|
-
return this.elementRef.nativeElement['
|
|
19127
|
+
get extendedLaptop() {
|
|
19128
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
19041
19129
|
}
|
|
19042
|
-
set
|
|
19043
|
-
this.elementRef.nativeElement['
|
|
19130
|
+
set extendedDesktop(value) {
|
|
19131
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
19044
19132
|
}
|
|
19045
|
-
get
|
|
19046
|
-
return this.elementRef.nativeElement['
|
|
19133
|
+
get extendedDesktop() {
|
|
19134
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
19047
19135
|
}
|
|
19048
19136
|
set grow(value) {
|
|
19049
19137
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -19327,56 +19415,37 @@ class PxImg {
|
|
|
19327
19415
|
get stickyBottom() {
|
|
19328
19416
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
19329
19417
|
}
|
|
19418
|
+
event = new EventEmitter();
|
|
19330
19419
|
constructor(elementRef) {
|
|
19331
19420
|
this.elementRef = elementRef;
|
|
19421
|
+
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
19422
|
+
this.event.emit(e.detail);
|
|
19423
|
+
});
|
|
19332
19424
|
}
|
|
19333
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
19334
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
19425
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTextarea, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
19426
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTextarea, selector: "px-textarea", inputs: { state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], 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"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
19335
19427
|
}
|
|
19336
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
19428
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTextarea, decorators: [{
|
|
19337
19429
|
type: Directive,
|
|
19338
19430
|
args: [{
|
|
19339
|
-
selector: 'px-
|
|
19431
|
+
selector: 'px-textarea',
|
|
19340
19432
|
}]
|
|
19341
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
19342
|
-
type: Input
|
|
19343
|
-
}], alt: [{
|
|
19344
|
-
type: Input
|
|
19345
|
-
}], loading: [{
|
|
19433
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
19346
19434
|
type: Input
|
|
19347
|
-
}],
|
|
19348
|
-
type: Input,
|
|
19349
|
-
args: ['border-radius']
|
|
19350
|
-
}], noBorderRadius: [{
|
|
19351
|
-
type: Input,
|
|
19352
|
-
args: ['no-border-radius']
|
|
19353
|
-
}], noBorderRadiusMobile: [{
|
|
19354
|
-
type: Input,
|
|
19355
|
-
args: ['no-border-radius--mobile']
|
|
19356
|
-
}], noBorderRadiusTablet: [{
|
|
19357
|
-
type: Input,
|
|
19358
|
-
args: ['no-border-radius--tablet']
|
|
19359
|
-
}], noBorderRadiusLaptop: [{
|
|
19360
|
-
type: Input,
|
|
19361
|
-
args: ['no-border-radius--laptop']
|
|
19362
|
-
}], width: [{
|
|
19435
|
+
}], extended: [{
|
|
19363
19436
|
type: Input
|
|
19364
|
-
}],
|
|
19437
|
+
}], extendedMobile: [{
|
|
19365
19438
|
type: Input,
|
|
19366
|
-
args: ['
|
|
19367
|
-
}],
|
|
19439
|
+
args: ['extended--mobile']
|
|
19440
|
+
}], extendedTablet: [{
|
|
19368
19441
|
type: Input,
|
|
19369
|
-
args: ['
|
|
19370
|
-
}],
|
|
19442
|
+
args: ['extended--tablet']
|
|
19443
|
+
}], extendedLaptop: [{
|
|
19371
19444
|
type: Input,
|
|
19372
|
-
args: ['
|
|
19373
|
-
}],
|
|
19445
|
+
args: ['extended--laptop']
|
|
19446
|
+
}], extendedDesktop: [{
|
|
19374
19447
|
type: Input,
|
|
19375
|
-
args: ['
|
|
19376
|
-
}], cover: [{
|
|
19377
|
-
type: Input
|
|
19378
|
-
}], disabled: [{
|
|
19379
|
-
type: Input
|
|
19448
|
+
args: ['extended--desktop']
|
|
19380
19449
|
}], grow: [{
|
|
19381
19450
|
type: Input
|
|
19382
19451
|
}], growMobile: [{
|
|
@@ -19513,101 +19582,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
19513
19582
|
}], stickyBottom: [{
|
|
19514
19583
|
type: Input,
|
|
19515
19584
|
args: ['sticky-bottom']
|
|
19585
|
+
}], event: [{
|
|
19586
|
+
type: Output
|
|
19516
19587
|
}] } });
|
|
19517
19588
|
/**
|
|
19518
|
-
* @description Type-only wrapper for <px-
|
|
19589
|
+
* @description Type-only wrapper for <px-fileupload>
|
|
19519
19590
|
*/
|
|
19520
|
-
class
|
|
19591
|
+
class PxFileupload {
|
|
19521
19592
|
elementRef;
|
|
19522
|
-
set
|
|
19523
|
-
this.elementRef.nativeElement['
|
|
19524
|
-
}
|
|
19525
|
-
get loading() {
|
|
19526
|
-
return this.elementRef.nativeElement['loading'];
|
|
19527
|
-
}
|
|
19528
|
-
set alt(value) {
|
|
19529
|
-
this.elementRef.nativeElement['alt'] = value;
|
|
19530
|
-
}
|
|
19531
|
-
get alt() {
|
|
19532
|
-
return this.elementRef.nativeElement['alt'];
|
|
19533
|
-
}
|
|
19534
|
-
set src(value) {
|
|
19535
|
-
this.elementRef.nativeElement['src'] = value;
|
|
19536
|
-
}
|
|
19537
|
-
get src() {
|
|
19538
|
-
return this.elementRef.nativeElement['src'];
|
|
19539
|
-
}
|
|
19540
|
-
set borderRadius(value) {
|
|
19541
|
-
this.elementRef.nativeElement['borderRadius'] = value;
|
|
19542
|
-
}
|
|
19543
|
-
get borderRadius() {
|
|
19544
|
-
return this.elementRef.nativeElement['borderRadius'];
|
|
19545
|
-
}
|
|
19546
|
-
set noBorderRadius(value) {
|
|
19547
|
-
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
19548
|
-
}
|
|
19549
|
-
get noBorderRadius() {
|
|
19550
|
-
return this.elementRef.nativeElement['noBorderRadius'];
|
|
19551
|
-
}
|
|
19552
|
-
set noBorderRadiusMobile(value) {
|
|
19553
|
-
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
19554
|
-
}
|
|
19555
|
-
get noBorderRadiusMobile() {
|
|
19556
|
-
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
19557
|
-
}
|
|
19558
|
-
set noBorderRadiusTablet(value) {
|
|
19559
|
-
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
19560
|
-
}
|
|
19561
|
-
get noBorderRadiusTablet() {
|
|
19562
|
-
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
19563
|
-
}
|
|
19564
|
-
set noBorderRadiusLaptop(value) {
|
|
19565
|
-
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
19566
|
-
}
|
|
19567
|
-
get noBorderRadiusLaptop() {
|
|
19568
|
-
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
19569
|
-
}
|
|
19570
|
-
set width(value) {
|
|
19571
|
-
this.elementRef.nativeElement['width'] = value;
|
|
19572
|
-
}
|
|
19573
|
-
get width() {
|
|
19574
|
-
return this.elementRef.nativeElement['width'];
|
|
19575
|
-
}
|
|
19576
|
-
set widthMobile(value) {
|
|
19577
|
-
this.elementRef.nativeElement['widthMobile'] = value;
|
|
19593
|
+
set state(value) {
|
|
19594
|
+
this.elementRef.nativeElement['state'] = value;
|
|
19578
19595
|
}
|
|
19579
|
-
get
|
|
19580
|
-
return this.elementRef.nativeElement['
|
|
19596
|
+
get state() {
|
|
19597
|
+
return this.elementRef.nativeElement['state'];
|
|
19581
19598
|
}
|
|
19582
|
-
set
|
|
19583
|
-
this.elementRef.nativeElement['
|
|
19599
|
+
set extended(value) {
|
|
19600
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
19584
19601
|
}
|
|
19585
|
-
get
|
|
19586
|
-
return this.elementRef.nativeElement['
|
|
19602
|
+
get extended() {
|
|
19603
|
+
return this.elementRef.nativeElement['extended'];
|
|
19587
19604
|
}
|
|
19588
|
-
set
|
|
19589
|
-
this.elementRef.nativeElement['
|
|
19605
|
+
set extendedMobile(value) {
|
|
19606
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
19590
19607
|
}
|
|
19591
|
-
get
|
|
19592
|
-
return this.elementRef.nativeElement['
|
|
19608
|
+
get extendedMobile() {
|
|
19609
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
19593
19610
|
}
|
|
19594
|
-
set
|
|
19595
|
-
this.elementRef.nativeElement['
|
|
19611
|
+
set extendedTablet(value) {
|
|
19612
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
19596
19613
|
}
|
|
19597
|
-
get
|
|
19598
|
-
return this.elementRef.nativeElement['
|
|
19614
|
+
get extendedTablet() {
|
|
19615
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
19599
19616
|
}
|
|
19600
|
-
set
|
|
19601
|
-
this.elementRef.nativeElement['
|
|
19617
|
+
set extendedLaptop(value) {
|
|
19618
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
19602
19619
|
}
|
|
19603
|
-
get
|
|
19604
|
-
return this.elementRef.nativeElement['
|
|
19620
|
+
get extendedLaptop() {
|
|
19621
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
19605
19622
|
}
|
|
19606
|
-
set
|
|
19607
|
-
this.elementRef.nativeElement['
|
|
19623
|
+
set extendedDesktop(value) {
|
|
19624
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
19608
19625
|
}
|
|
19609
|
-
get
|
|
19610
|
-
return this.elementRef.nativeElement['
|
|
19626
|
+
get extendedDesktop() {
|
|
19627
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
19611
19628
|
}
|
|
19612
19629
|
set grow(value) {
|
|
19613
19630
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -19891,56 +19908,37 @@ class PxPicture {
|
|
|
19891
19908
|
get stickyBottom() {
|
|
19892
19909
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
19893
19910
|
}
|
|
19911
|
+
event = new EventEmitter();
|
|
19894
19912
|
constructor(elementRef) {
|
|
19895
19913
|
this.elementRef = elementRef;
|
|
19914
|
+
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
19915
|
+
this.event.emit(e.detail);
|
|
19916
|
+
});
|
|
19896
19917
|
}
|
|
19897
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
19898
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
19918
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxFileupload, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
19919
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxFileupload, selector: "px-fileupload", inputs: { state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], 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"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
19899
19920
|
}
|
|
19900
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
19921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxFileupload, decorators: [{
|
|
19901
19922
|
type: Directive,
|
|
19902
19923
|
args: [{
|
|
19903
|
-
selector: 'px-
|
|
19924
|
+
selector: 'px-fileupload',
|
|
19904
19925
|
}]
|
|
19905
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
19906
|
-
type: Input
|
|
19907
|
-
}], alt: [{
|
|
19908
|
-
type: Input
|
|
19909
|
-
}], src: [{
|
|
19926
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
19910
19927
|
type: Input
|
|
19911
|
-
}],
|
|
19912
|
-
type: Input,
|
|
19913
|
-
args: ['border-radius']
|
|
19914
|
-
}], noBorderRadius: [{
|
|
19915
|
-
type: Input,
|
|
19916
|
-
args: ['no-border-radius']
|
|
19917
|
-
}], noBorderRadiusMobile: [{
|
|
19918
|
-
type: Input,
|
|
19919
|
-
args: ['no-border-radius--mobile']
|
|
19920
|
-
}], noBorderRadiusTablet: [{
|
|
19921
|
-
type: Input,
|
|
19922
|
-
args: ['no-border-radius--tablet']
|
|
19923
|
-
}], noBorderRadiusLaptop: [{
|
|
19924
|
-
type: Input,
|
|
19925
|
-
args: ['no-border-radius--laptop']
|
|
19926
|
-
}], width: [{
|
|
19928
|
+
}], extended: [{
|
|
19927
19929
|
type: Input
|
|
19928
|
-
}],
|
|
19930
|
+
}], extendedMobile: [{
|
|
19929
19931
|
type: Input,
|
|
19930
|
-
args: ['
|
|
19931
|
-
}],
|
|
19932
|
+
args: ['extended--mobile']
|
|
19933
|
+
}], extendedTablet: [{
|
|
19932
19934
|
type: Input,
|
|
19933
|
-
args: ['
|
|
19934
|
-
}],
|
|
19935
|
+
args: ['extended--tablet']
|
|
19936
|
+
}], extendedLaptop: [{
|
|
19935
19937
|
type: Input,
|
|
19936
|
-
args: ['
|
|
19937
|
-
}],
|
|
19938
|
+
args: ['extended--laptop']
|
|
19939
|
+
}], extendedDesktop: [{
|
|
19938
19940
|
type: Input,
|
|
19939
|
-
args: ['
|
|
19940
|
-
}], cover: [{
|
|
19941
|
-
type: Input
|
|
19942
|
-
}], disabled: [{
|
|
19943
|
-
type: Input
|
|
19941
|
+
args: ['extended--desktop']
|
|
19944
19942
|
}], grow: [{
|
|
19945
19943
|
type: Input
|
|
19946
19944
|
}], growMobile: [{
|
|
@@ -20077,6 +20075,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
20077
20075
|
}], stickyBottom: [{
|
|
20078
20076
|
type: Input,
|
|
20079
20077
|
args: ['sticky-bottom']
|
|
20078
|
+
}], event: [{
|
|
20079
|
+
type: Output
|
|
20080
20080
|
}] } });
|
|
20081
20081
|
/**
|
|
20082
20082
|
* @description Type-only wrapper for <px-page>
|
|
@@ -37907,7 +37907,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37907
37907
|
}] } });
|
|
37908
37908
|
class Lavender {
|
|
37909
37909
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
37910
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [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, PxInput, PxSelect, PxTextarea, PxFileupload,
|
|
37910
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [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] });
|
|
37911
37911
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
37912
37912
|
}
|
|
37913
37913
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -37950,12 +37950,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37950
37950
|
PxH5,
|
|
37951
37951
|
PxH6,
|
|
37952
37952
|
PxHeadingGroup,
|
|
37953
|
+
PxImg,
|
|
37954
|
+
PxPicture,
|
|
37953
37955
|
PxInput,
|
|
37954
37956
|
PxSelect,
|
|
37955
37957
|
PxTextarea,
|
|
37956
37958
|
PxFileupload,
|
|
37957
|
-
PxImg,
|
|
37958
|
-
PxPicture,
|
|
37959
37959
|
PxPage,
|
|
37960
37960
|
PxSpacer,
|
|
37961
37961
|
PxStack,
|
|
@@ -38052,12 +38052,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
38052
38052
|
PxH5,
|
|
38053
38053
|
PxH6,
|
|
38054
38054
|
PxHeadingGroup,
|
|
38055
|
+
PxImg,
|
|
38056
|
+
PxPicture,
|
|
38055
38057
|
PxInput,
|
|
38056
38058
|
PxSelect,
|
|
38057
38059
|
PxTextarea,
|
|
38058
38060
|
PxFileupload,
|
|
38059
|
-
PxImg,
|
|
38060
|
-
PxPicture,
|
|
38061
38061
|
PxPage,
|
|
38062
38062
|
PxSpacer,
|
|
38063
38063
|
PxStack,
|