@proximus/lavender-angular 1.4.10-alpha.7 → 1.4.10-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/esm2022/lavender.directive.mjs +849 -822
- package/fesm2022/proximus-lavender-angular.mjs +848 -821
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +267 -261
- package/package.json +1 -1
|
@@ -20035,39 +20035,139 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
20035
20035
|
type: Output
|
|
20036
20036
|
}] } });
|
|
20037
20037
|
/**
|
|
20038
|
-
* @description Type-only wrapper for <px-
|
|
20038
|
+
* @description Type-only wrapper for <px-a>
|
|
20039
20039
|
*/
|
|
20040
|
-
class
|
|
20040
|
+
class PxA {
|
|
20041
20041
|
elementRef;
|
|
20042
|
-
set
|
|
20043
|
-
this.elementRef.nativeElement['
|
|
20042
|
+
set disabled(value) {
|
|
20043
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
20044
20044
|
}
|
|
20045
|
-
get
|
|
20046
|
-
return this.elementRef.nativeElement['
|
|
20045
|
+
get disabled() {
|
|
20046
|
+
return this.elementRef.nativeElement['disabled'];
|
|
20047
20047
|
}
|
|
20048
|
-
set
|
|
20049
|
-
this.elementRef.nativeElement['
|
|
20048
|
+
set variant(value) {
|
|
20049
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
20050
20050
|
}
|
|
20051
|
-
get
|
|
20052
|
-
return this.elementRef.nativeElement['
|
|
20051
|
+
get variant() {
|
|
20052
|
+
return this.elementRef.nativeElement['variant'];
|
|
20053
20053
|
}
|
|
20054
|
-
set
|
|
20055
|
-
this.elementRef.nativeElement['
|
|
20054
|
+
set shape(value) {
|
|
20055
|
+
this.elementRef.nativeElement['shape'] = value;
|
|
20056
20056
|
}
|
|
20057
|
-
get
|
|
20058
|
-
return this.elementRef.nativeElement['
|
|
20057
|
+
get shape() {
|
|
20058
|
+
return this.elementRef.nativeElement['shape'];
|
|
20059
20059
|
}
|
|
20060
|
-
set
|
|
20061
|
-
this.elementRef.nativeElement['
|
|
20060
|
+
set shapeMobile(value) {
|
|
20061
|
+
this.elementRef.nativeElement['shapeMobile'] = value;
|
|
20062
20062
|
}
|
|
20063
|
-
get
|
|
20064
|
-
return this.elementRef.nativeElement['
|
|
20063
|
+
get shapeMobile() {
|
|
20064
|
+
return this.elementRef.nativeElement['shapeMobile'];
|
|
20065
20065
|
}
|
|
20066
|
-
set
|
|
20067
|
-
this.elementRef.nativeElement['
|
|
20066
|
+
set shapeTablet(value) {
|
|
20067
|
+
this.elementRef.nativeElement['shapeTablet'] = value;
|
|
20068
20068
|
}
|
|
20069
|
-
get
|
|
20070
|
-
return this.elementRef.nativeElement['
|
|
20069
|
+
get shapeTablet() {
|
|
20070
|
+
return this.elementRef.nativeElement['shapeTablet'];
|
|
20071
|
+
}
|
|
20072
|
+
set shapeLaptop(value) {
|
|
20073
|
+
this.elementRef.nativeElement['shapeLaptop'] = value;
|
|
20074
|
+
}
|
|
20075
|
+
get shapeLaptop() {
|
|
20076
|
+
return this.elementRef.nativeElement['shapeLaptop'];
|
|
20077
|
+
}
|
|
20078
|
+
set shapeDesktop(value) {
|
|
20079
|
+
this.elementRef.nativeElement['shapeDesktop'] = value;
|
|
20080
|
+
}
|
|
20081
|
+
get shapeDesktop() {
|
|
20082
|
+
return this.elementRef.nativeElement['shapeDesktop'];
|
|
20083
|
+
}
|
|
20084
|
+
set extended(value) {
|
|
20085
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
20086
|
+
}
|
|
20087
|
+
get extended() {
|
|
20088
|
+
return this.elementRef.nativeElement['extended'];
|
|
20089
|
+
}
|
|
20090
|
+
set extendedMobile(value) {
|
|
20091
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
20092
|
+
}
|
|
20093
|
+
get extendedMobile() {
|
|
20094
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
20095
|
+
}
|
|
20096
|
+
set extendedTablet(value) {
|
|
20097
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
20098
|
+
}
|
|
20099
|
+
get extendedTablet() {
|
|
20100
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
20101
|
+
}
|
|
20102
|
+
set extendedLaptop(value) {
|
|
20103
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
20104
|
+
}
|
|
20105
|
+
get extendedLaptop() {
|
|
20106
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
20107
|
+
}
|
|
20108
|
+
set extendedDesktop(value) {
|
|
20109
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
20110
|
+
}
|
|
20111
|
+
get extendedDesktop() {
|
|
20112
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
20113
|
+
}
|
|
20114
|
+
set inverted(value) {
|
|
20115
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
20116
|
+
}
|
|
20117
|
+
get inverted() {
|
|
20118
|
+
return this.elementRef.nativeElement['inverted'];
|
|
20119
|
+
}
|
|
20120
|
+
set fontSize(value) {
|
|
20121
|
+
this.elementRef.nativeElement['fontSize'] = value;
|
|
20122
|
+
}
|
|
20123
|
+
get fontSize() {
|
|
20124
|
+
return this.elementRef.nativeElement['fontSize'];
|
|
20125
|
+
}
|
|
20126
|
+
set color(value) {
|
|
20127
|
+
this.elementRef.nativeElement['color'] = value;
|
|
20128
|
+
}
|
|
20129
|
+
get color() {
|
|
20130
|
+
return this.elementRef.nativeElement['color'];
|
|
20131
|
+
}
|
|
20132
|
+
set fontWeight(value) {
|
|
20133
|
+
this.elementRef.nativeElement['fontWeight'] = value;
|
|
20134
|
+
}
|
|
20135
|
+
get fontWeight() {
|
|
20136
|
+
return this.elementRef.nativeElement['fontWeight'];
|
|
20137
|
+
}
|
|
20138
|
+
set title(value) {
|
|
20139
|
+
this.elementRef.nativeElement['title'] = value;
|
|
20140
|
+
}
|
|
20141
|
+
get title() {
|
|
20142
|
+
return this.elementRef.nativeElement['title'];
|
|
20143
|
+
}
|
|
20144
|
+
/** The URL that the hyperlink points to. */
|
|
20145
|
+
set href(value) {
|
|
20146
|
+
this.elementRef.nativeElement['href'] = value;
|
|
20147
|
+
}
|
|
20148
|
+
get href() {
|
|
20149
|
+
return this.elementRef.nativeElement['href'];
|
|
20150
|
+
}
|
|
20151
|
+
/** Where to display the linked URL. */
|
|
20152
|
+
set target(value) {
|
|
20153
|
+
this.elementRef.nativeElement['target'] = value;
|
|
20154
|
+
}
|
|
20155
|
+
get target() {
|
|
20156
|
+
return this.elementRef.nativeElement['target'];
|
|
20157
|
+
}
|
|
20158
|
+
/** The relationship of the linked URL as space-separated link types. */
|
|
20159
|
+
set rel(value) {
|
|
20160
|
+
this.elementRef.nativeElement['rel'] = value;
|
|
20161
|
+
}
|
|
20162
|
+
get rel() {
|
|
20163
|
+
return this.elementRef.nativeElement['rel'];
|
|
20164
|
+
}
|
|
20165
|
+
/** Prompts the user to save the linked URL instead of navigating to it. */
|
|
20166
|
+
set download(value) {
|
|
20167
|
+
this.elementRef.nativeElement['download'] = value;
|
|
20168
|
+
}
|
|
20169
|
+
get download() {
|
|
20170
|
+
return this.elementRef.nativeElement['download'];
|
|
20071
20171
|
}
|
|
20072
20172
|
set grow(value) {
|
|
20073
20173
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -20354,28 +20454,66 @@ class PxPage {
|
|
|
20354
20454
|
constructor(elementRef) {
|
|
20355
20455
|
this.elementRef = elementRef;
|
|
20356
20456
|
}
|
|
20357
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
20358
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
20457
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxA, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
20458
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxA, 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"] }, ngImport: i0 });
|
|
20359
20459
|
}
|
|
20360
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
20460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxA, decorators: [{
|
|
20361
20461
|
type: Directive,
|
|
20362
20462
|
args: [{
|
|
20363
|
-
selector: 'px-
|
|
20463
|
+
selector: 'px-a',
|
|
20364
20464
|
}]
|
|
20365
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
20465
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { disabled: [{
|
|
20466
|
+
type: Input
|
|
20467
|
+
}], variant: [{
|
|
20468
|
+
type: Input
|
|
20469
|
+
}], shape: [{
|
|
20470
|
+
type: Input
|
|
20471
|
+
}], shapeMobile: [{
|
|
20366
20472
|
type: Input,
|
|
20367
|
-
args: ['
|
|
20368
|
-
}],
|
|
20473
|
+
args: ['shape--mobile']
|
|
20474
|
+
}], shapeTablet: [{
|
|
20475
|
+
type: Input,
|
|
20476
|
+
args: ['shape--tablet']
|
|
20477
|
+
}], shapeLaptop: [{
|
|
20478
|
+
type: Input,
|
|
20479
|
+
args: ['shape--laptop']
|
|
20480
|
+
}], shapeDesktop: [{
|
|
20481
|
+
type: Input,
|
|
20482
|
+
args: ['shape--desktop']
|
|
20483
|
+
}], extended: [{
|
|
20369
20484
|
type: Input
|
|
20370
|
-
}],
|
|
20485
|
+
}], extendedMobile: [{
|
|
20371
20486
|
type: Input,
|
|
20372
|
-
args: ['
|
|
20373
|
-
}],
|
|
20487
|
+
args: ['extended--mobile']
|
|
20488
|
+
}], extendedTablet: [{
|
|
20374
20489
|
type: Input,
|
|
20375
|
-
args: ['
|
|
20376
|
-
}],
|
|
20490
|
+
args: ['extended--tablet']
|
|
20491
|
+
}], extendedLaptop: [{
|
|
20377
20492
|
type: Input,
|
|
20378
|
-
args: ['
|
|
20493
|
+
args: ['extended--laptop']
|
|
20494
|
+
}], extendedDesktop: [{
|
|
20495
|
+
type: Input,
|
|
20496
|
+
args: ['extended--desktop']
|
|
20497
|
+
}], inverted: [{
|
|
20498
|
+
type: Input
|
|
20499
|
+
}], fontSize: [{
|
|
20500
|
+
type: Input,
|
|
20501
|
+
args: ['font-size']
|
|
20502
|
+
}], color: [{
|
|
20503
|
+
type: Input
|
|
20504
|
+
}], fontWeight: [{
|
|
20505
|
+
type: Input,
|
|
20506
|
+
args: ['font-weight']
|
|
20507
|
+
}], title: [{
|
|
20508
|
+
type: Input
|
|
20509
|
+
}], href: [{
|
|
20510
|
+
type: Input
|
|
20511
|
+
}], target: [{
|
|
20512
|
+
type: Input
|
|
20513
|
+
}], rel: [{
|
|
20514
|
+
type: Input
|
|
20515
|
+
}], download: [{
|
|
20516
|
+
type: Input
|
|
20379
20517
|
}], grow: [{
|
|
20380
20518
|
type: Input
|
|
20381
20519
|
}], growMobile: [{
|
|
@@ -20514,222 +20652,139 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
20514
20652
|
args: ['sticky-bottom']
|
|
20515
20653
|
}] } });
|
|
20516
20654
|
/**
|
|
20517
|
-
* @description Type-only wrapper for <px-
|
|
20655
|
+
* @description Type-only wrapper for <px-a-wrapper>
|
|
20518
20656
|
*/
|
|
20519
|
-
class
|
|
20657
|
+
class PxAWrapper {
|
|
20520
20658
|
elementRef;
|
|
20521
|
-
|
|
20522
|
-
|
|
20523
|
-
|
|
20524
|
-
get grow() {
|
|
20525
|
-
return this.elementRef.nativeElement['grow'];
|
|
20659
|
+
/** The URL that the hyperlink points to. */
|
|
20660
|
+
set href(value) {
|
|
20661
|
+
this.elementRef.nativeElement['href'] = value;
|
|
20526
20662
|
}
|
|
20527
|
-
|
|
20528
|
-
this.elementRef.nativeElement['
|
|
20663
|
+
get href() {
|
|
20664
|
+
return this.elementRef.nativeElement['href'];
|
|
20529
20665
|
}
|
|
20530
|
-
|
|
20531
|
-
|
|
20666
|
+
/** Where to display the linked URL. */
|
|
20667
|
+
set target(value) {
|
|
20668
|
+
this.elementRef.nativeElement['target'] = value;
|
|
20532
20669
|
}
|
|
20533
|
-
|
|
20534
|
-
this.elementRef
|
|
20670
|
+
get target() {
|
|
20671
|
+
return this.elementRef.nativeElement['target'];
|
|
20535
20672
|
}
|
|
20536
|
-
|
|
20537
|
-
|
|
20538
|
-
|
|
20539
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpacer, decorators: [{
|
|
20540
|
-
type: Directive,
|
|
20541
|
-
args: [{
|
|
20542
|
-
selector: 'px-spacer',
|
|
20543
|
-
}]
|
|
20544
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { grow: [{
|
|
20545
|
-
type: Input
|
|
20546
|
-
}], nogap: [{
|
|
20547
|
-
type: Input
|
|
20548
|
-
}] } });
|
|
20549
|
-
/**
|
|
20550
|
-
* @description Type-only wrapper for <px-stack>
|
|
20551
|
-
*/
|
|
20552
|
-
class PxStack {
|
|
20553
|
-
elementRef;
|
|
20554
|
-
set direction(value) {
|
|
20555
|
-
this.elementRef.nativeElement['direction'] = value;
|
|
20673
|
+
/** The relationship of the linked URL as space-separated link types. */
|
|
20674
|
+
set rel(value) {
|
|
20675
|
+
this.elementRef.nativeElement['rel'] = value;
|
|
20556
20676
|
}
|
|
20557
|
-
get
|
|
20558
|
-
return this.elementRef.nativeElement['
|
|
20559
|
-
}
|
|
20560
|
-
set directionMobile(value) {
|
|
20561
|
-
this.elementRef.nativeElement['directionMobile'] = value;
|
|
20562
|
-
}
|
|
20563
|
-
get directionMobile() {
|
|
20564
|
-
return this.elementRef.nativeElement['directionMobile'];
|
|
20565
|
-
}
|
|
20566
|
-
set directionTablet(value) {
|
|
20567
|
-
this.elementRef.nativeElement['directionTablet'] = value;
|
|
20568
|
-
}
|
|
20569
|
-
get directionTablet() {
|
|
20570
|
-
return this.elementRef.nativeElement['directionTablet'];
|
|
20571
|
-
}
|
|
20572
|
-
set directionLaptop(value) {
|
|
20573
|
-
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
20574
|
-
}
|
|
20575
|
-
get directionLaptop() {
|
|
20576
|
-
return this.elementRef.nativeElement['directionLaptop'];
|
|
20577
|
-
}
|
|
20578
|
-
set directionDesktop(value) {
|
|
20579
|
-
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
20580
|
-
}
|
|
20581
|
-
get directionDesktop() {
|
|
20582
|
-
return this.elementRef.nativeElement['directionDesktop'];
|
|
20583
|
-
}
|
|
20584
|
-
set gap(value) {
|
|
20585
|
-
this.elementRef.nativeElement['gap'] = value;
|
|
20586
|
-
}
|
|
20587
|
-
get gap() {
|
|
20588
|
-
return this.elementRef.nativeElement['gap'];
|
|
20589
|
-
}
|
|
20590
|
-
set gapMobile(value) {
|
|
20591
|
-
this.elementRef.nativeElement['gapMobile'] = value;
|
|
20592
|
-
}
|
|
20593
|
-
get gapMobile() {
|
|
20594
|
-
return this.elementRef.nativeElement['gapMobile'];
|
|
20595
|
-
}
|
|
20596
|
-
set gapTablet(value) {
|
|
20597
|
-
this.elementRef.nativeElement['gapTablet'] = value;
|
|
20598
|
-
}
|
|
20599
|
-
get gapTablet() {
|
|
20600
|
-
return this.elementRef.nativeElement['gapTablet'];
|
|
20601
|
-
}
|
|
20602
|
-
set gapLaptop(value) {
|
|
20603
|
-
this.elementRef.nativeElement['gapLaptop'] = value;
|
|
20604
|
-
}
|
|
20605
|
-
get gapLaptop() {
|
|
20606
|
-
return this.elementRef.nativeElement['gapLaptop'];
|
|
20607
|
-
}
|
|
20608
|
-
set gapDesktop(value) {
|
|
20609
|
-
this.elementRef.nativeElement['gapDesktop'] = value;
|
|
20610
|
-
}
|
|
20611
|
-
get gapDesktop() {
|
|
20612
|
-
return this.elementRef.nativeElement['gapDesktop'];
|
|
20613
|
-
}
|
|
20614
|
-
set justifyContent(value) {
|
|
20615
|
-
this.elementRef.nativeElement['justifyContent'] = value;
|
|
20616
|
-
}
|
|
20617
|
-
get justifyContent() {
|
|
20618
|
-
return this.elementRef.nativeElement['justifyContent'];
|
|
20619
|
-
}
|
|
20620
|
-
set justifyContentMobile(value) {
|
|
20621
|
-
this.elementRef.nativeElement['justifyContentMobile'] = value;
|
|
20622
|
-
}
|
|
20623
|
-
get justifyContentMobile() {
|
|
20624
|
-
return this.elementRef.nativeElement['justifyContentMobile'];
|
|
20677
|
+
get rel() {
|
|
20678
|
+
return this.elementRef.nativeElement['rel'];
|
|
20625
20679
|
}
|
|
20626
|
-
|
|
20627
|
-
|
|
20680
|
+
/** Prompts the user to save the linked URL instead of navigating to it. */
|
|
20681
|
+
set download(value) {
|
|
20682
|
+
this.elementRef.nativeElement['download'] = value;
|
|
20628
20683
|
}
|
|
20629
|
-
get
|
|
20630
|
-
return this.elementRef.nativeElement['
|
|
20684
|
+
get download() {
|
|
20685
|
+
return this.elementRef.nativeElement['download'];
|
|
20631
20686
|
}
|
|
20632
|
-
set
|
|
20633
|
-
this.elementRef.nativeElement['
|
|
20687
|
+
set disabled(value) {
|
|
20688
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
20634
20689
|
}
|
|
20635
|
-
get
|
|
20636
|
-
return this.elementRef.nativeElement['
|
|
20690
|
+
get disabled() {
|
|
20691
|
+
return this.elementRef.nativeElement['disabled'];
|
|
20637
20692
|
}
|
|
20638
|
-
set
|
|
20639
|
-
this.elementRef.nativeElement['
|
|
20693
|
+
set variant(value) {
|
|
20694
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
20640
20695
|
}
|
|
20641
|
-
get
|
|
20642
|
-
return this.elementRef.nativeElement['
|
|
20696
|
+
get variant() {
|
|
20697
|
+
return this.elementRef.nativeElement['variant'];
|
|
20643
20698
|
}
|
|
20644
|
-
set
|
|
20645
|
-
this.elementRef.nativeElement['
|
|
20699
|
+
set shape(value) {
|
|
20700
|
+
this.elementRef.nativeElement['shape'] = value;
|
|
20646
20701
|
}
|
|
20647
|
-
get
|
|
20648
|
-
return this.elementRef.nativeElement['
|
|
20702
|
+
get shape() {
|
|
20703
|
+
return this.elementRef.nativeElement['shape'];
|
|
20649
20704
|
}
|
|
20650
|
-
set
|
|
20651
|
-
this.elementRef.nativeElement['
|
|
20705
|
+
set shapeMobile(value) {
|
|
20706
|
+
this.elementRef.nativeElement['shapeMobile'] = value;
|
|
20652
20707
|
}
|
|
20653
|
-
get
|
|
20654
|
-
return this.elementRef.nativeElement['
|
|
20708
|
+
get shapeMobile() {
|
|
20709
|
+
return this.elementRef.nativeElement['shapeMobile'];
|
|
20655
20710
|
}
|
|
20656
|
-
set
|
|
20657
|
-
this.elementRef.nativeElement['
|
|
20711
|
+
set shapeTablet(value) {
|
|
20712
|
+
this.elementRef.nativeElement['shapeTablet'] = value;
|
|
20658
20713
|
}
|
|
20659
|
-
get
|
|
20660
|
-
return this.elementRef.nativeElement['
|
|
20714
|
+
get shapeTablet() {
|
|
20715
|
+
return this.elementRef.nativeElement['shapeTablet'];
|
|
20661
20716
|
}
|
|
20662
|
-
set
|
|
20663
|
-
this.elementRef.nativeElement['
|
|
20717
|
+
set shapeLaptop(value) {
|
|
20718
|
+
this.elementRef.nativeElement['shapeLaptop'] = value;
|
|
20664
20719
|
}
|
|
20665
|
-
get
|
|
20666
|
-
return this.elementRef.nativeElement['
|
|
20720
|
+
get shapeLaptop() {
|
|
20721
|
+
return this.elementRef.nativeElement['shapeLaptop'];
|
|
20667
20722
|
}
|
|
20668
|
-
set
|
|
20669
|
-
this.elementRef.nativeElement['
|
|
20723
|
+
set shapeDesktop(value) {
|
|
20724
|
+
this.elementRef.nativeElement['shapeDesktop'] = value;
|
|
20670
20725
|
}
|
|
20671
|
-
get
|
|
20672
|
-
return this.elementRef.nativeElement['
|
|
20726
|
+
get shapeDesktop() {
|
|
20727
|
+
return this.elementRef.nativeElement['shapeDesktop'];
|
|
20673
20728
|
}
|
|
20674
|
-
set
|
|
20675
|
-
this.elementRef.nativeElement['
|
|
20729
|
+
set extended(value) {
|
|
20730
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
20676
20731
|
}
|
|
20677
|
-
get
|
|
20678
|
-
return this.elementRef.nativeElement['
|
|
20732
|
+
get extended() {
|
|
20733
|
+
return this.elementRef.nativeElement['extended'];
|
|
20679
20734
|
}
|
|
20680
|
-
set
|
|
20681
|
-
this.elementRef.nativeElement['
|
|
20735
|
+
set extendedMobile(value) {
|
|
20736
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
20682
20737
|
}
|
|
20683
|
-
get
|
|
20684
|
-
return this.elementRef.nativeElement['
|
|
20738
|
+
get extendedMobile() {
|
|
20739
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
20685
20740
|
}
|
|
20686
|
-
set
|
|
20687
|
-
this.elementRef.nativeElement['
|
|
20741
|
+
set extendedTablet(value) {
|
|
20742
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
20688
20743
|
}
|
|
20689
|
-
get
|
|
20690
|
-
return this.elementRef.nativeElement['
|
|
20744
|
+
get extendedTablet() {
|
|
20745
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
20691
20746
|
}
|
|
20692
|
-
set
|
|
20693
|
-
this.elementRef.nativeElement['
|
|
20747
|
+
set extendedLaptop(value) {
|
|
20748
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
20694
20749
|
}
|
|
20695
|
-
get
|
|
20696
|
-
return this.elementRef.nativeElement['
|
|
20750
|
+
get extendedLaptop() {
|
|
20751
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
20697
20752
|
}
|
|
20698
|
-
set
|
|
20699
|
-
this.elementRef.nativeElement['
|
|
20753
|
+
set extendedDesktop(value) {
|
|
20754
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
20700
20755
|
}
|
|
20701
|
-
get
|
|
20702
|
-
return this.elementRef.nativeElement['
|
|
20756
|
+
get extendedDesktop() {
|
|
20757
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
20703
20758
|
}
|
|
20704
|
-
set
|
|
20705
|
-
this.elementRef.nativeElement['
|
|
20759
|
+
set inverted(value) {
|
|
20760
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
20706
20761
|
}
|
|
20707
|
-
get
|
|
20708
|
-
return this.elementRef.nativeElement['
|
|
20762
|
+
get inverted() {
|
|
20763
|
+
return this.elementRef.nativeElement['inverted'];
|
|
20709
20764
|
}
|
|
20710
|
-
set
|
|
20711
|
-
this.elementRef.nativeElement['
|
|
20765
|
+
set fontSize(value) {
|
|
20766
|
+
this.elementRef.nativeElement['fontSize'] = value;
|
|
20712
20767
|
}
|
|
20713
|
-
get
|
|
20714
|
-
return this.elementRef.nativeElement['
|
|
20768
|
+
get fontSize() {
|
|
20769
|
+
return this.elementRef.nativeElement['fontSize'];
|
|
20715
20770
|
}
|
|
20716
|
-
set
|
|
20717
|
-
this.elementRef.nativeElement['
|
|
20771
|
+
set color(value) {
|
|
20772
|
+
this.elementRef.nativeElement['color'] = value;
|
|
20718
20773
|
}
|
|
20719
|
-
get
|
|
20720
|
-
return this.elementRef.nativeElement['
|
|
20774
|
+
get color() {
|
|
20775
|
+
return this.elementRef.nativeElement['color'];
|
|
20721
20776
|
}
|
|
20722
|
-
set
|
|
20723
|
-
this.elementRef.nativeElement['
|
|
20777
|
+
set fontWeight(value) {
|
|
20778
|
+
this.elementRef.nativeElement['fontWeight'] = value;
|
|
20724
20779
|
}
|
|
20725
|
-
get
|
|
20726
|
-
return this.elementRef.nativeElement['
|
|
20780
|
+
get fontWeight() {
|
|
20781
|
+
return this.elementRef.nativeElement['fontWeight'];
|
|
20727
20782
|
}
|
|
20728
|
-
set
|
|
20729
|
-
this.elementRef.nativeElement['
|
|
20783
|
+
set title(value) {
|
|
20784
|
+
this.elementRef.nativeElement['title'] = value;
|
|
20730
20785
|
}
|
|
20731
|
-
get
|
|
20732
|
-
return this.elementRef.nativeElement['
|
|
20786
|
+
get title() {
|
|
20787
|
+
return this.elementRef.nativeElement['title'];
|
|
20733
20788
|
}
|
|
20734
20789
|
set grow(value) {
|
|
20735
20790
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -21016,101 +21071,66 @@ class PxStack {
|
|
|
21016
21071
|
constructor(elementRef) {
|
|
21017
21072
|
this.elementRef = elementRef;
|
|
21018
21073
|
}
|
|
21019
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
21020
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
21074
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAWrapper, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21075
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxAWrapper, 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"] }, ngImport: i0 });
|
|
21021
21076
|
}
|
|
21022
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
21077
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAWrapper, decorators: [{
|
|
21023
21078
|
type: Directive,
|
|
21024
21079
|
args: [{
|
|
21025
|
-
selector: 'px-
|
|
21080
|
+
selector: 'px-a-wrapper',
|
|
21026
21081
|
}]
|
|
21027
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
21082
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { href: [{
|
|
21028
21083
|
type: Input
|
|
21029
|
-
}],
|
|
21084
|
+
}], target: [{
|
|
21085
|
+
type: Input
|
|
21086
|
+
}], rel: [{
|
|
21087
|
+
type: Input
|
|
21088
|
+
}], download: [{
|
|
21089
|
+
type: Input
|
|
21090
|
+
}], disabled: [{
|
|
21091
|
+
type: Input
|
|
21092
|
+
}], variant: [{
|
|
21093
|
+
type: Input
|
|
21094
|
+
}], shape: [{
|
|
21095
|
+
type: Input
|
|
21096
|
+
}], shapeMobile: [{
|
|
21030
21097
|
type: Input,
|
|
21031
|
-
args: ['
|
|
21032
|
-
}],
|
|
21098
|
+
args: ['shape--mobile']
|
|
21099
|
+
}], shapeTablet: [{
|
|
21033
21100
|
type: Input,
|
|
21034
|
-
args: ['
|
|
21035
|
-
}],
|
|
21101
|
+
args: ['shape--tablet']
|
|
21102
|
+
}], shapeLaptop: [{
|
|
21036
21103
|
type: Input,
|
|
21037
|
-
args: ['
|
|
21038
|
-
}],
|
|
21104
|
+
args: ['shape--laptop']
|
|
21105
|
+
}], shapeDesktop: [{
|
|
21039
21106
|
type: Input,
|
|
21040
|
-
args: ['
|
|
21041
|
-
}],
|
|
21107
|
+
args: ['shape--desktop']
|
|
21108
|
+
}], extended: [{
|
|
21042
21109
|
type: Input
|
|
21043
|
-
}],
|
|
21044
|
-
type: Input,
|
|
21045
|
-
args: ['gap--mobile']
|
|
21046
|
-
}], gapTablet: [{
|
|
21047
|
-
type: Input,
|
|
21048
|
-
args: ['gap--tablet']
|
|
21049
|
-
}], gapLaptop: [{
|
|
21050
|
-
type: Input,
|
|
21051
|
-
args: ['gap--laptop']
|
|
21052
|
-
}], gapDesktop: [{
|
|
21053
|
-
type: Input,
|
|
21054
|
-
args: ['gap--desktop']
|
|
21055
|
-
}], justifyContent: [{
|
|
21056
|
-
type: Input,
|
|
21057
|
-
args: ['justify-content']
|
|
21058
|
-
}], justifyContentMobile: [{
|
|
21059
|
-
type: Input,
|
|
21060
|
-
args: ['justify-content--mobile']
|
|
21061
|
-
}], justifyContentTablet: [{
|
|
21062
|
-
type: Input,
|
|
21063
|
-
args: ['justify-content--tablet']
|
|
21064
|
-
}], justifyContentLaptop: [{
|
|
21065
|
-
type: Input,
|
|
21066
|
-
args: ['justify-content--laptop']
|
|
21067
|
-
}], justifyContentDesktop: [{
|
|
21068
|
-
type: Input,
|
|
21069
|
-
args: ['justify-content--desktop']
|
|
21070
|
-
}], alignItems: [{
|
|
21071
|
-
type: Input,
|
|
21072
|
-
args: ['align-items']
|
|
21073
|
-
}], alignItemsMobile: [{
|
|
21110
|
+
}], extendedMobile: [{
|
|
21074
21111
|
type: Input,
|
|
21075
|
-
args: ['
|
|
21076
|
-
}],
|
|
21112
|
+
args: ['extended--mobile']
|
|
21113
|
+
}], extendedTablet: [{
|
|
21077
21114
|
type: Input,
|
|
21078
|
-
args: ['
|
|
21079
|
-
}],
|
|
21115
|
+
args: ['extended--tablet']
|
|
21116
|
+
}], extendedLaptop: [{
|
|
21080
21117
|
type: Input,
|
|
21081
|
-
args: ['
|
|
21082
|
-
}],
|
|
21118
|
+
args: ['extended--laptop']
|
|
21119
|
+
}], extendedDesktop: [{
|
|
21083
21120
|
type: Input,
|
|
21084
|
-
args: ['
|
|
21085
|
-
}],
|
|
21121
|
+
args: ['extended--desktop']
|
|
21122
|
+
}], inverted: [{
|
|
21086
21123
|
type: Input
|
|
21087
|
-
}],
|
|
21088
|
-
type: Input,
|
|
21089
|
-
args: ['wrap--mobile']
|
|
21090
|
-
}], wrapTablet: [{
|
|
21091
|
-
type: Input,
|
|
21092
|
-
args: ['wrap--tablet']
|
|
21093
|
-
}], wrapLaptop: [{
|
|
21094
|
-
type: Input,
|
|
21095
|
-
args: ['wrap--laptop']
|
|
21096
|
-
}], wrapDesktop: [{
|
|
21097
|
-
type: Input,
|
|
21098
|
-
args: ['wrap--desktop']
|
|
21099
|
-
}], overflowX: [{
|
|
21100
|
-
type: Input,
|
|
21101
|
-
args: ['overflow-x']
|
|
21102
|
-
}], overflowXMobile: [{
|
|
21103
|
-
type: Input,
|
|
21104
|
-
args: ['overflow-x--mobile']
|
|
21105
|
-
}], overflowXTablet: [{
|
|
21106
|
-
type: Input,
|
|
21107
|
-
args: ['overflow-x--tablet']
|
|
21108
|
-
}], overflowXLaptop: [{
|
|
21124
|
+
}], fontSize: [{
|
|
21109
21125
|
type: Input,
|
|
21110
|
-
args: ['
|
|
21111
|
-
}],
|
|
21126
|
+
args: ['font-size']
|
|
21127
|
+
}], color: [{
|
|
21128
|
+
type: Input
|
|
21129
|
+
}], fontWeight: [{
|
|
21112
21130
|
type: Input,
|
|
21113
|
-
args: ['
|
|
21131
|
+
args: ['font-weight']
|
|
21132
|
+
}], title: [{
|
|
21133
|
+
type: Input
|
|
21114
21134
|
}], grow: [{
|
|
21115
21135
|
type: Input
|
|
21116
21136
|
}], growMobile: [{
|
|
@@ -21249,39 +21269,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
21249
21269
|
args: ['sticky-bottom']
|
|
21250
21270
|
}] } });
|
|
21251
21271
|
/**
|
|
21252
|
-
* @description Type-only wrapper for <px-
|
|
21272
|
+
* @description Type-only wrapper for <px-page>
|
|
21253
21273
|
*/
|
|
21254
|
-
class
|
|
21274
|
+
class PxPage {
|
|
21255
21275
|
elementRef;
|
|
21256
|
-
set
|
|
21257
|
-
this.elementRef.nativeElement['
|
|
21258
|
-
}
|
|
21259
|
-
get direction() {
|
|
21260
|
-
return this.elementRef.nativeElement['direction'];
|
|
21261
|
-
}
|
|
21262
|
-
set directionMobile(value) {
|
|
21263
|
-
this.elementRef.nativeElement['directionMobile'] = value;
|
|
21264
|
-
}
|
|
21265
|
-
get directionMobile() {
|
|
21266
|
-
return this.elementRef.nativeElement['directionMobile'];
|
|
21267
|
-
}
|
|
21268
|
-
set directionTablet(value) {
|
|
21269
|
-
this.elementRef.nativeElement['directionTablet'] = value;
|
|
21270
|
-
}
|
|
21271
|
-
get directionTablet() {
|
|
21272
|
-
return this.elementRef.nativeElement['directionTablet'];
|
|
21273
|
-
}
|
|
21274
|
-
set directionLaptop(value) {
|
|
21275
|
-
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
21276
|
-
}
|
|
21277
|
-
get directionLaptop() {
|
|
21278
|
-
return this.elementRef.nativeElement['directionLaptop'];
|
|
21279
|
-
}
|
|
21280
|
-
set directionDesktop(value) {
|
|
21281
|
-
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
21276
|
+
set backgroundImage(value) {
|
|
21277
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
21282
21278
|
}
|
|
21283
|
-
get
|
|
21284
|
-
return this.elementRef.nativeElement['
|
|
21279
|
+
get backgroundImage() {
|
|
21280
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
21285
21281
|
}
|
|
21286
21282
|
set gap(value) {
|
|
21287
21283
|
this.elementRef.nativeElement['gap'] = value;
|
|
@@ -21289,149 +21285,23 @@ class PxVstack {
|
|
|
21289
21285
|
get gap() {
|
|
21290
21286
|
return this.elementRef.nativeElement['gap'];
|
|
21291
21287
|
}
|
|
21292
|
-
set
|
|
21293
|
-
this.elementRef.nativeElement['
|
|
21294
|
-
}
|
|
21295
|
-
get gapMobile() {
|
|
21296
|
-
return this.elementRef.nativeElement['gapMobile'];
|
|
21297
|
-
}
|
|
21298
|
-
set gapTablet(value) {
|
|
21299
|
-
this.elementRef.nativeElement['gapTablet'] = value;
|
|
21300
|
-
}
|
|
21301
|
-
get gapTablet() {
|
|
21302
|
-
return this.elementRef.nativeElement['gapTablet'];
|
|
21303
|
-
}
|
|
21304
|
-
set gapLaptop(value) {
|
|
21305
|
-
this.elementRef.nativeElement['gapLaptop'] = value;
|
|
21306
|
-
}
|
|
21307
|
-
get gapLaptop() {
|
|
21308
|
-
return this.elementRef.nativeElement['gapLaptop'];
|
|
21309
|
-
}
|
|
21310
|
-
set gapDesktop(value) {
|
|
21311
|
-
this.elementRef.nativeElement['gapDesktop'] = value;
|
|
21312
|
-
}
|
|
21313
|
-
get gapDesktop() {
|
|
21314
|
-
return this.elementRef.nativeElement['gapDesktop'];
|
|
21315
|
-
}
|
|
21316
|
-
set justifyContent(value) {
|
|
21317
|
-
this.elementRef.nativeElement['justifyContent'] = value;
|
|
21318
|
-
}
|
|
21319
|
-
get justifyContent() {
|
|
21320
|
-
return this.elementRef.nativeElement['justifyContent'];
|
|
21321
|
-
}
|
|
21322
|
-
set justifyContentMobile(value) {
|
|
21323
|
-
this.elementRef.nativeElement['justifyContentMobile'] = value;
|
|
21324
|
-
}
|
|
21325
|
-
get justifyContentMobile() {
|
|
21326
|
-
return this.elementRef.nativeElement['justifyContentMobile'];
|
|
21327
|
-
}
|
|
21328
|
-
set justifyContentTablet(value) {
|
|
21329
|
-
this.elementRef.nativeElement['justifyContentTablet'] = value;
|
|
21330
|
-
}
|
|
21331
|
-
get justifyContentTablet() {
|
|
21332
|
-
return this.elementRef.nativeElement['justifyContentTablet'];
|
|
21333
|
-
}
|
|
21334
|
-
set justifyContentLaptop(value) {
|
|
21335
|
-
this.elementRef.nativeElement['justifyContentLaptop'] = value;
|
|
21336
|
-
}
|
|
21337
|
-
get justifyContentLaptop() {
|
|
21338
|
-
return this.elementRef.nativeElement['justifyContentLaptop'];
|
|
21339
|
-
}
|
|
21340
|
-
set justifyContentDesktop(value) {
|
|
21341
|
-
this.elementRef.nativeElement['justifyContentDesktop'] = value;
|
|
21342
|
-
}
|
|
21343
|
-
get justifyContentDesktop() {
|
|
21344
|
-
return this.elementRef.nativeElement['justifyContentDesktop'];
|
|
21345
|
-
}
|
|
21346
|
-
set alignItems(value) {
|
|
21347
|
-
this.elementRef.nativeElement['alignItems'] = value;
|
|
21348
|
-
}
|
|
21349
|
-
get alignItems() {
|
|
21350
|
-
return this.elementRef.nativeElement['alignItems'];
|
|
21351
|
-
}
|
|
21352
|
-
set alignItemsMobile(value) {
|
|
21353
|
-
this.elementRef.nativeElement['alignItemsMobile'] = value;
|
|
21354
|
-
}
|
|
21355
|
-
get alignItemsMobile() {
|
|
21356
|
-
return this.elementRef.nativeElement['alignItemsMobile'];
|
|
21357
|
-
}
|
|
21358
|
-
set alignItemsTablet(value) {
|
|
21359
|
-
this.elementRef.nativeElement['alignItemsTablet'] = value;
|
|
21360
|
-
}
|
|
21361
|
-
get alignItemsTablet() {
|
|
21362
|
-
return this.elementRef.nativeElement['alignItemsTablet'];
|
|
21363
|
-
}
|
|
21364
|
-
set alignItemsLaptop(value) {
|
|
21365
|
-
this.elementRef.nativeElement['alignItemsLaptop'] = value;
|
|
21366
|
-
}
|
|
21367
|
-
get alignItemsLaptop() {
|
|
21368
|
-
return this.elementRef.nativeElement['alignItemsLaptop'];
|
|
21369
|
-
}
|
|
21370
|
-
set alignItemsDesktop(value) {
|
|
21371
|
-
this.elementRef.nativeElement['alignItemsDesktop'] = value;
|
|
21372
|
-
}
|
|
21373
|
-
get alignItemsDesktop() {
|
|
21374
|
-
return this.elementRef.nativeElement['alignItemsDesktop'];
|
|
21375
|
-
}
|
|
21376
|
-
set wrap(value) {
|
|
21377
|
-
this.elementRef.nativeElement['wrap'] = value;
|
|
21378
|
-
}
|
|
21379
|
-
get wrap() {
|
|
21380
|
-
return this.elementRef.nativeElement['wrap'];
|
|
21381
|
-
}
|
|
21382
|
-
set wrapMobile(value) {
|
|
21383
|
-
this.elementRef.nativeElement['wrapMobile'] = value;
|
|
21384
|
-
}
|
|
21385
|
-
get wrapMobile() {
|
|
21386
|
-
return this.elementRef.nativeElement['wrapMobile'];
|
|
21387
|
-
}
|
|
21388
|
-
set wrapTablet(value) {
|
|
21389
|
-
this.elementRef.nativeElement['wrapTablet'] = value;
|
|
21390
|
-
}
|
|
21391
|
-
get wrapTablet() {
|
|
21392
|
-
return this.elementRef.nativeElement['wrapTablet'];
|
|
21393
|
-
}
|
|
21394
|
-
set wrapLaptop(value) {
|
|
21395
|
-
this.elementRef.nativeElement['wrapLaptop'] = value;
|
|
21396
|
-
}
|
|
21397
|
-
get wrapLaptop() {
|
|
21398
|
-
return this.elementRef.nativeElement['wrapLaptop'];
|
|
21399
|
-
}
|
|
21400
|
-
set wrapDesktop(value) {
|
|
21401
|
-
this.elementRef.nativeElement['wrapDesktop'] = value;
|
|
21402
|
-
}
|
|
21403
|
-
get wrapDesktop() {
|
|
21404
|
-
return this.elementRef.nativeElement['wrapDesktop'];
|
|
21405
|
-
}
|
|
21406
|
-
set overflowX(value) {
|
|
21407
|
-
this.elementRef.nativeElement['overflowX'] = value;
|
|
21408
|
-
}
|
|
21409
|
-
get overflowX() {
|
|
21410
|
-
return this.elementRef.nativeElement['overflowX'];
|
|
21411
|
-
}
|
|
21412
|
-
set overflowXMobile(value) {
|
|
21413
|
-
this.elementRef.nativeElement['overflowXMobile'] = value;
|
|
21414
|
-
}
|
|
21415
|
-
get overflowXMobile() {
|
|
21416
|
-
return this.elementRef.nativeElement['overflowXMobile'];
|
|
21417
|
-
}
|
|
21418
|
-
set overflowXTablet(value) {
|
|
21419
|
-
this.elementRef.nativeElement['overflowXTablet'] = value;
|
|
21288
|
+
set backgroundColor(value) {
|
|
21289
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
21420
21290
|
}
|
|
21421
|
-
get
|
|
21422
|
-
return this.elementRef.nativeElement['
|
|
21291
|
+
get backgroundColor() {
|
|
21292
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
21423
21293
|
}
|
|
21424
|
-
set
|
|
21425
|
-
this.elementRef.nativeElement['
|
|
21294
|
+
set paddingVertical(value) {
|
|
21295
|
+
this.elementRef.nativeElement['paddingVertical'] = value;
|
|
21426
21296
|
}
|
|
21427
|
-
get
|
|
21428
|
-
return this.elementRef.nativeElement['
|
|
21297
|
+
get paddingVertical() {
|
|
21298
|
+
return this.elementRef.nativeElement['paddingVertical'];
|
|
21429
21299
|
}
|
|
21430
|
-
set
|
|
21431
|
-
this.elementRef.nativeElement['
|
|
21300
|
+
set paddingHorizontal(value) {
|
|
21301
|
+
this.elementRef.nativeElement['paddingHorizontal'] = value;
|
|
21432
21302
|
}
|
|
21433
|
-
get
|
|
21434
|
-
return this.elementRef.nativeElement['
|
|
21303
|
+
get paddingHorizontal() {
|
|
21304
|
+
return this.elementRef.nativeElement['paddingHorizontal'];
|
|
21435
21305
|
}
|
|
21436
21306
|
set grow(value) {
|
|
21437
21307
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -21718,101 +21588,28 @@ class PxVstack {
|
|
|
21718
21588
|
constructor(elementRef) {
|
|
21719
21589
|
this.elementRef = elementRef;
|
|
21720
21590
|
}
|
|
21721
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
21722
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
21591
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPage, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21592
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxPage, 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"] }, ngImport: i0 });
|
|
21723
21593
|
}
|
|
21724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
21594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPage, decorators: [{
|
|
21725
21595
|
type: Directive,
|
|
21726
21596
|
args: [{
|
|
21727
|
-
selector: 'px-
|
|
21597
|
+
selector: 'px-page',
|
|
21728
21598
|
}]
|
|
21729
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
21730
|
-
type: Input
|
|
21731
|
-
}], directionMobile: [{
|
|
21732
|
-
type: Input,
|
|
21733
|
-
args: ['direction--mobile']
|
|
21734
|
-
}], directionTablet: [{
|
|
21735
|
-
type: Input,
|
|
21736
|
-
args: ['direction--tablet']
|
|
21737
|
-
}], directionLaptop: [{
|
|
21738
|
-
type: Input,
|
|
21739
|
-
args: ['direction--laptop']
|
|
21740
|
-
}], directionDesktop: [{
|
|
21599
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { backgroundImage: [{
|
|
21741
21600
|
type: Input,
|
|
21742
|
-
args: ['
|
|
21601
|
+
args: ['background-image']
|
|
21743
21602
|
}], gap: [{
|
|
21744
21603
|
type: Input
|
|
21745
|
-
}],
|
|
21746
|
-
type: Input,
|
|
21747
|
-
args: ['gap--mobile']
|
|
21748
|
-
}], gapTablet: [{
|
|
21749
|
-
type: Input,
|
|
21750
|
-
args: ['gap--tablet']
|
|
21751
|
-
}], gapLaptop: [{
|
|
21752
|
-
type: Input,
|
|
21753
|
-
args: ['gap--laptop']
|
|
21754
|
-
}], gapDesktop: [{
|
|
21755
|
-
type: Input,
|
|
21756
|
-
args: ['gap--desktop']
|
|
21757
|
-
}], justifyContent: [{
|
|
21758
|
-
type: Input,
|
|
21759
|
-
args: ['justify-content']
|
|
21760
|
-
}], justifyContentMobile: [{
|
|
21761
|
-
type: Input,
|
|
21762
|
-
args: ['justify-content--mobile']
|
|
21763
|
-
}], justifyContentTablet: [{
|
|
21764
|
-
type: Input,
|
|
21765
|
-
args: ['justify-content--tablet']
|
|
21766
|
-
}], justifyContentLaptop: [{
|
|
21767
|
-
type: Input,
|
|
21768
|
-
args: ['justify-content--laptop']
|
|
21769
|
-
}], justifyContentDesktop: [{
|
|
21770
|
-
type: Input,
|
|
21771
|
-
args: ['justify-content--desktop']
|
|
21772
|
-
}], alignItems: [{
|
|
21773
|
-
type: Input,
|
|
21774
|
-
args: ['align-items']
|
|
21775
|
-
}], alignItemsMobile: [{
|
|
21776
|
-
type: Input,
|
|
21777
|
-
args: ['align-items--mobile']
|
|
21778
|
-
}], alignItemsTablet: [{
|
|
21779
|
-
type: Input,
|
|
21780
|
-
args: ['align-items--tablet']
|
|
21781
|
-
}], alignItemsLaptop: [{
|
|
21782
|
-
type: Input,
|
|
21783
|
-
args: ['align-items--laptop']
|
|
21784
|
-
}], alignItemsDesktop: [{
|
|
21785
|
-
type: Input,
|
|
21786
|
-
args: ['align-items--desktop']
|
|
21787
|
-
}], wrap: [{
|
|
21788
|
-
type: Input
|
|
21789
|
-
}], wrapMobile: [{
|
|
21790
|
-
type: Input,
|
|
21791
|
-
args: ['wrap--mobile']
|
|
21792
|
-
}], wrapTablet: [{
|
|
21793
|
-
type: Input,
|
|
21794
|
-
args: ['wrap--tablet']
|
|
21795
|
-
}], wrapLaptop: [{
|
|
21796
|
-
type: Input,
|
|
21797
|
-
args: ['wrap--laptop']
|
|
21798
|
-
}], wrapDesktop: [{
|
|
21799
|
-
type: Input,
|
|
21800
|
-
args: ['wrap--desktop']
|
|
21801
|
-
}], overflowX: [{
|
|
21802
|
-
type: Input,
|
|
21803
|
-
args: ['overflow-x']
|
|
21804
|
-
}], overflowXMobile: [{
|
|
21805
|
-
type: Input,
|
|
21806
|
-
args: ['overflow-x--mobile']
|
|
21807
|
-
}], overflowXTablet: [{
|
|
21604
|
+
}], backgroundColor: [{
|
|
21808
21605
|
type: Input,
|
|
21809
|
-
args: ['
|
|
21810
|
-
}],
|
|
21606
|
+
args: ['background-color']
|
|
21607
|
+
}], paddingVertical: [{
|
|
21811
21608
|
type: Input,
|
|
21812
|
-
args: ['
|
|
21813
|
-
}],
|
|
21609
|
+
args: ['padding-vertical']
|
|
21610
|
+
}], paddingHorizontal: [{
|
|
21814
21611
|
type: Input,
|
|
21815
|
-
args: ['
|
|
21612
|
+
args: ['padding-horizontal']
|
|
21816
21613
|
}], grow: [{
|
|
21817
21614
|
type: Input
|
|
21818
21615
|
}], growMobile: [{
|
|
@@ -21951,9 +21748,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
21951
21748
|
args: ['sticky-bottom']
|
|
21952
21749
|
}] } });
|
|
21953
21750
|
/**
|
|
21954
|
-
* @description Type-only wrapper for <px-
|
|
21751
|
+
* @description Type-only wrapper for <px-spacer>
|
|
21955
21752
|
*/
|
|
21956
|
-
class
|
|
21753
|
+
class PxSpacer {
|
|
21754
|
+
elementRef;
|
|
21755
|
+
set grow(value) {
|
|
21756
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
21757
|
+
}
|
|
21758
|
+
get grow() {
|
|
21759
|
+
return this.elementRef.nativeElement['grow'];
|
|
21760
|
+
}
|
|
21761
|
+
set nogap(value) {
|
|
21762
|
+
this.elementRef.nativeElement['nogap'] = value;
|
|
21763
|
+
}
|
|
21764
|
+
get nogap() {
|
|
21765
|
+
return this.elementRef.nativeElement['nogap'];
|
|
21766
|
+
}
|
|
21767
|
+
constructor(elementRef) {
|
|
21768
|
+
this.elementRef = elementRef;
|
|
21769
|
+
}
|
|
21770
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpacer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21771
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpacer, selector: "px-spacer", inputs: { grow: "grow", nogap: "nogap" }, ngImport: i0 });
|
|
21772
|
+
}
|
|
21773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpacer, decorators: [{
|
|
21774
|
+
type: Directive,
|
|
21775
|
+
args: [{
|
|
21776
|
+
selector: 'px-spacer',
|
|
21777
|
+
}]
|
|
21778
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { grow: [{
|
|
21779
|
+
type: Input
|
|
21780
|
+
}], nogap: [{
|
|
21781
|
+
type: Input
|
|
21782
|
+
}] } });
|
|
21783
|
+
/**
|
|
21784
|
+
* @description Type-only wrapper for <px-stack>
|
|
21785
|
+
*/
|
|
21786
|
+
class PxStack {
|
|
21957
21787
|
elementRef;
|
|
21958
21788
|
set direction(value) {
|
|
21959
21789
|
this.elementRef.nativeElement['direction'] = value;
|
|
@@ -22420,13 +22250,13 @@ class PxHstack {
|
|
|
22420
22250
|
constructor(elementRef) {
|
|
22421
22251
|
this.elementRef = elementRef;
|
|
22422
22252
|
}
|
|
22423
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
22424
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
22253
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxStack, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22254
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxStack, 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"] }, ngImport: i0 });
|
|
22425
22255
|
}
|
|
22426
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
22256
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxStack, decorators: [{
|
|
22427
22257
|
type: Directive,
|
|
22428
22258
|
args: [{
|
|
22429
|
-
selector: 'px-
|
|
22259
|
+
selector: 'px-stack',
|
|
22430
22260
|
}]
|
|
22431
22261
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { direction: [{
|
|
22432
22262
|
type: Input
|
|
@@ -22653,139 +22483,189 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
22653
22483
|
args: ['sticky-bottom']
|
|
22654
22484
|
}] } });
|
|
22655
22485
|
/**
|
|
22656
|
-
* @description Type-only wrapper for <px-
|
|
22486
|
+
* @description Type-only wrapper for <px-vstack>
|
|
22657
22487
|
*/
|
|
22658
|
-
class
|
|
22488
|
+
class PxVstack {
|
|
22659
22489
|
elementRef;
|
|
22660
|
-
set
|
|
22661
|
-
this.elementRef.nativeElement['
|
|
22490
|
+
set direction(value) {
|
|
22491
|
+
this.elementRef.nativeElement['direction'] = value;
|
|
22662
22492
|
}
|
|
22663
|
-
get
|
|
22664
|
-
return this.elementRef.nativeElement['
|
|
22493
|
+
get direction() {
|
|
22494
|
+
return this.elementRef.nativeElement['direction'];
|
|
22665
22495
|
}
|
|
22666
|
-
set
|
|
22667
|
-
this.elementRef.nativeElement['
|
|
22496
|
+
set directionMobile(value) {
|
|
22497
|
+
this.elementRef.nativeElement['directionMobile'] = value;
|
|
22668
22498
|
}
|
|
22669
|
-
get
|
|
22670
|
-
return this.elementRef.nativeElement['
|
|
22499
|
+
get directionMobile() {
|
|
22500
|
+
return this.elementRef.nativeElement['directionMobile'];
|
|
22671
22501
|
}
|
|
22672
|
-
set
|
|
22673
|
-
this.elementRef.nativeElement['
|
|
22502
|
+
set directionTablet(value) {
|
|
22503
|
+
this.elementRef.nativeElement['directionTablet'] = value;
|
|
22674
22504
|
}
|
|
22675
|
-
get
|
|
22676
|
-
return this.elementRef.nativeElement['
|
|
22505
|
+
get directionTablet() {
|
|
22506
|
+
return this.elementRef.nativeElement['directionTablet'];
|
|
22677
22507
|
}
|
|
22678
|
-
set
|
|
22679
|
-
this.elementRef.nativeElement['
|
|
22508
|
+
set directionLaptop(value) {
|
|
22509
|
+
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
22680
22510
|
}
|
|
22681
|
-
get
|
|
22682
|
-
return this.elementRef.nativeElement['
|
|
22511
|
+
get directionLaptop() {
|
|
22512
|
+
return this.elementRef.nativeElement['directionLaptop'];
|
|
22683
22513
|
}
|
|
22684
|
-
set
|
|
22685
|
-
this.elementRef.nativeElement['
|
|
22514
|
+
set directionDesktop(value) {
|
|
22515
|
+
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
22686
22516
|
}
|
|
22687
|
-
get
|
|
22688
|
-
return this.elementRef.nativeElement['
|
|
22517
|
+
get directionDesktop() {
|
|
22518
|
+
return this.elementRef.nativeElement['directionDesktop'];
|
|
22689
22519
|
}
|
|
22690
|
-
set
|
|
22691
|
-
this.elementRef.nativeElement['
|
|
22520
|
+
set gap(value) {
|
|
22521
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
22692
22522
|
}
|
|
22693
|
-
get
|
|
22694
|
-
return this.elementRef.nativeElement['
|
|
22523
|
+
get gap() {
|
|
22524
|
+
return this.elementRef.nativeElement['gap'];
|
|
22695
22525
|
}
|
|
22696
|
-
set
|
|
22697
|
-
this.elementRef.nativeElement['
|
|
22526
|
+
set gapMobile(value) {
|
|
22527
|
+
this.elementRef.nativeElement['gapMobile'] = value;
|
|
22698
22528
|
}
|
|
22699
|
-
get
|
|
22700
|
-
return this.elementRef.nativeElement['
|
|
22529
|
+
get gapMobile() {
|
|
22530
|
+
return this.elementRef.nativeElement['gapMobile'];
|
|
22701
22531
|
}
|
|
22702
|
-
set
|
|
22703
|
-
this.elementRef.nativeElement['
|
|
22532
|
+
set gapTablet(value) {
|
|
22533
|
+
this.elementRef.nativeElement['gapTablet'] = value;
|
|
22704
22534
|
}
|
|
22705
|
-
get
|
|
22706
|
-
return this.elementRef.nativeElement['
|
|
22535
|
+
get gapTablet() {
|
|
22536
|
+
return this.elementRef.nativeElement['gapTablet'];
|
|
22707
22537
|
}
|
|
22708
|
-
set
|
|
22709
|
-
this.elementRef.nativeElement['
|
|
22538
|
+
set gapLaptop(value) {
|
|
22539
|
+
this.elementRef.nativeElement['gapLaptop'] = value;
|
|
22710
22540
|
}
|
|
22711
|
-
get
|
|
22712
|
-
return this.elementRef.nativeElement['
|
|
22541
|
+
get gapLaptop() {
|
|
22542
|
+
return this.elementRef.nativeElement['gapLaptop'];
|
|
22713
22543
|
}
|
|
22714
|
-
set
|
|
22715
|
-
this.elementRef.nativeElement['
|
|
22544
|
+
set gapDesktop(value) {
|
|
22545
|
+
this.elementRef.nativeElement['gapDesktop'] = value;
|
|
22716
22546
|
}
|
|
22717
|
-
get
|
|
22718
|
-
return this.elementRef.nativeElement['
|
|
22547
|
+
get gapDesktop() {
|
|
22548
|
+
return this.elementRef.nativeElement['gapDesktop'];
|
|
22719
22549
|
}
|
|
22720
|
-
set
|
|
22721
|
-
this.elementRef.nativeElement['
|
|
22550
|
+
set justifyContent(value) {
|
|
22551
|
+
this.elementRef.nativeElement['justifyContent'] = value;
|
|
22722
22552
|
}
|
|
22723
|
-
get
|
|
22724
|
-
return this.elementRef.nativeElement['
|
|
22553
|
+
get justifyContent() {
|
|
22554
|
+
return this.elementRef.nativeElement['justifyContent'];
|
|
22725
22555
|
}
|
|
22726
|
-
set
|
|
22727
|
-
this.elementRef.nativeElement['
|
|
22556
|
+
set justifyContentMobile(value) {
|
|
22557
|
+
this.elementRef.nativeElement['justifyContentMobile'] = value;
|
|
22728
22558
|
}
|
|
22729
|
-
get
|
|
22730
|
-
return this.elementRef.nativeElement['
|
|
22559
|
+
get justifyContentMobile() {
|
|
22560
|
+
return this.elementRef.nativeElement['justifyContentMobile'];
|
|
22731
22561
|
}
|
|
22732
|
-
set
|
|
22733
|
-
this.elementRef.nativeElement['
|
|
22562
|
+
set justifyContentTablet(value) {
|
|
22563
|
+
this.elementRef.nativeElement['justifyContentTablet'] = value;
|
|
22734
22564
|
}
|
|
22735
|
-
get
|
|
22736
|
-
return this.elementRef.nativeElement['
|
|
22565
|
+
get justifyContentTablet() {
|
|
22566
|
+
return this.elementRef.nativeElement['justifyContentTablet'];
|
|
22737
22567
|
}
|
|
22738
|
-
set
|
|
22739
|
-
this.elementRef.nativeElement['
|
|
22568
|
+
set justifyContentLaptop(value) {
|
|
22569
|
+
this.elementRef.nativeElement['justifyContentLaptop'] = value;
|
|
22740
22570
|
}
|
|
22741
|
-
get
|
|
22742
|
-
return this.elementRef.nativeElement['
|
|
22571
|
+
get justifyContentLaptop() {
|
|
22572
|
+
return this.elementRef.nativeElement['justifyContentLaptop'];
|
|
22743
22573
|
}
|
|
22744
|
-
set
|
|
22745
|
-
this.elementRef.nativeElement['
|
|
22574
|
+
set justifyContentDesktop(value) {
|
|
22575
|
+
this.elementRef.nativeElement['justifyContentDesktop'] = value;
|
|
22746
22576
|
}
|
|
22747
|
-
get
|
|
22748
|
-
return this.elementRef.nativeElement['
|
|
22577
|
+
get justifyContentDesktop() {
|
|
22578
|
+
return this.elementRef.nativeElement['justifyContentDesktop'];
|
|
22749
22579
|
}
|
|
22750
|
-
set
|
|
22751
|
-
this.elementRef.nativeElement['
|
|
22580
|
+
set alignItems(value) {
|
|
22581
|
+
this.elementRef.nativeElement['alignItems'] = value;
|
|
22752
22582
|
}
|
|
22753
|
-
get
|
|
22754
|
-
return this.elementRef.nativeElement['
|
|
22583
|
+
get alignItems() {
|
|
22584
|
+
return this.elementRef.nativeElement['alignItems'];
|
|
22755
22585
|
}
|
|
22756
|
-
set
|
|
22757
|
-
this.elementRef.nativeElement['
|
|
22586
|
+
set alignItemsMobile(value) {
|
|
22587
|
+
this.elementRef.nativeElement['alignItemsMobile'] = value;
|
|
22758
22588
|
}
|
|
22759
|
-
get
|
|
22760
|
-
return this.elementRef.nativeElement['
|
|
22589
|
+
get alignItemsMobile() {
|
|
22590
|
+
return this.elementRef.nativeElement['alignItemsMobile'];
|
|
22761
22591
|
}
|
|
22762
|
-
|
|
22763
|
-
|
|
22764
|
-
this.elementRef.nativeElement['href'] = value;
|
|
22592
|
+
set alignItemsTablet(value) {
|
|
22593
|
+
this.elementRef.nativeElement['alignItemsTablet'] = value;
|
|
22765
22594
|
}
|
|
22766
|
-
get
|
|
22767
|
-
return this.elementRef.nativeElement['
|
|
22595
|
+
get alignItemsTablet() {
|
|
22596
|
+
return this.elementRef.nativeElement['alignItemsTablet'];
|
|
22768
22597
|
}
|
|
22769
|
-
|
|
22770
|
-
|
|
22771
|
-
this.elementRef.nativeElement['target'] = value;
|
|
22598
|
+
set alignItemsLaptop(value) {
|
|
22599
|
+
this.elementRef.nativeElement['alignItemsLaptop'] = value;
|
|
22772
22600
|
}
|
|
22773
|
-
get
|
|
22774
|
-
return this.elementRef.nativeElement['
|
|
22601
|
+
get alignItemsLaptop() {
|
|
22602
|
+
return this.elementRef.nativeElement['alignItemsLaptop'];
|
|
22603
|
+
}
|
|
22604
|
+
set alignItemsDesktop(value) {
|
|
22605
|
+
this.elementRef.nativeElement['alignItemsDesktop'] = value;
|
|
22606
|
+
}
|
|
22607
|
+
get alignItemsDesktop() {
|
|
22608
|
+
return this.elementRef.nativeElement['alignItemsDesktop'];
|
|
22609
|
+
}
|
|
22610
|
+
set wrap(value) {
|
|
22611
|
+
this.elementRef.nativeElement['wrap'] = value;
|
|
22612
|
+
}
|
|
22613
|
+
get wrap() {
|
|
22614
|
+
return this.elementRef.nativeElement['wrap'];
|
|
22615
|
+
}
|
|
22616
|
+
set wrapMobile(value) {
|
|
22617
|
+
this.elementRef.nativeElement['wrapMobile'] = value;
|
|
22618
|
+
}
|
|
22619
|
+
get wrapMobile() {
|
|
22620
|
+
return this.elementRef.nativeElement['wrapMobile'];
|
|
22621
|
+
}
|
|
22622
|
+
set wrapTablet(value) {
|
|
22623
|
+
this.elementRef.nativeElement['wrapTablet'] = value;
|
|
22624
|
+
}
|
|
22625
|
+
get wrapTablet() {
|
|
22626
|
+
return this.elementRef.nativeElement['wrapTablet'];
|
|
22627
|
+
}
|
|
22628
|
+
set wrapLaptop(value) {
|
|
22629
|
+
this.elementRef.nativeElement['wrapLaptop'] = value;
|
|
22630
|
+
}
|
|
22631
|
+
get wrapLaptop() {
|
|
22632
|
+
return this.elementRef.nativeElement['wrapLaptop'];
|
|
22633
|
+
}
|
|
22634
|
+
set wrapDesktop(value) {
|
|
22635
|
+
this.elementRef.nativeElement['wrapDesktop'] = value;
|
|
22636
|
+
}
|
|
22637
|
+
get wrapDesktop() {
|
|
22638
|
+
return this.elementRef.nativeElement['wrapDesktop'];
|
|
22639
|
+
}
|
|
22640
|
+
set overflowX(value) {
|
|
22641
|
+
this.elementRef.nativeElement['overflowX'] = value;
|
|
22642
|
+
}
|
|
22643
|
+
get overflowX() {
|
|
22644
|
+
return this.elementRef.nativeElement['overflowX'];
|
|
22645
|
+
}
|
|
22646
|
+
set overflowXMobile(value) {
|
|
22647
|
+
this.elementRef.nativeElement['overflowXMobile'] = value;
|
|
22648
|
+
}
|
|
22649
|
+
get overflowXMobile() {
|
|
22650
|
+
return this.elementRef.nativeElement['overflowXMobile'];
|
|
22651
|
+
}
|
|
22652
|
+
set overflowXTablet(value) {
|
|
22653
|
+
this.elementRef.nativeElement['overflowXTablet'] = value;
|
|
22654
|
+
}
|
|
22655
|
+
get overflowXTablet() {
|
|
22656
|
+
return this.elementRef.nativeElement['overflowXTablet'];
|
|
22775
22657
|
}
|
|
22776
|
-
|
|
22777
|
-
|
|
22778
|
-
this.elementRef.nativeElement['rel'] = value;
|
|
22658
|
+
set overflowXLaptop(value) {
|
|
22659
|
+
this.elementRef.nativeElement['overflowXLaptop'] = value;
|
|
22779
22660
|
}
|
|
22780
|
-
get
|
|
22781
|
-
return this.elementRef.nativeElement['
|
|
22661
|
+
get overflowXLaptop() {
|
|
22662
|
+
return this.elementRef.nativeElement['overflowXLaptop'];
|
|
22782
22663
|
}
|
|
22783
|
-
|
|
22784
|
-
|
|
22785
|
-
this.elementRef.nativeElement['download'] = value;
|
|
22664
|
+
set overflowXDesktop(value) {
|
|
22665
|
+
this.elementRef.nativeElement['overflowXDesktop'] = value;
|
|
22786
22666
|
}
|
|
22787
|
-
get
|
|
22788
|
-
return this.elementRef.nativeElement['
|
|
22667
|
+
get overflowXDesktop() {
|
|
22668
|
+
return this.elementRef.nativeElement['overflowXDesktop'];
|
|
22789
22669
|
}
|
|
22790
22670
|
set grow(value) {
|
|
22791
22671
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -23072,66 +22952,101 @@ class PxA {
|
|
|
23072
22952
|
constructor(elementRef) {
|
|
23073
22953
|
this.elementRef = elementRef;
|
|
23074
22954
|
}
|
|
23075
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
23076
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
22955
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxVstack, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22956
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxVstack, 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"] }, ngImport: i0 });
|
|
23077
22957
|
}
|
|
23078
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
22958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxVstack, decorators: [{
|
|
23079
22959
|
type: Directive,
|
|
23080
22960
|
args: [{
|
|
23081
|
-
selector: 'px-
|
|
22961
|
+
selector: 'px-vstack',
|
|
23082
22962
|
}]
|
|
23083
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
23084
|
-
type: Input
|
|
23085
|
-
}], variant: [{
|
|
23086
|
-
type: Input
|
|
23087
|
-
}], shape: [{
|
|
22963
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { direction: [{
|
|
23088
22964
|
type: Input
|
|
23089
|
-
}],
|
|
22965
|
+
}], directionMobile: [{
|
|
23090
22966
|
type: Input,
|
|
23091
|
-
args: ['
|
|
23092
|
-
}],
|
|
22967
|
+
args: ['direction--mobile']
|
|
22968
|
+
}], directionTablet: [{
|
|
23093
22969
|
type: Input,
|
|
23094
|
-
args: ['
|
|
23095
|
-
}],
|
|
22970
|
+
args: ['direction--tablet']
|
|
22971
|
+
}], directionLaptop: [{
|
|
23096
22972
|
type: Input,
|
|
23097
|
-
args: ['
|
|
23098
|
-
}],
|
|
22973
|
+
args: ['direction--laptop']
|
|
22974
|
+
}], directionDesktop: [{
|
|
23099
22975
|
type: Input,
|
|
23100
|
-
args: ['
|
|
23101
|
-
}],
|
|
22976
|
+
args: ['direction--desktop']
|
|
22977
|
+
}], gap: [{
|
|
23102
22978
|
type: Input
|
|
23103
|
-
}],
|
|
22979
|
+
}], gapMobile: [{
|
|
23104
22980
|
type: Input,
|
|
23105
|
-
args: ['
|
|
23106
|
-
}],
|
|
22981
|
+
args: ['gap--mobile']
|
|
22982
|
+
}], gapTablet: [{
|
|
23107
22983
|
type: Input,
|
|
23108
|
-
args: ['
|
|
23109
|
-
}],
|
|
22984
|
+
args: ['gap--tablet']
|
|
22985
|
+
}], gapLaptop: [{
|
|
23110
22986
|
type: Input,
|
|
23111
|
-
args: ['
|
|
23112
|
-
}],
|
|
22987
|
+
args: ['gap--laptop']
|
|
22988
|
+
}], gapDesktop: [{
|
|
23113
22989
|
type: Input,
|
|
23114
|
-
args: ['
|
|
23115
|
-
}],
|
|
23116
|
-
type: Input
|
|
23117
|
-
}], fontSize: [{
|
|
22990
|
+
args: ['gap--desktop']
|
|
22991
|
+
}], justifyContent: [{
|
|
23118
22992
|
type: Input,
|
|
23119
|
-
args: ['
|
|
23120
|
-
}],
|
|
23121
|
-
type: Input
|
|
23122
|
-
}], fontWeight: [{
|
|
22993
|
+
args: ['justify-content']
|
|
22994
|
+
}], justifyContentMobile: [{
|
|
23123
22995
|
type: Input,
|
|
23124
|
-
args: ['
|
|
23125
|
-
}],
|
|
23126
|
-
type: Input
|
|
23127
|
-
|
|
23128
|
-
|
|
23129
|
-
|
|
23130
|
-
|
|
23131
|
-
}],
|
|
23132
|
-
type: Input
|
|
23133
|
-
|
|
22996
|
+
args: ['justify-content--mobile']
|
|
22997
|
+
}], justifyContentTablet: [{
|
|
22998
|
+
type: Input,
|
|
22999
|
+
args: ['justify-content--tablet']
|
|
23000
|
+
}], justifyContentLaptop: [{
|
|
23001
|
+
type: Input,
|
|
23002
|
+
args: ['justify-content--laptop']
|
|
23003
|
+
}], justifyContentDesktop: [{
|
|
23004
|
+
type: Input,
|
|
23005
|
+
args: ['justify-content--desktop']
|
|
23006
|
+
}], alignItems: [{
|
|
23007
|
+
type: Input,
|
|
23008
|
+
args: ['align-items']
|
|
23009
|
+
}], alignItemsMobile: [{
|
|
23010
|
+
type: Input,
|
|
23011
|
+
args: ['align-items--mobile']
|
|
23012
|
+
}], alignItemsTablet: [{
|
|
23013
|
+
type: Input,
|
|
23014
|
+
args: ['align-items--tablet']
|
|
23015
|
+
}], alignItemsLaptop: [{
|
|
23016
|
+
type: Input,
|
|
23017
|
+
args: ['align-items--laptop']
|
|
23018
|
+
}], alignItemsDesktop: [{
|
|
23019
|
+
type: Input,
|
|
23020
|
+
args: ['align-items--desktop']
|
|
23021
|
+
}], wrap: [{
|
|
23134
23022
|
type: Input
|
|
23023
|
+
}], wrapMobile: [{
|
|
23024
|
+
type: Input,
|
|
23025
|
+
args: ['wrap--mobile']
|
|
23026
|
+
}], wrapTablet: [{
|
|
23027
|
+
type: Input,
|
|
23028
|
+
args: ['wrap--tablet']
|
|
23029
|
+
}], wrapLaptop: [{
|
|
23030
|
+
type: Input,
|
|
23031
|
+
args: ['wrap--laptop']
|
|
23032
|
+
}], wrapDesktop: [{
|
|
23033
|
+
type: Input,
|
|
23034
|
+
args: ['wrap--desktop']
|
|
23035
|
+
}], overflowX: [{
|
|
23036
|
+
type: Input,
|
|
23037
|
+
args: ['overflow-x']
|
|
23038
|
+
}], overflowXMobile: [{
|
|
23039
|
+
type: Input,
|
|
23040
|
+
args: ['overflow-x--mobile']
|
|
23041
|
+
}], overflowXTablet: [{
|
|
23042
|
+
type: Input,
|
|
23043
|
+
args: ['overflow-x--tablet']
|
|
23044
|
+
}], overflowXLaptop: [{
|
|
23045
|
+
type: Input,
|
|
23046
|
+
args: ['overflow-x--laptop']
|
|
23047
|
+
}], overflowXDesktop: [{
|
|
23048
|
+
type: Input,
|
|
23049
|
+
args: ['overflow-x--desktop']
|
|
23135
23050
|
}], grow: [{
|
|
23136
23051
|
type: Input
|
|
23137
23052
|
}], growMobile: [{
|
|
@@ -23270,139 +23185,189 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
23270
23185
|
args: ['sticky-bottom']
|
|
23271
23186
|
}] } });
|
|
23272
23187
|
/**
|
|
23273
|
-
* @description Type-only wrapper for <px-
|
|
23188
|
+
* @description Type-only wrapper for <px-hstack>
|
|
23274
23189
|
*/
|
|
23275
|
-
class
|
|
23190
|
+
class PxHstack {
|
|
23276
23191
|
elementRef;
|
|
23277
|
-
|
|
23278
|
-
|
|
23279
|
-
this.elementRef.nativeElement['href'] = value;
|
|
23192
|
+
set direction(value) {
|
|
23193
|
+
this.elementRef.nativeElement['direction'] = value;
|
|
23280
23194
|
}
|
|
23281
|
-
get
|
|
23282
|
-
return this.elementRef.nativeElement['
|
|
23195
|
+
get direction() {
|
|
23196
|
+
return this.elementRef.nativeElement['direction'];
|
|
23283
23197
|
}
|
|
23284
|
-
|
|
23285
|
-
|
|
23286
|
-
this.elementRef.nativeElement['target'] = value;
|
|
23198
|
+
set directionMobile(value) {
|
|
23199
|
+
this.elementRef.nativeElement['directionMobile'] = value;
|
|
23287
23200
|
}
|
|
23288
|
-
get
|
|
23289
|
-
return this.elementRef.nativeElement['
|
|
23201
|
+
get directionMobile() {
|
|
23202
|
+
return this.elementRef.nativeElement['directionMobile'];
|
|
23290
23203
|
}
|
|
23291
|
-
|
|
23292
|
-
|
|
23293
|
-
this.elementRef.nativeElement['rel'] = value;
|
|
23204
|
+
set directionTablet(value) {
|
|
23205
|
+
this.elementRef.nativeElement['directionTablet'] = value;
|
|
23294
23206
|
}
|
|
23295
|
-
get
|
|
23296
|
-
return this.elementRef.nativeElement['
|
|
23207
|
+
get directionTablet() {
|
|
23208
|
+
return this.elementRef.nativeElement['directionTablet'];
|
|
23297
23209
|
}
|
|
23298
|
-
|
|
23299
|
-
|
|
23300
|
-
this.elementRef.nativeElement['download'] = value;
|
|
23210
|
+
set directionLaptop(value) {
|
|
23211
|
+
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
23301
23212
|
}
|
|
23302
|
-
get
|
|
23303
|
-
return this.elementRef.nativeElement['
|
|
23213
|
+
get directionLaptop() {
|
|
23214
|
+
return this.elementRef.nativeElement['directionLaptop'];
|
|
23304
23215
|
}
|
|
23305
|
-
set
|
|
23306
|
-
this.elementRef.nativeElement['
|
|
23216
|
+
set directionDesktop(value) {
|
|
23217
|
+
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
23307
23218
|
}
|
|
23308
|
-
get
|
|
23309
|
-
return this.elementRef.nativeElement['
|
|
23219
|
+
get directionDesktop() {
|
|
23220
|
+
return this.elementRef.nativeElement['directionDesktop'];
|
|
23310
23221
|
}
|
|
23311
|
-
set
|
|
23312
|
-
this.elementRef.nativeElement['
|
|
23222
|
+
set gap(value) {
|
|
23223
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
23313
23224
|
}
|
|
23314
|
-
get
|
|
23315
|
-
return this.elementRef.nativeElement['
|
|
23225
|
+
get gap() {
|
|
23226
|
+
return this.elementRef.nativeElement['gap'];
|
|
23316
23227
|
}
|
|
23317
|
-
set
|
|
23318
|
-
this.elementRef.nativeElement['
|
|
23228
|
+
set gapMobile(value) {
|
|
23229
|
+
this.elementRef.nativeElement['gapMobile'] = value;
|
|
23319
23230
|
}
|
|
23320
|
-
get
|
|
23321
|
-
return this.elementRef.nativeElement['
|
|
23231
|
+
get gapMobile() {
|
|
23232
|
+
return this.elementRef.nativeElement['gapMobile'];
|
|
23233
|
+
}
|
|
23234
|
+
set gapTablet(value) {
|
|
23235
|
+
this.elementRef.nativeElement['gapTablet'] = value;
|
|
23236
|
+
}
|
|
23237
|
+
get gapTablet() {
|
|
23238
|
+
return this.elementRef.nativeElement['gapTablet'];
|
|
23239
|
+
}
|
|
23240
|
+
set gapLaptop(value) {
|
|
23241
|
+
this.elementRef.nativeElement['gapLaptop'] = value;
|
|
23242
|
+
}
|
|
23243
|
+
get gapLaptop() {
|
|
23244
|
+
return this.elementRef.nativeElement['gapLaptop'];
|
|
23245
|
+
}
|
|
23246
|
+
set gapDesktop(value) {
|
|
23247
|
+
this.elementRef.nativeElement['gapDesktop'] = value;
|
|
23248
|
+
}
|
|
23249
|
+
get gapDesktop() {
|
|
23250
|
+
return this.elementRef.nativeElement['gapDesktop'];
|
|
23251
|
+
}
|
|
23252
|
+
set justifyContent(value) {
|
|
23253
|
+
this.elementRef.nativeElement['justifyContent'] = value;
|
|
23254
|
+
}
|
|
23255
|
+
get justifyContent() {
|
|
23256
|
+
return this.elementRef.nativeElement['justifyContent'];
|
|
23257
|
+
}
|
|
23258
|
+
set justifyContentMobile(value) {
|
|
23259
|
+
this.elementRef.nativeElement['justifyContentMobile'] = value;
|
|
23260
|
+
}
|
|
23261
|
+
get justifyContentMobile() {
|
|
23262
|
+
return this.elementRef.nativeElement['justifyContentMobile'];
|
|
23263
|
+
}
|
|
23264
|
+
set justifyContentTablet(value) {
|
|
23265
|
+
this.elementRef.nativeElement['justifyContentTablet'] = value;
|
|
23266
|
+
}
|
|
23267
|
+
get justifyContentTablet() {
|
|
23268
|
+
return this.elementRef.nativeElement['justifyContentTablet'];
|
|
23269
|
+
}
|
|
23270
|
+
set justifyContentLaptop(value) {
|
|
23271
|
+
this.elementRef.nativeElement['justifyContentLaptop'] = value;
|
|
23272
|
+
}
|
|
23273
|
+
get justifyContentLaptop() {
|
|
23274
|
+
return this.elementRef.nativeElement['justifyContentLaptop'];
|
|
23275
|
+
}
|
|
23276
|
+
set justifyContentDesktop(value) {
|
|
23277
|
+
this.elementRef.nativeElement['justifyContentDesktop'] = value;
|
|
23278
|
+
}
|
|
23279
|
+
get justifyContentDesktop() {
|
|
23280
|
+
return this.elementRef.nativeElement['justifyContentDesktop'];
|
|
23281
|
+
}
|
|
23282
|
+
set alignItems(value) {
|
|
23283
|
+
this.elementRef.nativeElement['alignItems'] = value;
|
|
23284
|
+
}
|
|
23285
|
+
get alignItems() {
|
|
23286
|
+
return this.elementRef.nativeElement['alignItems'];
|
|
23322
23287
|
}
|
|
23323
|
-
set
|
|
23324
|
-
this.elementRef.nativeElement['
|
|
23288
|
+
set alignItemsMobile(value) {
|
|
23289
|
+
this.elementRef.nativeElement['alignItemsMobile'] = value;
|
|
23325
23290
|
}
|
|
23326
|
-
get
|
|
23327
|
-
return this.elementRef.nativeElement['
|
|
23291
|
+
get alignItemsMobile() {
|
|
23292
|
+
return this.elementRef.nativeElement['alignItemsMobile'];
|
|
23328
23293
|
}
|
|
23329
|
-
set
|
|
23330
|
-
this.elementRef.nativeElement['
|
|
23294
|
+
set alignItemsTablet(value) {
|
|
23295
|
+
this.elementRef.nativeElement['alignItemsTablet'] = value;
|
|
23331
23296
|
}
|
|
23332
|
-
get
|
|
23333
|
-
return this.elementRef.nativeElement['
|
|
23297
|
+
get alignItemsTablet() {
|
|
23298
|
+
return this.elementRef.nativeElement['alignItemsTablet'];
|
|
23334
23299
|
}
|
|
23335
|
-
set
|
|
23336
|
-
this.elementRef.nativeElement['
|
|
23300
|
+
set alignItemsLaptop(value) {
|
|
23301
|
+
this.elementRef.nativeElement['alignItemsLaptop'] = value;
|
|
23337
23302
|
}
|
|
23338
|
-
get
|
|
23339
|
-
return this.elementRef.nativeElement['
|
|
23303
|
+
get alignItemsLaptop() {
|
|
23304
|
+
return this.elementRef.nativeElement['alignItemsLaptop'];
|
|
23340
23305
|
}
|
|
23341
|
-
set
|
|
23342
|
-
this.elementRef.nativeElement['
|
|
23306
|
+
set alignItemsDesktop(value) {
|
|
23307
|
+
this.elementRef.nativeElement['alignItemsDesktop'] = value;
|
|
23343
23308
|
}
|
|
23344
|
-
get
|
|
23345
|
-
return this.elementRef.nativeElement['
|
|
23309
|
+
get alignItemsDesktop() {
|
|
23310
|
+
return this.elementRef.nativeElement['alignItemsDesktop'];
|
|
23346
23311
|
}
|
|
23347
|
-
set
|
|
23348
|
-
this.elementRef.nativeElement['
|
|
23312
|
+
set wrap(value) {
|
|
23313
|
+
this.elementRef.nativeElement['wrap'] = value;
|
|
23349
23314
|
}
|
|
23350
|
-
get
|
|
23351
|
-
return this.elementRef.nativeElement['
|
|
23315
|
+
get wrap() {
|
|
23316
|
+
return this.elementRef.nativeElement['wrap'];
|
|
23352
23317
|
}
|
|
23353
|
-
set
|
|
23354
|
-
this.elementRef.nativeElement['
|
|
23318
|
+
set wrapMobile(value) {
|
|
23319
|
+
this.elementRef.nativeElement['wrapMobile'] = value;
|
|
23355
23320
|
}
|
|
23356
|
-
get
|
|
23357
|
-
return this.elementRef.nativeElement['
|
|
23321
|
+
get wrapMobile() {
|
|
23322
|
+
return this.elementRef.nativeElement['wrapMobile'];
|
|
23358
23323
|
}
|
|
23359
|
-
set
|
|
23360
|
-
this.elementRef.nativeElement['
|
|
23324
|
+
set wrapTablet(value) {
|
|
23325
|
+
this.elementRef.nativeElement['wrapTablet'] = value;
|
|
23361
23326
|
}
|
|
23362
|
-
get
|
|
23363
|
-
return this.elementRef.nativeElement['
|
|
23327
|
+
get wrapTablet() {
|
|
23328
|
+
return this.elementRef.nativeElement['wrapTablet'];
|
|
23364
23329
|
}
|
|
23365
|
-
set
|
|
23366
|
-
this.elementRef.nativeElement['
|
|
23330
|
+
set wrapLaptop(value) {
|
|
23331
|
+
this.elementRef.nativeElement['wrapLaptop'] = value;
|
|
23367
23332
|
}
|
|
23368
|
-
get
|
|
23369
|
-
return this.elementRef.nativeElement['
|
|
23333
|
+
get wrapLaptop() {
|
|
23334
|
+
return this.elementRef.nativeElement['wrapLaptop'];
|
|
23370
23335
|
}
|
|
23371
|
-
set
|
|
23372
|
-
this.elementRef.nativeElement['
|
|
23336
|
+
set wrapDesktop(value) {
|
|
23337
|
+
this.elementRef.nativeElement['wrapDesktop'] = value;
|
|
23373
23338
|
}
|
|
23374
|
-
get
|
|
23375
|
-
return this.elementRef.nativeElement['
|
|
23339
|
+
get wrapDesktop() {
|
|
23340
|
+
return this.elementRef.nativeElement['wrapDesktop'];
|
|
23376
23341
|
}
|
|
23377
|
-
set
|
|
23378
|
-
this.elementRef.nativeElement['
|
|
23342
|
+
set overflowX(value) {
|
|
23343
|
+
this.elementRef.nativeElement['overflowX'] = value;
|
|
23379
23344
|
}
|
|
23380
|
-
get
|
|
23381
|
-
return this.elementRef.nativeElement['
|
|
23345
|
+
get overflowX() {
|
|
23346
|
+
return this.elementRef.nativeElement['overflowX'];
|
|
23382
23347
|
}
|
|
23383
|
-
set
|
|
23384
|
-
this.elementRef.nativeElement['
|
|
23348
|
+
set overflowXMobile(value) {
|
|
23349
|
+
this.elementRef.nativeElement['overflowXMobile'] = value;
|
|
23385
23350
|
}
|
|
23386
|
-
get
|
|
23387
|
-
return this.elementRef.nativeElement['
|
|
23351
|
+
get overflowXMobile() {
|
|
23352
|
+
return this.elementRef.nativeElement['overflowXMobile'];
|
|
23388
23353
|
}
|
|
23389
|
-
set
|
|
23390
|
-
this.elementRef.nativeElement['
|
|
23354
|
+
set overflowXTablet(value) {
|
|
23355
|
+
this.elementRef.nativeElement['overflowXTablet'] = value;
|
|
23391
23356
|
}
|
|
23392
|
-
get
|
|
23393
|
-
return this.elementRef.nativeElement['
|
|
23357
|
+
get overflowXTablet() {
|
|
23358
|
+
return this.elementRef.nativeElement['overflowXTablet'];
|
|
23394
23359
|
}
|
|
23395
|
-
set
|
|
23396
|
-
this.elementRef.nativeElement['
|
|
23360
|
+
set overflowXLaptop(value) {
|
|
23361
|
+
this.elementRef.nativeElement['overflowXLaptop'] = value;
|
|
23397
23362
|
}
|
|
23398
|
-
get
|
|
23399
|
-
return this.elementRef.nativeElement['
|
|
23363
|
+
get overflowXLaptop() {
|
|
23364
|
+
return this.elementRef.nativeElement['overflowXLaptop'];
|
|
23400
23365
|
}
|
|
23401
|
-
set
|
|
23402
|
-
this.elementRef.nativeElement['
|
|
23366
|
+
set overflowXDesktop(value) {
|
|
23367
|
+
this.elementRef.nativeElement['overflowXDesktop'] = value;
|
|
23403
23368
|
}
|
|
23404
|
-
get
|
|
23405
|
-
return this.elementRef.nativeElement['
|
|
23369
|
+
get overflowXDesktop() {
|
|
23370
|
+
return this.elementRef.nativeElement['overflowXDesktop'];
|
|
23406
23371
|
}
|
|
23407
23372
|
set grow(value) {
|
|
23408
23373
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -23689,66 +23654,101 @@ class PxAWrapper {
|
|
|
23689
23654
|
constructor(elementRef) {
|
|
23690
23655
|
this.elementRef = elementRef;
|
|
23691
23656
|
}
|
|
23692
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
23693
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
23657
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxHstack, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
23658
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxHstack, 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"] }, ngImport: i0 });
|
|
23694
23659
|
}
|
|
23695
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
23660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxHstack, decorators: [{
|
|
23696
23661
|
type: Directive,
|
|
23697
23662
|
args: [{
|
|
23698
|
-
selector: 'px-
|
|
23663
|
+
selector: 'px-hstack',
|
|
23699
23664
|
}]
|
|
23700
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
23701
|
-
type: Input
|
|
23702
|
-
}], target: [{
|
|
23703
|
-
type: Input
|
|
23704
|
-
}], rel: [{
|
|
23705
|
-
type: Input
|
|
23706
|
-
}], download: [{
|
|
23707
|
-
type: Input
|
|
23708
|
-
}], disabled: [{
|
|
23709
|
-
type: Input
|
|
23710
|
-
}], variant: [{
|
|
23711
|
-
type: Input
|
|
23712
|
-
}], shape: [{
|
|
23665
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { direction: [{
|
|
23713
23666
|
type: Input
|
|
23714
|
-
}],
|
|
23667
|
+
}], directionMobile: [{
|
|
23715
23668
|
type: Input,
|
|
23716
|
-
args: ['
|
|
23717
|
-
}],
|
|
23669
|
+
args: ['direction--mobile']
|
|
23670
|
+
}], directionTablet: [{
|
|
23718
23671
|
type: Input,
|
|
23719
|
-
args: ['
|
|
23720
|
-
}],
|
|
23672
|
+
args: ['direction--tablet']
|
|
23673
|
+
}], directionLaptop: [{
|
|
23721
23674
|
type: Input,
|
|
23722
|
-
args: ['
|
|
23723
|
-
}],
|
|
23675
|
+
args: ['direction--laptop']
|
|
23676
|
+
}], directionDesktop: [{
|
|
23724
23677
|
type: Input,
|
|
23725
|
-
args: ['
|
|
23726
|
-
}],
|
|
23678
|
+
args: ['direction--desktop']
|
|
23679
|
+
}], gap: [{
|
|
23727
23680
|
type: Input
|
|
23728
|
-
}],
|
|
23681
|
+
}], gapMobile: [{
|
|
23729
23682
|
type: Input,
|
|
23730
|
-
args: ['
|
|
23731
|
-
}],
|
|
23683
|
+
args: ['gap--mobile']
|
|
23684
|
+
}], gapTablet: [{
|
|
23732
23685
|
type: Input,
|
|
23733
|
-
args: ['
|
|
23734
|
-
}],
|
|
23686
|
+
args: ['gap--tablet']
|
|
23687
|
+
}], gapLaptop: [{
|
|
23735
23688
|
type: Input,
|
|
23736
|
-
args: ['
|
|
23737
|
-
}],
|
|
23689
|
+
args: ['gap--laptop']
|
|
23690
|
+
}], gapDesktop: [{
|
|
23738
23691
|
type: Input,
|
|
23739
|
-
args: ['
|
|
23740
|
-
}],
|
|
23741
|
-
type: Input
|
|
23742
|
-
}], fontSize: [{
|
|
23692
|
+
args: ['gap--desktop']
|
|
23693
|
+
}], justifyContent: [{
|
|
23743
23694
|
type: Input,
|
|
23744
|
-
args: ['
|
|
23745
|
-
}],
|
|
23746
|
-
type: Input
|
|
23747
|
-
}], fontWeight: [{
|
|
23695
|
+
args: ['justify-content']
|
|
23696
|
+
}], justifyContentMobile: [{
|
|
23748
23697
|
type: Input,
|
|
23749
|
-
args: ['
|
|
23750
|
-
}],
|
|
23698
|
+
args: ['justify-content--mobile']
|
|
23699
|
+
}], justifyContentTablet: [{
|
|
23700
|
+
type: Input,
|
|
23701
|
+
args: ['justify-content--tablet']
|
|
23702
|
+
}], justifyContentLaptop: [{
|
|
23703
|
+
type: Input,
|
|
23704
|
+
args: ['justify-content--laptop']
|
|
23705
|
+
}], justifyContentDesktop: [{
|
|
23706
|
+
type: Input,
|
|
23707
|
+
args: ['justify-content--desktop']
|
|
23708
|
+
}], alignItems: [{
|
|
23709
|
+
type: Input,
|
|
23710
|
+
args: ['align-items']
|
|
23711
|
+
}], alignItemsMobile: [{
|
|
23712
|
+
type: Input,
|
|
23713
|
+
args: ['align-items--mobile']
|
|
23714
|
+
}], alignItemsTablet: [{
|
|
23715
|
+
type: Input,
|
|
23716
|
+
args: ['align-items--tablet']
|
|
23717
|
+
}], alignItemsLaptop: [{
|
|
23718
|
+
type: Input,
|
|
23719
|
+
args: ['align-items--laptop']
|
|
23720
|
+
}], alignItemsDesktop: [{
|
|
23721
|
+
type: Input,
|
|
23722
|
+
args: ['align-items--desktop']
|
|
23723
|
+
}], wrap: [{
|
|
23751
23724
|
type: Input
|
|
23725
|
+
}], wrapMobile: [{
|
|
23726
|
+
type: Input,
|
|
23727
|
+
args: ['wrap--mobile']
|
|
23728
|
+
}], wrapTablet: [{
|
|
23729
|
+
type: Input,
|
|
23730
|
+
args: ['wrap--tablet']
|
|
23731
|
+
}], wrapLaptop: [{
|
|
23732
|
+
type: Input,
|
|
23733
|
+
args: ['wrap--laptop']
|
|
23734
|
+
}], wrapDesktop: [{
|
|
23735
|
+
type: Input,
|
|
23736
|
+
args: ['wrap--desktop']
|
|
23737
|
+
}], overflowX: [{
|
|
23738
|
+
type: Input,
|
|
23739
|
+
args: ['overflow-x']
|
|
23740
|
+
}], overflowXMobile: [{
|
|
23741
|
+
type: Input,
|
|
23742
|
+
args: ['overflow-x--mobile']
|
|
23743
|
+
}], overflowXTablet: [{
|
|
23744
|
+
type: Input,
|
|
23745
|
+
args: ['overflow-x--tablet']
|
|
23746
|
+
}], overflowXLaptop: [{
|
|
23747
|
+
type: Input,
|
|
23748
|
+
args: ['overflow-x--laptop']
|
|
23749
|
+
}], overflowXDesktop: [{
|
|
23750
|
+
type: Input,
|
|
23751
|
+
args: ['overflow-x--desktop']
|
|
23752
23752
|
}], grow: [{
|
|
23753
23753
|
type: Input
|
|
23754
23754
|
}], growMobile: [{
|
|
@@ -37356,11 +37356,17 @@ class PxThemeProvider {
|
|
|
37356
37356
|
get theme() {
|
|
37357
37357
|
return this.elementRef.nativeElement['theme'];
|
|
37358
37358
|
}
|
|
37359
|
+
set resetCss(value) {
|
|
37360
|
+
this.elementRef.nativeElement['resetCss'] = value;
|
|
37361
|
+
}
|
|
37362
|
+
get resetCss() {
|
|
37363
|
+
return this.elementRef.nativeElement['resetCss'];
|
|
37364
|
+
}
|
|
37359
37365
|
constructor(elementRef) {
|
|
37360
37366
|
this.elementRef = elementRef;
|
|
37361
37367
|
}
|
|
37362
37368
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxThemeProvider, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
37363
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxThemeProvider, selector: "px-theme-provider", inputs: { theme: "theme" }, ngImport: i0 });
|
|
37369
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxThemeProvider, selector: "px-theme-provider", inputs: { theme: "theme", resetCss: ["reset-css", "resetCss"] }, ngImport: i0 });
|
|
37364
37370
|
}
|
|
37365
37371
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxThemeProvider, decorators: [{
|
|
37366
37372
|
type: Directive,
|
|
@@ -37369,44 +37375,65 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37369
37375
|
}]
|
|
37370
37376
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { theme: [{
|
|
37371
37377
|
type: Input
|
|
37378
|
+
}], resetCss: [{
|
|
37379
|
+
type: Input,
|
|
37380
|
+
args: ['reset-css']
|
|
37372
37381
|
}] } });
|
|
37373
37382
|
/**
|
|
37374
37383
|
* @description Type-only wrapper for <px-proximus-theme-provider>
|
|
37375
37384
|
*/
|
|
37376
37385
|
class PxProximusThemeProvider {
|
|
37377
37386
|
elementRef;
|
|
37387
|
+
set resetCss(value) {
|
|
37388
|
+
this.elementRef.nativeElement['resetCss'] = value;
|
|
37389
|
+
}
|
|
37390
|
+
get resetCss() {
|
|
37391
|
+
return this.elementRef.nativeElement['resetCss'];
|
|
37392
|
+
}
|
|
37378
37393
|
constructor(elementRef) {
|
|
37379
37394
|
this.elementRef = elementRef;
|
|
37380
37395
|
}
|
|
37381
37396
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxProximusThemeProvider, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
37382
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxProximusThemeProvider, selector: "px-proximus-theme-provider", ngImport: i0 });
|
|
37397
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxProximusThemeProvider, selector: "px-proximus-theme-provider", inputs: { resetCss: ["reset-css", "resetCss"] }, ngImport: i0 });
|
|
37383
37398
|
}
|
|
37384
37399
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxProximusThemeProvider, decorators: [{
|
|
37385
37400
|
type: Directive,
|
|
37386
37401
|
args: [{
|
|
37387
37402
|
selector: 'px-proximus-theme-provider',
|
|
37388
37403
|
}]
|
|
37389
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }]
|
|
37404
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { resetCss: [{
|
|
37405
|
+
type: Input,
|
|
37406
|
+
args: ['reset-css']
|
|
37407
|
+
}] } });
|
|
37390
37408
|
/**
|
|
37391
37409
|
* @description Type-only wrapper for <px-scarlet-theme-provider>
|
|
37392
37410
|
*/
|
|
37393
37411
|
class PxScarletThemeProvider {
|
|
37394
37412
|
elementRef;
|
|
37413
|
+
set resetCss(value) {
|
|
37414
|
+
this.elementRef.nativeElement['resetCss'] = value;
|
|
37415
|
+
}
|
|
37416
|
+
get resetCss() {
|
|
37417
|
+
return this.elementRef.nativeElement['resetCss'];
|
|
37418
|
+
}
|
|
37395
37419
|
constructor(elementRef) {
|
|
37396
37420
|
this.elementRef = elementRef;
|
|
37397
37421
|
}
|
|
37398
37422
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxScarletThemeProvider, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
37399
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxScarletThemeProvider, selector: "px-scarlet-theme-provider", ngImport: i0 });
|
|
37423
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxScarletThemeProvider, selector: "px-scarlet-theme-provider", inputs: { resetCss: ["reset-css", "resetCss"] }, ngImport: i0 });
|
|
37400
37424
|
}
|
|
37401
37425
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxScarletThemeProvider, decorators: [{
|
|
37402
37426
|
type: Directive,
|
|
37403
37427
|
args: [{
|
|
37404
37428
|
selector: 'px-scarlet-theme-provider',
|
|
37405
37429
|
}]
|
|
37406
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }]
|
|
37430
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { resetCss: [{
|
|
37431
|
+
type: Input,
|
|
37432
|
+
args: ['reset-css']
|
|
37433
|
+
}] } });
|
|
37407
37434
|
class Lavender {
|
|
37408
37435
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
37409
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack,
|
|
37436
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxA, PxAWrapper, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxA, PxAWrapper, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
37410
37437
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
37411
37438
|
}
|
|
37412
37439
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -37455,13 +37482,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37455
37482
|
PxSelect,
|
|
37456
37483
|
PxTextarea,
|
|
37457
37484
|
PxFileupload,
|
|
37485
|
+
PxA,
|
|
37486
|
+
PxAWrapper,
|
|
37458
37487
|
PxPage,
|
|
37459
37488
|
PxSpacer,
|
|
37460
37489
|
PxStack,
|
|
37461
37490
|
PxVstack,
|
|
37462
37491
|
PxHstack,
|
|
37463
|
-
PxA,
|
|
37464
|
-
PxAWrapper,
|
|
37465
37492
|
PxList,
|
|
37466
37493
|
PxListItem,
|
|
37467
37494
|
PxModal,
|
|
@@ -37557,13 +37584,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37557
37584
|
PxSelect,
|
|
37558
37585
|
PxTextarea,
|
|
37559
37586
|
PxFileupload,
|
|
37587
|
+
PxA,
|
|
37588
|
+
PxAWrapper,
|
|
37560
37589
|
PxPage,
|
|
37561
37590
|
PxSpacer,
|
|
37562
37591
|
PxStack,
|
|
37563
37592
|
PxVstack,
|
|
37564
37593
|
PxHstack,
|
|
37565
|
-
PxA,
|
|
37566
|
-
PxAWrapper,
|
|
37567
37594
|
PxList,
|
|
37568
37595
|
PxListItem,
|
|
37569
37596
|
PxModal,
|