@proximus/lavender-angular 2.0.0-alpha.182 → 2.0.0-alpha.183
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/fesm2022/proximus-lavender-angular.mjs +1663 -1105
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +501 -371
- package/package.json +1 -1
|
@@ -21864,39 +21864,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
21864
21864
|
type: Output
|
|
21865
21865
|
}] } });
|
|
21866
21866
|
/**
|
|
21867
|
-
* @description Type-only wrapper for <px-
|
|
21867
|
+
* @description Type-only wrapper for <px-code-input>
|
|
21868
21868
|
*/
|
|
21869
|
-
class
|
|
21869
|
+
class PxCodeInput {
|
|
21870
21870
|
elementRef;
|
|
21871
|
-
set
|
|
21872
|
-
this.elementRef.nativeElement['
|
|
21871
|
+
set size(value) {
|
|
21872
|
+
this.elementRef.nativeElement['size'] = value;
|
|
21873
21873
|
}
|
|
21874
|
-
get
|
|
21875
|
-
return this.elementRef.nativeElement['
|
|
21874
|
+
get size() {
|
|
21875
|
+
return this.elementRef.nativeElement['size'];
|
|
21876
21876
|
}
|
|
21877
|
-
set
|
|
21878
|
-
this.elementRef.nativeElement['
|
|
21877
|
+
set state(value) {
|
|
21878
|
+
this.elementRef.nativeElement['state'] = value;
|
|
21879
21879
|
}
|
|
21880
|
-
get
|
|
21881
|
-
return this.elementRef.nativeElement['
|
|
21880
|
+
get state() {
|
|
21881
|
+
return this.elementRef.nativeElement['state'];
|
|
21882
21882
|
}
|
|
21883
|
-
set
|
|
21884
|
-
this.elementRef.nativeElement['
|
|
21883
|
+
set extended(value) {
|
|
21884
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
21885
21885
|
}
|
|
21886
|
-
get
|
|
21887
|
-
return this.elementRef.nativeElement['
|
|
21886
|
+
get extended() {
|
|
21887
|
+
return this.elementRef.nativeElement['extended'];
|
|
21888
21888
|
}
|
|
21889
|
-
set
|
|
21890
|
-
this.elementRef.nativeElement['
|
|
21889
|
+
set extendedMobile(value) {
|
|
21890
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
21891
21891
|
}
|
|
21892
|
-
get
|
|
21893
|
-
return this.elementRef.nativeElement['
|
|
21892
|
+
get extendedMobile() {
|
|
21893
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
21894
21894
|
}
|
|
21895
|
-
set
|
|
21896
|
-
this.elementRef.nativeElement['
|
|
21895
|
+
set extendedTablet(value) {
|
|
21896
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
21897
21897
|
}
|
|
21898
|
-
get
|
|
21899
|
-
return this.elementRef.nativeElement['
|
|
21898
|
+
get extendedTablet() {
|
|
21899
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
21900
|
+
}
|
|
21901
|
+
set extendedLaptop(value) {
|
|
21902
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
21903
|
+
}
|
|
21904
|
+
get extendedLaptop() {
|
|
21905
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
21906
|
+
}
|
|
21907
|
+
set extendedDesktop(value) {
|
|
21908
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
21909
|
+
}
|
|
21910
|
+
get extendedDesktop() {
|
|
21911
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
21912
|
+
}
|
|
21913
|
+
set ariaDescribedby(value) {
|
|
21914
|
+
this.elementRef.nativeElement['ariaDescribedby'] = value;
|
|
21915
|
+
}
|
|
21916
|
+
get ariaDescribedby() {
|
|
21917
|
+
return this.elementRef.nativeElement['ariaDescribedby'];
|
|
21900
21918
|
}
|
|
21901
21919
|
set grow(value) {
|
|
21902
21920
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -22210,32 +22228,43 @@ class PxPage {
|
|
|
22210
22228
|
get wordBreakAllDesktop() {
|
|
22211
22229
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
22212
22230
|
}
|
|
22231
|
+
event = new EventEmitter();
|
|
22213
22232
|
constructor(elementRef) {
|
|
22214
22233
|
this.elementRef = elementRef;
|
|
22234
|
+
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
22235
|
+
this.event.emit(e.detail);
|
|
22236
|
+
});
|
|
22215
22237
|
}
|
|
22216
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
22217
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
22238
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCodeInput, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22239
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCodeInput, isStandalone: true, selector: "px-code-input", inputs: { size: "size", state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], ariaDescribedby: ["aria-describedby", "ariaDescribedby"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
22218
22240
|
}
|
|
22219
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
22241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCodeInput, decorators: [{
|
|
22220
22242
|
type: Directive,
|
|
22221
22243
|
args: [{
|
|
22222
|
-
selector: 'px-
|
|
22244
|
+
selector: 'px-code-input',
|
|
22223
22245
|
standalone: true,
|
|
22224
22246
|
}]
|
|
22225
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
22226
|
-
type: Input,
|
|
22227
|
-
args: ['background-image']
|
|
22228
|
-
}], gap: [{
|
|
22247
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
22229
22248
|
type: Input
|
|
22230
|
-
}],
|
|
22249
|
+
}], state: [{
|
|
22250
|
+
type: Input
|
|
22251
|
+
}], extended: [{
|
|
22252
|
+
type: Input
|
|
22253
|
+
}], extendedMobile: [{
|
|
22231
22254
|
type: Input,
|
|
22232
|
-
args: ['
|
|
22233
|
-
}],
|
|
22255
|
+
args: ['extended--mobile']
|
|
22256
|
+
}], extendedTablet: [{
|
|
22234
22257
|
type: Input,
|
|
22235
|
-
args: ['
|
|
22236
|
-
}],
|
|
22258
|
+
args: ['extended--tablet']
|
|
22259
|
+
}], extendedLaptop: [{
|
|
22237
22260
|
type: Input,
|
|
22238
|
-
args: ['
|
|
22261
|
+
args: ['extended--laptop']
|
|
22262
|
+
}], extendedDesktop: [{
|
|
22263
|
+
type: Input,
|
|
22264
|
+
args: ['extended--desktop']
|
|
22265
|
+
}], ariaDescribedby: [{
|
|
22266
|
+
type: Input,
|
|
22267
|
+
args: ['aria-describedby']
|
|
22239
22268
|
}], grow: [{
|
|
22240
22269
|
type: Input
|
|
22241
22270
|
}], growMobile: [{
|
|
@@ -22387,225 +22416,143 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22387
22416
|
}], wordBreakAllDesktop: [{
|
|
22388
22417
|
type: Input,
|
|
22389
22418
|
args: ['word-break-all--desktop']
|
|
22419
|
+
}], event: [{
|
|
22420
|
+
type: Output
|
|
22390
22421
|
}] } });
|
|
22391
22422
|
/**
|
|
22392
|
-
* @description Type-only wrapper for <px-
|
|
22423
|
+
* @description Type-only wrapper for <px-a>
|
|
22393
22424
|
*/
|
|
22394
|
-
class
|
|
22425
|
+
class PxA {
|
|
22395
22426
|
elementRef;
|
|
22396
|
-
set
|
|
22397
|
-
this.elementRef.nativeElement['
|
|
22427
|
+
set disabled(value) {
|
|
22428
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
22398
22429
|
}
|
|
22399
|
-
get
|
|
22400
|
-
return this.elementRef.nativeElement['
|
|
22430
|
+
get disabled() {
|
|
22431
|
+
return this.elementRef.nativeElement['disabled'];
|
|
22401
22432
|
}
|
|
22402
|
-
set
|
|
22403
|
-
this.elementRef.nativeElement['
|
|
22433
|
+
set variant(value) {
|
|
22434
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
22404
22435
|
}
|
|
22405
|
-
get
|
|
22406
|
-
return this.elementRef.nativeElement['
|
|
22436
|
+
get variant() {
|
|
22437
|
+
return this.elementRef.nativeElement['variant'];
|
|
22407
22438
|
}
|
|
22408
|
-
|
|
22409
|
-
this.elementRef =
|
|
22439
|
+
set shape(value) {
|
|
22440
|
+
this.elementRef.nativeElement['shape'] = value;
|
|
22410
22441
|
}
|
|
22411
|
-
|
|
22412
|
-
|
|
22413
|
-
}
|
|
22414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpacer, decorators: [{
|
|
22415
|
-
type: Directive,
|
|
22416
|
-
args: [{
|
|
22417
|
-
selector: 'px-spacer',
|
|
22418
|
-
standalone: true,
|
|
22419
|
-
}]
|
|
22420
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { grow: [{
|
|
22421
|
-
type: Input
|
|
22422
|
-
}], nogap: [{
|
|
22423
|
-
type: Input
|
|
22424
|
-
}] } });
|
|
22425
|
-
/**
|
|
22426
|
-
* @description Type-only wrapper for <px-stack>
|
|
22427
|
-
*/
|
|
22428
|
-
class PxStack {
|
|
22429
|
-
elementRef;
|
|
22430
|
-
set direction(value) {
|
|
22431
|
-
this.elementRef.nativeElement['direction'] = value;
|
|
22442
|
+
get shape() {
|
|
22443
|
+
return this.elementRef.nativeElement['shape'];
|
|
22432
22444
|
}
|
|
22433
|
-
|
|
22434
|
-
|
|
22445
|
+
set shapeMobile(value) {
|
|
22446
|
+
this.elementRef.nativeElement['shapeMobile'] = value;
|
|
22435
22447
|
}
|
|
22436
|
-
|
|
22437
|
-
this.elementRef.nativeElement['
|
|
22448
|
+
get shapeMobile() {
|
|
22449
|
+
return this.elementRef.nativeElement['shapeMobile'];
|
|
22438
22450
|
}
|
|
22439
|
-
|
|
22440
|
-
|
|
22451
|
+
set shapeTablet(value) {
|
|
22452
|
+
this.elementRef.nativeElement['shapeTablet'] = value;
|
|
22441
22453
|
}
|
|
22442
|
-
|
|
22443
|
-
this.elementRef.nativeElement['
|
|
22454
|
+
get shapeTablet() {
|
|
22455
|
+
return this.elementRef.nativeElement['shapeTablet'];
|
|
22444
22456
|
}
|
|
22445
|
-
|
|
22446
|
-
|
|
22457
|
+
set shapeLaptop(value) {
|
|
22458
|
+
this.elementRef.nativeElement['shapeLaptop'] = value;
|
|
22447
22459
|
}
|
|
22448
|
-
|
|
22449
|
-
this.elementRef.nativeElement['
|
|
22460
|
+
get shapeLaptop() {
|
|
22461
|
+
return this.elementRef.nativeElement['shapeLaptop'];
|
|
22450
22462
|
}
|
|
22451
|
-
|
|
22452
|
-
|
|
22463
|
+
set shapeDesktop(value) {
|
|
22464
|
+
this.elementRef.nativeElement['shapeDesktop'] = value;
|
|
22453
22465
|
}
|
|
22454
|
-
|
|
22455
|
-
this.elementRef.nativeElement['
|
|
22466
|
+
get shapeDesktop() {
|
|
22467
|
+
return this.elementRef.nativeElement['shapeDesktop'];
|
|
22456
22468
|
}
|
|
22457
|
-
|
|
22458
|
-
|
|
22469
|
+
set extended(value) {
|
|
22470
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
22459
22471
|
}
|
|
22460
|
-
|
|
22461
|
-
this.elementRef.nativeElement['
|
|
22472
|
+
get extended() {
|
|
22473
|
+
return this.elementRef.nativeElement['extended'];
|
|
22462
22474
|
}
|
|
22463
|
-
|
|
22464
|
-
|
|
22475
|
+
set extendedMobile(value) {
|
|
22476
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
22465
22477
|
}
|
|
22466
|
-
|
|
22467
|
-
this.elementRef.nativeElement['
|
|
22478
|
+
get extendedMobile() {
|
|
22479
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
22468
22480
|
}
|
|
22469
|
-
|
|
22470
|
-
|
|
22481
|
+
set extendedTablet(value) {
|
|
22482
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
22471
22483
|
}
|
|
22472
|
-
|
|
22473
|
-
this.elementRef.nativeElement['
|
|
22484
|
+
get extendedTablet() {
|
|
22485
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
22474
22486
|
}
|
|
22475
|
-
|
|
22476
|
-
|
|
22487
|
+
set extendedLaptop(value) {
|
|
22488
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
22477
22489
|
}
|
|
22478
|
-
|
|
22479
|
-
this.elementRef.nativeElement['
|
|
22490
|
+
get extendedLaptop() {
|
|
22491
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
22480
22492
|
}
|
|
22481
|
-
|
|
22482
|
-
|
|
22493
|
+
set extendedDesktop(value) {
|
|
22494
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
22483
22495
|
}
|
|
22484
|
-
|
|
22485
|
-
this.elementRef.nativeElement['
|
|
22496
|
+
get extendedDesktop() {
|
|
22497
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
22486
22498
|
}
|
|
22487
|
-
|
|
22488
|
-
|
|
22499
|
+
set inverted(value) {
|
|
22500
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
22489
22501
|
}
|
|
22490
|
-
|
|
22491
|
-
this.elementRef.nativeElement['
|
|
22502
|
+
get inverted() {
|
|
22503
|
+
return this.elementRef.nativeElement['inverted'];
|
|
22492
22504
|
}
|
|
22493
|
-
|
|
22494
|
-
|
|
22505
|
+
set fontSize(value) {
|
|
22506
|
+
this.elementRef.nativeElement['fontSize'] = value;
|
|
22495
22507
|
}
|
|
22496
|
-
|
|
22497
|
-
this.elementRef.nativeElement['
|
|
22508
|
+
get fontSize() {
|
|
22509
|
+
return this.elementRef.nativeElement['fontSize'];
|
|
22498
22510
|
}
|
|
22499
|
-
|
|
22500
|
-
|
|
22511
|
+
set color(value) {
|
|
22512
|
+
this.elementRef.nativeElement['color'] = value;
|
|
22501
22513
|
}
|
|
22502
|
-
|
|
22503
|
-
this.elementRef.nativeElement['
|
|
22514
|
+
get color() {
|
|
22515
|
+
return this.elementRef.nativeElement['color'];
|
|
22504
22516
|
}
|
|
22505
|
-
|
|
22506
|
-
|
|
22517
|
+
set fontWeight(value) {
|
|
22518
|
+
this.elementRef.nativeElement['fontWeight'] = value;
|
|
22507
22519
|
}
|
|
22508
|
-
|
|
22509
|
-
this.elementRef.nativeElement['
|
|
22520
|
+
get fontWeight() {
|
|
22521
|
+
return this.elementRef.nativeElement['fontWeight'];
|
|
22510
22522
|
}
|
|
22511
|
-
|
|
22512
|
-
|
|
22523
|
+
set title(value) {
|
|
22524
|
+
this.elementRef.nativeElement['title'] = value;
|
|
22513
22525
|
}
|
|
22514
|
-
|
|
22515
|
-
this.elementRef.nativeElement['
|
|
22526
|
+
get title() {
|
|
22527
|
+
return this.elementRef.nativeElement['title'];
|
|
22516
22528
|
}
|
|
22517
|
-
|
|
22518
|
-
|
|
22519
|
-
|
|
22520
|
-
set alignItems(value) {
|
|
22521
|
-
this.elementRef.nativeElement['alignItems'] = value;
|
|
22522
|
-
}
|
|
22523
|
-
get alignItems() {
|
|
22524
|
-
return this.elementRef.nativeElement['alignItems'];
|
|
22525
|
-
}
|
|
22526
|
-
set alignItemsMobile(value) {
|
|
22527
|
-
this.elementRef.nativeElement['alignItemsMobile'] = value;
|
|
22528
|
-
}
|
|
22529
|
-
get alignItemsMobile() {
|
|
22530
|
-
return this.elementRef.nativeElement['alignItemsMobile'];
|
|
22531
|
-
}
|
|
22532
|
-
set alignItemsTablet(value) {
|
|
22533
|
-
this.elementRef.nativeElement['alignItemsTablet'] = value;
|
|
22534
|
-
}
|
|
22535
|
-
get alignItemsTablet() {
|
|
22536
|
-
return this.elementRef.nativeElement['alignItemsTablet'];
|
|
22537
|
-
}
|
|
22538
|
-
set alignItemsLaptop(value) {
|
|
22539
|
-
this.elementRef.nativeElement['alignItemsLaptop'] = value;
|
|
22540
|
-
}
|
|
22541
|
-
get alignItemsLaptop() {
|
|
22542
|
-
return this.elementRef.nativeElement['alignItemsLaptop'];
|
|
22543
|
-
}
|
|
22544
|
-
set alignItemsDesktop(value) {
|
|
22545
|
-
this.elementRef.nativeElement['alignItemsDesktop'] = value;
|
|
22546
|
-
}
|
|
22547
|
-
get alignItemsDesktop() {
|
|
22548
|
-
return this.elementRef.nativeElement['alignItemsDesktop'];
|
|
22549
|
-
}
|
|
22550
|
-
set wrap(value) {
|
|
22551
|
-
this.elementRef.nativeElement['wrap'] = value;
|
|
22552
|
-
}
|
|
22553
|
-
get wrap() {
|
|
22554
|
-
return this.elementRef.nativeElement['wrap'];
|
|
22555
|
-
}
|
|
22556
|
-
set wrapMobile(value) {
|
|
22557
|
-
this.elementRef.nativeElement['wrapMobile'] = value;
|
|
22558
|
-
}
|
|
22559
|
-
get wrapMobile() {
|
|
22560
|
-
return this.elementRef.nativeElement['wrapMobile'];
|
|
22561
|
-
}
|
|
22562
|
-
set wrapTablet(value) {
|
|
22563
|
-
this.elementRef.nativeElement['wrapTablet'] = value;
|
|
22564
|
-
}
|
|
22565
|
-
get wrapTablet() {
|
|
22566
|
-
return this.elementRef.nativeElement['wrapTablet'];
|
|
22567
|
-
}
|
|
22568
|
-
set wrapLaptop(value) {
|
|
22569
|
-
this.elementRef.nativeElement['wrapLaptop'] = value;
|
|
22570
|
-
}
|
|
22571
|
-
get wrapLaptop() {
|
|
22572
|
-
return this.elementRef.nativeElement['wrapLaptop'];
|
|
22573
|
-
}
|
|
22574
|
-
set wrapDesktop(value) {
|
|
22575
|
-
this.elementRef.nativeElement['wrapDesktop'] = value;
|
|
22576
|
-
}
|
|
22577
|
-
get wrapDesktop() {
|
|
22578
|
-
return this.elementRef.nativeElement['wrapDesktop'];
|
|
22579
|
-
}
|
|
22580
|
-
set overflowX(value) {
|
|
22581
|
-
this.elementRef.nativeElement['overflowX'] = value;
|
|
22582
|
-
}
|
|
22583
|
-
get overflowX() {
|
|
22584
|
-
return this.elementRef.nativeElement['overflowX'];
|
|
22585
|
-
}
|
|
22586
|
-
set overflowXMobile(value) {
|
|
22587
|
-
this.elementRef.nativeElement['overflowXMobile'] = value;
|
|
22529
|
+
/** The URL that the hyperlink points to. */
|
|
22530
|
+
set href(value) {
|
|
22531
|
+
this.elementRef.nativeElement['href'] = value;
|
|
22588
22532
|
}
|
|
22589
|
-
get
|
|
22590
|
-
return this.elementRef.nativeElement['
|
|
22533
|
+
get href() {
|
|
22534
|
+
return this.elementRef.nativeElement['href'];
|
|
22591
22535
|
}
|
|
22592
|
-
|
|
22593
|
-
|
|
22536
|
+
/** Where to display the linked URL. */
|
|
22537
|
+
set target(value) {
|
|
22538
|
+
this.elementRef.nativeElement['target'] = value;
|
|
22594
22539
|
}
|
|
22595
|
-
get
|
|
22596
|
-
return this.elementRef.nativeElement['
|
|
22540
|
+
get target() {
|
|
22541
|
+
return this.elementRef.nativeElement['target'];
|
|
22597
22542
|
}
|
|
22598
|
-
|
|
22599
|
-
|
|
22543
|
+
/** The relationship of the linked URL as space-separated link types. */
|
|
22544
|
+
set rel(value) {
|
|
22545
|
+
this.elementRef.nativeElement['rel'] = value;
|
|
22600
22546
|
}
|
|
22601
|
-
get
|
|
22602
|
-
return this.elementRef.nativeElement['
|
|
22547
|
+
get rel() {
|
|
22548
|
+
return this.elementRef.nativeElement['rel'];
|
|
22603
22549
|
}
|
|
22604
|
-
|
|
22605
|
-
|
|
22550
|
+
/** Prompts the user to save the linked URL instead of navigating to it. */
|
|
22551
|
+
set download(value) {
|
|
22552
|
+
this.elementRef.nativeElement['download'] = value;
|
|
22606
22553
|
}
|
|
22607
|
-
get
|
|
22608
|
-
return this.elementRef.nativeElement['
|
|
22554
|
+
get download() {
|
|
22555
|
+
return this.elementRef.nativeElement['download'];
|
|
22609
22556
|
}
|
|
22610
22557
|
set grow(value) {
|
|
22611
22558
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -22922,102 +22869,67 @@ class PxStack {
|
|
|
22922
22869
|
constructor(elementRef) {
|
|
22923
22870
|
this.elementRef = elementRef;
|
|
22924
22871
|
}
|
|
22925
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
22926
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
22872
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxA, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22873
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxA, isStandalone: true, selector: "px-a", inputs: { disabled: "disabled", variant: "variant", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], inverted: "inverted", fontSize: ["font-size", "fontSize"], color: "color", fontWeight: ["font-weight", "fontWeight"], title: "title", href: "href", target: "target", rel: "rel", download: "download", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
22927
22874
|
}
|
|
22928
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
22875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxA, decorators: [{
|
|
22929
22876
|
type: Directive,
|
|
22930
22877
|
args: [{
|
|
22931
|
-
selector: 'px-
|
|
22878
|
+
selector: 'px-a',
|
|
22932
22879
|
standalone: true,
|
|
22933
22880
|
}]
|
|
22934
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
22881
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { disabled: [{
|
|
22935
22882
|
type: Input
|
|
22936
|
-
}],
|
|
22937
|
-
type: Input,
|
|
22938
|
-
args: ['direction--mobile']
|
|
22939
|
-
}], directionTablet: [{
|
|
22940
|
-
type: Input,
|
|
22941
|
-
args: ['direction--tablet']
|
|
22942
|
-
}], directionLaptop: [{
|
|
22943
|
-
type: Input,
|
|
22944
|
-
args: ['direction--laptop']
|
|
22945
|
-
}], directionDesktop: [{
|
|
22946
|
-
type: Input,
|
|
22947
|
-
args: ['direction--desktop']
|
|
22948
|
-
}], gap: [{
|
|
22883
|
+
}], variant: [{
|
|
22949
22884
|
type: Input
|
|
22950
|
-
}],
|
|
22951
|
-
type: Input
|
|
22952
|
-
|
|
22953
|
-
}], gapTablet: [{
|
|
22954
|
-
type: Input,
|
|
22955
|
-
args: ['gap--tablet']
|
|
22956
|
-
}], gapLaptop: [{
|
|
22957
|
-
type: Input,
|
|
22958
|
-
args: ['gap--laptop']
|
|
22959
|
-
}], gapDesktop: [{
|
|
22960
|
-
type: Input,
|
|
22961
|
-
args: ['gap--desktop']
|
|
22962
|
-
}], justifyContent: [{
|
|
22963
|
-
type: Input,
|
|
22964
|
-
args: ['justify-content']
|
|
22965
|
-
}], justifyContentMobile: [{
|
|
22966
|
-
type: Input,
|
|
22967
|
-
args: ['justify-content--mobile']
|
|
22968
|
-
}], justifyContentTablet: [{
|
|
22969
|
-
type: Input,
|
|
22970
|
-
args: ['justify-content--tablet']
|
|
22971
|
-
}], justifyContentLaptop: [{
|
|
22972
|
-
type: Input,
|
|
22973
|
-
args: ['justify-content--laptop']
|
|
22974
|
-
}], justifyContentDesktop: [{
|
|
22975
|
-
type: Input,
|
|
22976
|
-
args: ['justify-content--desktop']
|
|
22977
|
-
}], alignItems: [{
|
|
22978
|
-
type: Input,
|
|
22979
|
-
args: ['align-items']
|
|
22980
|
-
}], alignItemsMobile: [{
|
|
22885
|
+
}], shape: [{
|
|
22886
|
+
type: Input
|
|
22887
|
+
}], shapeMobile: [{
|
|
22981
22888
|
type: Input,
|
|
22982
|
-
args: ['
|
|
22983
|
-
}],
|
|
22889
|
+
args: ['shape--mobile']
|
|
22890
|
+
}], shapeTablet: [{
|
|
22984
22891
|
type: Input,
|
|
22985
|
-
args: ['
|
|
22986
|
-
}],
|
|
22892
|
+
args: ['shape--tablet']
|
|
22893
|
+
}], shapeLaptop: [{
|
|
22987
22894
|
type: Input,
|
|
22988
|
-
args: ['
|
|
22989
|
-
}],
|
|
22895
|
+
args: ['shape--laptop']
|
|
22896
|
+
}], shapeDesktop: [{
|
|
22990
22897
|
type: Input,
|
|
22991
|
-
args: ['
|
|
22992
|
-
}],
|
|
22898
|
+
args: ['shape--desktop']
|
|
22899
|
+
}], extended: [{
|
|
22993
22900
|
type: Input
|
|
22994
|
-
}],
|
|
22995
|
-
type: Input,
|
|
22996
|
-
args: ['wrap--mobile']
|
|
22997
|
-
}], wrapTablet: [{
|
|
22998
|
-
type: Input,
|
|
22999
|
-
args: ['wrap--tablet']
|
|
23000
|
-
}], wrapLaptop: [{
|
|
23001
|
-
type: Input,
|
|
23002
|
-
args: ['wrap--laptop']
|
|
23003
|
-
}], wrapDesktop: [{
|
|
22901
|
+
}], extendedMobile: [{
|
|
23004
22902
|
type: Input,
|
|
23005
|
-
args: ['
|
|
23006
|
-
}],
|
|
22903
|
+
args: ['extended--mobile']
|
|
22904
|
+
}], extendedTablet: [{
|
|
23007
22905
|
type: Input,
|
|
23008
|
-
args: ['
|
|
23009
|
-
}],
|
|
22906
|
+
args: ['extended--tablet']
|
|
22907
|
+
}], extendedLaptop: [{
|
|
23010
22908
|
type: Input,
|
|
23011
|
-
args: ['
|
|
23012
|
-
}],
|
|
22909
|
+
args: ['extended--laptop']
|
|
22910
|
+
}], extendedDesktop: [{
|
|
23013
22911
|
type: Input,
|
|
23014
|
-
args: ['
|
|
23015
|
-
}],
|
|
22912
|
+
args: ['extended--desktop']
|
|
22913
|
+
}], inverted: [{
|
|
22914
|
+
type: Input
|
|
22915
|
+
}], fontSize: [{
|
|
23016
22916
|
type: Input,
|
|
23017
|
-
args: ['
|
|
23018
|
-
}],
|
|
22917
|
+
args: ['font-size']
|
|
22918
|
+
}], color: [{
|
|
22919
|
+
type: Input
|
|
22920
|
+
}], fontWeight: [{
|
|
23019
22921
|
type: Input,
|
|
23020
|
-
args: ['
|
|
22922
|
+
args: ['font-weight']
|
|
22923
|
+
}], title: [{
|
|
22924
|
+
type: Input
|
|
22925
|
+
}], href: [{
|
|
22926
|
+
type: Input
|
|
22927
|
+
}], target: [{
|
|
22928
|
+
type: Input
|
|
22929
|
+
}], rel: [{
|
|
22930
|
+
type: Input
|
|
22931
|
+
}], download: [{
|
|
22932
|
+
type: Input
|
|
23021
22933
|
}], grow: [{
|
|
23022
22934
|
type: Input
|
|
23023
22935
|
}], growMobile: [{
|
|
@@ -23171,189 +23083,702 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
23171
23083
|
args: ['word-break-all--desktop']
|
|
23172
23084
|
}] } });
|
|
23173
23085
|
/**
|
|
23174
|
-
* @description Type-only wrapper for <px-
|
|
23086
|
+
* @description Type-only wrapper for <px-a-wrapper>
|
|
23175
23087
|
*/
|
|
23176
|
-
class
|
|
23088
|
+
class PxAWrapper {
|
|
23177
23089
|
elementRef;
|
|
23178
|
-
|
|
23179
|
-
|
|
23180
|
-
|
|
23181
|
-
get direction() {
|
|
23182
|
-
return this.elementRef.nativeElement['direction'];
|
|
23090
|
+
/** The URL that the hyperlink points to. */
|
|
23091
|
+
set href(value) {
|
|
23092
|
+
this.elementRef.nativeElement['href'] = value;
|
|
23183
23093
|
}
|
|
23184
|
-
|
|
23185
|
-
this.elementRef.nativeElement['
|
|
23094
|
+
get href() {
|
|
23095
|
+
return this.elementRef.nativeElement['href'];
|
|
23186
23096
|
}
|
|
23187
|
-
|
|
23188
|
-
|
|
23097
|
+
/** Where to display the linked URL. */
|
|
23098
|
+
set target(value) {
|
|
23099
|
+
this.elementRef.nativeElement['target'] = value;
|
|
23189
23100
|
}
|
|
23190
|
-
|
|
23191
|
-
this.elementRef.nativeElement['
|
|
23101
|
+
get target() {
|
|
23102
|
+
return this.elementRef.nativeElement['target'];
|
|
23192
23103
|
}
|
|
23193
|
-
|
|
23194
|
-
|
|
23104
|
+
/** The relationship of the linked URL as space-separated link types. */
|
|
23105
|
+
set rel(value) {
|
|
23106
|
+
this.elementRef.nativeElement['rel'] = value;
|
|
23195
23107
|
}
|
|
23196
|
-
|
|
23197
|
-
this.elementRef.nativeElement['
|
|
23108
|
+
get rel() {
|
|
23109
|
+
return this.elementRef.nativeElement['rel'];
|
|
23198
23110
|
}
|
|
23199
|
-
|
|
23200
|
-
|
|
23111
|
+
/** Prompts the user to save the linked URL instead of navigating to it. */
|
|
23112
|
+
set download(value) {
|
|
23113
|
+
this.elementRef.nativeElement['download'] = value;
|
|
23201
23114
|
}
|
|
23202
|
-
|
|
23203
|
-
this.elementRef.nativeElement['
|
|
23115
|
+
get download() {
|
|
23116
|
+
return this.elementRef.nativeElement['download'];
|
|
23204
23117
|
}
|
|
23205
|
-
|
|
23206
|
-
|
|
23118
|
+
set disabled(value) {
|
|
23119
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
23207
23120
|
}
|
|
23208
|
-
|
|
23209
|
-
this.elementRef.nativeElement['
|
|
23121
|
+
get disabled() {
|
|
23122
|
+
return this.elementRef.nativeElement['disabled'];
|
|
23210
23123
|
}
|
|
23211
|
-
|
|
23212
|
-
|
|
23124
|
+
set variant(value) {
|
|
23125
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
23213
23126
|
}
|
|
23214
|
-
|
|
23215
|
-
this.elementRef.nativeElement['
|
|
23127
|
+
get variant() {
|
|
23128
|
+
return this.elementRef.nativeElement['variant'];
|
|
23216
23129
|
}
|
|
23217
|
-
|
|
23218
|
-
|
|
23130
|
+
set shape(value) {
|
|
23131
|
+
this.elementRef.nativeElement['shape'] = value;
|
|
23219
23132
|
}
|
|
23220
|
-
|
|
23221
|
-
this.elementRef.nativeElement['
|
|
23133
|
+
get shape() {
|
|
23134
|
+
return this.elementRef.nativeElement['shape'];
|
|
23222
23135
|
}
|
|
23223
|
-
|
|
23224
|
-
|
|
23136
|
+
set shapeMobile(value) {
|
|
23137
|
+
this.elementRef.nativeElement['shapeMobile'] = value;
|
|
23225
23138
|
}
|
|
23226
|
-
|
|
23227
|
-
this.elementRef.nativeElement['
|
|
23139
|
+
get shapeMobile() {
|
|
23140
|
+
return this.elementRef.nativeElement['shapeMobile'];
|
|
23228
23141
|
}
|
|
23229
|
-
|
|
23230
|
-
|
|
23142
|
+
set shapeTablet(value) {
|
|
23143
|
+
this.elementRef.nativeElement['shapeTablet'] = value;
|
|
23231
23144
|
}
|
|
23232
|
-
|
|
23233
|
-
this.elementRef.nativeElement['
|
|
23145
|
+
get shapeTablet() {
|
|
23146
|
+
return this.elementRef.nativeElement['shapeTablet'];
|
|
23234
23147
|
}
|
|
23235
|
-
|
|
23236
|
-
|
|
23148
|
+
set shapeLaptop(value) {
|
|
23149
|
+
this.elementRef.nativeElement['shapeLaptop'] = value;
|
|
23237
23150
|
}
|
|
23238
|
-
|
|
23239
|
-
this.elementRef.nativeElement['
|
|
23151
|
+
get shapeLaptop() {
|
|
23152
|
+
return this.elementRef.nativeElement['shapeLaptop'];
|
|
23240
23153
|
}
|
|
23241
|
-
|
|
23242
|
-
|
|
23154
|
+
set shapeDesktop(value) {
|
|
23155
|
+
this.elementRef.nativeElement['shapeDesktop'] = value;
|
|
23243
23156
|
}
|
|
23244
|
-
|
|
23245
|
-
this.elementRef.nativeElement['
|
|
23157
|
+
get shapeDesktop() {
|
|
23158
|
+
return this.elementRef.nativeElement['shapeDesktop'];
|
|
23246
23159
|
}
|
|
23247
|
-
|
|
23248
|
-
|
|
23160
|
+
set extended(value) {
|
|
23161
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
23249
23162
|
}
|
|
23250
|
-
|
|
23251
|
-
this.elementRef.nativeElement['
|
|
23163
|
+
get extended() {
|
|
23164
|
+
return this.elementRef.nativeElement['extended'];
|
|
23252
23165
|
}
|
|
23253
|
-
|
|
23254
|
-
|
|
23166
|
+
set extendedMobile(value) {
|
|
23167
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
23255
23168
|
}
|
|
23256
|
-
|
|
23257
|
-
this.elementRef.nativeElement['
|
|
23169
|
+
get extendedMobile() {
|
|
23170
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
23258
23171
|
}
|
|
23259
|
-
|
|
23260
|
-
|
|
23172
|
+
set extendedTablet(value) {
|
|
23173
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
23261
23174
|
}
|
|
23262
|
-
|
|
23263
|
-
this.elementRef.nativeElement['
|
|
23175
|
+
get extendedTablet() {
|
|
23176
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
23264
23177
|
}
|
|
23265
|
-
|
|
23266
|
-
|
|
23178
|
+
set extendedLaptop(value) {
|
|
23179
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
23267
23180
|
}
|
|
23268
|
-
|
|
23269
|
-
this.elementRef.nativeElement['
|
|
23181
|
+
get extendedLaptop() {
|
|
23182
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
23270
23183
|
}
|
|
23271
|
-
|
|
23272
|
-
|
|
23184
|
+
set extendedDesktop(value) {
|
|
23185
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
23273
23186
|
}
|
|
23274
|
-
|
|
23275
|
-
this.elementRef.nativeElement['
|
|
23187
|
+
get extendedDesktop() {
|
|
23188
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
23276
23189
|
}
|
|
23277
|
-
|
|
23278
|
-
|
|
23190
|
+
set inverted(value) {
|
|
23191
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
23279
23192
|
}
|
|
23280
|
-
|
|
23281
|
-
this.elementRef.nativeElement['
|
|
23193
|
+
get inverted() {
|
|
23194
|
+
return this.elementRef.nativeElement['inverted'];
|
|
23282
23195
|
}
|
|
23283
|
-
|
|
23284
|
-
|
|
23196
|
+
set fontSize(value) {
|
|
23197
|
+
this.elementRef.nativeElement['fontSize'] = value;
|
|
23285
23198
|
}
|
|
23286
|
-
|
|
23287
|
-
this.elementRef.nativeElement['
|
|
23199
|
+
get fontSize() {
|
|
23200
|
+
return this.elementRef.nativeElement['fontSize'];
|
|
23288
23201
|
}
|
|
23289
|
-
|
|
23290
|
-
|
|
23202
|
+
set color(value) {
|
|
23203
|
+
this.elementRef.nativeElement['color'] = value;
|
|
23291
23204
|
}
|
|
23292
|
-
|
|
23293
|
-
this.elementRef.nativeElement['
|
|
23205
|
+
get color() {
|
|
23206
|
+
return this.elementRef.nativeElement['color'];
|
|
23294
23207
|
}
|
|
23295
|
-
|
|
23296
|
-
|
|
23208
|
+
set fontWeight(value) {
|
|
23209
|
+
this.elementRef.nativeElement['fontWeight'] = value;
|
|
23297
23210
|
}
|
|
23298
|
-
|
|
23299
|
-
this.elementRef.nativeElement['
|
|
23211
|
+
get fontWeight() {
|
|
23212
|
+
return this.elementRef.nativeElement['fontWeight'];
|
|
23300
23213
|
}
|
|
23301
|
-
|
|
23302
|
-
|
|
23214
|
+
set title(value) {
|
|
23215
|
+
this.elementRef.nativeElement['title'] = value;
|
|
23303
23216
|
}
|
|
23304
|
-
|
|
23305
|
-
this.elementRef.nativeElement['
|
|
23217
|
+
get title() {
|
|
23218
|
+
return this.elementRef.nativeElement['title'];
|
|
23306
23219
|
}
|
|
23307
|
-
|
|
23308
|
-
|
|
23220
|
+
set grow(value) {
|
|
23221
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
23309
23222
|
}
|
|
23310
|
-
|
|
23311
|
-
this.elementRef.nativeElement['
|
|
23223
|
+
get grow() {
|
|
23224
|
+
return this.elementRef.nativeElement['grow'];
|
|
23312
23225
|
}
|
|
23313
|
-
|
|
23314
|
-
|
|
23226
|
+
set growMobile(value) {
|
|
23227
|
+
this.elementRef.nativeElement['growMobile'] = value;
|
|
23315
23228
|
}
|
|
23316
|
-
|
|
23317
|
-
this.elementRef.nativeElement['
|
|
23229
|
+
get growMobile() {
|
|
23230
|
+
return this.elementRef.nativeElement['growMobile'];
|
|
23318
23231
|
}
|
|
23319
|
-
|
|
23320
|
-
|
|
23232
|
+
set growTablet(value) {
|
|
23233
|
+
this.elementRef.nativeElement['growTablet'] = value;
|
|
23321
23234
|
}
|
|
23322
|
-
|
|
23323
|
-
this.elementRef.nativeElement['
|
|
23235
|
+
get growTablet() {
|
|
23236
|
+
return this.elementRef.nativeElement['growTablet'];
|
|
23324
23237
|
}
|
|
23325
|
-
|
|
23326
|
-
|
|
23238
|
+
set growLaptop(value) {
|
|
23239
|
+
this.elementRef.nativeElement['growLaptop'] = value;
|
|
23327
23240
|
}
|
|
23328
|
-
|
|
23329
|
-
this.elementRef.nativeElement['
|
|
23241
|
+
get growLaptop() {
|
|
23242
|
+
return this.elementRef.nativeElement['growLaptop'];
|
|
23330
23243
|
}
|
|
23331
|
-
|
|
23332
|
-
|
|
23244
|
+
set growDesktop(value) {
|
|
23245
|
+
this.elementRef.nativeElement['growDesktop'] = value;
|
|
23333
23246
|
}
|
|
23334
|
-
|
|
23335
|
-
this.elementRef.nativeElement['
|
|
23247
|
+
get growDesktop() {
|
|
23248
|
+
return this.elementRef.nativeElement['growDesktop'];
|
|
23336
23249
|
}
|
|
23337
|
-
|
|
23338
|
-
|
|
23250
|
+
set shrink(value) {
|
|
23251
|
+
this.elementRef.nativeElement['shrink'] = value;
|
|
23339
23252
|
}
|
|
23340
|
-
|
|
23341
|
-
this.elementRef.nativeElement['
|
|
23253
|
+
get shrink() {
|
|
23254
|
+
return this.elementRef.nativeElement['shrink'];
|
|
23255
|
+
}
|
|
23256
|
+
set shrinkMobile(value) {
|
|
23257
|
+
this.elementRef.nativeElement['shrinkMobile'] = value;
|
|
23258
|
+
}
|
|
23259
|
+
get shrinkMobile() {
|
|
23260
|
+
return this.elementRef.nativeElement['shrinkMobile'];
|
|
23261
|
+
}
|
|
23262
|
+
set shrinkTablet(value) {
|
|
23263
|
+
this.elementRef.nativeElement['shrinkTablet'] = value;
|
|
23264
|
+
}
|
|
23265
|
+
get shrinkTablet() {
|
|
23266
|
+
return this.elementRef.nativeElement['shrinkTablet'];
|
|
23267
|
+
}
|
|
23268
|
+
set shrinkLaptop(value) {
|
|
23269
|
+
this.elementRef.nativeElement['shrinkLaptop'] = value;
|
|
23270
|
+
}
|
|
23271
|
+
get shrinkLaptop() {
|
|
23272
|
+
return this.elementRef.nativeElement['shrinkLaptop'];
|
|
23273
|
+
}
|
|
23274
|
+
set shrinkDesktop(value) {
|
|
23275
|
+
this.elementRef.nativeElement['shrinkDesktop'] = value;
|
|
23276
|
+
}
|
|
23277
|
+
get shrinkDesktop() {
|
|
23278
|
+
return this.elementRef.nativeElement['shrinkDesktop'];
|
|
23279
|
+
}
|
|
23280
|
+
set basis(value) {
|
|
23281
|
+
this.elementRef.nativeElement['basis'] = value;
|
|
23282
|
+
}
|
|
23283
|
+
get basis() {
|
|
23284
|
+
return this.elementRef.nativeElement['basis'];
|
|
23285
|
+
}
|
|
23286
|
+
set basisMobile(value) {
|
|
23287
|
+
this.elementRef.nativeElement['basisMobile'] = value;
|
|
23288
|
+
}
|
|
23289
|
+
get basisMobile() {
|
|
23290
|
+
return this.elementRef.nativeElement['basisMobile'];
|
|
23291
|
+
}
|
|
23292
|
+
set basisTablet(value) {
|
|
23293
|
+
this.elementRef.nativeElement['basisTablet'] = value;
|
|
23294
|
+
}
|
|
23295
|
+
get basisTablet() {
|
|
23296
|
+
return this.elementRef.nativeElement['basisTablet'];
|
|
23297
|
+
}
|
|
23298
|
+
set basisLaptop(value) {
|
|
23299
|
+
this.elementRef.nativeElement['basisLaptop'] = value;
|
|
23300
|
+
}
|
|
23301
|
+
get basisLaptop() {
|
|
23302
|
+
return this.elementRef.nativeElement['basisLaptop'];
|
|
23303
|
+
}
|
|
23304
|
+
set basisDesktop(value) {
|
|
23305
|
+
this.elementRef.nativeElement['basisDesktop'] = value;
|
|
23306
|
+
}
|
|
23307
|
+
get basisDesktop() {
|
|
23308
|
+
return this.elementRef.nativeElement['basisDesktop'];
|
|
23309
|
+
}
|
|
23310
|
+
set alignSelf(value) {
|
|
23311
|
+
this.elementRef.nativeElement['alignSelf'] = value;
|
|
23312
|
+
}
|
|
23313
|
+
get alignSelf() {
|
|
23314
|
+
return this.elementRef.nativeElement['alignSelf'];
|
|
23315
|
+
}
|
|
23316
|
+
set alignSelfMobile(value) {
|
|
23317
|
+
this.elementRef.nativeElement['alignSelfMobile'] = value;
|
|
23318
|
+
}
|
|
23319
|
+
get alignSelfMobile() {
|
|
23320
|
+
return this.elementRef.nativeElement['alignSelfMobile'];
|
|
23321
|
+
}
|
|
23322
|
+
set alignSelfTablet(value) {
|
|
23323
|
+
this.elementRef.nativeElement['alignSelfTablet'] = value;
|
|
23324
|
+
}
|
|
23325
|
+
get alignSelfTablet() {
|
|
23326
|
+
return this.elementRef.nativeElement['alignSelfTablet'];
|
|
23327
|
+
}
|
|
23328
|
+
set alignSelfLaptop(value) {
|
|
23329
|
+
this.elementRef.nativeElement['alignSelfLaptop'] = value;
|
|
23330
|
+
}
|
|
23331
|
+
get alignSelfLaptop() {
|
|
23332
|
+
return this.elementRef.nativeElement['alignSelfLaptop'];
|
|
23333
|
+
}
|
|
23334
|
+
set alignSelfDesktop(value) {
|
|
23335
|
+
this.elementRef.nativeElement['alignSelfDesktop'] = value;
|
|
23336
|
+
}
|
|
23337
|
+
get alignSelfDesktop() {
|
|
23338
|
+
return this.elementRef.nativeElement['alignSelfDesktop'];
|
|
23339
|
+
}
|
|
23340
|
+
set justifySelf(value) {
|
|
23341
|
+
this.elementRef.nativeElement['justifySelf'] = value;
|
|
23342
|
+
}
|
|
23343
|
+
get justifySelf() {
|
|
23344
|
+
return this.elementRef.nativeElement['justifySelf'];
|
|
23345
|
+
}
|
|
23346
|
+
set justifySelfMobile(value) {
|
|
23347
|
+
this.elementRef.nativeElement['justifySelfMobile'] = value;
|
|
23348
|
+
}
|
|
23349
|
+
get justifySelfMobile() {
|
|
23350
|
+
return this.elementRef.nativeElement['justifySelfMobile'];
|
|
23351
|
+
}
|
|
23352
|
+
set justifySelfTablet(value) {
|
|
23353
|
+
this.elementRef.nativeElement['justifySelfTablet'] = value;
|
|
23354
|
+
}
|
|
23355
|
+
get justifySelfTablet() {
|
|
23356
|
+
return this.elementRef.nativeElement['justifySelfTablet'];
|
|
23357
|
+
}
|
|
23358
|
+
set justifySelfLaptop(value) {
|
|
23359
|
+
this.elementRef.nativeElement['justifySelfLaptop'] = value;
|
|
23360
|
+
}
|
|
23361
|
+
get justifySelfLaptop() {
|
|
23362
|
+
return this.elementRef.nativeElement['justifySelfLaptop'];
|
|
23363
|
+
}
|
|
23364
|
+
set justifySelfDesktop(value) {
|
|
23365
|
+
this.elementRef.nativeElement['justifySelfDesktop'] = value;
|
|
23366
|
+
}
|
|
23367
|
+
get justifySelfDesktop() {
|
|
23368
|
+
return this.elementRef.nativeElement['justifySelfDesktop'];
|
|
23369
|
+
}
|
|
23370
|
+
set hidden(value) {
|
|
23371
|
+
this.elementRef.nativeElement['hidden'] = value;
|
|
23372
|
+
}
|
|
23373
|
+
get hidden() {
|
|
23374
|
+
return this.elementRef.nativeElement['hidden'];
|
|
23375
|
+
}
|
|
23376
|
+
set hiddenMobile(value) {
|
|
23377
|
+
this.elementRef.nativeElement['hiddenMobile'] = value;
|
|
23378
|
+
}
|
|
23379
|
+
get hiddenMobile() {
|
|
23380
|
+
return this.elementRef.nativeElement['hiddenMobile'];
|
|
23381
|
+
}
|
|
23382
|
+
set hiddenTablet(value) {
|
|
23383
|
+
this.elementRef.nativeElement['hiddenTablet'] = value;
|
|
23384
|
+
}
|
|
23385
|
+
get hiddenTablet() {
|
|
23386
|
+
return this.elementRef.nativeElement['hiddenTablet'];
|
|
23387
|
+
}
|
|
23388
|
+
set hiddenLaptop(value) {
|
|
23389
|
+
this.elementRef.nativeElement['hiddenLaptop'] = value;
|
|
23390
|
+
}
|
|
23391
|
+
get hiddenLaptop() {
|
|
23392
|
+
return this.elementRef.nativeElement['hiddenLaptop'];
|
|
23393
|
+
}
|
|
23394
|
+
set hiddenDesktop(value) {
|
|
23395
|
+
this.elementRef.nativeElement['hiddenDesktop'] = value;
|
|
23396
|
+
}
|
|
23397
|
+
get hiddenDesktop() {
|
|
23398
|
+
return this.elementRef.nativeElement['hiddenDesktop'];
|
|
23399
|
+
}
|
|
23400
|
+
set shownSr(value) {
|
|
23401
|
+
this.elementRef.nativeElement['shownSr'] = value;
|
|
23402
|
+
}
|
|
23403
|
+
get shownSr() {
|
|
23404
|
+
return this.elementRef.nativeElement['shownSr'];
|
|
23405
|
+
}
|
|
23406
|
+
set shownSrMobile(value) {
|
|
23407
|
+
this.elementRef.nativeElement['shownSrMobile'] = value;
|
|
23408
|
+
}
|
|
23409
|
+
get shownSrMobile() {
|
|
23410
|
+
return this.elementRef.nativeElement['shownSrMobile'];
|
|
23411
|
+
}
|
|
23412
|
+
set shownSrTablet(value) {
|
|
23413
|
+
this.elementRef.nativeElement['shownSrTablet'] = value;
|
|
23414
|
+
}
|
|
23415
|
+
get shownSrTablet() {
|
|
23416
|
+
return this.elementRef.nativeElement['shownSrTablet'];
|
|
23417
|
+
}
|
|
23418
|
+
set shownSrLaptop(value) {
|
|
23419
|
+
this.elementRef.nativeElement['shownSrLaptop'] = value;
|
|
23420
|
+
}
|
|
23421
|
+
get shownSrLaptop() {
|
|
23422
|
+
return this.elementRef.nativeElement['shownSrLaptop'];
|
|
23423
|
+
}
|
|
23424
|
+
set shownSrDesktop(value) {
|
|
23425
|
+
this.elementRef.nativeElement['shownSrDesktop'] = value;
|
|
23426
|
+
}
|
|
23427
|
+
get shownSrDesktop() {
|
|
23428
|
+
return this.elementRef.nativeElement['shownSrDesktop'];
|
|
23429
|
+
}
|
|
23430
|
+
set colSpan(value) {
|
|
23431
|
+
this.elementRef.nativeElement['colSpan'] = value;
|
|
23432
|
+
}
|
|
23433
|
+
get colSpan() {
|
|
23434
|
+
return this.elementRef.nativeElement['colSpan'];
|
|
23435
|
+
}
|
|
23436
|
+
set colSpanMobile(value) {
|
|
23437
|
+
this.elementRef.nativeElement['colSpanMobile'] = value;
|
|
23438
|
+
}
|
|
23439
|
+
get colSpanMobile() {
|
|
23440
|
+
return this.elementRef.nativeElement['colSpanMobile'];
|
|
23441
|
+
}
|
|
23442
|
+
set colSpanTablet(value) {
|
|
23443
|
+
this.elementRef.nativeElement['colSpanTablet'] = value;
|
|
23444
|
+
}
|
|
23445
|
+
get colSpanTablet() {
|
|
23446
|
+
return this.elementRef.nativeElement['colSpanTablet'];
|
|
23447
|
+
}
|
|
23448
|
+
set colSpanLaptop(value) {
|
|
23449
|
+
this.elementRef.nativeElement['colSpanLaptop'] = value;
|
|
23450
|
+
}
|
|
23451
|
+
get colSpanLaptop() {
|
|
23452
|
+
return this.elementRef.nativeElement['colSpanLaptop'];
|
|
23453
|
+
}
|
|
23454
|
+
set colSpanDesktop(value) {
|
|
23455
|
+
this.elementRef.nativeElement['colSpanDesktop'] = value;
|
|
23456
|
+
}
|
|
23457
|
+
get colSpanDesktop() {
|
|
23458
|
+
return this.elementRef.nativeElement['colSpanDesktop'];
|
|
23459
|
+
}
|
|
23460
|
+
set order(value) {
|
|
23461
|
+
this.elementRef.nativeElement['order'] = value;
|
|
23462
|
+
}
|
|
23463
|
+
get order() {
|
|
23464
|
+
return this.elementRef.nativeElement['order'];
|
|
23465
|
+
}
|
|
23466
|
+
set orderMobile(value) {
|
|
23467
|
+
this.elementRef.nativeElement['orderMobile'] = value;
|
|
23468
|
+
}
|
|
23469
|
+
get orderMobile() {
|
|
23470
|
+
return this.elementRef.nativeElement['orderMobile'];
|
|
23471
|
+
}
|
|
23472
|
+
set orderTablet(value) {
|
|
23473
|
+
this.elementRef.nativeElement['orderTablet'] = value;
|
|
23474
|
+
}
|
|
23475
|
+
get orderTablet() {
|
|
23476
|
+
return this.elementRef.nativeElement['orderTablet'];
|
|
23477
|
+
}
|
|
23478
|
+
set orderLaptop(value) {
|
|
23479
|
+
this.elementRef.nativeElement['orderLaptop'] = value;
|
|
23480
|
+
}
|
|
23481
|
+
get orderLaptop() {
|
|
23482
|
+
return this.elementRef.nativeElement['orderLaptop'];
|
|
23483
|
+
}
|
|
23484
|
+
set orderDesktop(value) {
|
|
23485
|
+
this.elementRef.nativeElement['orderDesktop'] = value;
|
|
23486
|
+
}
|
|
23487
|
+
get orderDesktop() {
|
|
23488
|
+
return this.elementRef.nativeElement['orderDesktop'];
|
|
23489
|
+
}
|
|
23490
|
+
set stickyTop(value) {
|
|
23491
|
+
this.elementRef.nativeElement['stickyTop'] = value;
|
|
23492
|
+
}
|
|
23493
|
+
get stickyTop() {
|
|
23494
|
+
return this.elementRef.nativeElement['stickyTop'];
|
|
23495
|
+
}
|
|
23496
|
+
set stickyBottom(value) {
|
|
23497
|
+
this.elementRef.nativeElement['stickyBottom'] = value;
|
|
23498
|
+
}
|
|
23499
|
+
get stickyBottom() {
|
|
23500
|
+
return this.elementRef.nativeElement['stickyBottom'];
|
|
23501
|
+
}
|
|
23502
|
+
set wordBreakAll(value) {
|
|
23503
|
+
this.elementRef.nativeElement['wordBreakAll'] = value;
|
|
23504
|
+
}
|
|
23505
|
+
get wordBreakAll() {
|
|
23506
|
+
return this.elementRef.nativeElement['wordBreakAll'];
|
|
23507
|
+
}
|
|
23508
|
+
set wordBreakAllMobile(value) {
|
|
23509
|
+
this.elementRef.nativeElement['wordBreakAllMobile'] = value;
|
|
23510
|
+
}
|
|
23511
|
+
get wordBreakAllMobile() {
|
|
23512
|
+
return this.elementRef.nativeElement['wordBreakAllMobile'];
|
|
23513
|
+
}
|
|
23514
|
+
set wordBreakAllTablet(value) {
|
|
23515
|
+
this.elementRef.nativeElement['wordBreakAllTablet'] = value;
|
|
23516
|
+
}
|
|
23517
|
+
get wordBreakAllTablet() {
|
|
23518
|
+
return this.elementRef.nativeElement['wordBreakAllTablet'];
|
|
23519
|
+
}
|
|
23520
|
+
set wordBreakAllLaptop(value) {
|
|
23521
|
+
this.elementRef.nativeElement['wordBreakAllLaptop'] = value;
|
|
23522
|
+
}
|
|
23523
|
+
get wordBreakAllLaptop() {
|
|
23524
|
+
return this.elementRef.nativeElement['wordBreakAllLaptop'];
|
|
23525
|
+
}
|
|
23526
|
+
set wordBreakAllDesktop(value) {
|
|
23527
|
+
this.elementRef.nativeElement['wordBreakAllDesktop'] = value;
|
|
23528
|
+
}
|
|
23529
|
+
get wordBreakAllDesktop() {
|
|
23530
|
+
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
23531
|
+
}
|
|
23532
|
+
constructor(elementRef) {
|
|
23533
|
+
this.elementRef = elementRef;
|
|
23534
|
+
}
|
|
23535
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAWrapper, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
23536
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxAWrapper, isStandalone: true, selector: "px-a-wrapper", inputs: { href: "href", target: "target", rel: "rel", download: "download", disabled: "disabled", variant: "variant", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], inverted: "inverted", fontSize: ["font-size", "fontSize"], color: "color", fontWeight: ["font-weight", "fontWeight"], title: "title", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
23537
|
+
}
|
|
23538
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAWrapper, decorators: [{
|
|
23539
|
+
type: Directive,
|
|
23540
|
+
args: [{
|
|
23541
|
+
selector: 'px-a-wrapper',
|
|
23542
|
+
standalone: true,
|
|
23543
|
+
}]
|
|
23544
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { href: [{
|
|
23545
|
+
type: Input
|
|
23546
|
+
}], target: [{
|
|
23547
|
+
type: Input
|
|
23548
|
+
}], rel: [{
|
|
23549
|
+
type: Input
|
|
23550
|
+
}], download: [{
|
|
23551
|
+
type: Input
|
|
23552
|
+
}], disabled: [{
|
|
23553
|
+
type: Input
|
|
23554
|
+
}], variant: [{
|
|
23555
|
+
type: Input
|
|
23556
|
+
}], shape: [{
|
|
23557
|
+
type: Input
|
|
23558
|
+
}], shapeMobile: [{
|
|
23559
|
+
type: Input,
|
|
23560
|
+
args: ['shape--mobile']
|
|
23561
|
+
}], shapeTablet: [{
|
|
23562
|
+
type: Input,
|
|
23563
|
+
args: ['shape--tablet']
|
|
23564
|
+
}], shapeLaptop: [{
|
|
23565
|
+
type: Input,
|
|
23566
|
+
args: ['shape--laptop']
|
|
23567
|
+
}], shapeDesktop: [{
|
|
23568
|
+
type: Input,
|
|
23569
|
+
args: ['shape--desktop']
|
|
23570
|
+
}], extended: [{
|
|
23571
|
+
type: Input
|
|
23572
|
+
}], extendedMobile: [{
|
|
23573
|
+
type: Input,
|
|
23574
|
+
args: ['extended--mobile']
|
|
23575
|
+
}], extendedTablet: [{
|
|
23576
|
+
type: Input,
|
|
23577
|
+
args: ['extended--tablet']
|
|
23578
|
+
}], extendedLaptop: [{
|
|
23579
|
+
type: Input,
|
|
23580
|
+
args: ['extended--laptop']
|
|
23581
|
+
}], extendedDesktop: [{
|
|
23582
|
+
type: Input,
|
|
23583
|
+
args: ['extended--desktop']
|
|
23584
|
+
}], inverted: [{
|
|
23585
|
+
type: Input
|
|
23586
|
+
}], fontSize: [{
|
|
23587
|
+
type: Input,
|
|
23588
|
+
args: ['font-size']
|
|
23589
|
+
}], color: [{
|
|
23590
|
+
type: Input
|
|
23591
|
+
}], fontWeight: [{
|
|
23592
|
+
type: Input,
|
|
23593
|
+
args: ['font-weight']
|
|
23594
|
+
}], title: [{
|
|
23595
|
+
type: Input
|
|
23596
|
+
}], grow: [{
|
|
23597
|
+
type: Input
|
|
23598
|
+
}], growMobile: [{
|
|
23599
|
+
type: Input,
|
|
23600
|
+
args: ['grow--mobile']
|
|
23601
|
+
}], growTablet: [{
|
|
23602
|
+
type: Input,
|
|
23603
|
+
args: ['grow--tablet']
|
|
23604
|
+
}], growLaptop: [{
|
|
23605
|
+
type: Input,
|
|
23606
|
+
args: ['grow--laptop']
|
|
23607
|
+
}], growDesktop: [{
|
|
23608
|
+
type: Input,
|
|
23609
|
+
args: ['grow--desktop']
|
|
23610
|
+
}], shrink: [{
|
|
23611
|
+
type: Input
|
|
23612
|
+
}], shrinkMobile: [{
|
|
23613
|
+
type: Input,
|
|
23614
|
+
args: ['shrink--mobile']
|
|
23615
|
+
}], shrinkTablet: [{
|
|
23616
|
+
type: Input,
|
|
23617
|
+
args: ['shrink--tablet']
|
|
23618
|
+
}], shrinkLaptop: [{
|
|
23619
|
+
type: Input,
|
|
23620
|
+
args: ['shrink--laptop']
|
|
23621
|
+
}], shrinkDesktop: [{
|
|
23622
|
+
type: Input,
|
|
23623
|
+
args: ['shrink--desktop']
|
|
23624
|
+
}], basis: [{
|
|
23625
|
+
type: Input
|
|
23626
|
+
}], basisMobile: [{
|
|
23627
|
+
type: Input,
|
|
23628
|
+
args: ['basis--mobile']
|
|
23629
|
+
}], basisTablet: [{
|
|
23630
|
+
type: Input,
|
|
23631
|
+
args: ['basis--tablet']
|
|
23632
|
+
}], basisLaptop: [{
|
|
23633
|
+
type: Input,
|
|
23634
|
+
args: ['basis--laptop']
|
|
23635
|
+
}], basisDesktop: [{
|
|
23636
|
+
type: Input,
|
|
23637
|
+
args: ['basis--desktop']
|
|
23638
|
+
}], alignSelf: [{
|
|
23639
|
+
type: Input,
|
|
23640
|
+
args: ['align-self']
|
|
23641
|
+
}], alignSelfMobile: [{
|
|
23642
|
+
type: Input,
|
|
23643
|
+
args: ['align-self--mobile']
|
|
23644
|
+
}], alignSelfTablet: [{
|
|
23645
|
+
type: Input,
|
|
23646
|
+
args: ['align-self--tablet']
|
|
23647
|
+
}], alignSelfLaptop: [{
|
|
23648
|
+
type: Input,
|
|
23649
|
+
args: ['align-self--laptop']
|
|
23650
|
+
}], alignSelfDesktop: [{
|
|
23651
|
+
type: Input,
|
|
23652
|
+
args: ['align-self--desktop']
|
|
23653
|
+
}], justifySelf: [{
|
|
23654
|
+
type: Input,
|
|
23655
|
+
args: ['justify-self']
|
|
23656
|
+
}], justifySelfMobile: [{
|
|
23657
|
+
type: Input,
|
|
23658
|
+
args: ['justify-self--mobile']
|
|
23659
|
+
}], justifySelfTablet: [{
|
|
23660
|
+
type: Input,
|
|
23661
|
+
args: ['justify-self--tablet']
|
|
23662
|
+
}], justifySelfLaptop: [{
|
|
23663
|
+
type: Input,
|
|
23664
|
+
args: ['justify-self--laptop']
|
|
23665
|
+
}], justifySelfDesktop: [{
|
|
23666
|
+
type: Input,
|
|
23667
|
+
args: ['justify-self--desktop']
|
|
23668
|
+
}], hidden: [{
|
|
23669
|
+
type: Input
|
|
23670
|
+
}], hiddenMobile: [{
|
|
23671
|
+
type: Input,
|
|
23672
|
+
args: ['hidden--mobile']
|
|
23673
|
+
}], hiddenTablet: [{
|
|
23674
|
+
type: Input,
|
|
23675
|
+
args: ['hidden--tablet']
|
|
23676
|
+
}], hiddenLaptop: [{
|
|
23677
|
+
type: Input,
|
|
23678
|
+
args: ['hidden--laptop']
|
|
23679
|
+
}], hiddenDesktop: [{
|
|
23680
|
+
type: Input,
|
|
23681
|
+
args: ['hidden--desktop']
|
|
23682
|
+
}], shownSr: [{
|
|
23683
|
+
type: Input,
|
|
23684
|
+
args: ['shown--sr']
|
|
23685
|
+
}], shownSrMobile: [{
|
|
23686
|
+
type: Input,
|
|
23687
|
+
args: ['shown--sr--mobile']
|
|
23688
|
+
}], shownSrTablet: [{
|
|
23689
|
+
type: Input,
|
|
23690
|
+
args: ['shown--sr--tablet']
|
|
23691
|
+
}], shownSrLaptop: [{
|
|
23692
|
+
type: Input,
|
|
23693
|
+
args: ['shown--sr--laptop']
|
|
23694
|
+
}], shownSrDesktop: [{
|
|
23695
|
+
type: Input,
|
|
23696
|
+
args: ['shown--sr--desktop']
|
|
23697
|
+
}], colSpan: [{
|
|
23698
|
+
type: Input,
|
|
23699
|
+
args: ['col-span']
|
|
23700
|
+
}], colSpanMobile: [{
|
|
23701
|
+
type: Input,
|
|
23702
|
+
args: ['col-span--mobile']
|
|
23703
|
+
}], colSpanTablet: [{
|
|
23704
|
+
type: Input,
|
|
23705
|
+
args: ['col-span--tablet']
|
|
23706
|
+
}], colSpanLaptop: [{
|
|
23707
|
+
type: Input,
|
|
23708
|
+
args: ['col-span--laptop']
|
|
23709
|
+
}], colSpanDesktop: [{
|
|
23710
|
+
type: Input,
|
|
23711
|
+
args: ['col-span--desktop']
|
|
23712
|
+
}], order: [{
|
|
23713
|
+
type: Input
|
|
23714
|
+
}], orderMobile: [{
|
|
23715
|
+
type: Input,
|
|
23716
|
+
args: ['order--mobile']
|
|
23717
|
+
}], orderTablet: [{
|
|
23718
|
+
type: Input,
|
|
23719
|
+
args: ['order--tablet']
|
|
23720
|
+
}], orderLaptop: [{
|
|
23721
|
+
type: Input,
|
|
23722
|
+
args: ['order--laptop']
|
|
23723
|
+
}], orderDesktop: [{
|
|
23724
|
+
type: Input,
|
|
23725
|
+
args: ['order--desktop']
|
|
23726
|
+
}], stickyTop: [{
|
|
23727
|
+
type: Input,
|
|
23728
|
+
args: ['sticky-top']
|
|
23729
|
+
}], stickyBottom: [{
|
|
23730
|
+
type: Input,
|
|
23731
|
+
args: ['sticky-bottom']
|
|
23732
|
+
}], wordBreakAll: [{
|
|
23733
|
+
type: Input,
|
|
23734
|
+
args: ['word-break-all']
|
|
23735
|
+
}], wordBreakAllMobile: [{
|
|
23736
|
+
type: Input,
|
|
23737
|
+
args: ['word-break-all--mobile']
|
|
23738
|
+
}], wordBreakAllTablet: [{
|
|
23739
|
+
type: Input,
|
|
23740
|
+
args: ['word-break-all--tablet']
|
|
23741
|
+
}], wordBreakAllLaptop: [{
|
|
23742
|
+
type: Input,
|
|
23743
|
+
args: ['word-break-all--laptop']
|
|
23744
|
+
}], wordBreakAllDesktop: [{
|
|
23745
|
+
type: Input,
|
|
23746
|
+
args: ['word-break-all--desktop']
|
|
23747
|
+
}] } });
|
|
23748
|
+
/**
|
|
23749
|
+
* @description Type-only wrapper for <px-page>
|
|
23750
|
+
*/
|
|
23751
|
+
class PxPage {
|
|
23752
|
+
elementRef;
|
|
23753
|
+
set backgroundImage(value) {
|
|
23754
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
23755
|
+
}
|
|
23756
|
+
get backgroundImage() {
|
|
23757
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
23758
|
+
}
|
|
23759
|
+
set gap(value) {
|
|
23760
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
23761
|
+
}
|
|
23762
|
+
get gap() {
|
|
23763
|
+
return this.elementRef.nativeElement['gap'];
|
|
23764
|
+
}
|
|
23765
|
+
set backgroundColor(value) {
|
|
23766
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
23342
23767
|
}
|
|
23343
|
-
get
|
|
23344
|
-
return this.elementRef.nativeElement['
|
|
23768
|
+
get backgroundColor() {
|
|
23769
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
23345
23770
|
}
|
|
23346
|
-
set
|
|
23347
|
-
this.elementRef.nativeElement['
|
|
23771
|
+
set paddingVertical(value) {
|
|
23772
|
+
this.elementRef.nativeElement['paddingVertical'] = value;
|
|
23348
23773
|
}
|
|
23349
|
-
get
|
|
23350
|
-
return this.elementRef.nativeElement['
|
|
23774
|
+
get paddingVertical() {
|
|
23775
|
+
return this.elementRef.nativeElement['paddingVertical'];
|
|
23351
23776
|
}
|
|
23352
|
-
set
|
|
23353
|
-
this.elementRef.nativeElement['
|
|
23777
|
+
set paddingHorizontal(value) {
|
|
23778
|
+
this.elementRef.nativeElement['paddingHorizontal'] = value;
|
|
23354
23779
|
}
|
|
23355
|
-
get
|
|
23356
|
-
return this.elementRef.nativeElement['
|
|
23780
|
+
get paddingHorizontal() {
|
|
23781
|
+
return this.elementRef.nativeElement['paddingHorizontal'];
|
|
23357
23782
|
}
|
|
23358
23783
|
set grow(value) {
|
|
23359
23784
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -23670,102 +24095,29 @@ class PxVstack {
|
|
|
23670
24095
|
constructor(elementRef) {
|
|
23671
24096
|
this.elementRef = elementRef;
|
|
23672
24097
|
}
|
|
23673
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
23674
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
24098
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxPage, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
24099
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxPage, isStandalone: true, selector: "px-page", inputs: { backgroundImage: ["background-image", "backgroundImage"], gap: "gap", backgroundColor: ["background-color", "backgroundColor"], paddingVertical: ["padding-vertical", "paddingVertical"], paddingHorizontal: ["padding-horizontal", "paddingHorizontal"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
23675
24100
|
}
|
|
23676
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
24101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxPage, decorators: [{
|
|
23677
24102
|
type: Directive,
|
|
23678
24103
|
args: [{
|
|
23679
|
-
selector: 'px-
|
|
24104
|
+
selector: 'px-page',
|
|
23680
24105
|
standalone: true,
|
|
23681
24106
|
}]
|
|
23682
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
23683
|
-
type: Input
|
|
23684
|
-
}], directionMobile: [{
|
|
23685
|
-
type: Input,
|
|
23686
|
-
args: ['direction--mobile']
|
|
23687
|
-
}], directionTablet: [{
|
|
23688
|
-
type: Input,
|
|
23689
|
-
args: ['direction--tablet']
|
|
23690
|
-
}], directionLaptop: [{
|
|
23691
|
-
type: Input,
|
|
23692
|
-
args: ['direction--laptop']
|
|
23693
|
-
}], directionDesktop: [{
|
|
24107
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { backgroundImage: [{
|
|
23694
24108
|
type: Input,
|
|
23695
|
-
args: ['
|
|
24109
|
+
args: ['background-image']
|
|
23696
24110
|
}], gap: [{
|
|
23697
24111
|
type: Input
|
|
23698
|
-
}],
|
|
23699
|
-
type: Input,
|
|
23700
|
-
args: ['gap--mobile']
|
|
23701
|
-
}], gapTablet: [{
|
|
23702
|
-
type: Input,
|
|
23703
|
-
args: ['gap--tablet']
|
|
23704
|
-
}], gapLaptop: [{
|
|
23705
|
-
type: Input,
|
|
23706
|
-
args: ['gap--laptop']
|
|
23707
|
-
}], gapDesktop: [{
|
|
23708
|
-
type: Input,
|
|
23709
|
-
args: ['gap--desktop']
|
|
23710
|
-
}], justifyContent: [{
|
|
23711
|
-
type: Input,
|
|
23712
|
-
args: ['justify-content']
|
|
23713
|
-
}], justifyContentMobile: [{
|
|
23714
|
-
type: Input,
|
|
23715
|
-
args: ['justify-content--mobile']
|
|
23716
|
-
}], justifyContentTablet: [{
|
|
23717
|
-
type: Input,
|
|
23718
|
-
args: ['justify-content--tablet']
|
|
23719
|
-
}], justifyContentLaptop: [{
|
|
23720
|
-
type: Input,
|
|
23721
|
-
args: ['justify-content--laptop']
|
|
23722
|
-
}], justifyContentDesktop: [{
|
|
23723
|
-
type: Input,
|
|
23724
|
-
args: ['justify-content--desktop']
|
|
23725
|
-
}], alignItems: [{
|
|
23726
|
-
type: Input,
|
|
23727
|
-
args: ['align-items']
|
|
23728
|
-
}], alignItemsMobile: [{
|
|
23729
|
-
type: Input,
|
|
23730
|
-
args: ['align-items--mobile']
|
|
23731
|
-
}], alignItemsTablet: [{
|
|
23732
|
-
type: Input,
|
|
23733
|
-
args: ['align-items--tablet']
|
|
23734
|
-
}], alignItemsLaptop: [{
|
|
23735
|
-
type: Input,
|
|
23736
|
-
args: ['align-items--laptop']
|
|
23737
|
-
}], alignItemsDesktop: [{
|
|
23738
|
-
type: Input,
|
|
23739
|
-
args: ['align-items--desktop']
|
|
23740
|
-
}], wrap: [{
|
|
23741
|
-
type: Input
|
|
23742
|
-
}], wrapMobile: [{
|
|
23743
|
-
type: Input,
|
|
23744
|
-
args: ['wrap--mobile']
|
|
23745
|
-
}], wrapTablet: [{
|
|
23746
|
-
type: Input,
|
|
23747
|
-
args: ['wrap--tablet']
|
|
23748
|
-
}], wrapLaptop: [{
|
|
23749
|
-
type: Input,
|
|
23750
|
-
args: ['wrap--laptop']
|
|
23751
|
-
}], wrapDesktop: [{
|
|
23752
|
-
type: Input,
|
|
23753
|
-
args: ['wrap--desktop']
|
|
23754
|
-
}], overflowX: [{
|
|
23755
|
-
type: Input,
|
|
23756
|
-
args: ['overflow-x']
|
|
23757
|
-
}], overflowXMobile: [{
|
|
23758
|
-
type: Input,
|
|
23759
|
-
args: ['overflow-x--mobile']
|
|
23760
|
-
}], overflowXTablet: [{
|
|
24112
|
+
}], backgroundColor: [{
|
|
23761
24113
|
type: Input,
|
|
23762
|
-
args: ['
|
|
23763
|
-
}],
|
|
24114
|
+
args: ['background-color']
|
|
24115
|
+
}], paddingVertical: [{
|
|
23764
24116
|
type: Input,
|
|
23765
|
-
args: ['
|
|
23766
|
-
}],
|
|
24117
|
+
args: ['padding-vertical']
|
|
24118
|
+
}], paddingHorizontal: [{
|
|
23767
24119
|
type: Input,
|
|
23768
|
-
args: ['
|
|
24120
|
+
args: ['padding-horizontal']
|
|
23769
24121
|
}], grow: [{
|
|
23770
24122
|
type: Input
|
|
23771
24123
|
}], growMobile: [{
|
|
@@ -23919,9 +24271,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
23919
24271
|
args: ['word-break-all--desktop']
|
|
23920
24272
|
}] } });
|
|
23921
24273
|
/**
|
|
23922
|
-
* @description Type-only wrapper for <px-
|
|
24274
|
+
* @description Type-only wrapper for <px-spacer>
|
|
23923
24275
|
*/
|
|
23924
|
-
class
|
|
24276
|
+
class PxSpacer {
|
|
24277
|
+
elementRef;
|
|
24278
|
+
set grow(value) {
|
|
24279
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
24280
|
+
}
|
|
24281
|
+
get grow() {
|
|
24282
|
+
return this.elementRef.nativeElement['grow'];
|
|
24283
|
+
}
|
|
24284
|
+
set nogap(value) {
|
|
24285
|
+
this.elementRef.nativeElement['nogap'] = value;
|
|
24286
|
+
}
|
|
24287
|
+
get nogap() {
|
|
24288
|
+
return this.elementRef.nativeElement['nogap'];
|
|
24289
|
+
}
|
|
24290
|
+
constructor(elementRef) {
|
|
24291
|
+
this.elementRef = elementRef;
|
|
24292
|
+
}
|
|
24293
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpacer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
24294
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpacer, isStandalone: true, selector: "px-spacer", inputs: { grow: "grow", nogap: "nogap" }, ngImport: i0 });
|
|
24295
|
+
}
|
|
24296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpacer, decorators: [{
|
|
24297
|
+
type: Directive,
|
|
24298
|
+
args: [{
|
|
24299
|
+
selector: 'px-spacer',
|
|
24300
|
+
standalone: true,
|
|
24301
|
+
}]
|
|
24302
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { grow: [{
|
|
24303
|
+
type: Input
|
|
24304
|
+
}], nogap: [{
|
|
24305
|
+
type: Input
|
|
24306
|
+
}] } });
|
|
24307
|
+
/**
|
|
24308
|
+
* @description Type-only wrapper for <px-stack>
|
|
24309
|
+
*/
|
|
24310
|
+
class PxStack {
|
|
23925
24311
|
elementRef;
|
|
23926
24312
|
set direction(value) {
|
|
23927
24313
|
this.elementRef.nativeElement['direction'] = value;
|
|
@@ -24418,13 +24804,13 @@ class PxHstack {
|
|
|
24418
24804
|
constructor(elementRef) {
|
|
24419
24805
|
this.elementRef = elementRef;
|
|
24420
24806
|
}
|
|
24421
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
24422
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
24807
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStack, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
24808
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxStack, isStandalone: true, selector: "px-stack", inputs: { direction: "direction", directionMobile: ["direction--mobile", "directionMobile"], directionTablet: ["direction--tablet", "directionTablet"], directionLaptop: ["direction--laptop", "directionLaptop"], directionDesktop: ["direction--desktop", "directionDesktop"], gap: "gap", gapMobile: ["gap--mobile", "gapMobile"], gapTablet: ["gap--tablet", "gapTablet"], gapLaptop: ["gap--laptop", "gapLaptop"], gapDesktop: ["gap--desktop", "gapDesktop"], justifyContent: ["justify-content", "justifyContent"], justifyContentMobile: ["justify-content--mobile", "justifyContentMobile"], justifyContentTablet: ["justify-content--tablet", "justifyContentTablet"], justifyContentLaptop: ["justify-content--laptop", "justifyContentLaptop"], justifyContentDesktop: ["justify-content--desktop", "justifyContentDesktop"], alignItems: ["align-items", "alignItems"], alignItemsMobile: ["align-items--mobile", "alignItemsMobile"], alignItemsTablet: ["align-items--tablet", "alignItemsTablet"], alignItemsLaptop: ["align-items--laptop", "alignItemsLaptop"], alignItemsDesktop: ["align-items--desktop", "alignItemsDesktop"], wrap: "wrap", wrapMobile: ["wrap--mobile", "wrapMobile"], wrapTablet: ["wrap--tablet", "wrapTablet"], wrapLaptop: ["wrap--laptop", "wrapLaptop"], wrapDesktop: ["wrap--desktop", "wrapDesktop"], overflowX: ["overflow-x", "overflowX"], overflowXMobile: ["overflow-x--mobile", "overflowXMobile"], overflowXTablet: ["overflow-x--tablet", "overflowXTablet"], overflowXLaptop: ["overflow-x--laptop", "overflowXLaptop"], overflowXDesktop: ["overflow-x--desktop", "overflowXDesktop"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
24423
24809
|
}
|
|
24424
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
24810
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStack, decorators: [{
|
|
24425
24811
|
type: Directive,
|
|
24426
24812
|
args: [{
|
|
24427
|
-
selector: 'px-
|
|
24813
|
+
selector: 'px-stack',
|
|
24428
24814
|
standalone: true,
|
|
24429
24815
|
}]
|
|
24430
24816
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { direction: [{
|
|
@@ -24667,139 +25053,189 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
24667
25053
|
args: ['word-break-all--desktop']
|
|
24668
25054
|
}] } });
|
|
24669
25055
|
/**
|
|
24670
|
-
* @description Type-only wrapper for <px-
|
|
25056
|
+
* @description Type-only wrapper for <px-vstack>
|
|
24671
25057
|
*/
|
|
24672
|
-
class
|
|
25058
|
+
class PxVstack {
|
|
24673
25059
|
elementRef;
|
|
24674
|
-
set
|
|
24675
|
-
this.elementRef.nativeElement['
|
|
25060
|
+
set direction(value) {
|
|
25061
|
+
this.elementRef.nativeElement['direction'] = value;
|
|
24676
25062
|
}
|
|
24677
|
-
get
|
|
24678
|
-
return this.elementRef.nativeElement['
|
|
25063
|
+
get direction() {
|
|
25064
|
+
return this.elementRef.nativeElement['direction'];
|
|
24679
25065
|
}
|
|
24680
|
-
set
|
|
24681
|
-
this.elementRef.nativeElement['
|
|
25066
|
+
set directionMobile(value) {
|
|
25067
|
+
this.elementRef.nativeElement['directionMobile'] = value;
|
|
24682
25068
|
}
|
|
24683
|
-
get
|
|
24684
|
-
return this.elementRef.nativeElement['
|
|
25069
|
+
get directionMobile() {
|
|
25070
|
+
return this.elementRef.nativeElement['directionMobile'];
|
|
24685
25071
|
}
|
|
24686
|
-
set
|
|
24687
|
-
this.elementRef.nativeElement['
|
|
25072
|
+
set directionTablet(value) {
|
|
25073
|
+
this.elementRef.nativeElement['directionTablet'] = value;
|
|
24688
25074
|
}
|
|
24689
|
-
get
|
|
24690
|
-
return this.elementRef.nativeElement['
|
|
25075
|
+
get directionTablet() {
|
|
25076
|
+
return this.elementRef.nativeElement['directionTablet'];
|
|
24691
25077
|
}
|
|
24692
|
-
set
|
|
24693
|
-
this.elementRef.nativeElement['
|
|
25078
|
+
set directionLaptop(value) {
|
|
25079
|
+
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
24694
25080
|
}
|
|
24695
|
-
get
|
|
24696
|
-
return this.elementRef.nativeElement['
|
|
25081
|
+
get directionLaptop() {
|
|
25082
|
+
return this.elementRef.nativeElement['directionLaptop'];
|
|
24697
25083
|
}
|
|
24698
|
-
set
|
|
24699
|
-
this.elementRef.nativeElement['
|
|
25084
|
+
set directionDesktop(value) {
|
|
25085
|
+
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
25086
|
+
}
|
|
25087
|
+
get directionDesktop() {
|
|
25088
|
+
return this.elementRef.nativeElement['directionDesktop'];
|
|
25089
|
+
}
|
|
25090
|
+
set gap(value) {
|
|
25091
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
25092
|
+
}
|
|
25093
|
+
get gap() {
|
|
25094
|
+
return this.elementRef.nativeElement['gap'];
|
|
25095
|
+
}
|
|
25096
|
+
set gapMobile(value) {
|
|
25097
|
+
this.elementRef.nativeElement['gapMobile'] = value;
|
|
25098
|
+
}
|
|
25099
|
+
get gapMobile() {
|
|
25100
|
+
return this.elementRef.nativeElement['gapMobile'];
|
|
25101
|
+
}
|
|
25102
|
+
set gapTablet(value) {
|
|
25103
|
+
this.elementRef.nativeElement['gapTablet'] = value;
|
|
25104
|
+
}
|
|
25105
|
+
get gapTablet() {
|
|
25106
|
+
return this.elementRef.nativeElement['gapTablet'];
|
|
25107
|
+
}
|
|
25108
|
+
set gapLaptop(value) {
|
|
25109
|
+
this.elementRef.nativeElement['gapLaptop'] = value;
|
|
25110
|
+
}
|
|
25111
|
+
get gapLaptop() {
|
|
25112
|
+
return this.elementRef.nativeElement['gapLaptop'];
|
|
25113
|
+
}
|
|
25114
|
+
set gapDesktop(value) {
|
|
25115
|
+
this.elementRef.nativeElement['gapDesktop'] = value;
|
|
25116
|
+
}
|
|
25117
|
+
get gapDesktop() {
|
|
25118
|
+
return this.elementRef.nativeElement['gapDesktop'];
|
|
25119
|
+
}
|
|
25120
|
+
set justifyContent(value) {
|
|
25121
|
+
this.elementRef.nativeElement['justifyContent'] = value;
|
|
25122
|
+
}
|
|
25123
|
+
get justifyContent() {
|
|
25124
|
+
return this.elementRef.nativeElement['justifyContent'];
|
|
25125
|
+
}
|
|
25126
|
+
set justifyContentMobile(value) {
|
|
25127
|
+
this.elementRef.nativeElement['justifyContentMobile'] = value;
|
|
25128
|
+
}
|
|
25129
|
+
get justifyContentMobile() {
|
|
25130
|
+
return this.elementRef.nativeElement['justifyContentMobile'];
|
|
25131
|
+
}
|
|
25132
|
+
set justifyContentTablet(value) {
|
|
25133
|
+
this.elementRef.nativeElement['justifyContentTablet'] = value;
|
|
25134
|
+
}
|
|
25135
|
+
get justifyContentTablet() {
|
|
25136
|
+
return this.elementRef.nativeElement['justifyContentTablet'];
|
|
25137
|
+
}
|
|
25138
|
+
set justifyContentLaptop(value) {
|
|
25139
|
+
this.elementRef.nativeElement['justifyContentLaptop'] = value;
|
|
24700
25140
|
}
|
|
24701
|
-
get
|
|
24702
|
-
return this.elementRef.nativeElement['
|
|
25141
|
+
get justifyContentLaptop() {
|
|
25142
|
+
return this.elementRef.nativeElement['justifyContentLaptop'];
|
|
24703
25143
|
}
|
|
24704
|
-
set
|
|
24705
|
-
this.elementRef.nativeElement['
|
|
25144
|
+
set justifyContentDesktop(value) {
|
|
25145
|
+
this.elementRef.nativeElement['justifyContentDesktop'] = value;
|
|
24706
25146
|
}
|
|
24707
|
-
get
|
|
24708
|
-
return this.elementRef.nativeElement['
|
|
25147
|
+
get justifyContentDesktop() {
|
|
25148
|
+
return this.elementRef.nativeElement['justifyContentDesktop'];
|
|
24709
25149
|
}
|
|
24710
|
-
set
|
|
24711
|
-
this.elementRef.nativeElement['
|
|
25150
|
+
set alignItems(value) {
|
|
25151
|
+
this.elementRef.nativeElement['alignItems'] = value;
|
|
24712
25152
|
}
|
|
24713
|
-
get
|
|
24714
|
-
return this.elementRef.nativeElement['
|
|
25153
|
+
get alignItems() {
|
|
25154
|
+
return this.elementRef.nativeElement['alignItems'];
|
|
24715
25155
|
}
|
|
24716
|
-
set
|
|
24717
|
-
this.elementRef.nativeElement['
|
|
25156
|
+
set alignItemsMobile(value) {
|
|
25157
|
+
this.elementRef.nativeElement['alignItemsMobile'] = value;
|
|
24718
25158
|
}
|
|
24719
|
-
get
|
|
24720
|
-
return this.elementRef.nativeElement['
|
|
25159
|
+
get alignItemsMobile() {
|
|
25160
|
+
return this.elementRef.nativeElement['alignItemsMobile'];
|
|
24721
25161
|
}
|
|
24722
|
-
set
|
|
24723
|
-
this.elementRef.nativeElement['
|
|
25162
|
+
set alignItemsTablet(value) {
|
|
25163
|
+
this.elementRef.nativeElement['alignItemsTablet'] = value;
|
|
24724
25164
|
}
|
|
24725
|
-
get
|
|
24726
|
-
return this.elementRef.nativeElement['
|
|
25165
|
+
get alignItemsTablet() {
|
|
25166
|
+
return this.elementRef.nativeElement['alignItemsTablet'];
|
|
24727
25167
|
}
|
|
24728
|
-
set
|
|
24729
|
-
this.elementRef.nativeElement['
|
|
25168
|
+
set alignItemsLaptop(value) {
|
|
25169
|
+
this.elementRef.nativeElement['alignItemsLaptop'] = value;
|
|
24730
25170
|
}
|
|
24731
|
-
get
|
|
24732
|
-
return this.elementRef.nativeElement['
|
|
25171
|
+
get alignItemsLaptop() {
|
|
25172
|
+
return this.elementRef.nativeElement['alignItemsLaptop'];
|
|
24733
25173
|
}
|
|
24734
|
-
set
|
|
24735
|
-
this.elementRef.nativeElement['
|
|
25174
|
+
set alignItemsDesktop(value) {
|
|
25175
|
+
this.elementRef.nativeElement['alignItemsDesktop'] = value;
|
|
24736
25176
|
}
|
|
24737
|
-
get
|
|
24738
|
-
return this.elementRef.nativeElement['
|
|
25177
|
+
get alignItemsDesktop() {
|
|
25178
|
+
return this.elementRef.nativeElement['alignItemsDesktop'];
|
|
24739
25179
|
}
|
|
24740
|
-
set
|
|
24741
|
-
this.elementRef.nativeElement['
|
|
25180
|
+
set wrap(value) {
|
|
25181
|
+
this.elementRef.nativeElement['wrap'] = value;
|
|
24742
25182
|
}
|
|
24743
|
-
get
|
|
24744
|
-
return this.elementRef.nativeElement['
|
|
25183
|
+
get wrap() {
|
|
25184
|
+
return this.elementRef.nativeElement['wrap'];
|
|
24745
25185
|
}
|
|
24746
|
-
set
|
|
24747
|
-
this.elementRef.nativeElement['
|
|
25186
|
+
set wrapMobile(value) {
|
|
25187
|
+
this.elementRef.nativeElement['wrapMobile'] = value;
|
|
24748
25188
|
}
|
|
24749
|
-
get
|
|
24750
|
-
return this.elementRef.nativeElement['
|
|
25189
|
+
get wrapMobile() {
|
|
25190
|
+
return this.elementRef.nativeElement['wrapMobile'];
|
|
24751
25191
|
}
|
|
24752
|
-
set
|
|
24753
|
-
this.elementRef.nativeElement['
|
|
25192
|
+
set wrapTablet(value) {
|
|
25193
|
+
this.elementRef.nativeElement['wrapTablet'] = value;
|
|
24754
25194
|
}
|
|
24755
|
-
get
|
|
24756
|
-
return this.elementRef.nativeElement['
|
|
25195
|
+
get wrapTablet() {
|
|
25196
|
+
return this.elementRef.nativeElement['wrapTablet'];
|
|
24757
25197
|
}
|
|
24758
|
-
set
|
|
24759
|
-
this.elementRef.nativeElement['
|
|
25198
|
+
set wrapLaptop(value) {
|
|
25199
|
+
this.elementRef.nativeElement['wrapLaptop'] = value;
|
|
24760
25200
|
}
|
|
24761
|
-
get
|
|
24762
|
-
return this.elementRef.nativeElement['
|
|
25201
|
+
get wrapLaptop() {
|
|
25202
|
+
return this.elementRef.nativeElement['wrapLaptop'];
|
|
24763
25203
|
}
|
|
24764
|
-
set
|
|
24765
|
-
this.elementRef.nativeElement['
|
|
25204
|
+
set wrapDesktop(value) {
|
|
25205
|
+
this.elementRef.nativeElement['wrapDesktop'] = value;
|
|
24766
25206
|
}
|
|
24767
|
-
get
|
|
24768
|
-
return this.elementRef.nativeElement['
|
|
25207
|
+
get wrapDesktop() {
|
|
25208
|
+
return this.elementRef.nativeElement['wrapDesktop'];
|
|
24769
25209
|
}
|
|
24770
|
-
set
|
|
24771
|
-
this.elementRef.nativeElement['
|
|
25210
|
+
set overflowX(value) {
|
|
25211
|
+
this.elementRef.nativeElement['overflowX'] = value;
|
|
24772
25212
|
}
|
|
24773
|
-
get
|
|
24774
|
-
return this.elementRef.nativeElement['
|
|
25213
|
+
get overflowX() {
|
|
25214
|
+
return this.elementRef.nativeElement['overflowX'];
|
|
24775
25215
|
}
|
|
24776
|
-
|
|
24777
|
-
|
|
24778
|
-
this.elementRef.nativeElement['href'] = value;
|
|
25216
|
+
set overflowXMobile(value) {
|
|
25217
|
+
this.elementRef.nativeElement['overflowXMobile'] = value;
|
|
24779
25218
|
}
|
|
24780
|
-
get
|
|
24781
|
-
return this.elementRef.nativeElement['
|
|
25219
|
+
get overflowXMobile() {
|
|
25220
|
+
return this.elementRef.nativeElement['overflowXMobile'];
|
|
24782
25221
|
}
|
|
24783
|
-
|
|
24784
|
-
|
|
24785
|
-
this.elementRef.nativeElement['target'] = value;
|
|
25222
|
+
set overflowXTablet(value) {
|
|
25223
|
+
this.elementRef.nativeElement['overflowXTablet'] = value;
|
|
24786
25224
|
}
|
|
24787
|
-
get
|
|
24788
|
-
return this.elementRef.nativeElement['
|
|
25225
|
+
get overflowXTablet() {
|
|
25226
|
+
return this.elementRef.nativeElement['overflowXTablet'];
|
|
24789
25227
|
}
|
|
24790
|
-
|
|
24791
|
-
|
|
24792
|
-
this.elementRef.nativeElement['rel'] = value;
|
|
25228
|
+
set overflowXLaptop(value) {
|
|
25229
|
+
this.elementRef.nativeElement['overflowXLaptop'] = value;
|
|
24793
25230
|
}
|
|
24794
|
-
get
|
|
24795
|
-
return this.elementRef.nativeElement['
|
|
25231
|
+
get overflowXLaptop() {
|
|
25232
|
+
return this.elementRef.nativeElement['overflowXLaptop'];
|
|
24796
25233
|
}
|
|
24797
|
-
|
|
24798
|
-
|
|
24799
|
-
this.elementRef.nativeElement['download'] = value;
|
|
25234
|
+
set overflowXDesktop(value) {
|
|
25235
|
+
this.elementRef.nativeElement['overflowXDesktop'] = value;
|
|
24800
25236
|
}
|
|
24801
|
-
get
|
|
24802
|
-
return this.elementRef.nativeElement['
|
|
25237
|
+
get overflowXDesktop() {
|
|
25238
|
+
return this.elementRef.nativeElement['overflowXDesktop'];
|
|
24803
25239
|
}
|
|
24804
25240
|
set grow(value) {
|
|
24805
25241
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -25116,67 +25552,102 @@ class PxA {
|
|
|
25116
25552
|
constructor(elementRef) {
|
|
25117
25553
|
this.elementRef = elementRef;
|
|
25118
25554
|
}
|
|
25119
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
25120
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
25555
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxVstack, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
25556
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxVstack, isStandalone: true, selector: "px-vstack", inputs: { direction: "direction", directionMobile: ["direction--mobile", "directionMobile"], directionTablet: ["direction--tablet", "directionTablet"], directionLaptop: ["direction--laptop", "directionLaptop"], directionDesktop: ["direction--desktop", "directionDesktop"], gap: "gap", gapMobile: ["gap--mobile", "gapMobile"], gapTablet: ["gap--tablet", "gapTablet"], gapLaptop: ["gap--laptop", "gapLaptop"], gapDesktop: ["gap--desktop", "gapDesktop"], justifyContent: ["justify-content", "justifyContent"], justifyContentMobile: ["justify-content--mobile", "justifyContentMobile"], justifyContentTablet: ["justify-content--tablet", "justifyContentTablet"], justifyContentLaptop: ["justify-content--laptop", "justifyContentLaptop"], justifyContentDesktop: ["justify-content--desktop", "justifyContentDesktop"], alignItems: ["align-items", "alignItems"], alignItemsMobile: ["align-items--mobile", "alignItemsMobile"], alignItemsTablet: ["align-items--tablet", "alignItemsTablet"], alignItemsLaptop: ["align-items--laptop", "alignItemsLaptop"], alignItemsDesktop: ["align-items--desktop", "alignItemsDesktop"], wrap: "wrap", wrapMobile: ["wrap--mobile", "wrapMobile"], wrapTablet: ["wrap--tablet", "wrapTablet"], wrapLaptop: ["wrap--laptop", "wrapLaptop"], wrapDesktop: ["wrap--desktop", "wrapDesktop"], overflowX: ["overflow-x", "overflowX"], overflowXMobile: ["overflow-x--mobile", "overflowXMobile"], overflowXTablet: ["overflow-x--tablet", "overflowXTablet"], overflowXLaptop: ["overflow-x--laptop", "overflowXLaptop"], overflowXDesktop: ["overflow-x--desktop", "overflowXDesktop"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
25121
25557
|
}
|
|
25122
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
25558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxVstack, decorators: [{
|
|
25123
25559
|
type: Directive,
|
|
25124
25560
|
args: [{
|
|
25125
|
-
selector: 'px-
|
|
25561
|
+
selector: 'px-vstack',
|
|
25126
25562
|
standalone: true,
|
|
25127
25563
|
}]
|
|
25128
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
25129
|
-
type: Input
|
|
25130
|
-
}], variant: [{
|
|
25131
|
-
type: Input
|
|
25132
|
-
}], shape: [{
|
|
25564
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { direction: [{
|
|
25133
25565
|
type: Input
|
|
25134
|
-
}],
|
|
25566
|
+
}], directionMobile: [{
|
|
25135
25567
|
type: Input,
|
|
25136
|
-
args: ['
|
|
25137
|
-
}],
|
|
25568
|
+
args: ['direction--mobile']
|
|
25569
|
+
}], directionTablet: [{
|
|
25138
25570
|
type: Input,
|
|
25139
|
-
args: ['
|
|
25140
|
-
}],
|
|
25571
|
+
args: ['direction--tablet']
|
|
25572
|
+
}], directionLaptop: [{
|
|
25141
25573
|
type: Input,
|
|
25142
|
-
args: ['
|
|
25143
|
-
}],
|
|
25574
|
+
args: ['direction--laptop']
|
|
25575
|
+
}], directionDesktop: [{
|
|
25144
25576
|
type: Input,
|
|
25145
|
-
args: ['
|
|
25146
|
-
}],
|
|
25577
|
+
args: ['direction--desktop']
|
|
25578
|
+
}], gap: [{
|
|
25147
25579
|
type: Input
|
|
25148
|
-
}],
|
|
25580
|
+
}], gapMobile: [{
|
|
25149
25581
|
type: Input,
|
|
25150
|
-
args: ['
|
|
25151
|
-
}],
|
|
25582
|
+
args: ['gap--mobile']
|
|
25583
|
+
}], gapTablet: [{
|
|
25152
25584
|
type: Input,
|
|
25153
|
-
args: ['
|
|
25154
|
-
}],
|
|
25585
|
+
args: ['gap--tablet']
|
|
25586
|
+
}], gapLaptop: [{
|
|
25155
25587
|
type: Input,
|
|
25156
|
-
args: ['
|
|
25157
|
-
}],
|
|
25588
|
+
args: ['gap--laptop']
|
|
25589
|
+
}], gapDesktop: [{
|
|
25158
25590
|
type: Input,
|
|
25159
|
-
args: ['
|
|
25160
|
-
}],
|
|
25161
|
-
type: Input
|
|
25162
|
-
}], fontSize: [{
|
|
25591
|
+
args: ['gap--desktop']
|
|
25592
|
+
}], justifyContent: [{
|
|
25163
25593
|
type: Input,
|
|
25164
|
-
args: ['
|
|
25165
|
-
}],
|
|
25166
|
-
type: Input
|
|
25167
|
-
}], fontWeight: [{
|
|
25594
|
+
args: ['justify-content']
|
|
25595
|
+
}], justifyContentMobile: [{
|
|
25168
25596
|
type: Input,
|
|
25169
|
-
args: ['
|
|
25170
|
-
}],
|
|
25171
|
-
type: Input
|
|
25172
|
-
|
|
25173
|
-
|
|
25174
|
-
|
|
25175
|
-
|
|
25176
|
-
}],
|
|
25177
|
-
type: Input
|
|
25178
|
-
|
|
25597
|
+
args: ['justify-content--mobile']
|
|
25598
|
+
}], justifyContentTablet: [{
|
|
25599
|
+
type: Input,
|
|
25600
|
+
args: ['justify-content--tablet']
|
|
25601
|
+
}], justifyContentLaptop: [{
|
|
25602
|
+
type: Input,
|
|
25603
|
+
args: ['justify-content--laptop']
|
|
25604
|
+
}], justifyContentDesktop: [{
|
|
25605
|
+
type: Input,
|
|
25606
|
+
args: ['justify-content--desktop']
|
|
25607
|
+
}], alignItems: [{
|
|
25608
|
+
type: Input,
|
|
25609
|
+
args: ['align-items']
|
|
25610
|
+
}], alignItemsMobile: [{
|
|
25611
|
+
type: Input,
|
|
25612
|
+
args: ['align-items--mobile']
|
|
25613
|
+
}], alignItemsTablet: [{
|
|
25614
|
+
type: Input,
|
|
25615
|
+
args: ['align-items--tablet']
|
|
25616
|
+
}], alignItemsLaptop: [{
|
|
25617
|
+
type: Input,
|
|
25618
|
+
args: ['align-items--laptop']
|
|
25619
|
+
}], alignItemsDesktop: [{
|
|
25620
|
+
type: Input,
|
|
25621
|
+
args: ['align-items--desktop']
|
|
25622
|
+
}], wrap: [{
|
|
25179
25623
|
type: Input
|
|
25624
|
+
}], wrapMobile: [{
|
|
25625
|
+
type: Input,
|
|
25626
|
+
args: ['wrap--mobile']
|
|
25627
|
+
}], wrapTablet: [{
|
|
25628
|
+
type: Input,
|
|
25629
|
+
args: ['wrap--tablet']
|
|
25630
|
+
}], wrapLaptop: [{
|
|
25631
|
+
type: Input,
|
|
25632
|
+
args: ['wrap--laptop']
|
|
25633
|
+
}], wrapDesktop: [{
|
|
25634
|
+
type: Input,
|
|
25635
|
+
args: ['wrap--desktop']
|
|
25636
|
+
}], overflowX: [{
|
|
25637
|
+
type: Input,
|
|
25638
|
+
args: ['overflow-x']
|
|
25639
|
+
}], overflowXMobile: [{
|
|
25640
|
+
type: Input,
|
|
25641
|
+
args: ['overflow-x--mobile']
|
|
25642
|
+
}], overflowXTablet: [{
|
|
25643
|
+
type: Input,
|
|
25644
|
+
args: ['overflow-x--tablet']
|
|
25645
|
+
}], overflowXLaptop: [{
|
|
25646
|
+
type: Input,
|
|
25647
|
+
args: ['overflow-x--laptop']
|
|
25648
|
+
}], overflowXDesktop: [{
|
|
25649
|
+
type: Input,
|
|
25650
|
+
args: ['overflow-x--desktop']
|
|
25180
25651
|
}], grow: [{
|
|
25181
25652
|
type: Input
|
|
25182
25653
|
}], growMobile: [{
|
|
@@ -25330,139 +25801,189 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
25330
25801
|
args: ['word-break-all--desktop']
|
|
25331
25802
|
}] } });
|
|
25332
25803
|
/**
|
|
25333
|
-
* @description Type-only wrapper for <px-
|
|
25804
|
+
* @description Type-only wrapper for <px-hstack>
|
|
25334
25805
|
*/
|
|
25335
|
-
class
|
|
25806
|
+
class PxHstack {
|
|
25336
25807
|
elementRef;
|
|
25337
|
-
|
|
25338
|
-
|
|
25339
|
-
this.elementRef.nativeElement['href'] = value;
|
|
25808
|
+
set direction(value) {
|
|
25809
|
+
this.elementRef.nativeElement['direction'] = value;
|
|
25340
25810
|
}
|
|
25341
|
-
get
|
|
25342
|
-
return this.elementRef.nativeElement['
|
|
25811
|
+
get direction() {
|
|
25812
|
+
return this.elementRef.nativeElement['direction'];
|
|
25343
25813
|
}
|
|
25344
|
-
|
|
25345
|
-
|
|
25346
|
-
this.elementRef.nativeElement['target'] = value;
|
|
25814
|
+
set directionMobile(value) {
|
|
25815
|
+
this.elementRef.nativeElement['directionMobile'] = value;
|
|
25347
25816
|
}
|
|
25348
|
-
get
|
|
25349
|
-
return this.elementRef.nativeElement['
|
|
25817
|
+
get directionMobile() {
|
|
25818
|
+
return this.elementRef.nativeElement['directionMobile'];
|
|
25350
25819
|
}
|
|
25351
|
-
|
|
25352
|
-
|
|
25353
|
-
this.elementRef.nativeElement['rel'] = value;
|
|
25820
|
+
set directionTablet(value) {
|
|
25821
|
+
this.elementRef.nativeElement['directionTablet'] = value;
|
|
25354
25822
|
}
|
|
25355
|
-
get
|
|
25356
|
-
return this.elementRef.nativeElement['
|
|
25823
|
+
get directionTablet() {
|
|
25824
|
+
return this.elementRef.nativeElement['directionTablet'];
|
|
25357
25825
|
}
|
|
25358
|
-
|
|
25359
|
-
|
|
25360
|
-
this.elementRef.nativeElement['download'] = value;
|
|
25826
|
+
set directionLaptop(value) {
|
|
25827
|
+
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
25361
25828
|
}
|
|
25362
|
-
get
|
|
25363
|
-
return this.elementRef.nativeElement['
|
|
25829
|
+
get directionLaptop() {
|
|
25830
|
+
return this.elementRef.nativeElement['directionLaptop'];
|
|
25364
25831
|
}
|
|
25365
|
-
set
|
|
25366
|
-
this.elementRef.nativeElement['
|
|
25832
|
+
set directionDesktop(value) {
|
|
25833
|
+
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
25367
25834
|
}
|
|
25368
|
-
get
|
|
25369
|
-
return this.elementRef.nativeElement['
|
|
25835
|
+
get directionDesktop() {
|
|
25836
|
+
return this.elementRef.nativeElement['directionDesktop'];
|
|
25370
25837
|
}
|
|
25371
|
-
set
|
|
25372
|
-
this.elementRef.nativeElement['
|
|
25838
|
+
set gap(value) {
|
|
25839
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
25373
25840
|
}
|
|
25374
|
-
get
|
|
25375
|
-
return this.elementRef.nativeElement['
|
|
25841
|
+
get gap() {
|
|
25842
|
+
return this.elementRef.nativeElement['gap'];
|
|
25376
25843
|
}
|
|
25377
|
-
set
|
|
25378
|
-
this.elementRef.nativeElement['
|
|
25844
|
+
set gapMobile(value) {
|
|
25845
|
+
this.elementRef.nativeElement['gapMobile'] = value;
|
|
25379
25846
|
}
|
|
25380
|
-
get
|
|
25381
|
-
return this.elementRef.nativeElement['
|
|
25847
|
+
get gapMobile() {
|
|
25848
|
+
return this.elementRef.nativeElement['gapMobile'];
|
|
25382
25849
|
}
|
|
25383
|
-
set
|
|
25384
|
-
this.elementRef.nativeElement['
|
|
25850
|
+
set gapTablet(value) {
|
|
25851
|
+
this.elementRef.nativeElement['gapTablet'] = value;
|
|
25385
25852
|
}
|
|
25386
|
-
get
|
|
25387
|
-
return this.elementRef.nativeElement['
|
|
25853
|
+
get gapTablet() {
|
|
25854
|
+
return this.elementRef.nativeElement['gapTablet'];
|
|
25388
25855
|
}
|
|
25389
|
-
set
|
|
25390
|
-
this.elementRef.nativeElement['
|
|
25856
|
+
set gapLaptop(value) {
|
|
25857
|
+
this.elementRef.nativeElement['gapLaptop'] = value;
|
|
25391
25858
|
}
|
|
25392
|
-
get
|
|
25393
|
-
return this.elementRef.nativeElement['
|
|
25859
|
+
get gapLaptop() {
|
|
25860
|
+
return this.elementRef.nativeElement['gapLaptop'];
|
|
25394
25861
|
}
|
|
25395
|
-
set
|
|
25396
|
-
this.elementRef.nativeElement['
|
|
25862
|
+
set gapDesktop(value) {
|
|
25863
|
+
this.elementRef.nativeElement['gapDesktop'] = value;
|
|
25397
25864
|
}
|
|
25398
|
-
get
|
|
25399
|
-
return this.elementRef.nativeElement['
|
|
25865
|
+
get gapDesktop() {
|
|
25866
|
+
return this.elementRef.nativeElement['gapDesktop'];
|
|
25400
25867
|
}
|
|
25401
|
-
set
|
|
25402
|
-
this.elementRef.nativeElement['
|
|
25868
|
+
set justifyContent(value) {
|
|
25869
|
+
this.elementRef.nativeElement['justifyContent'] = value;
|
|
25403
25870
|
}
|
|
25404
|
-
get
|
|
25405
|
-
return this.elementRef.nativeElement['
|
|
25871
|
+
get justifyContent() {
|
|
25872
|
+
return this.elementRef.nativeElement['justifyContent'];
|
|
25406
25873
|
}
|
|
25407
|
-
set
|
|
25408
|
-
this.elementRef.nativeElement['
|
|
25874
|
+
set justifyContentMobile(value) {
|
|
25875
|
+
this.elementRef.nativeElement['justifyContentMobile'] = value;
|
|
25409
25876
|
}
|
|
25410
|
-
get
|
|
25411
|
-
return this.elementRef.nativeElement['
|
|
25877
|
+
get justifyContentMobile() {
|
|
25878
|
+
return this.elementRef.nativeElement['justifyContentMobile'];
|
|
25412
25879
|
}
|
|
25413
|
-
set
|
|
25414
|
-
this.elementRef.nativeElement['
|
|
25880
|
+
set justifyContentTablet(value) {
|
|
25881
|
+
this.elementRef.nativeElement['justifyContentTablet'] = value;
|
|
25415
25882
|
}
|
|
25416
|
-
get
|
|
25417
|
-
return this.elementRef.nativeElement['
|
|
25883
|
+
get justifyContentTablet() {
|
|
25884
|
+
return this.elementRef.nativeElement['justifyContentTablet'];
|
|
25418
25885
|
}
|
|
25419
|
-
set
|
|
25420
|
-
this.elementRef.nativeElement['
|
|
25886
|
+
set justifyContentLaptop(value) {
|
|
25887
|
+
this.elementRef.nativeElement['justifyContentLaptop'] = value;
|
|
25421
25888
|
}
|
|
25422
|
-
get
|
|
25423
|
-
return this.elementRef.nativeElement['
|
|
25889
|
+
get justifyContentLaptop() {
|
|
25890
|
+
return this.elementRef.nativeElement['justifyContentLaptop'];
|
|
25424
25891
|
}
|
|
25425
|
-
set
|
|
25426
|
-
this.elementRef.nativeElement['
|
|
25892
|
+
set justifyContentDesktop(value) {
|
|
25893
|
+
this.elementRef.nativeElement['justifyContentDesktop'] = value;
|
|
25427
25894
|
}
|
|
25428
|
-
get
|
|
25429
|
-
return this.elementRef.nativeElement['
|
|
25895
|
+
get justifyContentDesktop() {
|
|
25896
|
+
return this.elementRef.nativeElement['justifyContentDesktop'];
|
|
25430
25897
|
}
|
|
25431
|
-
set
|
|
25432
|
-
this.elementRef.nativeElement['
|
|
25898
|
+
set alignItems(value) {
|
|
25899
|
+
this.elementRef.nativeElement['alignItems'] = value;
|
|
25433
25900
|
}
|
|
25434
|
-
get
|
|
25435
|
-
return this.elementRef.nativeElement['
|
|
25901
|
+
get alignItems() {
|
|
25902
|
+
return this.elementRef.nativeElement['alignItems'];
|
|
25436
25903
|
}
|
|
25437
|
-
set
|
|
25438
|
-
this.elementRef.nativeElement['
|
|
25904
|
+
set alignItemsMobile(value) {
|
|
25905
|
+
this.elementRef.nativeElement['alignItemsMobile'] = value;
|
|
25439
25906
|
}
|
|
25440
|
-
get
|
|
25441
|
-
return this.elementRef.nativeElement['
|
|
25907
|
+
get alignItemsMobile() {
|
|
25908
|
+
return this.elementRef.nativeElement['alignItemsMobile'];
|
|
25442
25909
|
}
|
|
25443
|
-
set
|
|
25444
|
-
this.elementRef.nativeElement['
|
|
25910
|
+
set alignItemsTablet(value) {
|
|
25911
|
+
this.elementRef.nativeElement['alignItemsTablet'] = value;
|
|
25445
25912
|
}
|
|
25446
|
-
get
|
|
25447
|
-
return this.elementRef.nativeElement['
|
|
25913
|
+
get alignItemsTablet() {
|
|
25914
|
+
return this.elementRef.nativeElement['alignItemsTablet'];
|
|
25448
25915
|
}
|
|
25449
|
-
set
|
|
25450
|
-
this.elementRef.nativeElement['
|
|
25916
|
+
set alignItemsLaptop(value) {
|
|
25917
|
+
this.elementRef.nativeElement['alignItemsLaptop'] = value;
|
|
25451
25918
|
}
|
|
25452
|
-
get
|
|
25453
|
-
return this.elementRef.nativeElement['
|
|
25919
|
+
get alignItemsLaptop() {
|
|
25920
|
+
return this.elementRef.nativeElement['alignItemsLaptop'];
|
|
25454
25921
|
}
|
|
25455
|
-
set
|
|
25456
|
-
this.elementRef.nativeElement['
|
|
25922
|
+
set alignItemsDesktop(value) {
|
|
25923
|
+
this.elementRef.nativeElement['alignItemsDesktop'] = value;
|
|
25457
25924
|
}
|
|
25458
|
-
get
|
|
25459
|
-
return this.elementRef.nativeElement['
|
|
25925
|
+
get alignItemsDesktop() {
|
|
25926
|
+
return this.elementRef.nativeElement['alignItemsDesktop'];
|
|
25460
25927
|
}
|
|
25461
|
-
set
|
|
25462
|
-
this.elementRef.nativeElement['
|
|
25928
|
+
set wrap(value) {
|
|
25929
|
+
this.elementRef.nativeElement['wrap'] = value;
|
|
25463
25930
|
}
|
|
25464
|
-
get
|
|
25465
|
-
return this.elementRef.nativeElement['
|
|
25931
|
+
get wrap() {
|
|
25932
|
+
return this.elementRef.nativeElement['wrap'];
|
|
25933
|
+
}
|
|
25934
|
+
set wrapMobile(value) {
|
|
25935
|
+
this.elementRef.nativeElement['wrapMobile'] = value;
|
|
25936
|
+
}
|
|
25937
|
+
get wrapMobile() {
|
|
25938
|
+
return this.elementRef.nativeElement['wrapMobile'];
|
|
25939
|
+
}
|
|
25940
|
+
set wrapTablet(value) {
|
|
25941
|
+
this.elementRef.nativeElement['wrapTablet'] = value;
|
|
25942
|
+
}
|
|
25943
|
+
get wrapTablet() {
|
|
25944
|
+
return this.elementRef.nativeElement['wrapTablet'];
|
|
25945
|
+
}
|
|
25946
|
+
set wrapLaptop(value) {
|
|
25947
|
+
this.elementRef.nativeElement['wrapLaptop'] = value;
|
|
25948
|
+
}
|
|
25949
|
+
get wrapLaptop() {
|
|
25950
|
+
return this.elementRef.nativeElement['wrapLaptop'];
|
|
25951
|
+
}
|
|
25952
|
+
set wrapDesktop(value) {
|
|
25953
|
+
this.elementRef.nativeElement['wrapDesktop'] = value;
|
|
25954
|
+
}
|
|
25955
|
+
get wrapDesktop() {
|
|
25956
|
+
return this.elementRef.nativeElement['wrapDesktop'];
|
|
25957
|
+
}
|
|
25958
|
+
set overflowX(value) {
|
|
25959
|
+
this.elementRef.nativeElement['overflowX'] = value;
|
|
25960
|
+
}
|
|
25961
|
+
get overflowX() {
|
|
25962
|
+
return this.elementRef.nativeElement['overflowX'];
|
|
25963
|
+
}
|
|
25964
|
+
set overflowXMobile(value) {
|
|
25965
|
+
this.elementRef.nativeElement['overflowXMobile'] = value;
|
|
25966
|
+
}
|
|
25967
|
+
get overflowXMobile() {
|
|
25968
|
+
return this.elementRef.nativeElement['overflowXMobile'];
|
|
25969
|
+
}
|
|
25970
|
+
set overflowXTablet(value) {
|
|
25971
|
+
this.elementRef.nativeElement['overflowXTablet'] = value;
|
|
25972
|
+
}
|
|
25973
|
+
get overflowXTablet() {
|
|
25974
|
+
return this.elementRef.nativeElement['overflowXTablet'];
|
|
25975
|
+
}
|
|
25976
|
+
set overflowXLaptop(value) {
|
|
25977
|
+
this.elementRef.nativeElement['overflowXLaptop'] = value;
|
|
25978
|
+
}
|
|
25979
|
+
get overflowXLaptop() {
|
|
25980
|
+
return this.elementRef.nativeElement['overflowXLaptop'];
|
|
25981
|
+
}
|
|
25982
|
+
set overflowXDesktop(value) {
|
|
25983
|
+
this.elementRef.nativeElement['overflowXDesktop'] = value;
|
|
25984
|
+
}
|
|
25985
|
+
get overflowXDesktop() {
|
|
25986
|
+
return this.elementRef.nativeElement['overflowXDesktop'];
|
|
25466
25987
|
}
|
|
25467
25988
|
set grow(value) {
|
|
25468
25989
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -25779,67 +26300,102 @@ class PxAWrapper {
|
|
|
25779
26300
|
constructor(elementRef) {
|
|
25780
26301
|
this.elementRef = elementRef;
|
|
25781
26302
|
}
|
|
25782
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
25783
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
26303
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxHstack, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26304
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxHstack, isStandalone: true, selector: "px-hstack", inputs: { direction: "direction", directionMobile: ["direction--mobile", "directionMobile"], directionTablet: ["direction--tablet", "directionTablet"], directionLaptop: ["direction--laptop", "directionLaptop"], directionDesktop: ["direction--desktop", "directionDesktop"], gap: "gap", gapMobile: ["gap--mobile", "gapMobile"], gapTablet: ["gap--tablet", "gapTablet"], gapLaptop: ["gap--laptop", "gapLaptop"], gapDesktop: ["gap--desktop", "gapDesktop"], justifyContent: ["justify-content", "justifyContent"], justifyContentMobile: ["justify-content--mobile", "justifyContentMobile"], justifyContentTablet: ["justify-content--tablet", "justifyContentTablet"], justifyContentLaptop: ["justify-content--laptop", "justifyContentLaptop"], justifyContentDesktop: ["justify-content--desktop", "justifyContentDesktop"], alignItems: ["align-items", "alignItems"], alignItemsMobile: ["align-items--mobile", "alignItemsMobile"], alignItemsTablet: ["align-items--tablet", "alignItemsTablet"], alignItemsLaptop: ["align-items--laptop", "alignItemsLaptop"], alignItemsDesktop: ["align-items--desktop", "alignItemsDesktop"], wrap: "wrap", wrapMobile: ["wrap--mobile", "wrapMobile"], wrapTablet: ["wrap--tablet", "wrapTablet"], wrapLaptop: ["wrap--laptop", "wrapLaptop"], wrapDesktop: ["wrap--desktop", "wrapDesktop"], overflowX: ["overflow-x", "overflowX"], overflowXMobile: ["overflow-x--mobile", "overflowXMobile"], overflowXTablet: ["overflow-x--tablet", "overflowXTablet"], overflowXLaptop: ["overflow-x--laptop", "overflowXLaptop"], overflowXDesktop: ["overflow-x--desktop", "overflowXDesktop"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
25784
26305
|
}
|
|
25785
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
26306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxHstack, decorators: [{
|
|
25786
26307
|
type: Directive,
|
|
25787
|
-
args: [{
|
|
25788
|
-
selector: 'px-
|
|
25789
|
-
standalone: true,
|
|
25790
|
-
}]
|
|
25791
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
25792
|
-
type: Input
|
|
25793
|
-
}], target: [{
|
|
25794
|
-
type: Input
|
|
25795
|
-
}], rel: [{
|
|
25796
|
-
type: Input
|
|
25797
|
-
}], download: [{
|
|
25798
|
-
type: Input
|
|
25799
|
-
}], disabled: [{
|
|
25800
|
-
type: Input
|
|
25801
|
-
}], variant: [{
|
|
25802
|
-
type: Input
|
|
25803
|
-
}], shape: [{
|
|
26308
|
+
args: [{
|
|
26309
|
+
selector: 'px-hstack',
|
|
26310
|
+
standalone: true,
|
|
26311
|
+
}]
|
|
26312
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { direction: [{
|
|
25804
26313
|
type: Input
|
|
25805
|
-
}],
|
|
26314
|
+
}], directionMobile: [{
|
|
25806
26315
|
type: Input,
|
|
25807
|
-
args: ['
|
|
25808
|
-
}],
|
|
26316
|
+
args: ['direction--mobile']
|
|
26317
|
+
}], directionTablet: [{
|
|
25809
26318
|
type: Input,
|
|
25810
|
-
args: ['
|
|
25811
|
-
}],
|
|
26319
|
+
args: ['direction--tablet']
|
|
26320
|
+
}], directionLaptop: [{
|
|
25812
26321
|
type: Input,
|
|
25813
|
-
args: ['
|
|
25814
|
-
}],
|
|
26322
|
+
args: ['direction--laptop']
|
|
26323
|
+
}], directionDesktop: [{
|
|
25815
26324
|
type: Input,
|
|
25816
|
-
args: ['
|
|
25817
|
-
}],
|
|
26325
|
+
args: ['direction--desktop']
|
|
26326
|
+
}], gap: [{
|
|
25818
26327
|
type: Input
|
|
25819
|
-
}],
|
|
26328
|
+
}], gapMobile: [{
|
|
25820
26329
|
type: Input,
|
|
25821
|
-
args: ['
|
|
25822
|
-
}],
|
|
26330
|
+
args: ['gap--mobile']
|
|
26331
|
+
}], gapTablet: [{
|
|
25823
26332
|
type: Input,
|
|
25824
|
-
args: ['
|
|
25825
|
-
}],
|
|
26333
|
+
args: ['gap--tablet']
|
|
26334
|
+
}], gapLaptop: [{
|
|
25826
26335
|
type: Input,
|
|
25827
|
-
args: ['
|
|
25828
|
-
}],
|
|
26336
|
+
args: ['gap--laptop']
|
|
26337
|
+
}], gapDesktop: [{
|
|
25829
26338
|
type: Input,
|
|
25830
|
-
args: ['
|
|
25831
|
-
}],
|
|
25832
|
-
type: Input
|
|
25833
|
-
}], fontSize: [{
|
|
26339
|
+
args: ['gap--desktop']
|
|
26340
|
+
}], justifyContent: [{
|
|
25834
26341
|
type: Input,
|
|
25835
|
-
args: ['
|
|
25836
|
-
}],
|
|
25837
|
-
type: Input
|
|
25838
|
-
}], fontWeight: [{
|
|
26342
|
+
args: ['justify-content']
|
|
26343
|
+
}], justifyContentMobile: [{
|
|
25839
26344
|
type: Input,
|
|
25840
|
-
args: ['
|
|
25841
|
-
}],
|
|
26345
|
+
args: ['justify-content--mobile']
|
|
26346
|
+
}], justifyContentTablet: [{
|
|
26347
|
+
type: Input,
|
|
26348
|
+
args: ['justify-content--tablet']
|
|
26349
|
+
}], justifyContentLaptop: [{
|
|
26350
|
+
type: Input,
|
|
26351
|
+
args: ['justify-content--laptop']
|
|
26352
|
+
}], justifyContentDesktop: [{
|
|
26353
|
+
type: Input,
|
|
26354
|
+
args: ['justify-content--desktop']
|
|
26355
|
+
}], alignItems: [{
|
|
26356
|
+
type: Input,
|
|
26357
|
+
args: ['align-items']
|
|
26358
|
+
}], alignItemsMobile: [{
|
|
26359
|
+
type: Input,
|
|
26360
|
+
args: ['align-items--mobile']
|
|
26361
|
+
}], alignItemsTablet: [{
|
|
26362
|
+
type: Input,
|
|
26363
|
+
args: ['align-items--tablet']
|
|
26364
|
+
}], alignItemsLaptop: [{
|
|
26365
|
+
type: Input,
|
|
26366
|
+
args: ['align-items--laptop']
|
|
26367
|
+
}], alignItemsDesktop: [{
|
|
26368
|
+
type: Input,
|
|
26369
|
+
args: ['align-items--desktop']
|
|
26370
|
+
}], wrap: [{
|
|
25842
26371
|
type: Input
|
|
26372
|
+
}], wrapMobile: [{
|
|
26373
|
+
type: Input,
|
|
26374
|
+
args: ['wrap--mobile']
|
|
26375
|
+
}], wrapTablet: [{
|
|
26376
|
+
type: Input,
|
|
26377
|
+
args: ['wrap--tablet']
|
|
26378
|
+
}], wrapLaptop: [{
|
|
26379
|
+
type: Input,
|
|
26380
|
+
args: ['wrap--laptop']
|
|
26381
|
+
}], wrapDesktop: [{
|
|
26382
|
+
type: Input,
|
|
26383
|
+
args: ['wrap--desktop']
|
|
26384
|
+
}], overflowX: [{
|
|
26385
|
+
type: Input,
|
|
26386
|
+
args: ['overflow-x']
|
|
26387
|
+
}], overflowXMobile: [{
|
|
26388
|
+
type: Input,
|
|
26389
|
+
args: ['overflow-x--mobile']
|
|
26390
|
+
}], overflowXTablet: [{
|
|
26391
|
+
type: Input,
|
|
26392
|
+
args: ['overflow-x--tablet']
|
|
26393
|
+
}], overflowXLaptop: [{
|
|
26394
|
+
type: Input,
|
|
26395
|
+
args: ['overflow-x--laptop']
|
|
26396
|
+
}], overflowXDesktop: [{
|
|
26397
|
+
type: Input,
|
|
26398
|
+
args: ['overflow-x--desktop']
|
|
25843
26399
|
}], grow: [{
|
|
25844
26400
|
type: Input
|
|
25845
26401
|
}], growMobile: [{
|
|
@@ -28128,194 +28684,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
28128
28684
|
}], stickyTop: [{
|
|
28129
28685
|
type: Input,
|
|
28130
28686
|
args: ['sticky-top']
|
|
28131
|
-
}], stickyBottom: [{
|
|
28132
|
-
type: Input,
|
|
28133
|
-
args: ['sticky-bottom']
|
|
28134
|
-
}], wordBreakAll: [{
|
|
28135
|
-
type: Input,
|
|
28136
|
-
args: ['word-break-all']
|
|
28137
|
-
}], wordBreakAllMobile: [{
|
|
28138
|
-
type: Input,
|
|
28139
|
-
args: ['word-break-all--mobile']
|
|
28140
|
-
}], wordBreakAllTablet: [{
|
|
28141
|
-
type: Input,
|
|
28142
|
-
args: ['word-break-all--tablet']
|
|
28143
|
-
}], wordBreakAllLaptop: [{
|
|
28144
|
-
type: Input,
|
|
28145
|
-
args: ['word-break-all--laptop']
|
|
28146
|
-
}], wordBreakAllDesktop: [{
|
|
28147
|
-
type: Input,
|
|
28148
|
-
args: ['word-break-all--desktop']
|
|
28149
|
-
}] } });
|
|
28150
|
-
/**
|
|
28151
|
-
* @description Type-only wrapper for <px-card-actions>
|
|
28152
|
-
*/
|
|
28153
|
-
class PxCardActions {
|
|
28154
|
-
elementRef;
|
|
28155
|
-
constructor(elementRef) {
|
|
28156
|
-
this.elementRef = elementRef;
|
|
28157
|
-
}
|
|
28158
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28159
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardActions, isStandalone: true, selector: "px-card-actions", ngImport: i0 });
|
|
28160
|
-
}
|
|
28161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, decorators: [{
|
|
28162
|
-
type: Directive,
|
|
28163
|
-
args: [{
|
|
28164
|
-
selector: 'px-card-actions',
|
|
28165
|
-
standalone: true,
|
|
28166
|
-
}]
|
|
28167
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28168
|
-
/**
|
|
28169
|
-
* @description Type-only wrapper for <px-card-container>
|
|
28170
|
-
*/
|
|
28171
|
-
class PxCardContainer {
|
|
28172
|
-
elementRef;
|
|
28173
|
-
/** Switches to a dark surface with inverted text colors. */
|
|
28174
|
-
set inverted(value) {
|
|
28175
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
28176
|
-
}
|
|
28177
|
-
get inverted() {
|
|
28178
|
-
return this.elementRef.nativeElement['inverted'];
|
|
28179
|
-
}
|
|
28180
|
-
/** URL of the card media image. */
|
|
28181
|
-
set src(value) {
|
|
28182
|
-
this.elementRef.nativeElement['src'] = value;
|
|
28183
|
-
}
|
|
28184
|
-
get src() {
|
|
28185
|
-
return this.elementRef.nativeElement['src'];
|
|
28186
|
-
}
|
|
28187
|
-
/** Where the media image is rendered. */
|
|
28188
|
-
set mediaPosition(value) {
|
|
28189
|
-
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
28190
|
-
}
|
|
28191
|
-
get mediaPosition() {
|
|
28192
|
-
return this.elementRef.nativeElement['mediaPosition'];
|
|
28193
|
-
}
|
|
28194
|
-
/** How the media image is fitted. */
|
|
28195
|
-
set mediaSize(value) {
|
|
28196
|
-
this.elementRef.nativeElement['mediaSize'] = value;
|
|
28197
|
-
}
|
|
28198
|
-
get mediaSize() {
|
|
28199
|
-
return this.elementRef.nativeElement['mediaSize'];
|
|
28200
|
-
}
|
|
28201
|
-
set mediaAltText(value) {
|
|
28202
|
-
this.elementRef.nativeElement['mediaAltText'] = value;
|
|
28203
|
-
}
|
|
28204
|
-
get mediaAltText() {
|
|
28205
|
-
return this.elementRef.nativeElement['mediaAltText'];
|
|
28206
|
-
}
|
|
28207
|
-
/** Inner content padding size. */
|
|
28208
|
-
set padding(value) {
|
|
28209
|
-
this.elementRef.nativeElement['padding'] = value;
|
|
28210
|
-
}
|
|
28211
|
-
get padding() {
|
|
28212
|
-
return this.elementRef.nativeElement['padding'];
|
|
28213
|
-
}
|
|
28214
|
-
/** Aspect ratio applied to top media (e.g. `'16:9'`, `'1:1'`, `'4:3'`). */
|
|
28215
|
-
set aspectRatio(value) {
|
|
28216
|
-
this.elementRef.nativeElement['aspectRatio'] = value;
|
|
28217
|
-
}
|
|
28218
|
-
get aspectRatio() {
|
|
28219
|
-
return this.elementRef.nativeElement['aspectRatio'];
|
|
28220
|
-
}
|
|
28221
|
-
/** Whether the card has a visible border. */
|
|
28222
|
-
set hasBorder(value) {
|
|
28223
|
-
this.elementRef.nativeElement['hasBorder'] = value;
|
|
28224
|
-
}
|
|
28225
|
-
get hasBorder() {
|
|
28226
|
-
return this.elementRef.nativeElement['hasBorder'];
|
|
28227
|
-
}
|
|
28228
|
-
/** Surface color preset. */
|
|
28229
|
-
set backgroundColor(value) {
|
|
28230
|
-
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
28231
|
-
}
|
|
28232
|
-
get backgroundColor() {
|
|
28233
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
28234
|
-
}
|
|
28235
|
-
/** URL of a full-card background image (delegated to `<px-container>`). */
|
|
28236
|
-
set backgroundImage(value) {
|
|
28237
|
-
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
28238
|
-
}
|
|
28239
|
-
get backgroundImage() {
|
|
28240
|
-
return this.elementRef.nativeElement['backgroundImage'];
|
|
28241
|
-
}
|
|
28242
|
-
set interactiveState(value) {
|
|
28243
|
-
this.elementRef.nativeElement['interactiveState'] = value;
|
|
28244
|
-
}
|
|
28245
|
-
get interactiveState() {
|
|
28246
|
-
return this.elementRef.nativeElement['interactiveState'];
|
|
28247
|
-
}
|
|
28248
|
-
/** Alt text for the media image. */
|
|
28249
|
-
set alternativeText(value) {
|
|
28250
|
-
this.elementRef.nativeElement['alternativeText'] = value;
|
|
28251
|
-
}
|
|
28252
|
-
get alternativeText() {
|
|
28253
|
-
return this.elementRef.nativeElement['alternativeText'];
|
|
28254
|
-
}
|
|
28255
|
-
constructor(elementRef) {
|
|
28256
|
-
this.elementRef = elementRef;
|
|
28257
|
-
}
|
|
28258
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28259
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardContainer, isStandalone: true, selector: "px-card-container", inputs: { inverted: "inverted", src: "src", mediaPosition: ["media-position", "mediaPosition"], mediaSize: ["media-size", "mediaSize"], mediaAltText: ["media-alt-text", "mediaAltText"], padding: "padding", aspectRatio: ["aspect-ratio", "aspectRatio"], hasBorder: ["has-border", "hasBorder"], backgroundColor: ["background-color", "backgroundColor"], backgroundImage: ["background-image", "backgroundImage"], interactiveState: ["interactive-state", "interactiveState"], alternativeText: ["alternative-text", "alternativeText"] }, ngImport: i0 });
|
|
28260
|
-
}
|
|
28261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, decorators: [{
|
|
28262
|
-
type: Directive,
|
|
28263
|
-
args: [{
|
|
28264
|
-
selector: 'px-card-container',
|
|
28265
|
-
standalone: true,
|
|
28266
|
-
}]
|
|
28267
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
28268
|
-
type: Input
|
|
28269
|
-
}], src: [{
|
|
28270
|
-
type: Input
|
|
28271
|
-
}], mediaPosition: [{
|
|
28272
|
-
type: Input,
|
|
28273
|
-
args: ['media-position']
|
|
28274
|
-
}], mediaSize: [{
|
|
28275
|
-
type: Input,
|
|
28276
|
-
args: ['media-size']
|
|
28277
|
-
}], mediaAltText: [{
|
|
28278
|
-
type: Input,
|
|
28279
|
-
args: ['media-alt-text']
|
|
28280
|
-
}], padding: [{
|
|
28281
|
-
type: Input
|
|
28282
|
-
}], aspectRatio: [{
|
|
28687
|
+
}], stickyBottom: [{
|
|
28283
28688
|
type: Input,
|
|
28284
|
-
args: ['
|
|
28285
|
-
}],
|
|
28689
|
+
args: ['sticky-bottom']
|
|
28690
|
+
}], wordBreakAll: [{
|
|
28286
28691
|
type: Input,
|
|
28287
|
-
args: ['
|
|
28288
|
-
}],
|
|
28692
|
+
args: ['word-break-all']
|
|
28693
|
+
}], wordBreakAllMobile: [{
|
|
28289
28694
|
type: Input,
|
|
28290
|
-
args: ['
|
|
28291
|
-
}],
|
|
28695
|
+
args: ['word-break-all--mobile']
|
|
28696
|
+
}], wordBreakAllTablet: [{
|
|
28292
28697
|
type: Input,
|
|
28293
|
-
args: ['
|
|
28294
|
-
}],
|
|
28698
|
+
args: ['word-break-all--tablet']
|
|
28699
|
+
}], wordBreakAllLaptop: [{
|
|
28295
28700
|
type: Input,
|
|
28296
|
-
args: ['
|
|
28297
|
-
}],
|
|
28701
|
+
args: ['word-break-all--laptop']
|
|
28702
|
+
}], wordBreakAllDesktop: [{
|
|
28298
28703
|
type: Input,
|
|
28299
|
-
args: ['
|
|
28704
|
+
args: ['word-break-all--desktop']
|
|
28300
28705
|
}] } });
|
|
28301
|
-
/**
|
|
28302
|
-
* @description Type-only wrapper for <px-card-heading>
|
|
28303
|
-
*/
|
|
28304
|
-
class PxCardHeading {
|
|
28305
|
-
elementRef;
|
|
28306
|
-
constructor(elementRef) {
|
|
28307
|
-
this.elementRef = elementRef;
|
|
28308
|
-
}
|
|
28309
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28310
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardHeading, isStandalone: true, selector: "px-card-heading", ngImport: i0 });
|
|
28311
|
-
}
|
|
28312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, decorators: [{
|
|
28313
|
-
type: Directive,
|
|
28314
|
-
args: [{
|
|
28315
|
-
selector: 'px-card-heading',
|
|
28316
|
-
standalone: true,
|
|
28317
|
-
}]
|
|
28318
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28319
28706
|
/**
|
|
28320
28707
|
* @description Type-only wrapper for <px-price>
|
|
28321
28708
|
*/
|
|
@@ -28821,6 +29208,175 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
28821
29208
|
type: Input,
|
|
28822
29209
|
args: ['word-break-all--desktop']
|
|
28823
29210
|
}] } });
|
|
29211
|
+
/**
|
|
29212
|
+
* @description Type-only wrapper for <px-card-actions>
|
|
29213
|
+
*/
|
|
29214
|
+
class PxCardActions {
|
|
29215
|
+
elementRef;
|
|
29216
|
+
constructor(elementRef) {
|
|
29217
|
+
this.elementRef = elementRef;
|
|
29218
|
+
}
|
|
29219
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29220
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardActions, isStandalone: true, selector: "px-card-actions", ngImport: i0 });
|
|
29221
|
+
}
|
|
29222
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, decorators: [{
|
|
29223
|
+
type: Directive,
|
|
29224
|
+
args: [{
|
|
29225
|
+
selector: 'px-card-actions',
|
|
29226
|
+
standalone: true,
|
|
29227
|
+
}]
|
|
29228
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
29229
|
+
/**
|
|
29230
|
+
* @description Type-only wrapper for <px-card-container>
|
|
29231
|
+
*/
|
|
29232
|
+
class PxCardContainer {
|
|
29233
|
+
elementRef;
|
|
29234
|
+
/** Switches to a dark surface with inverted text colors. */
|
|
29235
|
+
set inverted(value) {
|
|
29236
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
29237
|
+
}
|
|
29238
|
+
get inverted() {
|
|
29239
|
+
return this.elementRef.nativeElement['inverted'];
|
|
29240
|
+
}
|
|
29241
|
+
/** URL of the card media image. */
|
|
29242
|
+
set src(value) {
|
|
29243
|
+
this.elementRef.nativeElement['src'] = value;
|
|
29244
|
+
}
|
|
29245
|
+
get src() {
|
|
29246
|
+
return this.elementRef.nativeElement['src'];
|
|
29247
|
+
}
|
|
29248
|
+
/** Where the media image is rendered. */
|
|
29249
|
+
set mediaPosition(value) {
|
|
29250
|
+
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
29251
|
+
}
|
|
29252
|
+
get mediaPosition() {
|
|
29253
|
+
return this.elementRef.nativeElement['mediaPosition'];
|
|
29254
|
+
}
|
|
29255
|
+
/** How the media image is fitted. */
|
|
29256
|
+
set mediaSize(value) {
|
|
29257
|
+
this.elementRef.nativeElement['mediaSize'] = value;
|
|
29258
|
+
}
|
|
29259
|
+
get mediaSize() {
|
|
29260
|
+
return this.elementRef.nativeElement['mediaSize'];
|
|
29261
|
+
}
|
|
29262
|
+
set mediaAltText(value) {
|
|
29263
|
+
this.elementRef.nativeElement['mediaAltText'] = value;
|
|
29264
|
+
}
|
|
29265
|
+
get mediaAltText() {
|
|
29266
|
+
return this.elementRef.nativeElement['mediaAltText'];
|
|
29267
|
+
}
|
|
29268
|
+
/** Inner content padding size. */
|
|
29269
|
+
set padding(value) {
|
|
29270
|
+
this.elementRef.nativeElement['padding'] = value;
|
|
29271
|
+
}
|
|
29272
|
+
get padding() {
|
|
29273
|
+
return this.elementRef.nativeElement['padding'];
|
|
29274
|
+
}
|
|
29275
|
+
/** Aspect ratio applied to top media (e.g. `'16:9'`, `'1:1'`, `'4:3'`). */
|
|
29276
|
+
set aspectRatio(value) {
|
|
29277
|
+
this.elementRef.nativeElement['aspectRatio'] = value;
|
|
29278
|
+
}
|
|
29279
|
+
get aspectRatio() {
|
|
29280
|
+
return this.elementRef.nativeElement['aspectRatio'];
|
|
29281
|
+
}
|
|
29282
|
+
/** Whether the card has a visible border. */
|
|
29283
|
+
set hasBorder(value) {
|
|
29284
|
+
this.elementRef.nativeElement['hasBorder'] = value;
|
|
29285
|
+
}
|
|
29286
|
+
get hasBorder() {
|
|
29287
|
+
return this.elementRef.nativeElement['hasBorder'];
|
|
29288
|
+
}
|
|
29289
|
+
/** Surface color preset. */
|
|
29290
|
+
set backgroundColor(value) {
|
|
29291
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
29292
|
+
}
|
|
29293
|
+
get backgroundColor() {
|
|
29294
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
29295
|
+
}
|
|
29296
|
+
/** URL of a full-card background image (delegated to `<px-container>`). */
|
|
29297
|
+
set backgroundImage(value) {
|
|
29298
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
29299
|
+
}
|
|
29300
|
+
get backgroundImage() {
|
|
29301
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
29302
|
+
}
|
|
29303
|
+
set interactiveState(value) {
|
|
29304
|
+
this.elementRef.nativeElement['interactiveState'] = value;
|
|
29305
|
+
}
|
|
29306
|
+
get interactiveState() {
|
|
29307
|
+
return this.elementRef.nativeElement['interactiveState'];
|
|
29308
|
+
}
|
|
29309
|
+
/** Alt text for the media image. */
|
|
29310
|
+
set alternativeText(value) {
|
|
29311
|
+
this.elementRef.nativeElement['alternativeText'] = value;
|
|
29312
|
+
}
|
|
29313
|
+
get alternativeText() {
|
|
29314
|
+
return this.elementRef.nativeElement['alternativeText'];
|
|
29315
|
+
}
|
|
29316
|
+
constructor(elementRef) {
|
|
29317
|
+
this.elementRef = elementRef;
|
|
29318
|
+
}
|
|
29319
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29320
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardContainer, isStandalone: true, selector: "px-card-container", inputs: { inverted: "inverted", src: "src", mediaPosition: ["media-position", "mediaPosition"], mediaSize: ["media-size", "mediaSize"], mediaAltText: ["media-alt-text", "mediaAltText"], padding: "padding", aspectRatio: ["aspect-ratio", "aspectRatio"], hasBorder: ["has-border", "hasBorder"], backgroundColor: ["background-color", "backgroundColor"], backgroundImage: ["background-image", "backgroundImage"], interactiveState: ["interactive-state", "interactiveState"], alternativeText: ["alternative-text", "alternativeText"] }, ngImport: i0 });
|
|
29321
|
+
}
|
|
29322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, decorators: [{
|
|
29323
|
+
type: Directive,
|
|
29324
|
+
args: [{
|
|
29325
|
+
selector: 'px-card-container',
|
|
29326
|
+
standalone: true,
|
|
29327
|
+
}]
|
|
29328
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
29329
|
+
type: Input
|
|
29330
|
+
}], src: [{
|
|
29331
|
+
type: Input
|
|
29332
|
+
}], mediaPosition: [{
|
|
29333
|
+
type: Input,
|
|
29334
|
+
args: ['media-position']
|
|
29335
|
+
}], mediaSize: [{
|
|
29336
|
+
type: Input,
|
|
29337
|
+
args: ['media-size']
|
|
29338
|
+
}], mediaAltText: [{
|
|
29339
|
+
type: Input,
|
|
29340
|
+
args: ['media-alt-text']
|
|
29341
|
+
}], padding: [{
|
|
29342
|
+
type: Input
|
|
29343
|
+
}], aspectRatio: [{
|
|
29344
|
+
type: Input,
|
|
29345
|
+
args: ['aspect-ratio']
|
|
29346
|
+
}], hasBorder: [{
|
|
29347
|
+
type: Input,
|
|
29348
|
+
args: ['has-border']
|
|
29349
|
+
}], backgroundColor: [{
|
|
29350
|
+
type: Input,
|
|
29351
|
+
args: ['background-color']
|
|
29352
|
+
}], backgroundImage: [{
|
|
29353
|
+
type: Input,
|
|
29354
|
+
args: ['background-image']
|
|
29355
|
+
}], interactiveState: [{
|
|
29356
|
+
type: Input,
|
|
29357
|
+
args: ['interactive-state']
|
|
29358
|
+
}], alternativeText: [{
|
|
29359
|
+
type: Input,
|
|
29360
|
+
args: ['alternative-text']
|
|
29361
|
+
}] } });
|
|
29362
|
+
/**
|
|
29363
|
+
* @description Type-only wrapper for <px-card-heading>
|
|
29364
|
+
*/
|
|
29365
|
+
class PxCardHeading {
|
|
29366
|
+
elementRef;
|
|
29367
|
+
constructor(elementRef) {
|
|
29368
|
+
this.elementRef = elementRef;
|
|
29369
|
+
}
|
|
29370
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29371
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardHeading, isStandalone: true, selector: "px-card-heading", ngImport: i0 });
|
|
29372
|
+
}
|
|
29373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, decorators: [{
|
|
29374
|
+
type: Directive,
|
|
29375
|
+
args: [{
|
|
29376
|
+
selector: 'px-card-heading',
|
|
29377
|
+
standalone: true,
|
|
29378
|
+
}]
|
|
29379
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28824
29380
|
/**
|
|
28825
29381
|
* @description Type-only wrapper for <px-radio>
|
|
28826
29382
|
*/
|
|
@@ -33774,15 +34330,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
33774
34330
|
args: ['word-break-all--desktop']
|
|
33775
34331
|
}] } });
|
|
33776
34332
|
/**
|
|
33777
|
-
* @description Type-only wrapper for <px-
|
|
34333
|
+
* @description Type-only wrapper for <px-span>
|
|
33778
34334
|
*/
|
|
33779
|
-
class
|
|
34335
|
+
class PxSpan {
|
|
33780
34336
|
elementRef;
|
|
33781
|
-
set
|
|
33782
|
-
this.elementRef.nativeElement['
|
|
34337
|
+
set color(value) {
|
|
34338
|
+
this.elementRef.nativeElement['color'] = value;
|
|
33783
34339
|
}
|
|
33784
|
-
get
|
|
33785
|
-
return this.elementRef.nativeElement['
|
|
34340
|
+
get color() {
|
|
34341
|
+
return this.elementRef.nativeElement['color'];
|
|
34342
|
+
}
|
|
34343
|
+
set fontSize(value) {
|
|
34344
|
+
this.elementRef.nativeElement['fontSize'] = value;
|
|
34345
|
+
}
|
|
34346
|
+
get fontSize() {
|
|
34347
|
+
return this.elementRef.nativeElement['fontSize'];
|
|
34348
|
+
}
|
|
34349
|
+
set fontWeight(value) {
|
|
34350
|
+
this.elementRef.nativeElement['fontWeight'] = value;
|
|
34351
|
+
}
|
|
34352
|
+
get fontWeight() {
|
|
34353
|
+
return this.elementRef.nativeElement['fontWeight'];
|
|
33786
34354
|
}
|
|
33787
34355
|
set inverted(value) {
|
|
33788
34356
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -33790,6 +34358,25 @@ class PxSkeleton {
|
|
|
33790
34358
|
get inverted() {
|
|
33791
34359
|
return this.elementRef.nativeElement['inverted'];
|
|
33792
34360
|
}
|
|
34361
|
+
set disabled(value) {
|
|
34362
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
34363
|
+
}
|
|
34364
|
+
get disabled() {
|
|
34365
|
+
return this.elementRef.nativeElement['disabled'];
|
|
34366
|
+
}
|
|
34367
|
+
set strikethrough(value) {
|
|
34368
|
+
this.elementRef.nativeElement['strikethrough'] = value;
|
|
34369
|
+
}
|
|
34370
|
+
get strikethrough() {
|
|
34371
|
+
return this.elementRef.nativeElement['strikethrough'];
|
|
34372
|
+
}
|
|
34373
|
+
/** Text to be displayed in a tooltip when hovering over the element. */
|
|
34374
|
+
set title(value) {
|
|
34375
|
+
this.elementRef.nativeElement['title'] = value;
|
|
34376
|
+
}
|
|
34377
|
+
get title() {
|
|
34378
|
+
return this.elementRef.nativeElement['title'];
|
|
34379
|
+
}
|
|
33793
34380
|
set grow(value) {
|
|
33794
34381
|
this.elementRef.nativeElement['grow'] = value;
|
|
33795
34382
|
}
|
|
@@ -34105,19 +34692,31 @@ class PxSkeleton {
|
|
|
34105
34692
|
constructor(elementRef) {
|
|
34106
34693
|
this.elementRef = elementRef;
|
|
34107
34694
|
}
|
|
34108
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
34109
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
34695
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpan, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
34696
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpan, isStandalone: true, selector: "px-span", inputs: { color: "color", fontSize: ["font-size", "fontSize"], fontWeight: ["font-weight", "fontWeight"], inverted: "inverted", disabled: "disabled", strikethrough: "strikethrough", title: "title", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
34110
34697
|
}
|
|
34111
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
34698
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpan, decorators: [{
|
|
34112
34699
|
type: Directive,
|
|
34113
34700
|
args: [{
|
|
34114
|
-
selector: 'px-
|
|
34701
|
+
selector: 'px-span',
|
|
34115
34702
|
standalone: true,
|
|
34116
34703
|
}]
|
|
34117
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
34704
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { color: [{
|
|
34118
34705
|
type: Input
|
|
34706
|
+
}], fontSize: [{
|
|
34707
|
+
type: Input,
|
|
34708
|
+
args: ['font-size']
|
|
34709
|
+
}], fontWeight: [{
|
|
34710
|
+
type: Input,
|
|
34711
|
+
args: ['font-weight']
|
|
34119
34712
|
}], inverted: [{
|
|
34120
34713
|
type: Input
|
|
34714
|
+
}], disabled: [{
|
|
34715
|
+
type: Input
|
|
34716
|
+
}], strikethrough: [{
|
|
34717
|
+
type: Input
|
|
34718
|
+
}], title: [{
|
|
34719
|
+
type: Input
|
|
34121
34720
|
}], grow: [{
|
|
34122
34721
|
type: Input
|
|
34123
34722
|
}], growMobile: [{
|
|
@@ -34271,27 +34870,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
34271
34870
|
args: ['word-break-all--desktop']
|
|
34272
34871
|
}] } });
|
|
34273
34872
|
/**
|
|
34274
|
-
* @description Type-only wrapper for <px-
|
|
34873
|
+
* @description Type-only wrapper for <px-skeleton>
|
|
34275
34874
|
*/
|
|
34276
|
-
class
|
|
34875
|
+
class PxSkeleton {
|
|
34277
34876
|
elementRef;
|
|
34278
|
-
set
|
|
34279
|
-
this.elementRef.nativeElement['
|
|
34280
|
-
}
|
|
34281
|
-
get color() {
|
|
34282
|
-
return this.elementRef.nativeElement['color'];
|
|
34283
|
-
}
|
|
34284
|
-
set fontSize(value) {
|
|
34285
|
-
this.elementRef.nativeElement['fontSize'] = value;
|
|
34286
|
-
}
|
|
34287
|
-
get fontSize() {
|
|
34288
|
-
return this.elementRef.nativeElement['fontSize'];
|
|
34289
|
-
}
|
|
34290
|
-
set fontWeight(value) {
|
|
34291
|
-
this.elementRef.nativeElement['fontWeight'] = value;
|
|
34877
|
+
set variant(value) {
|
|
34878
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
34292
34879
|
}
|
|
34293
|
-
get
|
|
34294
|
-
return this.elementRef.nativeElement['
|
|
34880
|
+
get variant() {
|
|
34881
|
+
return this.elementRef.nativeElement['variant'];
|
|
34295
34882
|
}
|
|
34296
34883
|
set inverted(value) {
|
|
34297
34884
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -34299,25 +34886,6 @@ class PxSpan {
|
|
|
34299
34886
|
get inverted() {
|
|
34300
34887
|
return this.elementRef.nativeElement['inverted'];
|
|
34301
34888
|
}
|
|
34302
|
-
set disabled(value) {
|
|
34303
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
34304
|
-
}
|
|
34305
|
-
get disabled() {
|
|
34306
|
-
return this.elementRef.nativeElement['disabled'];
|
|
34307
|
-
}
|
|
34308
|
-
set strikethrough(value) {
|
|
34309
|
-
this.elementRef.nativeElement['strikethrough'] = value;
|
|
34310
|
-
}
|
|
34311
|
-
get strikethrough() {
|
|
34312
|
-
return this.elementRef.nativeElement['strikethrough'];
|
|
34313
|
-
}
|
|
34314
|
-
/** Text to be displayed in a tooltip when hovering over the element. */
|
|
34315
|
-
set title(value) {
|
|
34316
|
-
this.elementRef.nativeElement['title'] = value;
|
|
34317
|
-
}
|
|
34318
|
-
get title() {
|
|
34319
|
-
return this.elementRef.nativeElement['title'];
|
|
34320
|
-
}
|
|
34321
34889
|
set grow(value) {
|
|
34322
34890
|
this.elementRef.nativeElement['grow'] = value;
|
|
34323
34891
|
}
|
|
@@ -34633,31 +35201,19 @@ class PxSpan {
|
|
|
34633
35201
|
constructor(elementRef) {
|
|
34634
35202
|
this.elementRef = elementRef;
|
|
34635
35203
|
}
|
|
34636
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
34637
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
35204
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSkeleton, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
35205
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSkeleton, isStandalone: true, selector: "px-skeleton", inputs: { variant: "variant", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
34638
35206
|
}
|
|
34639
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
35207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSkeleton, decorators: [{
|
|
34640
35208
|
type: Directive,
|
|
34641
35209
|
args: [{
|
|
34642
|
-
selector: 'px-
|
|
35210
|
+
selector: 'px-skeleton',
|
|
34643
35211
|
standalone: true,
|
|
34644
35212
|
}]
|
|
34645
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
35213
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
34646
35214
|
type: Input
|
|
34647
|
-
}], fontSize: [{
|
|
34648
|
-
type: Input,
|
|
34649
|
-
args: ['font-size']
|
|
34650
|
-
}], fontWeight: [{
|
|
34651
|
-
type: Input,
|
|
34652
|
-
args: ['font-weight']
|
|
34653
35215
|
}], inverted: [{
|
|
34654
35216
|
type: Input
|
|
34655
|
-
}], disabled: [{
|
|
34656
|
-
type: Input
|
|
34657
|
-
}], strikethrough: [{
|
|
34658
|
-
type: Input
|
|
34659
|
-
}], title: [{
|
|
34660
|
-
type: Input
|
|
34661
35217
|
}], grow: [{
|
|
34662
35218
|
type: Input
|
|
34663
35219
|
}], growMobile: [{
|
|
@@ -37249,6 +37805,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
37249
37805
|
type: Input,
|
|
37250
37806
|
args: ['word-break-all--desktop']
|
|
37251
37807
|
}] } });
|
|
37808
|
+
/**
|
|
37809
|
+
* @description Type-only wrapper for <px-timeline>
|
|
37810
|
+
*/
|
|
37811
|
+
class PxTimeline {
|
|
37812
|
+
elementRef;
|
|
37813
|
+
set inverted(value) {
|
|
37814
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
37815
|
+
}
|
|
37816
|
+
get inverted() {
|
|
37817
|
+
return this.elementRef.nativeElement['inverted'];
|
|
37818
|
+
}
|
|
37819
|
+
constructor(elementRef) {
|
|
37820
|
+
this.elementRef = elementRef;
|
|
37821
|
+
}
|
|
37822
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
37823
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimeline, isStandalone: true, selector: "px-timeline", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
37824
|
+
}
|
|
37825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, decorators: [{
|
|
37826
|
+
type: Directive,
|
|
37827
|
+
args: [{
|
|
37828
|
+
selector: 'px-timeline',
|
|
37829
|
+
standalone: true,
|
|
37830
|
+
}]
|
|
37831
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
37832
|
+
type: Input
|
|
37833
|
+
}] } });
|
|
37834
|
+
/**
|
|
37835
|
+
* @description Type-only wrapper for <px-timeline-item>
|
|
37836
|
+
*/
|
|
37837
|
+
class PxTimelineItem {
|
|
37838
|
+
elementRef;
|
|
37839
|
+
set inverted(value) {
|
|
37840
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
37841
|
+
}
|
|
37842
|
+
get inverted() {
|
|
37843
|
+
return this.elementRef.nativeElement['inverted'];
|
|
37844
|
+
}
|
|
37845
|
+
set lastchild(value) {
|
|
37846
|
+
this.elementRef.nativeElement['lastchild'] = value;
|
|
37847
|
+
}
|
|
37848
|
+
get lastchild() {
|
|
37849
|
+
return this.elementRef.nativeElement['lastchild'];
|
|
37850
|
+
}
|
|
37851
|
+
set item(value) {
|
|
37852
|
+
this.elementRef.nativeElement['item'] = value;
|
|
37853
|
+
}
|
|
37854
|
+
get item() {
|
|
37855
|
+
return this.elementRef.nativeElement['item'];
|
|
37856
|
+
}
|
|
37857
|
+
TIMELINE_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
37858
|
+
constructor(elementRef) {
|
|
37859
|
+
this.elementRef = elementRef;
|
|
37860
|
+
this.elementRef.nativeElement.addEventListener('TIMELINE_ITEM_CONNECTED_EVENT', (e) => {
|
|
37861
|
+
this.TIMELINE_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
37862
|
+
});
|
|
37863
|
+
}
|
|
37864
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
37865
|
+
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 });
|
|
37866
|
+
}
|
|
37867
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, decorators: [{
|
|
37868
|
+
type: Directive,
|
|
37869
|
+
args: [{
|
|
37870
|
+
selector: 'px-timeline-item',
|
|
37871
|
+
standalone: true,
|
|
37872
|
+
}]
|
|
37873
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
37874
|
+
type: Input
|
|
37875
|
+
}], lastchild: [{
|
|
37876
|
+
type: Input
|
|
37877
|
+
}], item: [{
|
|
37878
|
+
type: Input
|
|
37879
|
+
}], TIMELINE_ITEM_CONNECTED_EVENT: [{
|
|
37880
|
+
type: Output
|
|
37881
|
+
}] } });
|
|
37252
37882
|
/**
|
|
37253
37883
|
* @description Type-only wrapper for <px-tile>
|
|
37254
37884
|
*/
|
|
@@ -40472,80 +41102,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
40472
41102
|
}], change: [{
|
|
40473
41103
|
type: Output
|
|
40474
41104
|
}] } });
|
|
40475
|
-
/**
|
|
40476
|
-
* @description Type-only wrapper for <px-timeline>
|
|
40477
|
-
*/
|
|
40478
|
-
class PxTimeline {
|
|
40479
|
-
elementRef;
|
|
40480
|
-
set inverted(value) {
|
|
40481
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
40482
|
-
}
|
|
40483
|
-
get inverted() {
|
|
40484
|
-
return this.elementRef.nativeElement['inverted'];
|
|
40485
|
-
}
|
|
40486
|
-
constructor(elementRef) {
|
|
40487
|
-
this.elementRef = elementRef;
|
|
40488
|
-
}
|
|
40489
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
40490
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimeline, isStandalone: true, selector: "px-timeline", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
40491
|
-
}
|
|
40492
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, decorators: [{
|
|
40493
|
-
type: Directive,
|
|
40494
|
-
args: [{
|
|
40495
|
-
selector: 'px-timeline',
|
|
40496
|
-
standalone: true,
|
|
40497
|
-
}]
|
|
40498
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
40499
|
-
type: Input
|
|
40500
|
-
}] } });
|
|
40501
|
-
/**
|
|
40502
|
-
* @description Type-only wrapper for <px-timeline-item>
|
|
40503
|
-
*/
|
|
40504
|
-
class PxTimelineItem {
|
|
40505
|
-
elementRef;
|
|
40506
|
-
set inverted(value) {
|
|
40507
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
40508
|
-
}
|
|
40509
|
-
get inverted() {
|
|
40510
|
-
return this.elementRef.nativeElement['inverted'];
|
|
40511
|
-
}
|
|
40512
|
-
set lastchild(value) {
|
|
40513
|
-
this.elementRef.nativeElement['lastchild'] = value;
|
|
40514
|
-
}
|
|
40515
|
-
get lastchild() {
|
|
40516
|
-
return this.elementRef.nativeElement['lastchild'];
|
|
40517
|
-
}
|
|
40518
|
-
set item(value) {
|
|
40519
|
-
this.elementRef.nativeElement['item'] = value;
|
|
40520
|
-
}
|
|
40521
|
-
get item() {
|
|
40522
|
-
return this.elementRef.nativeElement['item'];
|
|
40523
|
-
}
|
|
40524
|
-
TIMELINE_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
40525
|
-
constructor(elementRef) {
|
|
40526
|
-
this.elementRef = elementRef;
|
|
40527
|
-
this.elementRef.nativeElement.addEventListener('TIMELINE_ITEM_CONNECTED_EVENT', (e) => {
|
|
40528
|
-
this.TIMELINE_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
40529
|
-
});
|
|
40530
|
-
}
|
|
40531
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
40532
|
-
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 });
|
|
40533
|
-
}
|
|
40534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, decorators: [{
|
|
40535
|
-
type: Directive,
|
|
40536
|
-
args: [{
|
|
40537
|
-
selector: 'px-timeline-item',
|
|
40538
|
-
standalone: true,
|
|
40539
|
-
}]
|
|
40540
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
40541
|
-
type: Input
|
|
40542
|
-
}], lastchild: [{
|
|
40543
|
-
type: Input
|
|
40544
|
-
}], item: [{
|
|
40545
|
-
type: Input
|
|
40546
|
-
}], TIMELINE_ITEM_CONNECTED_EVENT: [{
|
|
40547
|
-
type: Output
|
|
40548
|
-
}] } });
|
|
40549
41105
|
/**
|
|
40550
41106
|
* @description Type-only wrapper for <px-toaster>
|
|
40551
41107
|
*/
|
|
@@ -41357,7 +41913,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41357
41913
|
}] } });
|
|
41358
41914
|
class Lavender {
|
|
41359
41915
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41360
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack,
|
|
41916
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxCodeInput, PxA, PxAWrapper, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxList, PxListItem, PxModal, PxP, PxPillar, PxPrice, PxCardActions, PxCardContainer, PxCardHeading, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSpan, PxSkeleton, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTimeline, PxTimelineItem, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxToaster, 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, PxCodeInput, PxA, PxAWrapper, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxList, PxListItem, PxModal, PxP, PxPillar, PxPrice, PxCardActions, PxCardContainer, PxCardHeading, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSpan, PxSkeleton, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTimeline, PxTimelineItem, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxToaster, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41361
41917
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41362
41918
|
}
|
|
41363
41919
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41406,22 +41962,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41406
41962
|
PxSelect,
|
|
41407
41963
|
PxTextarea,
|
|
41408
41964
|
PxFileupload,
|
|
41965
|
+
PxCodeInput,
|
|
41966
|
+
PxA,
|
|
41967
|
+
PxAWrapper,
|
|
41409
41968
|
PxPage,
|
|
41410
41969
|
PxSpacer,
|
|
41411
41970
|
PxStack,
|
|
41412
41971
|
PxVstack,
|
|
41413
41972
|
PxHstack,
|
|
41414
|
-
PxA,
|
|
41415
|
-
PxAWrapper,
|
|
41416
41973
|
PxList,
|
|
41417
41974
|
PxListItem,
|
|
41418
41975
|
PxModal,
|
|
41419
41976
|
PxP,
|
|
41420
41977
|
PxPillar,
|
|
41978
|
+
PxPrice,
|
|
41421
41979
|
PxCardActions,
|
|
41422
41980
|
PxCardContainer,
|
|
41423
41981
|
PxCardHeading,
|
|
41424
|
-
PxPrice,
|
|
41425
41982
|
PxRadio,
|
|
41426
41983
|
PxRadioBase,
|
|
41427
41984
|
PxRadioGroup,
|
|
@@ -41431,8 +41988,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41431
41988
|
PxSelectableBoxCheckbox,
|
|
41432
41989
|
PxSelectableBoxRadio,
|
|
41433
41990
|
PxSeparator,
|
|
41434
|
-
PxSkeleton,
|
|
41435
41991
|
PxSpan,
|
|
41992
|
+
PxSkeleton,
|
|
41436
41993
|
PxSpinner,
|
|
41437
41994
|
PxStatus,
|
|
41438
41995
|
PxStatusCard,
|
|
@@ -41448,14 +42005,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41448
42005
|
PxTab,
|
|
41449
42006
|
PxTabPanel,
|
|
41450
42007
|
PxTag,
|
|
42008
|
+
PxTimeline,
|
|
42009
|
+
PxTimelineItem,
|
|
41451
42010
|
PxTile,
|
|
41452
42011
|
PxTileButton,
|
|
41453
42012
|
PxTileCheckbox,
|
|
41454
42013
|
PxTileLink,
|
|
41455
42014
|
PxTileRadio,
|
|
41456
42015
|
PxTileSwitch,
|
|
41457
|
-
PxTimeline,
|
|
41458
|
-
PxTimelineItem,
|
|
41459
42016
|
PxToaster,
|
|
41460
42017
|
PxTypography,
|
|
41461
42018
|
PxPatch,
|
|
@@ -41508,22 +42065,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41508
42065
|
PxSelect,
|
|
41509
42066
|
PxTextarea,
|
|
41510
42067
|
PxFileupload,
|
|
42068
|
+
PxCodeInput,
|
|
42069
|
+
PxA,
|
|
42070
|
+
PxAWrapper,
|
|
41511
42071
|
PxPage,
|
|
41512
42072
|
PxSpacer,
|
|
41513
42073
|
PxStack,
|
|
41514
42074
|
PxVstack,
|
|
41515
42075
|
PxHstack,
|
|
41516
|
-
PxA,
|
|
41517
|
-
PxAWrapper,
|
|
41518
42076
|
PxList,
|
|
41519
42077
|
PxListItem,
|
|
41520
42078
|
PxModal,
|
|
41521
42079
|
PxP,
|
|
41522
42080
|
PxPillar,
|
|
42081
|
+
PxPrice,
|
|
41523
42082
|
PxCardActions,
|
|
41524
42083
|
PxCardContainer,
|
|
41525
42084
|
PxCardHeading,
|
|
41526
|
-
PxPrice,
|
|
41527
42085
|
PxRadio,
|
|
41528
42086
|
PxRadioBase,
|
|
41529
42087
|
PxRadioGroup,
|
|
@@ -41533,8 +42091,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41533
42091
|
PxSelectableBoxCheckbox,
|
|
41534
42092
|
PxSelectableBoxRadio,
|
|
41535
42093
|
PxSeparator,
|
|
41536
|
-
PxSkeleton,
|
|
41537
42094
|
PxSpan,
|
|
42095
|
+
PxSkeleton,
|
|
41538
42096
|
PxSpinner,
|
|
41539
42097
|
PxStatus,
|
|
41540
42098
|
PxStatusCard,
|
|
@@ -41550,14 +42108,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41550
42108
|
PxTab,
|
|
41551
42109
|
PxTabPanel,
|
|
41552
42110
|
PxTag,
|
|
42111
|
+
PxTimeline,
|
|
42112
|
+
PxTimelineItem,
|
|
41553
42113
|
PxTile,
|
|
41554
42114
|
PxTileButton,
|
|
41555
42115
|
PxTileCheckbox,
|
|
41556
42116
|
PxTileLink,
|
|
41557
42117
|
PxTileRadio,
|
|
41558
42118
|
PxTileSwitch,
|
|
41559
|
-
PxTimeline,
|
|
41560
|
-
PxTimelineItem,
|
|
41561
42119
|
PxToaster,
|
|
41562
42120
|
PxTypography,
|
|
41563
42121
|
PxPatch,
|
|
@@ -41574,5 +42132,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41574
42132
|
* Generated bundle index. Do not edit.
|
|
41575
42133
|
*/
|
|
41576
42134
|
|
|
41577
|
-
export { Lavender, LavenderValueAccessors, PxA, PxAWrapper, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxButtonWrapper, PxCard, PxCardActions, PxCardContainer, PxCardHeading, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxCheckboxValueAccessor, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxInputValueAccessor, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRadioGroupValueAccessor, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard, PxSwitch, PxSwitchValueAccessor, PxTab, PxTabPanel, PxTable, PxTabs, PxTag, PxTbody, PxTd, PxTextarea, PxTextareaValueAccessor, PxTh, PxThead, PxThemeProvider, PxThemeSwitcher, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTr, PxTypography, PxVstack };
|
|
42135
|
+
export { Lavender, LavenderValueAccessors, PxA, PxAWrapper, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxButtonWrapper, PxCard, PxCardActions, PxCardContainer, PxCardHeading, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxCheckboxValueAccessor, PxCodeInput, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxInputValueAccessor, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRadioGroupValueAccessor, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard, PxSwitch, PxSwitchValueAccessor, PxTab, PxTabPanel, PxTable, PxTabs, PxTag, PxTbody, PxTd, PxTextarea, PxTextareaValueAccessor, PxTh, PxThead, PxThemeProvider, PxThemeSwitcher, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTr, PxTypography, PxVstack };
|
|
41578
42136
|
//# sourceMappingURL=proximus-lavender-angular.mjs.map
|