@proximus/lavender-angular 1.4.15-alpha.2 → 1.4.15-alpha.21
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 +72 -0
- package/fesm2022/proximus-lavender-angular.mjs +1540 -891
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +328 -177
- package/package.json +1 -1
|
@@ -18449,45 +18449,102 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
18449
18449
|
}]
|
|
18450
18450
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
18451
18451
|
/**
|
|
18452
|
-
* @description Type-only wrapper for <px-
|
|
18452
|
+
* @description Type-only wrapper for <px-img>
|
|
18453
18453
|
*/
|
|
18454
|
-
class
|
|
18454
|
+
class PxImg {
|
|
18455
18455
|
elementRef;
|
|
18456
|
-
|
|
18457
|
-
|
|
18456
|
+
/** The URL of the image. */
|
|
18457
|
+
set src(value) {
|
|
18458
|
+
this.elementRef.nativeElement['src'] = value;
|
|
18458
18459
|
}
|
|
18459
|
-
get
|
|
18460
|
-
return this.elementRef.nativeElement['
|
|
18460
|
+
get src() {
|
|
18461
|
+
return this.elementRef.nativeElement['src'];
|
|
18461
18462
|
}
|
|
18462
|
-
|
|
18463
|
-
|
|
18463
|
+
/** The alternative text for the image. */
|
|
18464
|
+
set alt(value) {
|
|
18465
|
+
this.elementRef.nativeElement['alt'] = value;
|
|
18464
18466
|
}
|
|
18465
|
-
get
|
|
18466
|
-
return this.elementRef.nativeElement['
|
|
18467
|
+
get alt() {
|
|
18468
|
+
return this.elementRef.nativeElement['alt'];
|
|
18467
18469
|
}
|
|
18468
|
-
|
|
18469
|
-
|
|
18470
|
+
/** The loading strategy for the image ('lazy' or 'eager'). */
|
|
18471
|
+
set loading(value) {
|
|
18472
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
18470
18473
|
}
|
|
18471
|
-
get
|
|
18472
|
-
return this.elementRef.nativeElement['
|
|
18474
|
+
get loading() {
|
|
18475
|
+
return this.elementRef.nativeElement['loading'];
|
|
18473
18476
|
}
|
|
18474
|
-
set
|
|
18475
|
-
this.elementRef.nativeElement['
|
|
18477
|
+
set borderRadius(value) {
|
|
18478
|
+
this.elementRef.nativeElement['borderRadius'] = value;
|
|
18476
18479
|
}
|
|
18477
|
-
get
|
|
18478
|
-
return this.elementRef.nativeElement['
|
|
18480
|
+
get borderRadius() {
|
|
18481
|
+
return this.elementRef.nativeElement['borderRadius'];
|
|
18479
18482
|
}
|
|
18480
|
-
set
|
|
18481
|
-
this.elementRef.nativeElement['
|
|
18483
|
+
set noBorderRadius(value) {
|
|
18484
|
+
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
18482
18485
|
}
|
|
18483
|
-
get
|
|
18484
|
-
return this.elementRef.nativeElement['
|
|
18486
|
+
get noBorderRadius() {
|
|
18487
|
+
return this.elementRef.nativeElement['noBorderRadius'];
|
|
18485
18488
|
}
|
|
18486
|
-
set
|
|
18487
|
-
this.elementRef.nativeElement['
|
|
18489
|
+
set noBorderRadiusMobile(value) {
|
|
18490
|
+
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
18488
18491
|
}
|
|
18489
|
-
get
|
|
18490
|
-
return this.elementRef.nativeElement['
|
|
18492
|
+
get noBorderRadiusMobile() {
|
|
18493
|
+
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
18494
|
+
}
|
|
18495
|
+
set noBorderRadiusTablet(value) {
|
|
18496
|
+
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
18497
|
+
}
|
|
18498
|
+
get noBorderRadiusTablet() {
|
|
18499
|
+
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
18500
|
+
}
|
|
18501
|
+
set noBorderRadiusLaptop(value) {
|
|
18502
|
+
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
18503
|
+
}
|
|
18504
|
+
get noBorderRadiusLaptop() {
|
|
18505
|
+
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
18506
|
+
}
|
|
18507
|
+
set width(value) {
|
|
18508
|
+
this.elementRef.nativeElement['width'] = value;
|
|
18509
|
+
}
|
|
18510
|
+
get width() {
|
|
18511
|
+
return this.elementRef.nativeElement['width'];
|
|
18512
|
+
}
|
|
18513
|
+
set widthMobile(value) {
|
|
18514
|
+
this.elementRef.nativeElement['widthMobile'] = value;
|
|
18515
|
+
}
|
|
18516
|
+
get widthMobile() {
|
|
18517
|
+
return this.elementRef.nativeElement['widthMobile'];
|
|
18518
|
+
}
|
|
18519
|
+
set widthTablet(value) {
|
|
18520
|
+
this.elementRef.nativeElement['widthTablet'] = value;
|
|
18521
|
+
}
|
|
18522
|
+
get widthTablet() {
|
|
18523
|
+
return this.elementRef.nativeElement['widthTablet'];
|
|
18524
|
+
}
|
|
18525
|
+
set widthLaptop(value) {
|
|
18526
|
+
this.elementRef.nativeElement['widthLaptop'] = value;
|
|
18527
|
+
}
|
|
18528
|
+
get widthLaptop() {
|
|
18529
|
+
return this.elementRef.nativeElement['widthLaptop'];
|
|
18530
|
+
}
|
|
18531
|
+
set widthDesktop(value) {
|
|
18532
|
+
this.elementRef.nativeElement['widthDesktop'] = value;
|
|
18533
|
+
}
|
|
18534
|
+
get widthDesktop() {
|
|
18535
|
+
return this.elementRef.nativeElement['widthDesktop'];
|
|
18536
|
+
}
|
|
18537
|
+
set cover(value) {
|
|
18538
|
+
this.elementRef.nativeElement['cover'] = value;
|
|
18539
|
+
}
|
|
18540
|
+
get cover() {
|
|
18541
|
+
return this.elementRef.nativeElement['cover'];
|
|
18542
|
+
}
|
|
18543
|
+
set disabled(value) {
|
|
18544
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
18545
|
+
}
|
|
18546
|
+
get disabled() {
|
|
18547
|
+
return this.elementRef.nativeElement['disabled'];
|
|
18491
18548
|
}
|
|
18492
18549
|
set grow(value) {
|
|
18493
18550
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -18801,38 +18858,57 @@ class PxInput {
|
|
|
18801
18858
|
get wordBreakAllDesktop() {
|
|
18802
18859
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
18803
18860
|
}
|
|
18804
|
-
event = new EventEmitter();
|
|
18805
18861
|
constructor(elementRef) {
|
|
18806
18862
|
this.elementRef = elementRef;
|
|
18807
|
-
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
18808
|
-
this.event.emit(e.detail);
|
|
18809
|
-
});
|
|
18810
18863
|
}
|
|
18811
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
18812
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
18864
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxImg, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18865
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxImg, isStandalone: true, selector: "px-img", inputs: { src: "src", alt: "alt", loading: "loading", borderRadius: ["border-radius", "borderRadius"], noBorderRadius: ["no-border-radius", "noBorderRadius"], noBorderRadiusMobile: ["no-border-radius--mobile", "noBorderRadiusMobile"], noBorderRadiusTablet: ["no-border-radius--tablet", "noBorderRadiusTablet"], noBorderRadiusLaptop: ["no-border-radius--laptop", "noBorderRadiusLaptop"], width: "width", widthMobile: ["width--mobile", "widthMobile"], widthTablet: ["width--tablet", "widthTablet"], widthLaptop: ["width--laptop", "widthLaptop"], widthDesktop: ["width--desktop", "widthDesktop"], cover: "cover", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
18813
18866
|
}
|
|
18814
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
18867
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxImg, decorators: [{
|
|
18815
18868
|
type: Directive,
|
|
18816
18869
|
args: [{
|
|
18817
|
-
selector: 'px-
|
|
18870
|
+
selector: 'px-img',
|
|
18818
18871
|
standalone: true,
|
|
18819
18872
|
}]
|
|
18820
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
18873
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { src: [{
|
|
18821
18874
|
type: Input
|
|
18822
|
-
}],
|
|
18875
|
+
}], alt: [{
|
|
18823
18876
|
type: Input
|
|
18824
|
-
}],
|
|
18877
|
+
}], loading: [{
|
|
18878
|
+
type: Input
|
|
18879
|
+
}], borderRadius: [{
|
|
18825
18880
|
type: Input,
|
|
18826
|
-
args: ['
|
|
18827
|
-
}],
|
|
18881
|
+
args: ['border-radius']
|
|
18882
|
+
}], noBorderRadius: [{
|
|
18828
18883
|
type: Input,
|
|
18829
|
-
args: ['
|
|
18830
|
-
}],
|
|
18884
|
+
args: ['no-border-radius']
|
|
18885
|
+
}], noBorderRadiusMobile: [{
|
|
18831
18886
|
type: Input,
|
|
18832
|
-
args: ['
|
|
18833
|
-
}],
|
|
18887
|
+
args: ['no-border-radius--mobile']
|
|
18888
|
+
}], noBorderRadiusTablet: [{
|
|
18834
18889
|
type: Input,
|
|
18835
|
-
args: ['
|
|
18890
|
+
args: ['no-border-radius--tablet']
|
|
18891
|
+
}], noBorderRadiusLaptop: [{
|
|
18892
|
+
type: Input,
|
|
18893
|
+
args: ['no-border-radius--laptop']
|
|
18894
|
+
}], width: [{
|
|
18895
|
+
type: Input
|
|
18896
|
+
}], widthMobile: [{
|
|
18897
|
+
type: Input,
|
|
18898
|
+
args: ['width--mobile']
|
|
18899
|
+
}], widthTablet: [{
|
|
18900
|
+
type: Input,
|
|
18901
|
+
args: ['width--tablet']
|
|
18902
|
+
}], widthLaptop: [{
|
|
18903
|
+
type: Input,
|
|
18904
|
+
args: ['width--laptop']
|
|
18905
|
+
}], widthDesktop: [{
|
|
18906
|
+
type: Input,
|
|
18907
|
+
args: ['width--desktop']
|
|
18908
|
+
}], cover: [{
|
|
18909
|
+
type: Input
|
|
18910
|
+
}], disabled: [{
|
|
18911
|
+
type: Input
|
|
18836
18912
|
}], grow: [{
|
|
18837
18913
|
type: Input
|
|
18838
18914
|
}], growMobile: [{
|
|
@@ -18984,79 +19060,131 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
18984
19060
|
}], wordBreakAllDesktop: [{
|
|
18985
19061
|
type: Input,
|
|
18986
19062
|
args: ['word-break-all--desktop']
|
|
18987
|
-
}], event: [{
|
|
18988
|
-
type: Output
|
|
18989
19063
|
}] } });
|
|
18990
19064
|
/**
|
|
18991
|
-
* @description Type-only wrapper for <px-
|
|
19065
|
+
* @description Type-only wrapper for <px-picture>
|
|
18992
19066
|
*/
|
|
18993
|
-
class
|
|
19067
|
+
class PxPicture {
|
|
18994
19068
|
elementRef;
|
|
18995
|
-
set
|
|
18996
|
-
this.elementRef.nativeElement['
|
|
18997
|
-
}
|
|
18998
|
-
get state() {
|
|
18999
|
-
return this.elementRef.nativeElement['state'];
|
|
19069
|
+
set loading(value) {
|
|
19070
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
19000
19071
|
}
|
|
19001
|
-
|
|
19002
|
-
this.elementRef.nativeElement['
|
|
19072
|
+
get loading() {
|
|
19073
|
+
return this.elementRef.nativeElement['loading'];
|
|
19003
19074
|
}
|
|
19004
|
-
|
|
19005
|
-
|
|
19075
|
+
set alt(value) {
|
|
19076
|
+
this.elementRef.nativeElement['alt'] = value;
|
|
19006
19077
|
}
|
|
19007
|
-
|
|
19008
|
-
this.elementRef.nativeElement['
|
|
19078
|
+
get alt() {
|
|
19079
|
+
return this.elementRef.nativeElement['alt'];
|
|
19009
19080
|
}
|
|
19010
|
-
|
|
19011
|
-
|
|
19081
|
+
set src(value) {
|
|
19082
|
+
this.elementRef.nativeElement['src'] = value;
|
|
19012
19083
|
}
|
|
19013
|
-
|
|
19014
|
-
this.elementRef.nativeElement['
|
|
19084
|
+
get src() {
|
|
19085
|
+
return this.elementRef.nativeElement['src'];
|
|
19015
19086
|
}
|
|
19016
|
-
|
|
19017
|
-
|
|
19087
|
+
set borderRadius(value) {
|
|
19088
|
+
this.elementRef.nativeElement['borderRadius'] = value;
|
|
19018
19089
|
}
|
|
19019
|
-
|
|
19020
|
-
this.elementRef.nativeElement['
|
|
19090
|
+
get borderRadius() {
|
|
19091
|
+
return this.elementRef.nativeElement['borderRadius'];
|
|
19021
19092
|
}
|
|
19022
|
-
|
|
19023
|
-
|
|
19093
|
+
set noBorderRadius(value) {
|
|
19094
|
+
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
19024
19095
|
}
|
|
19025
|
-
|
|
19026
|
-
this.elementRef.nativeElement['
|
|
19096
|
+
get noBorderRadius() {
|
|
19097
|
+
return this.elementRef.nativeElement['noBorderRadius'];
|
|
19027
19098
|
}
|
|
19028
|
-
|
|
19029
|
-
|
|
19099
|
+
set noBorderRadiusMobile(value) {
|
|
19100
|
+
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
19030
19101
|
}
|
|
19031
|
-
|
|
19032
|
-
this.elementRef.nativeElement['
|
|
19102
|
+
get noBorderRadiusMobile() {
|
|
19103
|
+
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
19033
19104
|
}
|
|
19034
|
-
|
|
19035
|
-
|
|
19105
|
+
set noBorderRadiusTablet(value) {
|
|
19106
|
+
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
19036
19107
|
}
|
|
19037
|
-
|
|
19038
|
-
this.elementRef.nativeElement['
|
|
19108
|
+
get noBorderRadiusTablet() {
|
|
19109
|
+
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
19039
19110
|
}
|
|
19040
|
-
|
|
19041
|
-
|
|
19111
|
+
set noBorderRadiusLaptop(value) {
|
|
19112
|
+
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
19042
19113
|
}
|
|
19043
|
-
|
|
19044
|
-
this.elementRef.nativeElement['
|
|
19114
|
+
get noBorderRadiusLaptop() {
|
|
19115
|
+
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
19045
19116
|
}
|
|
19046
|
-
|
|
19047
|
-
|
|
19117
|
+
set width(value) {
|
|
19118
|
+
this.elementRef.nativeElement['width'] = value;
|
|
19048
19119
|
}
|
|
19049
|
-
|
|
19050
|
-
this.elementRef.nativeElement['
|
|
19120
|
+
get width() {
|
|
19121
|
+
return this.elementRef.nativeElement['width'];
|
|
19051
19122
|
}
|
|
19052
|
-
|
|
19053
|
-
|
|
19123
|
+
set widthMobile(value) {
|
|
19124
|
+
this.elementRef.nativeElement['widthMobile'] = value;
|
|
19054
19125
|
}
|
|
19055
|
-
|
|
19056
|
-
this.elementRef.nativeElement['
|
|
19126
|
+
get widthMobile() {
|
|
19127
|
+
return this.elementRef.nativeElement['widthMobile'];
|
|
19057
19128
|
}
|
|
19058
|
-
|
|
19059
|
-
|
|
19129
|
+
set widthTablet(value) {
|
|
19130
|
+
this.elementRef.nativeElement['widthTablet'] = value;
|
|
19131
|
+
}
|
|
19132
|
+
get widthTablet() {
|
|
19133
|
+
return this.elementRef.nativeElement['widthTablet'];
|
|
19134
|
+
}
|
|
19135
|
+
set widthLaptop(value) {
|
|
19136
|
+
this.elementRef.nativeElement['widthLaptop'] = value;
|
|
19137
|
+
}
|
|
19138
|
+
get widthLaptop() {
|
|
19139
|
+
return this.elementRef.nativeElement['widthLaptop'];
|
|
19140
|
+
}
|
|
19141
|
+
set widthDesktop(value) {
|
|
19142
|
+
this.elementRef.nativeElement['widthDesktop'] = value;
|
|
19143
|
+
}
|
|
19144
|
+
get widthDesktop() {
|
|
19145
|
+
return this.elementRef.nativeElement['widthDesktop'];
|
|
19146
|
+
}
|
|
19147
|
+
set cover(value) {
|
|
19148
|
+
this.elementRef.nativeElement['cover'] = value;
|
|
19149
|
+
}
|
|
19150
|
+
get cover() {
|
|
19151
|
+
return this.elementRef.nativeElement['cover'];
|
|
19152
|
+
}
|
|
19153
|
+
set disabled(value) {
|
|
19154
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
19155
|
+
}
|
|
19156
|
+
get disabled() {
|
|
19157
|
+
return this.elementRef.nativeElement['disabled'];
|
|
19158
|
+
}
|
|
19159
|
+
set grow(value) {
|
|
19160
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
19161
|
+
}
|
|
19162
|
+
get grow() {
|
|
19163
|
+
return this.elementRef.nativeElement['grow'];
|
|
19164
|
+
}
|
|
19165
|
+
set growMobile(value) {
|
|
19166
|
+
this.elementRef.nativeElement['growMobile'] = value;
|
|
19167
|
+
}
|
|
19168
|
+
get growMobile() {
|
|
19169
|
+
return this.elementRef.nativeElement['growMobile'];
|
|
19170
|
+
}
|
|
19171
|
+
set growTablet(value) {
|
|
19172
|
+
this.elementRef.nativeElement['growTablet'] = value;
|
|
19173
|
+
}
|
|
19174
|
+
get growTablet() {
|
|
19175
|
+
return this.elementRef.nativeElement['growTablet'];
|
|
19176
|
+
}
|
|
19177
|
+
set growLaptop(value) {
|
|
19178
|
+
this.elementRef.nativeElement['growLaptop'] = value;
|
|
19179
|
+
}
|
|
19180
|
+
get growLaptop() {
|
|
19181
|
+
return this.elementRef.nativeElement['growLaptop'];
|
|
19182
|
+
}
|
|
19183
|
+
set growDesktop(value) {
|
|
19184
|
+
this.elementRef.nativeElement['growDesktop'] = value;
|
|
19185
|
+
}
|
|
19186
|
+
get growDesktop() {
|
|
19187
|
+
return this.elementRef.nativeElement['growDesktop'];
|
|
19060
19188
|
}
|
|
19061
19189
|
set shrink(value) {
|
|
19062
19190
|
this.elementRef.nativeElement['shrink'] = value;
|
|
@@ -19340,38 +19468,57 @@ class PxSelect {
|
|
|
19340
19468
|
get wordBreakAllDesktop() {
|
|
19341
19469
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
19342
19470
|
}
|
|
19343
|
-
event = new EventEmitter();
|
|
19344
19471
|
constructor(elementRef) {
|
|
19345
19472
|
this.elementRef = elementRef;
|
|
19346
|
-
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
19347
|
-
this.event.emit(e.detail);
|
|
19348
|
-
});
|
|
19349
19473
|
}
|
|
19350
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
19351
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
19474
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxPicture, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
19475
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxPicture, isStandalone: true, selector: "px-picture", inputs: { loading: "loading", alt: "alt", src: "src", borderRadius: ["border-radius", "borderRadius"], noBorderRadius: ["no-border-radius", "noBorderRadius"], noBorderRadiusMobile: ["no-border-radius--mobile", "noBorderRadiusMobile"], noBorderRadiusTablet: ["no-border-radius--tablet", "noBorderRadiusTablet"], noBorderRadiusLaptop: ["no-border-radius--laptop", "noBorderRadiusLaptop"], width: "width", widthMobile: ["width--mobile", "widthMobile"], widthTablet: ["width--tablet", "widthTablet"], widthLaptop: ["width--laptop", "widthLaptop"], widthDesktop: ["width--desktop", "widthDesktop"], cover: "cover", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
19352
19476
|
}
|
|
19353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
19477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxPicture, decorators: [{
|
|
19354
19478
|
type: Directive,
|
|
19355
19479
|
args: [{
|
|
19356
|
-
selector: 'px-
|
|
19480
|
+
selector: 'px-picture',
|
|
19357
19481
|
standalone: true,
|
|
19358
19482
|
}]
|
|
19359
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
19483
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { loading: [{
|
|
19360
19484
|
type: Input
|
|
19361
|
-
}],
|
|
19485
|
+
}], alt: [{
|
|
19362
19486
|
type: Input
|
|
19363
|
-
}],
|
|
19487
|
+
}], src: [{
|
|
19488
|
+
type: Input
|
|
19489
|
+
}], borderRadius: [{
|
|
19364
19490
|
type: Input,
|
|
19365
|
-
args: ['
|
|
19366
|
-
}],
|
|
19491
|
+
args: ['border-radius']
|
|
19492
|
+
}], noBorderRadius: [{
|
|
19367
19493
|
type: Input,
|
|
19368
|
-
args: ['
|
|
19369
|
-
}],
|
|
19494
|
+
args: ['no-border-radius']
|
|
19495
|
+
}], noBorderRadiusMobile: [{
|
|
19370
19496
|
type: Input,
|
|
19371
|
-
args: ['
|
|
19372
|
-
}],
|
|
19497
|
+
args: ['no-border-radius--mobile']
|
|
19498
|
+
}], noBorderRadiusTablet: [{
|
|
19373
19499
|
type: Input,
|
|
19374
|
-
args: ['
|
|
19500
|
+
args: ['no-border-radius--tablet']
|
|
19501
|
+
}], noBorderRadiusLaptop: [{
|
|
19502
|
+
type: Input,
|
|
19503
|
+
args: ['no-border-radius--laptop']
|
|
19504
|
+
}], width: [{
|
|
19505
|
+
type: Input
|
|
19506
|
+
}], widthMobile: [{
|
|
19507
|
+
type: Input,
|
|
19508
|
+
args: ['width--mobile']
|
|
19509
|
+
}], widthTablet: [{
|
|
19510
|
+
type: Input,
|
|
19511
|
+
args: ['width--tablet']
|
|
19512
|
+
}], widthLaptop: [{
|
|
19513
|
+
type: Input,
|
|
19514
|
+
args: ['width--laptop']
|
|
19515
|
+
}], widthDesktop: [{
|
|
19516
|
+
type: Input,
|
|
19517
|
+
args: ['width--desktop']
|
|
19518
|
+
}], cover: [{
|
|
19519
|
+
type: Input
|
|
19520
|
+
}], disabled: [{
|
|
19521
|
+
type: Input
|
|
19375
19522
|
}], grow: [{
|
|
19376
19523
|
type: Input
|
|
19377
19524
|
}], growMobile: [{
|
|
@@ -19523,13 +19670,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
19523
19670
|
}], wordBreakAllDesktop: [{
|
|
19524
19671
|
type: Input,
|
|
19525
19672
|
args: ['word-break-all--desktop']
|
|
19526
|
-
}], event: [{
|
|
19527
|
-
type: Output
|
|
19528
19673
|
}] } });
|
|
19529
19674
|
/**
|
|
19530
|
-
* @description Type-only wrapper for <px-
|
|
19675
|
+
* @description Type-only wrapper for <px-input>
|
|
19531
19676
|
*/
|
|
19532
|
-
class
|
|
19677
|
+
class PxInput {
|
|
19533
19678
|
elementRef;
|
|
19534
19679
|
set state(value) {
|
|
19535
19680
|
this.elementRef.nativeElement['state'] = value;
|
|
@@ -19567,6 +19712,12 @@ class PxTextarea {
|
|
|
19567
19712
|
get extendedDesktop() {
|
|
19568
19713
|
return this.elementRef.nativeElement['extendedDesktop'];
|
|
19569
19714
|
}
|
|
19715
|
+
set ariaDescribedby(value) {
|
|
19716
|
+
this.elementRef.nativeElement['ariaDescribedby'] = value;
|
|
19717
|
+
}
|
|
19718
|
+
get ariaDescribedby() {
|
|
19719
|
+
return this.elementRef.nativeElement['ariaDescribedby'];
|
|
19720
|
+
}
|
|
19570
19721
|
set grow(value) {
|
|
19571
19722
|
this.elementRef.nativeElement['grow'] = value;
|
|
19572
19723
|
}
|
|
@@ -19886,13 +20037,13 @@ class PxTextarea {
|
|
|
19886
20037
|
this.event.emit(e.detail);
|
|
19887
20038
|
});
|
|
19888
20039
|
}
|
|
19889
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
19890
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
20040
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxInput, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
20041
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxInput, isStandalone: true, selector: "px-input", inputs: { state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], ariaDescribedby: ["aria-describedby", "ariaDescribedby"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
19891
20042
|
}
|
|
19892
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
20043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxInput, decorators: [{
|
|
19893
20044
|
type: Directive,
|
|
19894
20045
|
args: [{
|
|
19895
|
-
selector: 'px-
|
|
20046
|
+
selector: 'px-input',
|
|
19896
20047
|
standalone: true,
|
|
19897
20048
|
}]
|
|
19898
20049
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
@@ -19911,6 +20062,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
19911
20062
|
}], extendedDesktop: [{
|
|
19912
20063
|
type: Input,
|
|
19913
20064
|
args: ['extended--desktop']
|
|
20065
|
+
}], ariaDescribedby: [{
|
|
20066
|
+
type: Input,
|
|
20067
|
+
args: ['aria-describedby']
|
|
19914
20068
|
}], grow: [{
|
|
19915
20069
|
type: Input
|
|
19916
20070
|
}], growMobile: [{
|
|
@@ -20066,9 +20220,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
20066
20220
|
type: Output
|
|
20067
20221
|
}] } });
|
|
20068
20222
|
/**
|
|
20069
|
-
* @description Type-only wrapper for <px-
|
|
20223
|
+
* @description Type-only wrapper for <px-select>
|
|
20070
20224
|
*/
|
|
20071
|
-
class
|
|
20225
|
+
class PxSelect {
|
|
20072
20226
|
elementRef;
|
|
20073
20227
|
set state(value) {
|
|
20074
20228
|
this.elementRef.nativeElement['state'] = value;
|
|
@@ -20106,6 +20260,12 @@ class PxFileupload {
|
|
|
20106
20260
|
get extendedDesktop() {
|
|
20107
20261
|
return this.elementRef.nativeElement['extendedDesktop'];
|
|
20108
20262
|
}
|
|
20263
|
+
set ariaDescribedby(value) {
|
|
20264
|
+
this.elementRef.nativeElement['ariaDescribedby'] = value;
|
|
20265
|
+
}
|
|
20266
|
+
get ariaDescribedby() {
|
|
20267
|
+
return this.elementRef.nativeElement['ariaDescribedby'];
|
|
20268
|
+
}
|
|
20109
20269
|
set grow(value) {
|
|
20110
20270
|
this.elementRef.nativeElement['grow'] = value;
|
|
20111
20271
|
}
|
|
@@ -20425,13 +20585,13 @@ class PxFileupload {
|
|
|
20425
20585
|
this.event.emit(e.detail);
|
|
20426
20586
|
});
|
|
20427
20587
|
}
|
|
20428
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
20429
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
20588
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelect, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
20589
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelect, isStandalone: true, selector: "px-select", inputs: { state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], ariaDescribedby: ["aria-describedby", "ariaDescribedby"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
20430
20590
|
}
|
|
20431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
20591
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelect, decorators: [{
|
|
20432
20592
|
type: Directive,
|
|
20433
20593
|
args: [{
|
|
20434
|
-
selector: 'px-
|
|
20594
|
+
selector: 'px-select',
|
|
20435
20595
|
standalone: true,
|
|
20436
20596
|
}]
|
|
20437
20597
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
@@ -20450,6 +20610,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
20450
20610
|
}], extendedDesktop: [{
|
|
20451
20611
|
type: Input,
|
|
20452
20612
|
args: ['extended--desktop']
|
|
20613
|
+
}], ariaDescribedby: [{
|
|
20614
|
+
type: Input,
|
|
20615
|
+
args: ['aria-describedby']
|
|
20453
20616
|
}], grow: [{
|
|
20454
20617
|
type: Input
|
|
20455
20618
|
}], growMobile: [{
|
|
@@ -20605,102 +20768,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
20605
20768
|
type: Output
|
|
20606
20769
|
}] } });
|
|
20607
20770
|
/**
|
|
20608
|
-
* @description Type-only wrapper for <px-
|
|
20771
|
+
* @description Type-only wrapper for <px-textarea>
|
|
20609
20772
|
*/
|
|
20610
|
-
class
|
|
20773
|
+
class PxTextarea {
|
|
20611
20774
|
elementRef;
|
|
20612
|
-
|
|
20613
|
-
|
|
20614
|
-
this.elementRef.nativeElement['src'] = value;
|
|
20615
|
-
}
|
|
20616
|
-
get src() {
|
|
20617
|
-
return this.elementRef.nativeElement['src'];
|
|
20618
|
-
}
|
|
20619
|
-
/** The alternative text for the image. */
|
|
20620
|
-
set alt(value) {
|
|
20621
|
-
this.elementRef.nativeElement['alt'] = value;
|
|
20622
|
-
}
|
|
20623
|
-
get alt() {
|
|
20624
|
-
return this.elementRef.nativeElement['alt'];
|
|
20625
|
-
}
|
|
20626
|
-
/** The loading strategy for the image ('lazy' or 'eager'). */
|
|
20627
|
-
set loading(value) {
|
|
20628
|
-
this.elementRef.nativeElement['loading'] = value;
|
|
20629
|
-
}
|
|
20630
|
-
get loading() {
|
|
20631
|
-
return this.elementRef.nativeElement['loading'];
|
|
20632
|
-
}
|
|
20633
|
-
set borderRadius(value) {
|
|
20634
|
-
this.elementRef.nativeElement['borderRadius'] = value;
|
|
20635
|
-
}
|
|
20636
|
-
get borderRadius() {
|
|
20637
|
-
return this.elementRef.nativeElement['borderRadius'];
|
|
20638
|
-
}
|
|
20639
|
-
set noBorderRadius(value) {
|
|
20640
|
-
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
20641
|
-
}
|
|
20642
|
-
get noBorderRadius() {
|
|
20643
|
-
return this.elementRef.nativeElement['noBorderRadius'];
|
|
20644
|
-
}
|
|
20645
|
-
set noBorderRadiusMobile(value) {
|
|
20646
|
-
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
20647
|
-
}
|
|
20648
|
-
get noBorderRadiusMobile() {
|
|
20649
|
-
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
20650
|
-
}
|
|
20651
|
-
set noBorderRadiusTablet(value) {
|
|
20652
|
-
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
20653
|
-
}
|
|
20654
|
-
get noBorderRadiusTablet() {
|
|
20655
|
-
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
20656
|
-
}
|
|
20657
|
-
set noBorderRadiusLaptop(value) {
|
|
20658
|
-
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
20659
|
-
}
|
|
20660
|
-
get noBorderRadiusLaptop() {
|
|
20661
|
-
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
20662
|
-
}
|
|
20663
|
-
set width(value) {
|
|
20664
|
-
this.elementRef.nativeElement['width'] = value;
|
|
20775
|
+
set state(value) {
|
|
20776
|
+
this.elementRef.nativeElement['state'] = value;
|
|
20665
20777
|
}
|
|
20666
|
-
get
|
|
20667
|
-
return this.elementRef.nativeElement['
|
|
20778
|
+
get state() {
|
|
20779
|
+
return this.elementRef.nativeElement['state'];
|
|
20668
20780
|
}
|
|
20669
|
-
set
|
|
20670
|
-
this.elementRef.nativeElement['
|
|
20781
|
+
set extended(value) {
|
|
20782
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
20671
20783
|
}
|
|
20672
|
-
get
|
|
20673
|
-
return this.elementRef.nativeElement['
|
|
20784
|
+
get extended() {
|
|
20785
|
+
return this.elementRef.nativeElement['extended'];
|
|
20674
20786
|
}
|
|
20675
|
-
set
|
|
20676
|
-
this.elementRef.nativeElement['
|
|
20787
|
+
set extendedMobile(value) {
|
|
20788
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
20677
20789
|
}
|
|
20678
|
-
get
|
|
20679
|
-
return this.elementRef.nativeElement['
|
|
20790
|
+
get extendedMobile() {
|
|
20791
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
20680
20792
|
}
|
|
20681
|
-
set
|
|
20682
|
-
this.elementRef.nativeElement['
|
|
20793
|
+
set extendedTablet(value) {
|
|
20794
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
20683
20795
|
}
|
|
20684
|
-
get
|
|
20685
|
-
return this.elementRef.nativeElement['
|
|
20796
|
+
get extendedTablet() {
|
|
20797
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
20686
20798
|
}
|
|
20687
|
-
set
|
|
20688
|
-
this.elementRef.nativeElement['
|
|
20799
|
+
set extendedLaptop(value) {
|
|
20800
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
20689
20801
|
}
|
|
20690
|
-
get
|
|
20691
|
-
return this.elementRef.nativeElement['
|
|
20802
|
+
get extendedLaptop() {
|
|
20803
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
20692
20804
|
}
|
|
20693
|
-
set
|
|
20694
|
-
this.elementRef.nativeElement['
|
|
20805
|
+
set extendedDesktop(value) {
|
|
20806
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
20695
20807
|
}
|
|
20696
|
-
get
|
|
20697
|
-
return this.elementRef.nativeElement['
|
|
20808
|
+
get extendedDesktop() {
|
|
20809
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
20698
20810
|
}
|
|
20699
|
-
set
|
|
20700
|
-
this.elementRef.nativeElement['
|
|
20811
|
+
set ariaDescribedby(value) {
|
|
20812
|
+
this.elementRef.nativeElement['ariaDescribedby'] = value;
|
|
20701
20813
|
}
|
|
20702
|
-
get
|
|
20703
|
-
return this.elementRef.nativeElement['
|
|
20814
|
+
get ariaDescribedby() {
|
|
20815
|
+
return this.elementRef.nativeElement['ariaDescribedby'];
|
|
20704
20816
|
}
|
|
20705
20817
|
set grow(value) {
|
|
20706
20818
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -21014,57 +21126,41 @@ class PxImg {
|
|
|
21014
21126
|
get wordBreakAllDesktop() {
|
|
21015
21127
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
21016
21128
|
}
|
|
21129
|
+
event = new EventEmitter();
|
|
21017
21130
|
constructor(elementRef) {
|
|
21018
21131
|
this.elementRef = elementRef;
|
|
21132
|
+
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
21133
|
+
this.event.emit(e.detail);
|
|
21134
|
+
});
|
|
21019
21135
|
}
|
|
21020
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
21021
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
21136
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTextarea, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21137
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTextarea, isStandalone: true, selector: "px-textarea", inputs: { state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], ariaDescribedby: ["aria-describedby", "ariaDescribedby"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
21022
21138
|
}
|
|
21023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
21139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTextarea, decorators: [{
|
|
21024
21140
|
type: Directive,
|
|
21025
21141
|
args: [{
|
|
21026
|
-
selector: 'px-
|
|
21142
|
+
selector: 'px-textarea',
|
|
21027
21143
|
standalone: true,
|
|
21028
21144
|
}]
|
|
21029
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
21030
|
-
type: Input
|
|
21031
|
-
}], alt: [{
|
|
21145
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
21032
21146
|
type: Input
|
|
21033
|
-
}],
|
|
21147
|
+
}], extended: [{
|
|
21034
21148
|
type: Input
|
|
21035
|
-
}],
|
|
21036
|
-
type: Input,
|
|
21037
|
-
args: ['border-radius']
|
|
21038
|
-
}], noBorderRadius: [{
|
|
21039
|
-
type: Input,
|
|
21040
|
-
args: ['no-border-radius']
|
|
21041
|
-
}], noBorderRadiusMobile: [{
|
|
21042
|
-
type: Input,
|
|
21043
|
-
args: ['no-border-radius--mobile']
|
|
21044
|
-
}], noBorderRadiusTablet: [{
|
|
21045
|
-
type: Input,
|
|
21046
|
-
args: ['no-border-radius--tablet']
|
|
21047
|
-
}], noBorderRadiusLaptop: [{
|
|
21149
|
+
}], extendedMobile: [{
|
|
21048
21150
|
type: Input,
|
|
21049
|
-
args: ['
|
|
21050
|
-
}],
|
|
21051
|
-
type: Input
|
|
21052
|
-
}], widthMobile: [{
|
|
21151
|
+
args: ['extended--mobile']
|
|
21152
|
+
}], extendedTablet: [{
|
|
21053
21153
|
type: Input,
|
|
21054
|
-
args: ['
|
|
21055
|
-
}],
|
|
21154
|
+
args: ['extended--tablet']
|
|
21155
|
+
}], extendedLaptop: [{
|
|
21056
21156
|
type: Input,
|
|
21057
|
-
args: ['
|
|
21058
|
-
}],
|
|
21157
|
+
args: ['extended--laptop']
|
|
21158
|
+
}], extendedDesktop: [{
|
|
21059
21159
|
type: Input,
|
|
21060
|
-
args: ['
|
|
21061
|
-
}],
|
|
21160
|
+
args: ['extended--desktop']
|
|
21161
|
+
}], ariaDescribedby: [{
|
|
21062
21162
|
type: Input,
|
|
21063
|
-
args: ['
|
|
21064
|
-
}], cover: [{
|
|
21065
|
-
type: Input
|
|
21066
|
-
}], disabled: [{
|
|
21067
|
-
type: Input
|
|
21163
|
+
args: ['aria-describedby']
|
|
21068
21164
|
}], grow: [{
|
|
21069
21165
|
type: Input
|
|
21070
21166
|
}], growMobile: [{
|
|
@@ -21216,101 +21312,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
21216
21312
|
}], wordBreakAllDesktop: [{
|
|
21217
21313
|
type: Input,
|
|
21218
21314
|
args: ['word-break-all--desktop']
|
|
21315
|
+
}], event: [{
|
|
21316
|
+
type: Output
|
|
21219
21317
|
}] } });
|
|
21220
21318
|
/**
|
|
21221
|
-
* @description Type-only wrapper for <px-
|
|
21319
|
+
* @description Type-only wrapper for <px-fileupload>
|
|
21222
21320
|
*/
|
|
21223
|
-
class
|
|
21321
|
+
class PxFileupload {
|
|
21224
21322
|
elementRef;
|
|
21225
|
-
set
|
|
21226
|
-
this.elementRef.nativeElement['
|
|
21227
|
-
}
|
|
21228
|
-
get loading() {
|
|
21229
|
-
return this.elementRef.nativeElement['loading'];
|
|
21230
|
-
}
|
|
21231
|
-
set alt(value) {
|
|
21232
|
-
this.elementRef.nativeElement['alt'] = value;
|
|
21233
|
-
}
|
|
21234
|
-
get alt() {
|
|
21235
|
-
return this.elementRef.nativeElement['alt'];
|
|
21236
|
-
}
|
|
21237
|
-
set src(value) {
|
|
21238
|
-
this.elementRef.nativeElement['src'] = value;
|
|
21239
|
-
}
|
|
21240
|
-
get src() {
|
|
21241
|
-
return this.elementRef.nativeElement['src'];
|
|
21242
|
-
}
|
|
21243
|
-
set borderRadius(value) {
|
|
21244
|
-
this.elementRef.nativeElement['borderRadius'] = value;
|
|
21245
|
-
}
|
|
21246
|
-
get borderRadius() {
|
|
21247
|
-
return this.elementRef.nativeElement['borderRadius'];
|
|
21248
|
-
}
|
|
21249
|
-
set noBorderRadius(value) {
|
|
21250
|
-
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
21251
|
-
}
|
|
21252
|
-
get noBorderRadius() {
|
|
21253
|
-
return this.elementRef.nativeElement['noBorderRadius'];
|
|
21254
|
-
}
|
|
21255
|
-
set noBorderRadiusMobile(value) {
|
|
21256
|
-
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
21257
|
-
}
|
|
21258
|
-
get noBorderRadiusMobile() {
|
|
21259
|
-
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
21260
|
-
}
|
|
21261
|
-
set noBorderRadiusTablet(value) {
|
|
21262
|
-
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
21263
|
-
}
|
|
21264
|
-
get noBorderRadiusTablet() {
|
|
21265
|
-
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
21266
|
-
}
|
|
21267
|
-
set noBorderRadiusLaptop(value) {
|
|
21268
|
-
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
21269
|
-
}
|
|
21270
|
-
get noBorderRadiusLaptop() {
|
|
21271
|
-
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
21272
|
-
}
|
|
21273
|
-
set width(value) {
|
|
21274
|
-
this.elementRef.nativeElement['width'] = value;
|
|
21323
|
+
set state(value) {
|
|
21324
|
+
this.elementRef.nativeElement['state'] = value;
|
|
21275
21325
|
}
|
|
21276
|
-
get
|
|
21277
|
-
return this.elementRef.nativeElement['
|
|
21326
|
+
get state() {
|
|
21327
|
+
return this.elementRef.nativeElement['state'];
|
|
21278
21328
|
}
|
|
21279
|
-
set
|
|
21280
|
-
this.elementRef.nativeElement['
|
|
21329
|
+
set extended(value) {
|
|
21330
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
21281
21331
|
}
|
|
21282
|
-
get
|
|
21283
|
-
return this.elementRef.nativeElement['
|
|
21332
|
+
get extended() {
|
|
21333
|
+
return this.elementRef.nativeElement['extended'];
|
|
21284
21334
|
}
|
|
21285
|
-
set
|
|
21286
|
-
this.elementRef.nativeElement['
|
|
21335
|
+
set extendedMobile(value) {
|
|
21336
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
21287
21337
|
}
|
|
21288
|
-
get
|
|
21289
|
-
return this.elementRef.nativeElement['
|
|
21338
|
+
get extendedMobile() {
|
|
21339
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
21290
21340
|
}
|
|
21291
|
-
set
|
|
21292
|
-
this.elementRef.nativeElement['
|
|
21341
|
+
set extendedTablet(value) {
|
|
21342
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
21293
21343
|
}
|
|
21294
|
-
get
|
|
21295
|
-
return this.elementRef.nativeElement['
|
|
21344
|
+
get extendedTablet() {
|
|
21345
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
21296
21346
|
}
|
|
21297
|
-
set
|
|
21298
|
-
this.elementRef.nativeElement['
|
|
21347
|
+
set extendedLaptop(value) {
|
|
21348
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
21299
21349
|
}
|
|
21300
|
-
get
|
|
21301
|
-
return this.elementRef.nativeElement['
|
|
21350
|
+
get extendedLaptop() {
|
|
21351
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
21302
21352
|
}
|
|
21303
|
-
set
|
|
21304
|
-
this.elementRef.nativeElement['
|
|
21353
|
+
set extendedDesktop(value) {
|
|
21354
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
21305
21355
|
}
|
|
21306
|
-
get
|
|
21307
|
-
return this.elementRef.nativeElement['
|
|
21356
|
+
get extendedDesktop() {
|
|
21357
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
21308
21358
|
}
|
|
21309
|
-
set
|
|
21310
|
-
this.elementRef.nativeElement['
|
|
21359
|
+
set ariaDescribedby(value) {
|
|
21360
|
+
this.elementRef.nativeElement['ariaDescribedby'] = value;
|
|
21311
21361
|
}
|
|
21312
|
-
get
|
|
21313
|
-
return this.elementRef.nativeElement['
|
|
21362
|
+
get ariaDescribedby() {
|
|
21363
|
+
return this.elementRef.nativeElement['ariaDescribedby'];
|
|
21314
21364
|
}
|
|
21315
21365
|
set grow(value) {
|
|
21316
21366
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -21624,57 +21674,41 @@ class PxPicture {
|
|
|
21624
21674
|
get wordBreakAllDesktop() {
|
|
21625
21675
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
21626
21676
|
}
|
|
21677
|
+
event = new EventEmitter();
|
|
21627
21678
|
constructor(elementRef) {
|
|
21628
21679
|
this.elementRef = elementRef;
|
|
21680
|
+
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
21681
|
+
this.event.emit(e.detail);
|
|
21682
|
+
});
|
|
21629
21683
|
}
|
|
21630
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
21631
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
21684
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxFileupload, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21685
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxFileupload, isStandalone: true, selector: "px-fileupload", inputs: { state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], ariaDescribedby: ["aria-describedby", "ariaDescribedby"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
21632
21686
|
}
|
|
21633
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
21687
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxFileupload, decorators: [{
|
|
21634
21688
|
type: Directive,
|
|
21635
21689
|
args: [{
|
|
21636
|
-
selector: 'px-
|
|
21690
|
+
selector: 'px-fileupload',
|
|
21637
21691
|
standalone: true,
|
|
21638
21692
|
}]
|
|
21639
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
21640
|
-
type: Input
|
|
21641
|
-
}], alt: [{
|
|
21693
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
21642
21694
|
type: Input
|
|
21643
|
-
}],
|
|
21695
|
+
}], extended: [{
|
|
21644
21696
|
type: Input
|
|
21645
|
-
}],
|
|
21646
|
-
type: Input,
|
|
21647
|
-
args: ['border-radius']
|
|
21648
|
-
}], noBorderRadius: [{
|
|
21649
|
-
type: Input,
|
|
21650
|
-
args: ['no-border-radius']
|
|
21651
|
-
}], noBorderRadiusMobile: [{
|
|
21652
|
-
type: Input,
|
|
21653
|
-
args: ['no-border-radius--mobile']
|
|
21654
|
-
}], noBorderRadiusTablet: [{
|
|
21655
|
-
type: Input,
|
|
21656
|
-
args: ['no-border-radius--tablet']
|
|
21657
|
-
}], noBorderRadiusLaptop: [{
|
|
21697
|
+
}], extendedMobile: [{
|
|
21658
21698
|
type: Input,
|
|
21659
|
-
args: ['
|
|
21660
|
-
}],
|
|
21661
|
-
type: Input
|
|
21662
|
-
}], widthMobile: [{
|
|
21699
|
+
args: ['extended--mobile']
|
|
21700
|
+
}], extendedTablet: [{
|
|
21663
21701
|
type: Input,
|
|
21664
|
-
args: ['
|
|
21665
|
-
}],
|
|
21702
|
+
args: ['extended--tablet']
|
|
21703
|
+
}], extendedLaptop: [{
|
|
21666
21704
|
type: Input,
|
|
21667
|
-
args: ['
|
|
21668
|
-
}],
|
|
21705
|
+
args: ['extended--laptop']
|
|
21706
|
+
}], extendedDesktop: [{
|
|
21669
21707
|
type: Input,
|
|
21670
|
-
args: ['
|
|
21671
|
-
}],
|
|
21708
|
+
args: ['extended--desktop']
|
|
21709
|
+
}], ariaDescribedby: [{
|
|
21672
21710
|
type: Input,
|
|
21673
|
-
args: ['
|
|
21674
|
-
}], cover: [{
|
|
21675
|
-
type: Input
|
|
21676
|
-
}], disabled: [{
|
|
21677
|
-
type: Input
|
|
21711
|
+
args: ['aria-describedby']
|
|
21678
21712
|
}], grow: [{
|
|
21679
21713
|
type: Input
|
|
21680
21714
|
}], growMobile: [{
|
|
@@ -21826,50 +21860,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
21826
21860
|
}], wordBreakAllDesktop: [{
|
|
21827
21861
|
type: Input,
|
|
21828
21862
|
args: ['word-break-all--desktop']
|
|
21863
|
+
}], event: [{
|
|
21864
|
+
type: Output
|
|
21829
21865
|
}] } });
|
|
21830
21866
|
/**
|
|
21831
|
-
* @description Type-only wrapper for <px-
|
|
21867
|
+
* @description Type-only wrapper for <px-code-input>
|
|
21832
21868
|
*/
|
|
21833
|
-
class
|
|
21869
|
+
class PxCodeInput {
|
|
21834
21870
|
elementRef;
|
|
21835
|
-
set
|
|
21836
|
-
this.elementRef.nativeElement['
|
|
21871
|
+
set size(value) {
|
|
21872
|
+
this.elementRef.nativeElement['size'] = value;
|
|
21837
21873
|
}
|
|
21838
|
-
get
|
|
21839
|
-
return this.elementRef.nativeElement['
|
|
21874
|
+
get size() {
|
|
21875
|
+
return this.elementRef.nativeElement['size'];
|
|
21840
21876
|
}
|
|
21841
|
-
set
|
|
21842
|
-
this.elementRef.nativeElement['
|
|
21877
|
+
set state(value) {
|
|
21878
|
+
this.elementRef.nativeElement['state'] = value;
|
|
21843
21879
|
}
|
|
21844
|
-
get
|
|
21845
|
-
return this.elementRef.nativeElement['
|
|
21880
|
+
get state() {
|
|
21881
|
+
return this.elementRef.nativeElement['state'];
|
|
21846
21882
|
}
|
|
21847
|
-
set
|
|
21848
|
-
this.elementRef.nativeElement['
|
|
21883
|
+
set extended(value) {
|
|
21884
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
21849
21885
|
}
|
|
21850
|
-
get
|
|
21851
|
-
return this.elementRef.nativeElement['
|
|
21886
|
+
get extended() {
|
|
21887
|
+
return this.elementRef.nativeElement['extended'];
|
|
21852
21888
|
}
|
|
21853
|
-
set
|
|
21854
|
-
this.elementRef.nativeElement['
|
|
21889
|
+
set extendedMobile(value) {
|
|
21890
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
21855
21891
|
}
|
|
21856
|
-
get
|
|
21857
|
-
return this.elementRef.nativeElement['
|
|
21892
|
+
get extendedMobile() {
|
|
21893
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
21858
21894
|
}
|
|
21859
|
-
set
|
|
21860
|
-
this.elementRef.nativeElement['
|
|
21895
|
+
set extendedTablet(value) {
|
|
21896
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
21861
21897
|
}
|
|
21862
|
-
get
|
|
21863
|
-
return this.elementRef.nativeElement['
|
|
21898
|
+
get extendedTablet() {
|
|
21899
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
21864
21900
|
}
|
|
21865
|
-
set
|
|
21866
|
-
this.elementRef.nativeElement['
|
|
21901
|
+
set extendedLaptop(value) {
|
|
21902
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
21867
21903
|
}
|
|
21868
|
-
get
|
|
21869
|
-
return this.elementRef.nativeElement['
|
|
21904
|
+
get extendedLaptop() {
|
|
21905
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
21870
21906
|
}
|
|
21871
|
-
set
|
|
21872
|
-
this.elementRef.nativeElement['
|
|
21907
|
+
set extendedDesktop(value) {
|
|
21908
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
21909
|
+
}
|
|
21910
|
+
get extendedDesktop() {
|
|
21911
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
21912
|
+
}
|
|
21913
|
+
set ariaDescribedby(value) {
|
|
21914
|
+
this.elementRef.nativeElement['ariaDescribedby'] = value;
|
|
21915
|
+
}
|
|
21916
|
+
get ariaDescribedby() {
|
|
21917
|
+
return this.elementRef.nativeElement['ariaDescribedby'];
|
|
21918
|
+
}
|
|
21919
|
+
set grow(value) {
|
|
21920
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
21921
|
+
}
|
|
21922
|
+
get grow() {
|
|
21923
|
+
return this.elementRef.nativeElement['grow'];
|
|
21924
|
+
}
|
|
21925
|
+
set growMobile(value) {
|
|
21926
|
+
this.elementRef.nativeElement['growMobile'] = value;
|
|
21873
21927
|
}
|
|
21874
21928
|
get growMobile() {
|
|
21875
21929
|
return this.elementRef.nativeElement['growMobile'];
|
|
@@ -22174,32 +22228,43 @@ class PxPage {
|
|
|
22174
22228
|
get wordBreakAllDesktop() {
|
|
22175
22229
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
22176
22230
|
}
|
|
22231
|
+
event = new EventEmitter();
|
|
22177
22232
|
constructor(elementRef) {
|
|
22178
22233
|
this.elementRef = elementRef;
|
|
22234
|
+
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
22235
|
+
this.event.emit(e.detail);
|
|
22236
|
+
});
|
|
22179
22237
|
}
|
|
22180
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
22181
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
22238
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCodeInput, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22239
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCodeInput, isStandalone: true, selector: "px-code-input", inputs: { size: "size", state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], ariaDescribedby: ["aria-describedby", "ariaDescribedby"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
22182
22240
|
}
|
|
22183
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
22241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCodeInput, decorators: [{
|
|
22184
22242
|
type: Directive,
|
|
22185
22243
|
args: [{
|
|
22186
|
-
selector: 'px-
|
|
22244
|
+
selector: 'px-code-input',
|
|
22187
22245
|
standalone: true,
|
|
22188
22246
|
}]
|
|
22189
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
22190
|
-
type: Input,
|
|
22191
|
-
args: ['background-image']
|
|
22192
|
-
}], gap: [{
|
|
22247
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
22193
22248
|
type: Input
|
|
22194
|
-
}],
|
|
22249
|
+
}], state: [{
|
|
22250
|
+
type: Input
|
|
22251
|
+
}], extended: [{
|
|
22252
|
+
type: Input
|
|
22253
|
+
}], extendedMobile: [{
|
|
22195
22254
|
type: Input,
|
|
22196
|
-
args: ['
|
|
22197
|
-
}],
|
|
22255
|
+
args: ['extended--mobile']
|
|
22256
|
+
}], extendedTablet: [{
|
|
22198
22257
|
type: Input,
|
|
22199
|
-
args: ['
|
|
22200
|
-
}],
|
|
22258
|
+
args: ['extended--tablet']
|
|
22259
|
+
}], extendedLaptop: [{
|
|
22201
22260
|
type: Input,
|
|
22202
|
-
args: ['
|
|
22261
|
+
args: ['extended--laptop']
|
|
22262
|
+
}], extendedDesktop: [{
|
|
22263
|
+
type: Input,
|
|
22264
|
+
args: ['extended--desktop']
|
|
22265
|
+
}], ariaDescribedby: [{
|
|
22266
|
+
type: Input,
|
|
22267
|
+
args: ['aria-describedby']
|
|
22203
22268
|
}], grow: [{
|
|
22204
22269
|
type: Input
|
|
22205
22270
|
}], growMobile: [{
|
|
@@ -22351,168 +22416,695 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22351
22416
|
}], wordBreakAllDesktop: [{
|
|
22352
22417
|
type: Input,
|
|
22353
22418
|
args: ['word-break-all--desktop']
|
|
22419
|
+
}], event: [{
|
|
22420
|
+
type: Output
|
|
22354
22421
|
}] } });
|
|
22355
22422
|
/**
|
|
22356
|
-
* @description Type-only wrapper for <px-
|
|
22423
|
+
* @description Type-only wrapper for <px-page>
|
|
22357
22424
|
*/
|
|
22358
|
-
class
|
|
22425
|
+
class PxPage {
|
|
22359
22426
|
elementRef;
|
|
22360
|
-
set
|
|
22361
|
-
this.elementRef.nativeElement['
|
|
22427
|
+
set backgroundImage(value) {
|
|
22428
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
22362
22429
|
}
|
|
22363
|
-
get
|
|
22364
|
-
return this.elementRef.nativeElement['
|
|
22430
|
+
get backgroundImage() {
|
|
22431
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
22365
22432
|
}
|
|
22366
|
-
set
|
|
22367
|
-
this.elementRef.nativeElement['
|
|
22433
|
+
set gap(value) {
|
|
22434
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
22368
22435
|
}
|
|
22369
|
-
get
|
|
22370
|
-
return this.elementRef.nativeElement['
|
|
22436
|
+
get gap() {
|
|
22437
|
+
return this.elementRef.nativeElement['gap'];
|
|
22371
22438
|
}
|
|
22372
|
-
|
|
22373
|
-
this.elementRef =
|
|
22439
|
+
set backgroundColor(value) {
|
|
22440
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
22374
22441
|
}
|
|
22375
|
-
|
|
22376
|
-
|
|
22377
|
-
}
|
|
22378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpacer, decorators: [{
|
|
22379
|
-
type: Directive,
|
|
22380
|
-
args: [{
|
|
22381
|
-
selector: 'px-spacer',
|
|
22382
|
-
standalone: true,
|
|
22383
|
-
}]
|
|
22384
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { grow: [{
|
|
22385
|
-
type: Input
|
|
22386
|
-
}], nogap: [{
|
|
22387
|
-
type: Input
|
|
22388
|
-
}] } });
|
|
22389
|
-
/**
|
|
22390
|
-
* @description Type-only wrapper for <px-stack>
|
|
22391
|
-
*/
|
|
22392
|
-
class PxStack {
|
|
22393
|
-
elementRef;
|
|
22394
|
-
set direction(value) {
|
|
22395
|
-
this.elementRef.nativeElement['direction'] = value;
|
|
22442
|
+
get backgroundColor() {
|
|
22443
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
22396
22444
|
}
|
|
22397
|
-
|
|
22398
|
-
|
|
22445
|
+
set paddingVertical(value) {
|
|
22446
|
+
this.elementRef.nativeElement['paddingVertical'] = value;
|
|
22399
22447
|
}
|
|
22400
|
-
|
|
22401
|
-
this.elementRef.nativeElement['
|
|
22448
|
+
get paddingVertical() {
|
|
22449
|
+
return this.elementRef.nativeElement['paddingVertical'];
|
|
22402
22450
|
}
|
|
22403
|
-
|
|
22404
|
-
|
|
22451
|
+
set paddingHorizontal(value) {
|
|
22452
|
+
this.elementRef.nativeElement['paddingHorizontal'] = value;
|
|
22405
22453
|
}
|
|
22406
|
-
|
|
22407
|
-
this.elementRef.nativeElement['
|
|
22454
|
+
get paddingHorizontal() {
|
|
22455
|
+
return this.elementRef.nativeElement['paddingHorizontal'];
|
|
22408
22456
|
}
|
|
22409
|
-
|
|
22410
|
-
|
|
22457
|
+
set grow(value) {
|
|
22458
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
22411
22459
|
}
|
|
22412
|
-
|
|
22413
|
-
this.elementRef.nativeElement['
|
|
22460
|
+
get grow() {
|
|
22461
|
+
return this.elementRef.nativeElement['grow'];
|
|
22414
22462
|
}
|
|
22415
|
-
|
|
22416
|
-
|
|
22463
|
+
set growMobile(value) {
|
|
22464
|
+
this.elementRef.nativeElement['growMobile'] = value;
|
|
22417
22465
|
}
|
|
22418
|
-
|
|
22419
|
-
this.elementRef.nativeElement['
|
|
22466
|
+
get growMobile() {
|
|
22467
|
+
return this.elementRef.nativeElement['growMobile'];
|
|
22420
22468
|
}
|
|
22421
|
-
|
|
22422
|
-
|
|
22469
|
+
set growTablet(value) {
|
|
22470
|
+
this.elementRef.nativeElement['growTablet'] = value;
|
|
22423
22471
|
}
|
|
22424
|
-
|
|
22425
|
-
this.elementRef.nativeElement['
|
|
22472
|
+
get growTablet() {
|
|
22473
|
+
return this.elementRef.nativeElement['growTablet'];
|
|
22426
22474
|
}
|
|
22427
|
-
|
|
22428
|
-
|
|
22475
|
+
set growLaptop(value) {
|
|
22476
|
+
this.elementRef.nativeElement['growLaptop'] = value;
|
|
22429
22477
|
}
|
|
22430
|
-
|
|
22431
|
-
this.elementRef.nativeElement['
|
|
22478
|
+
get growLaptop() {
|
|
22479
|
+
return this.elementRef.nativeElement['growLaptop'];
|
|
22432
22480
|
}
|
|
22433
|
-
|
|
22434
|
-
|
|
22481
|
+
set growDesktop(value) {
|
|
22482
|
+
this.elementRef.nativeElement['growDesktop'] = value;
|
|
22435
22483
|
}
|
|
22436
|
-
|
|
22437
|
-
this.elementRef.nativeElement['
|
|
22484
|
+
get growDesktop() {
|
|
22485
|
+
return this.elementRef.nativeElement['growDesktop'];
|
|
22438
22486
|
}
|
|
22439
|
-
|
|
22440
|
-
|
|
22487
|
+
set shrink(value) {
|
|
22488
|
+
this.elementRef.nativeElement['shrink'] = value;
|
|
22441
22489
|
}
|
|
22442
|
-
|
|
22443
|
-
this.elementRef.nativeElement['
|
|
22490
|
+
get shrink() {
|
|
22491
|
+
return this.elementRef.nativeElement['shrink'];
|
|
22444
22492
|
}
|
|
22445
|
-
|
|
22446
|
-
|
|
22493
|
+
set shrinkMobile(value) {
|
|
22494
|
+
this.elementRef.nativeElement['shrinkMobile'] = value;
|
|
22447
22495
|
}
|
|
22448
|
-
|
|
22449
|
-
this.elementRef.nativeElement['
|
|
22496
|
+
get shrinkMobile() {
|
|
22497
|
+
return this.elementRef.nativeElement['shrinkMobile'];
|
|
22450
22498
|
}
|
|
22451
|
-
|
|
22452
|
-
|
|
22499
|
+
set shrinkTablet(value) {
|
|
22500
|
+
this.elementRef.nativeElement['shrinkTablet'] = value;
|
|
22453
22501
|
}
|
|
22454
|
-
|
|
22455
|
-
this.elementRef.nativeElement['
|
|
22502
|
+
get shrinkTablet() {
|
|
22503
|
+
return this.elementRef.nativeElement['shrinkTablet'];
|
|
22456
22504
|
}
|
|
22457
|
-
|
|
22458
|
-
|
|
22505
|
+
set shrinkLaptop(value) {
|
|
22506
|
+
this.elementRef.nativeElement['shrinkLaptop'] = value;
|
|
22459
22507
|
}
|
|
22460
|
-
|
|
22461
|
-
this.elementRef.nativeElement['
|
|
22508
|
+
get shrinkLaptop() {
|
|
22509
|
+
return this.elementRef.nativeElement['shrinkLaptop'];
|
|
22462
22510
|
}
|
|
22463
|
-
|
|
22464
|
-
|
|
22511
|
+
set shrinkDesktop(value) {
|
|
22512
|
+
this.elementRef.nativeElement['shrinkDesktop'] = value;
|
|
22465
22513
|
}
|
|
22466
|
-
|
|
22467
|
-
this.elementRef.nativeElement['
|
|
22514
|
+
get shrinkDesktop() {
|
|
22515
|
+
return this.elementRef.nativeElement['shrinkDesktop'];
|
|
22468
22516
|
}
|
|
22469
|
-
|
|
22470
|
-
|
|
22517
|
+
set basis(value) {
|
|
22518
|
+
this.elementRef.nativeElement['basis'] = value;
|
|
22471
22519
|
}
|
|
22472
|
-
|
|
22473
|
-
this.elementRef.nativeElement['
|
|
22520
|
+
get basis() {
|
|
22521
|
+
return this.elementRef.nativeElement['basis'];
|
|
22474
22522
|
}
|
|
22475
|
-
|
|
22476
|
-
|
|
22523
|
+
set basisMobile(value) {
|
|
22524
|
+
this.elementRef.nativeElement['basisMobile'] = value;
|
|
22477
22525
|
}
|
|
22478
|
-
|
|
22479
|
-
this.elementRef.nativeElement['
|
|
22526
|
+
get basisMobile() {
|
|
22527
|
+
return this.elementRef.nativeElement['basisMobile'];
|
|
22480
22528
|
}
|
|
22481
|
-
|
|
22482
|
-
|
|
22529
|
+
set basisTablet(value) {
|
|
22530
|
+
this.elementRef.nativeElement['basisTablet'] = value;
|
|
22483
22531
|
}
|
|
22484
|
-
|
|
22485
|
-
this.elementRef.nativeElement['
|
|
22532
|
+
get basisTablet() {
|
|
22533
|
+
return this.elementRef.nativeElement['basisTablet'];
|
|
22486
22534
|
}
|
|
22487
|
-
|
|
22488
|
-
|
|
22535
|
+
set basisLaptop(value) {
|
|
22536
|
+
this.elementRef.nativeElement['basisLaptop'] = value;
|
|
22489
22537
|
}
|
|
22490
|
-
|
|
22491
|
-
this.elementRef.nativeElement['
|
|
22538
|
+
get basisLaptop() {
|
|
22539
|
+
return this.elementRef.nativeElement['basisLaptop'];
|
|
22492
22540
|
}
|
|
22493
|
-
|
|
22494
|
-
|
|
22541
|
+
set basisDesktop(value) {
|
|
22542
|
+
this.elementRef.nativeElement['basisDesktop'] = value;
|
|
22495
22543
|
}
|
|
22496
|
-
|
|
22497
|
-
this.elementRef.nativeElement['
|
|
22544
|
+
get basisDesktop() {
|
|
22545
|
+
return this.elementRef.nativeElement['basisDesktop'];
|
|
22498
22546
|
}
|
|
22499
|
-
|
|
22500
|
-
|
|
22547
|
+
set alignSelf(value) {
|
|
22548
|
+
this.elementRef.nativeElement['alignSelf'] = value;
|
|
22501
22549
|
}
|
|
22502
|
-
|
|
22503
|
-
this.elementRef.nativeElement['
|
|
22550
|
+
get alignSelf() {
|
|
22551
|
+
return this.elementRef.nativeElement['alignSelf'];
|
|
22504
22552
|
}
|
|
22505
|
-
|
|
22506
|
-
|
|
22553
|
+
set alignSelfMobile(value) {
|
|
22554
|
+
this.elementRef.nativeElement['alignSelfMobile'] = value;
|
|
22507
22555
|
}
|
|
22508
|
-
|
|
22509
|
-
this.elementRef.nativeElement['
|
|
22556
|
+
get alignSelfMobile() {
|
|
22557
|
+
return this.elementRef.nativeElement['alignSelfMobile'];
|
|
22510
22558
|
}
|
|
22511
|
-
|
|
22512
|
-
|
|
22559
|
+
set alignSelfTablet(value) {
|
|
22560
|
+
this.elementRef.nativeElement['alignSelfTablet'] = value;
|
|
22513
22561
|
}
|
|
22514
|
-
|
|
22515
|
-
this.elementRef.nativeElement['
|
|
22562
|
+
get alignSelfTablet() {
|
|
22563
|
+
return this.elementRef.nativeElement['alignSelfTablet'];
|
|
22564
|
+
}
|
|
22565
|
+
set alignSelfLaptop(value) {
|
|
22566
|
+
this.elementRef.nativeElement['alignSelfLaptop'] = value;
|
|
22567
|
+
}
|
|
22568
|
+
get alignSelfLaptop() {
|
|
22569
|
+
return this.elementRef.nativeElement['alignSelfLaptop'];
|
|
22570
|
+
}
|
|
22571
|
+
set alignSelfDesktop(value) {
|
|
22572
|
+
this.elementRef.nativeElement['alignSelfDesktop'] = value;
|
|
22573
|
+
}
|
|
22574
|
+
get alignSelfDesktop() {
|
|
22575
|
+
return this.elementRef.nativeElement['alignSelfDesktop'];
|
|
22576
|
+
}
|
|
22577
|
+
set justifySelf(value) {
|
|
22578
|
+
this.elementRef.nativeElement['justifySelf'] = value;
|
|
22579
|
+
}
|
|
22580
|
+
get justifySelf() {
|
|
22581
|
+
return this.elementRef.nativeElement['justifySelf'];
|
|
22582
|
+
}
|
|
22583
|
+
set justifySelfMobile(value) {
|
|
22584
|
+
this.elementRef.nativeElement['justifySelfMobile'] = value;
|
|
22585
|
+
}
|
|
22586
|
+
get justifySelfMobile() {
|
|
22587
|
+
return this.elementRef.nativeElement['justifySelfMobile'];
|
|
22588
|
+
}
|
|
22589
|
+
set justifySelfTablet(value) {
|
|
22590
|
+
this.elementRef.nativeElement['justifySelfTablet'] = value;
|
|
22591
|
+
}
|
|
22592
|
+
get justifySelfTablet() {
|
|
22593
|
+
return this.elementRef.nativeElement['justifySelfTablet'];
|
|
22594
|
+
}
|
|
22595
|
+
set justifySelfLaptop(value) {
|
|
22596
|
+
this.elementRef.nativeElement['justifySelfLaptop'] = value;
|
|
22597
|
+
}
|
|
22598
|
+
get justifySelfLaptop() {
|
|
22599
|
+
return this.elementRef.nativeElement['justifySelfLaptop'];
|
|
22600
|
+
}
|
|
22601
|
+
set justifySelfDesktop(value) {
|
|
22602
|
+
this.elementRef.nativeElement['justifySelfDesktop'] = value;
|
|
22603
|
+
}
|
|
22604
|
+
get justifySelfDesktop() {
|
|
22605
|
+
return this.elementRef.nativeElement['justifySelfDesktop'];
|
|
22606
|
+
}
|
|
22607
|
+
set hidden(value) {
|
|
22608
|
+
this.elementRef.nativeElement['hidden'] = value;
|
|
22609
|
+
}
|
|
22610
|
+
get hidden() {
|
|
22611
|
+
return this.elementRef.nativeElement['hidden'];
|
|
22612
|
+
}
|
|
22613
|
+
set hiddenMobile(value) {
|
|
22614
|
+
this.elementRef.nativeElement['hiddenMobile'] = value;
|
|
22615
|
+
}
|
|
22616
|
+
get hiddenMobile() {
|
|
22617
|
+
return this.elementRef.nativeElement['hiddenMobile'];
|
|
22618
|
+
}
|
|
22619
|
+
set hiddenTablet(value) {
|
|
22620
|
+
this.elementRef.nativeElement['hiddenTablet'] = value;
|
|
22621
|
+
}
|
|
22622
|
+
get hiddenTablet() {
|
|
22623
|
+
return this.elementRef.nativeElement['hiddenTablet'];
|
|
22624
|
+
}
|
|
22625
|
+
set hiddenLaptop(value) {
|
|
22626
|
+
this.elementRef.nativeElement['hiddenLaptop'] = value;
|
|
22627
|
+
}
|
|
22628
|
+
get hiddenLaptop() {
|
|
22629
|
+
return this.elementRef.nativeElement['hiddenLaptop'];
|
|
22630
|
+
}
|
|
22631
|
+
set hiddenDesktop(value) {
|
|
22632
|
+
this.elementRef.nativeElement['hiddenDesktop'] = value;
|
|
22633
|
+
}
|
|
22634
|
+
get hiddenDesktop() {
|
|
22635
|
+
return this.elementRef.nativeElement['hiddenDesktop'];
|
|
22636
|
+
}
|
|
22637
|
+
set shownSr(value) {
|
|
22638
|
+
this.elementRef.nativeElement['shownSr'] = value;
|
|
22639
|
+
}
|
|
22640
|
+
get shownSr() {
|
|
22641
|
+
return this.elementRef.nativeElement['shownSr'];
|
|
22642
|
+
}
|
|
22643
|
+
set shownSrMobile(value) {
|
|
22644
|
+
this.elementRef.nativeElement['shownSrMobile'] = value;
|
|
22645
|
+
}
|
|
22646
|
+
get shownSrMobile() {
|
|
22647
|
+
return this.elementRef.nativeElement['shownSrMobile'];
|
|
22648
|
+
}
|
|
22649
|
+
set shownSrTablet(value) {
|
|
22650
|
+
this.elementRef.nativeElement['shownSrTablet'] = value;
|
|
22651
|
+
}
|
|
22652
|
+
get shownSrTablet() {
|
|
22653
|
+
return this.elementRef.nativeElement['shownSrTablet'];
|
|
22654
|
+
}
|
|
22655
|
+
set shownSrLaptop(value) {
|
|
22656
|
+
this.elementRef.nativeElement['shownSrLaptop'] = value;
|
|
22657
|
+
}
|
|
22658
|
+
get shownSrLaptop() {
|
|
22659
|
+
return this.elementRef.nativeElement['shownSrLaptop'];
|
|
22660
|
+
}
|
|
22661
|
+
set shownSrDesktop(value) {
|
|
22662
|
+
this.elementRef.nativeElement['shownSrDesktop'] = value;
|
|
22663
|
+
}
|
|
22664
|
+
get shownSrDesktop() {
|
|
22665
|
+
return this.elementRef.nativeElement['shownSrDesktop'];
|
|
22666
|
+
}
|
|
22667
|
+
set colSpan(value) {
|
|
22668
|
+
this.elementRef.nativeElement['colSpan'] = value;
|
|
22669
|
+
}
|
|
22670
|
+
get colSpan() {
|
|
22671
|
+
return this.elementRef.nativeElement['colSpan'];
|
|
22672
|
+
}
|
|
22673
|
+
set colSpanMobile(value) {
|
|
22674
|
+
this.elementRef.nativeElement['colSpanMobile'] = value;
|
|
22675
|
+
}
|
|
22676
|
+
get colSpanMobile() {
|
|
22677
|
+
return this.elementRef.nativeElement['colSpanMobile'];
|
|
22678
|
+
}
|
|
22679
|
+
set colSpanTablet(value) {
|
|
22680
|
+
this.elementRef.nativeElement['colSpanTablet'] = value;
|
|
22681
|
+
}
|
|
22682
|
+
get colSpanTablet() {
|
|
22683
|
+
return this.elementRef.nativeElement['colSpanTablet'];
|
|
22684
|
+
}
|
|
22685
|
+
set colSpanLaptop(value) {
|
|
22686
|
+
this.elementRef.nativeElement['colSpanLaptop'] = value;
|
|
22687
|
+
}
|
|
22688
|
+
get colSpanLaptop() {
|
|
22689
|
+
return this.elementRef.nativeElement['colSpanLaptop'];
|
|
22690
|
+
}
|
|
22691
|
+
set colSpanDesktop(value) {
|
|
22692
|
+
this.elementRef.nativeElement['colSpanDesktop'] = value;
|
|
22693
|
+
}
|
|
22694
|
+
get colSpanDesktop() {
|
|
22695
|
+
return this.elementRef.nativeElement['colSpanDesktop'];
|
|
22696
|
+
}
|
|
22697
|
+
set order(value) {
|
|
22698
|
+
this.elementRef.nativeElement['order'] = value;
|
|
22699
|
+
}
|
|
22700
|
+
get order() {
|
|
22701
|
+
return this.elementRef.nativeElement['order'];
|
|
22702
|
+
}
|
|
22703
|
+
set orderMobile(value) {
|
|
22704
|
+
this.elementRef.nativeElement['orderMobile'] = value;
|
|
22705
|
+
}
|
|
22706
|
+
get orderMobile() {
|
|
22707
|
+
return this.elementRef.nativeElement['orderMobile'];
|
|
22708
|
+
}
|
|
22709
|
+
set orderTablet(value) {
|
|
22710
|
+
this.elementRef.nativeElement['orderTablet'] = value;
|
|
22711
|
+
}
|
|
22712
|
+
get orderTablet() {
|
|
22713
|
+
return this.elementRef.nativeElement['orderTablet'];
|
|
22714
|
+
}
|
|
22715
|
+
set orderLaptop(value) {
|
|
22716
|
+
this.elementRef.nativeElement['orderLaptop'] = value;
|
|
22717
|
+
}
|
|
22718
|
+
get orderLaptop() {
|
|
22719
|
+
return this.elementRef.nativeElement['orderLaptop'];
|
|
22720
|
+
}
|
|
22721
|
+
set orderDesktop(value) {
|
|
22722
|
+
this.elementRef.nativeElement['orderDesktop'] = value;
|
|
22723
|
+
}
|
|
22724
|
+
get orderDesktop() {
|
|
22725
|
+
return this.elementRef.nativeElement['orderDesktop'];
|
|
22726
|
+
}
|
|
22727
|
+
set stickyTop(value) {
|
|
22728
|
+
this.elementRef.nativeElement['stickyTop'] = value;
|
|
22729
|
+
}
|
|
22730
|
+
get stickyTop() {
|
|
22731
|
+
return this.elementRef.nativeElement['stickyTop'];
|
|
22732
|
+
}
|
|
22733
|
+
set stickyBottom(value) {
|
|
22734
|
+
this.elementRef.nativeElement['stickyBottom'] = value;
|
|
22735
|
+
}
|
|
22736
|
+
get stickyBottom() {
|
|
22737
|
+
return this.elementRef.nativeElement['stickyBottom'];
|
|
22738
|
+
}
|
|
22739
|
+
set wordBreakAll(value) {
|
|
22740
|
+
this.elementRef.nativeElement['wordBreakAll'] = value;
|
|
22741
|
+
}
|
|
22742
|
+
get wordBreakAll() {
|
|
22743
|
+
return this.elementRef.nativeElement['wordBreakAll'];
|
|
22744
|
+
}
|
|
22745
|
+
set wordBreakAllMobile(value) {
|
|
22746
|
+
this.elementRef.nativeElement['wordBreakAllMobile'] = value;
|
|
22747
|
+
}
|
|
22748
|
+
get wordBreakAllMobile() {
|
|
22749
|
+
return this.elementRef.nativeElement['wordBreakAllMobile'];
|
|
22750
|
+
}
|
|
22751
|
+
set wordBreakAllTablet(value) {
|
|
22752
|
+
this.elementRef.nativeElement['wordBreakAllTablet'] = value;
|
|
22753
|
+
}
|
|
22754
|
+
get wordBreakAllTablet() {
|
|
22755
|
+
return this.elementRef.nativeElement['wordBreakAllTablet'];
|
|
22756
|
+
}
|
|
22757
|
+
set wordBreakAllLaptop(value) {
|
|
22758
|
+
this.elementRef.nativeElement['wordBreakAllLaptop'] = value;
|
|
22759
|
+
}
|
|
22760
|
+
get wordBreakAllLaptop() {
|
|
22761
|
+
return this.elementRef.nativeElement['wordBreakAllLaptop'];
|
|
22762
|
+
}
|
|
22763
|
+
set wordBreakAllDesktop(value) {
|
|
22764
|
+
this.elementRef.nativeElement['wordBreakAllDesktop'] = value;
|
|
22765
|
+
}
|
|
22766
|
+
get wordBreakAllDesktop() {
|
|
22767
|
+
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
22768
|
+
}
|
|
22769
|
+
constructor(elementRef) {
|
|
22770
|
+
this.elementRef = elementRef;
|
|
22771
|
+
}
|
|
22772
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxPage, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22773
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxPage, isStandalone: true, selector: "px-page", inputs: { backgroundImage: ["background-image", "backgroundImage"], gap: "gap", backgroundColor: ["background-color", "backgroundColor"], paddingVertical: ["padding-vertical", "paddingVertical"], paddingHorizontal: ["padding-horizontal", "paddingHorizontal"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
22774
|
+
}
|
|
22775
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxPage, decorators: [{
|
|
22776
|
+
type: Directive,
|
|
22777
|
+
args: [{
|
|
22778
|
+
selector: 'px-page',
|
|
22779
|
+
standalone: true,
|
|
22780
|
+
}]
|
|
22781
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { backgroundImage: [{
|
|
22782
|
+
type: Input,
|
|
22783
|
+
args: ['background-image']
|
|
22784
|
+
}], gap: [{
|
|
22785
|
+
type: Input
|
|
22786
|
+
}], backgroundColor: [{
|
|
22787
|
+
type: Input,
|
|
22788
|
+
args: ['background-color']
|
|
22789
|
+
}], paddingVertical: [{
|
|
22790
|
+
type: Input,
|
|
22791
|
+
args: ['padding-vertical']
|
|
22792
|
+
}], paddingHorizontal: [{
|
|
22793
|
+
type: Input,
|
|
22794
|
+
args: ['padding-horizontal']
|
|
22795
|
+
}], grow: [{
|
|
22796
|
+
type: Input
|
|
22797
|
+
}], growMobile: [{
|
|
22798
|
+
type: Input,
|
|
22799
|
+
args: ['grow--mobile']
|
|
22800
|
+
}], growTablet: [{
|
|
22801
|
+
type: Input,
|
|
22802
|
+
args: ['grow--tablet']
|
|
22803
|
+
}], growLaptop: [{
|
|
22804
|
+
type: Input,
|
|
22805
|
+
args: ['grow--laptop']
|
|
22806
|
+
}], growDesktop: [{
|
|
22807
|
+
type: Input,
|
|
22808
|
+
args: ['grow--desktop']
|
|
22809
|
+
}], shrink: [{
|
|
22810
|
+
type: Input
|
|
22811
|
+
}], shrinkMobile: [{
|
|
22812
|
+
type: Input,
|
|
22813
|
+
args: ['shrink--mobile']
|
|
22814
|
+
}], shrinkTablet: [{
|
|
22815
|
+
type: Input,
|
|
22816
|
+
args: ['shrink--tablet']
|
|
22817
|
+
}], shrinkLaptop: [{
|
|
22818
|
+
type: Input,
|
|
22819
|
+
args: ['shrink--laptop']
|
|
22820
|
+
}], shrinkDesktop: [{
|
|
22821
|
+
type: Input,
|
|
22822
|
+
args: ['shrink--desktop']
|
|
22823
|
+
}], basis: [{
|
|
22824
|
+
type: Input
|
|
22825
|
+
}], basisMobile: [{
|
|
22826
|
+
type: Input,
|
|
22827
|
+
args: ['basis--mobile']
|
|
22828
|
+
}], basisTablet: [{
|
|
22829
|
+
type: Input,
|
|
22830
|
+
args: ['basis--tablet']
|
|
22831
|
+
}], basisLaptop: [{
|
|
22832
|
+
type: Input,
|
|
22833
|
+
args: ['basis--laptop']
|
|
22834
|
+
}], basisDesktop: [{
|
|
22835
|
+
type: Input,
|
|
22836
|
+
args: ['basis--desktop']
|
|
22837
|
+
}], alignSelf: [{
|
|
22838
|
+
type: Input,
|
|
22839
|
+
args: ['align-self']
|
|
22840
|
+
}], alignSelfMobile: [{
|
|
22841
|
+
type: Input,
|
|
22842
|
+
args: ['align-self--mobile']
|
|
22843
|
+
}], alignSelfTablet: [{
|
|
22844
|
+
type: Input,
|
|
22845
|
+
args: ['align-self--tablet']
|
|
22846
|
+
}], alignSelfLaptop: [{
|
|
22847
|
+
type: Input,
|
|
22848
|
+
args: ['align-self--laptop']
|
|
22849
|
+
}], alignSelfDesktop: [{
|
|
22850
|
+
type: Input,
|
|
22851
|
+
args: ['align-self--desktop']
|
|
22852
|
+
}], justifySelf: [{
|
|
22853
|
+
type: Input,
|
|
22854
|
+
args: ['justify-self']
|
|
22855
|
+
}], justifySelfMobile: [{
|
|
22856
|
+
type: Input,
|
|
22857
|
+
args: ['justify-self--mobile']
|
|
22858
|
+
}], justifySelfTablet: [{
|
|
22859
|
+
type: Input,
|
|
22860
|
+
args: ['justify-self--tablet']
|
|
22861
|
+
}], justifySelfLaptop: [{
|
|
22862
|
+
type: Input,
|
|
22863
|
+
args: ['justify-self--laptop']
|
|
22864
|
+
}], justifySelfDesktop: [{
|
|
22865
|
+
type: Input,
|
|
22866
|
+
args: ['justify-self--desktop']
|
|
22867
|
+
}], hidden: [{
|
|
22868
|
+
type: Input
|
|
22869
|
+
}], hiddenMobile: [{
|
|
22870
|
+
type: Input,
|
|
22871
|
+
args: ['hidden--mobile']
|
|
22872
|
+
}], hiddenTablet: [{
|
|
22873
|
+
type: Input,
|
|
22874
|
+
args: ['hidden--tablet']
|
|
22875
|
+
}], hiddenLaptop: [{
|
|
22876
|
+
type: Input,
|
|
22877
|
+
args: ['hidden--laptop']
|
|
22878
|
+
}], hiddenDesktop: [{
|
|
22879
|
+
type: Input,
|
|
22880
|
+
args: ['hidden--desktop']
|
|
22881
|
+
}], shownSr: [{
|
|
22882
|
+
type: Input,
|
|
22883
|
+
args: ['shown--sr']
|
|
22884
|
+
}], shownSrMobile: [{
|
|
22885
|
+
type: Input,
|
|
22886
|
+
args: ['shown--sr--mobile']
|
|
22887
|
+
}], shownSrTablet: [{
|
|
22888
|
+
type: Input,
|
|
22889
|
+
args: ['shown--sr--tablet']
|
|
22890
|
+
}], shownSrLaptop: [{
|
|
22891
|
+
type: Input,
|
|
22892
|
+
args: ['shown--sr--laptop']
|
|
22893
|
+
}], shownSrDesktop: [{
|
|
22894
|
+
type: Input,
|
|
22895
|
+
args: ['shown--sr--desktop']
|
|
22896
|
+
}], colSpan: [{
|
|
22897
|
+
type: Input,
|
|
22898
|
+
args: ['col-span']
|
|
22899
|
+
}], colSpanMobile: [{
|
|
22900
|
+
type: Input,
|
|
22901
|
+
args: ['col-span--mobile']
|
|
22902
|
+
}], colSpanTablet: [{
|
|
22903
|
+
type: Input,
|
|
22904
|
+
args: ['col-span--tablet']
|
|
22905
|
+
}], colSpanLaptop: [{
|
|
22906
|
+
type: Input,
|
|
22907
|
+
args: ['col-span--laptop']
|
|
22908
|
+
}], colSpanDesktop: [{
|
|
22909
|
+
type: Input,
|
|
22910
|
+
args: ['col-span--desktop']
|
|
22911
|
+
}], order: [{
|
|
22912
|
+
type: Input
|
|
22913
|
+
}], orderMobile: [{
|
|
22914
|
+
type: Input,
|
|
22915
|
+
args: ['order--mobile']
|
|
22916
|
+
}], orderTablet: [{
|
|
22917
|
+
type: Input,
|
|
22918
|
+
args: ['order--tablet']
|
|
22919
|
+
}], orderLaptop: [{
|
|
22920
|
+
type: Input,
|
|
22921
|
+
args: ['order--laptop']
|
|
22922
|
+
}], orderDesktop: [{
|
|
22923
|
+
type: Input,
|
|
22924
|
+
args: ['order--desktop']
|
|
22925
|
+
}], stickyTop: [{
|
|
22926
|
+
type: Input,
|
|
22927
|
+
args: ['sticky-top']
|
|
22928
|
+
}], stickyBottom: [{
|
|
22929
|
+
type: Input,
|
|
22930
|
+
args: ['sticky-bottom']
|
|
22931
|
+
}], wordBreakAll: [{
|
|
22932
|
+
type: Input,
|
|
22933
|
+
args: ['word-break-all']
|
|
22934
|
+
}], wordBreakAllMobile: [{
|
|
22935
|
+
type: Input,
|
|
22936
|
+
args: ['word-break-all--mobile']
|
|
22937
|
+
}], wordBreakAllTablet: [{
|
|
22938
|
+
type: Input,
|
|
22939
|
+
args: ['word-break-all--tablet']
|
|
22940
|
+
}], wordBreakAllLaptop: [{
|
|
22941
|
+
type: Input,
|
|
22942
|
+
args: ['word-break-all--laptop']
|
|
22943
|
+
}], wordBreakAllDesktop: [{
|
|
22944
|
+
type: Input,
|
|
22945
|
+
args: ['word-break-all--desktop']
|
|
22946
|
+
}] } });
|
|
22947
|
+
/**
|
|
22948
|
+
* @description Type-only wrapper for <px-spacer>
|
|
22949
|
+
*/
|
|
22950
|
+
class PxSpacer {
|
|
22951
|
+
elementRef;
|
|
22952
|
+
set grow(value) {
|
|
22953
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
22954
|
+
}
|
|
22955
|
+
get grow() {
|
|
22956
|
+
return this.elementRef.nativeElement['grow'];
|
|
22957
|
+
}
|
|
22958
|
+
set nogap(value) {
|
|
22959
|
+
this.elementRef.nativeElement['nogap'] = value;
|
|
22960
|
+
}
|
|
22961
|
+
get nogap() {
|
|
22962
|
+
return this.elementRef.nativeElement['nogap'];
|
|
22963
|
+
}
|
|
22964
|
+
constructor(elementRef) {
|
|
22965
|
+
this.elementRef = elementRef;
|
|
22966
|
+
}
|
|
22967
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpacer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22968
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpacer, isStandalone: true, selector: "px-spacer", inputs: { grow: "grow", nogap: "nogap" }, ngImport: i0 });
|
|
22969
|
+
}
|
|
22970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpacer, decorators: [{
|
|
22971
|
+
type: Directive,
|
|
22972
|
+
args: [{
|
|
22973
|
+
selector: 'px-spacer',
|
|
22974
|
+
standalone: true,
|
|
22975
|
+
}]
|
|
22976
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { grow: [{
|
|
22977
|
+
type: Input
|
|
22978
|
+
}], nogap: [{
|
|
22979
|
+
type: Input
|
|
22980
|
+
}] } });
|
|
22981
|
+
/**
|
|
22982
|
+
* @description Type-only wrapper for <px-stack>
|
|
22983
|
+
*/
|
|
22984
|
+
class PxStack {
|
|
22985
|
+
elementRef;
|
|
22986
|
+
set direction(value) {
|
|
22987
|
+
this.elementRef.nativeElement['direction'] = value;
|
|
22988
|
+
}
|
|
22989
|
+
get direction() {
|
|
22990
|
+
return this.elementRef.nativeElement['direction'];
|
|
22991
|
+
}
|
|
22992
|
+
set directionMobile(value) {
|
|
22993
|
+
this.elementRef.nativeElement['directionMobile'] = value;
|
|
22994
|
+
}
|
|
22995
|
+
get directionMobile() {
|
|
22996
|
+
return this.elementRef.nativeElement['directionMobile'];
|
|
22997
|
+
}
|
|
22998
|
+
set directionTablet(value) {
|
|
22999
|
+
this.elementRef.nativeElement['directionTablet'] = value;
|
|
23000
|
+
}
|
|
23001
|
+
get directionTablet() {
|
|
23002
|
+
return this.elementRef.nativeElement['directionTablet'];
|
|
23003
|
+
}
|
|
23004
|
+
set directionLaptop(value) {
|
|
23005
|
+
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
23006
|
+
}
|
|
23007
|
+
get directionLaptop() {
|
|
23008
|
+
return this.elementRef.nativeElement['directionLaptop'];
|
|
23009
|
+
}
|
|
23010
|
+
set directionDesktop(value) {
|
|
23011
|
+
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
23012
|
+
}
|
|
23013
|
+
get directionDesktop() {
|
|
23014
|
+
return this.elementRef.nativeElement['directionDesktop'];
|
|
23015
|
+
}
|
|
23016
|
+
set gap(value) {
|
|
23017
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
23018
|
+
}
|
|
23019
|
+
get gap() {
|
|
23020
|
+
return this.elementRef.nativeElement['gap'];
|
|
23021
|
+
}
|
|
23022
|
+
set gapMobile(value) {
|
|
23023
|
+
this.elementRef.nativeElement['gapMobile'] = value;
|
|
23024
|
+
}
|
|
23025
|
+
get gapMobile() {
|
|
23026
|
+
return this.elementRef.nativeElement['gapMobile'];
|
|
23027
|
+
}
|
|
23028
|
+
set gapTablet(value) {
|
|
23029
|
+
this.elementRef.nativeElement['gapTablet'] = value;
|
|
23030
|
+
}
|
|
23031
|
+
get gapTablet() {
|
|
23032
|
+
return this.elementRef.nativeElement['gapTablet'];
|
|
23033
|
+
}
|
|
23034
|
+
set gapLaptop(value) {
|
|
23035
|
+
this.elementRef.nativeElement['gapLaptop'] = value;
|
|
23036
|
+
}
|
|
23037
|
+
get gapLaptop() {
|
|
23038
|
+
return this.elementRef.nativeElement['gapLaptop'];
|
|
23039
|
+
}
|
|
23040
|
+
set gapDesktop(value) {
|
|
23041
|
+
this.elementRef.nativeElement['gapDesktop'] = value;
|
|
23042
|
+
}
|
|
23043
|
+
get gapDesktop() {
|
|
23044
|
+
return this.elementRef.nativeElement['gapDesktop'];
|
|
23045
|
+
}
|
|
23046
|
+
set justifyContent(value) {
|
|
23047
|
+
this.elementRef.nativeElement['justifyContent'] = value;
|
|
23048
|
+
}
|
|
23049
|
+
get justifyContent() {
|
|
23050
|
+
return this.elementRef.nativeElement['justifyContent'];
|
|
23051
|
+
}
|
|
23052
|
+
set justifyContentMobile(value) {
|
|
23053
|
+
this.elementRef.nativeElement['justifyContentMobile'] = value;
|
|
23054
|
+
}
|
|
23055
|
+
get justifyContentMobile() {
|
|
23056
|
+
return this.elementRef.nativeElement['justifyContentMobile'];
|
|
23057
|
+
}
|
|
23058
|
+
set justifyContentTablet(value) {
|
|
23059
|
+
this.elementRef.nativeElement['justifyContentTablet'] = value;
|
|
23060
|
+
}
|
|
23061
|
+
get justifyContentTablet() {
|
|
23062
|
+
return this.elementRef.nativeElement['justifyContentTablet'];
|
|
23063
|
+
}
|
|
23064
|
+
set justifyContentLaptop(value) {
|
|
23065
|
+
this.elementRef.nativeElement['justifyContentLaptop'] = value;
|
|
23066
|
+
}
|
|
23067
|
+
get justifyContentLaptop() {
|
|
23068
|
+
return this.elementRef.nativeElement['justifyContentLaptop'];
|
|
23069
|
+
}
|
|
23070
|
+
set justifyContentDesktop(value) {
|
|
23071
|
+
this.elementRef.nativeElement['justifyContentDesktop'] = value;
|
|
23072
|
+
}
|
|
23073
|
+
get justifyContentDesktop() {
|
|
23074
|
+
return this.elementRef.nativeElement['justifyContentDesktop'];
|
|
23075
|
+
}
|
|
23076
|
+
set alignItems(value) {
|
|
23077
|
+
this.elementRef.nativeElement['alignItems'] = value;
|
|
23078
|
+
}
|
|
23079
|
+
get alignItems() {
|
|
23080
|
+
return this.elementRef.nativeElement['alignItems'];
|
|
23081
|
+
}
|
|
23082
|
+
set alignItemsMobile(value) {
|
|
23083
|
+
this.elementRef.nativeElement['alignItemsMobile'] = value;
|
|
23084
|
+
}
|
|
23085
|
+
get alignItemsMobile() {
|
|
23086
|
+
return this.elementRef.nativeElement['alignItemsMobile'];
|
|
23087
|
+
}
|
|
23088
|
+
set alignItemsTablet(value) {
|
|
23089
|
+
this.elementRef.nativeElement['alignItemsTablet'] = value;
|
|
23090
|
+
}
|
|
23091
|
+
get alignItemsTablet() {
|
|
23092
|
+
return this.elementRef.nativeElement['alignItemsTablet'];
|
|
23093
|
+
}
|
|
23094
|
+
set alignItemsLaptop(value) {
|
|
23095
|
+
this.elementRef.nativeElement['alignItemsLaptop'] = value;
|
|
23096
|
+
}
|
|
23097
|
+
get alignItemsLaptop() {
|
|
23098
|
+
return this.elementRef.nativeElement['alignItemsLaptop'];
|
|
23099
|
+
}
|
|
23100
|
+
set alignItemsDesktop(value) {
|
|
23101
|
+
this.elementRef.nativeElement['alignItemsDesktop'] = value;
|
|
23102
|
+
}
|
|
23103
|
+
get alignItemsDesktop() {
|
|
23104
|
+
return this.elementRef.nativeElement['alignItemsDesktop'];
|
|
23105
|
+
}
|
|
23106
|
+
set wrap(value) {
|
|
23107
|
+
this.elementRef.nativeElement['wrap'] = value;
|
|
22516
23108
|
}
|
|
22517
23109
|
get wrap() {
|
|
22518
23110
|
return this.elementRef.nativeElement['wrap'];
|
|
@@ -30313,250 +30905,106 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
30313
30905
|
args: ['justify-self']
|
|
30314
30906
|
}], justifySelfMobile: [{
|
|
30315
30907
|
type: Input,
|
|
30316
|
-
args: ['justify-self--mobile']
|
|
30317
|
-
}], justifySelfTablet: [{
|
|
30318
|
-
type: Input,
|
|
30319
|
-
args: ['justify-self--tablet']
|
|
30320
|
-
}], justifySelfLaptop: [{
|
|
30321
|
-
type: Input,
|
|
30322
|
-
args: ['justify-self--laptop']
|
|
30323
|
-
}], justifySelfDesktop: [{
|
|
30324
|
-
type: Input,
|
|
30325
|
-
args: ['justify-self--desktop']
|
|
30326
|
-
}], hidden: [{
|
|
30327
|
-
type: Input
|
|
30328
|
-
}], hiddenMobile: [{
|
|
30329
|
-
type: Input,
|
|
30330
|
-
args: ['hidden--mobile']
|
|
30331
|
-
}], hiddenTablet: [{
|
|
30332
|
-
type: Input,
|
|
30333
|
-
args: ['hidden--tablet']
|
|
30334
|
-
}], hiddenLaptop: [{
|
|
30335
|
-
type: Input,
|
|
30336
|
-
args: ['hidden--laptop']
|
|
30337
|
-
}], hiddenDesktop: [{
|
|
30338
|
-
type: Input,
|
|
30339
|
-
args: ['hidden--desktop']
|
|
30340
|
-
}], shownSr: [{
|
|
30341
|
-
type: Input,
|
|
30342
|
-
args: ['shown--sr']
|
|
30343
|
-
}], shownSrMobile: [{
|
|
30344
|
-
type: Input,
|
|
30345
|
-
args: ['shown--sr--mobile']
|
|
30346
|
-
}], shownSrTablet: [{
|
|
30347
|
-
type: Input,
|
|
30348
|
-
args: ['shown--sr--tablet']
|
|
30349
|
-
}], shownSrLaptop: [{
|
|
30350
|
-
type: Input,
|
|
30351
|
-
args: ['shown--sr--laptop']
|
|
30352
|
-
}], shownSrDesktop: [{
|
|
30353
|
-
type: Input,
|
|
30354
|
-
args: ['shown--sr--desktop']
|
|
30355
|
-
}], colSpan: [{
|
|
30356
|
-
type: Input,
|
|
30357
|
-
args: ['col-span']
|
|
30358
|
-
}], colSpanMobile: [{
|
|
30359
|
-
type: Input,
|
|
30360
|
-
args: ['col-span--mobile']
|
|
30361
|
-
}], colSpanTablet: [{
|
|
30362
|
-
type: Input,
|
|
30363
|
-
args: ['col-span--tablet']
|
|
30364
|
-
}], colSpanLaptop: [{
|
|
30365
|
-
type: Input,
|
|
30366
|
-
args: ['col-span--laptop']
|
|
30367
|
-
}], colSpanDesktop: [{
|
|
30368
|
-
type: Input,
|
|
30369
|
-
args: ['col-span--desktop']
|
|
30370
|
-
}], order: [{
|
|
30371
|
-
type: Input
|
|
30372
|
-
}], orderMobile: [{
|
|
30373
|
-
type: Input,
|
|
30374
|
-
args: ['order--mobile']
|
|
30375
|
-
}], orderTablet: [{
|
|
30376
|
-
type: Input,
|
|
30377
|
-
args: ['order--tablet']
|
|
30378
|
-
}], orderLaptop: [{
|
|
30379
|
-
type: Input,
|
|
30380
|
-
args: ['order--laptop']
|
|
30381
|
-
}], orderDesktop: [{
|
|
30382
|
-
type: Input,
|
|
30383
|
-
args: ['order--desktop']
|
|
30384
|
-
}], stickyTop: [{
|
|
30385
|
-
type: Input,
|
|
30386
|
-
args: ['sticky-top']
|
|
30387
|
-
}], stickyBottom: [{
|
|
30388
|
-
type: Input,
|
|
30389
|
-
args: ['sticky-bottom']
|
|
30390
|
-
}], wordBreakAll: [{
|
|
30391
|
-
type: Input,
|
|
30392
|
-
args: ['word-break-all']
|
|
30393
|
-
}], wordBreakAllMobile: [{
|
|
30394
|
-
type: Input,
|
|
30395
|
-
args: ['word-break-all--mobile']
|
|
30396
|
-
}], wordBreakAllTablet: [{
|
|
30397
|
-
type: Input,
|
|
30398
|
-
args: ['word-break-all--tablet']
|
|
30399
|
-
}], wordBreakAllLaptop: [{
|
|
30400
|
-
type: Input,
|
|
30401
|
-
args: ['word-break-all--laptop']
|
|
30402
|
-
}], wordBreakAllDesktop: [{
|
|
30403
|
-
type: Input,
|
|
30404
|
-
args: ['word-break-all--desktop']
|
|
30405
|
-
}] } });
|
|
30406
|
-
/**
|
|
30407
|
-
* @description Type-only wrapper for <px-
|
|
30408
|
-
*/
|
|
30409
|
-
class
|
|
30410
|
-
elementRef;
|
|
30411
|
-
set
|
|
30412
|
-
this.elementRef.nativeElement['
|
|
30413
|
-
}
|
|
30414
|
-
get backgroundColor() {
|
|
30415
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
30416
|
-
}
|
|
30417
|
-
set backgroundGradient(value) {
|
|
30418
|
-
this.elementRef.nativeElement['backgroundGradient'] = value;
|
|
30419
|
-
}
|
|
30420
|
-
get backgroundGradient() {
|
|
30421
|
-
return this.elementRef.nativeElement['backgroundGradient'];
|
|
30422
|
-
}
|
|
30423
|
-
set backgroundImage(value) {
|
|
30424
|
-
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
30425
|
-
}
|
|
30426
|
-
get backgroundImage() {
|
|
30427
|
-
return this.elementRef.nativeElement['backgroundImage'];
|
|
30428
|
-
}
|
|
30429
|
-
set backgroundImageMobile(value) {
|
|
30430
|
-
this.elementRef.nativeElement['backgroundImageMobile'] = value;
|
|
30431
|
-
}
|
|
30432
|
-
get backgroundImageMobile() {
|
|
30433
|
-
return this.elementRef.nativeElement['backgroundImageMobile'];
|
|
30434
|
-
}
|
|
30435
|
-
set backgroundImageTablet(value) {
|
|
30436
|
-
this.elementRef.nativeElement['backgroundImageTablet'] = value;
|
|
30437
|
-
}
|
|
30438
|
-
get backgroundImageTablet() {
|
|
30439
|
-
return this.elementRef.nativeElement['backgroundImageTablet'];
|
|
30440
|
-
}
|
|
30441
|
-
set backgroundImageLaptop(value) {
|
|
30442
|
-
this.elementRef.nativeElement['backgroundImageLaptop'] = value;
|
|
30443
|
-
}
|
|
30444
|
-
get backgroundImageLaptop() {
|
|
30445
|
-
return this.elementRef.nativeElement['backgroundImageLaptop'];
|
|
30446
|
-
}
|
|
30447
|
-
set backgroundSize(value) {
|
|
30448
|
-
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
30449
|
-
}
|
|
30450
|
-
get backgroundSize() {
|
|
30451
|
-
return this.elementRef.nativeElement['backgroundSize'];
|
|
30452
|
-
}
|
|
30453
|
-
set backgroundPosition(value) {
|
|
30454
|
-
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
30455
|
-
}
|
|
30456
|
-
get backgroundPosition() {
|
|
30457
|
-
return this.elementRef.nativeElement['backgroundPosition'];
|
|
30458
|
-
}
|
|
30459
|
-
set paddingBlock(value) {
|
|
30460
|
-
this.elementRef.nativeElement['paddingBlock'] = value;
|
|
30461
|
-
}
|
|
30462
|
-
get paddingBlock() {
|
|
30463
|
-
return this.elementRef.nativeElement['paddingBlock'];
|
|
30464
|
-
}
|
|
30465
|
-
set paddingTop(value) {
|
|
30466
|
-
this.elementRef.nativeElement['paddingTop'] = value;
|
|
30467
|
-
}
|
|
30468
|
-
get paddingTop() {
|
|
30469
|
-
return this.elementRef.nativeElement['paddingTop'];
|
|
30470
|
-
}
|
|
30471
|
-
set paddingBottom(value) {
|
|
30472
|
-
this.elementRef.nativeElement['paddingBottom'] = value;
|
|
30473
|
-
}
|
|
30474
|
-
get paddingBottom() {
|
|
30475
|
-
return this.elementRef.nativeElement['paddingBottom'];
|
|
30476
|
-
}
|
|
30477
|
-
set paddingBlockMobile(value) {
|
|
30478
|
-
this.elementRef.nativeElement['paddingBlockMobile'] = value;
|
|
30479
|
-
}
|
|
30480
|
-
get paddingBlockMobile() {
|
|
30481
|
-
return this.elementRef.nativeElement['paddingBlockMobile'];
|
|
30482
|
-
}
|
|
30483
|
-
set paddingTopMobile(value) {
|
|
30484
|
-
this.elementRef.nativeElement['paddingTopMobile'] = value;
|
|
30485
|
-
}
|
|
30486
|
-
get paddingTopMobile() {
|
|
30487
|
-
return this.elementRef.nativeElement['paddingTopMobile'];
|
|
30488
|
-
}
|
|
30489
|
-
set paddingBottomMobile(value) {
|
|
30490
|
-
this.elementRef.nativeElement['paddingBottomMobile'] = value;
|
|
30491
|
-
}
|
|
30492
|
-
get paddingBottomMobile() {
|
|
30493
|
-
return this.elementRef.nativeElement['paddingBottomMobile'];
|
|
30494
|
-
}
|
|
30495
|
-
set paddingBlockTablet(value) {
|
|
30496
|
-
this.elementRef.nativeElement['paddingBlockTablet'] = value;
|
|
30497
|
-
}
|
|
30498
|
-
get paddingBlockTablet() {
|
|
30499
|
-
return this.elementRef.nativeElement['paddingBlockTablet'];
|
|
30500
|
-
}
|
|
30501
|
-
set paddingTopTablet(value) {
|
|
30502
|
-
this.elementRef.nativeElement['paddingTopTablet'] = value;
|
|
30503
|
-
}
|
|
30504
|
-
get paddingTopTablet() {
|
|
30505
|
-
return this.elementRef.nativeElement['paddingTopTablet'];
|
|
30506
|
-
}
|
|
30507
|
-
set paddingBottomTablet(value) {
|
|
30508
|
-
this.elementRef.nativeElement['paddingBottomTablet'] = value;
|
|
30509
|
-
}
|
|
30510
|
-
get paddingBottomTablet() {
|
|
30511
|
-
return this.elementRef.nativeElement['paddingBottomTablet'];
|
|
30512
|
-
}
|
|
30513
|
-
set paddingBlockLaptop(value) {
|
|
30514
|
-
this.elementRef.nativeElement['paddingBlockLaptop'] = value;
|
|
30515
|
-
}
|
|
30516
|
-
get paddingBlockLaptop() {
|
|
30517
|
-
return this.elementRef.nativeElement['paddingBlockLaptop'];
|
|
30518
|
-
}
|
|
30519
|
-
set paddingTopLaptop(value) {
|
|
30520
|
-
this.elementRef.nativeElement['paddingTopLaptop'] = value;
|
|
30521
|
-
}
|
|
30522
|
-
get paddingTopLaptop() {
|
|
30523
|
-
return this.elementRef.nativeElement['paddingTopLaptop'];
|
|
30524
|
-
}
|
|
30525
|
-
set paddingBottomLaptop(value) {
|
|
30526
|
-
this.elementRef.nativeElement['paddingBottomLaptop'] = value;
|
|
30527
|
-
}
|
|
30528
|
-
get paddingBottomLaptop() {
|
|
30529
|
-
return this.elementRef.nativeElement['paddingBottomLaptop'];
|
|
30530
|
-
}
|
|
30531
|
-
set border(value) {
|
|
30532
|
-
this.elementRef.nativeElement['border'] = value;
|
|
30533
|
-
}
|
|
30534
|
-
get border() {
|
|
30535
|
-
return this.elementRef.nativeElement['border'];
|
|
30536
|
-
}
|
|
30537
|
-
set borderSide(value) {
|
|
30538
|
-
this.elementRef.nativeElement['borderSide'] = value;
|
|
30539
|
-
}
|
|
30540
|
-
get borderSide() {
|
|
30541
|
-
return this.elementRef.nativeElement['borderSide'];
|
|
30542
|
-
}
|
|
30543
|
-
set borderSideMobile(value) {
|
|
30544
|
-
this.elementRef.nativeElement['borderSideMobile'] = value;
|
|
30545
|
-
}
|
|
30546
|
-
get borderSideMobile() {
|
|
30547
|
-
return this.elementRef.nativeElement['borderSideMobile'];
|
|
30548
|
-
}
|
|
30549
|
-
set borderSideTablet(value) {
|
|
30550
|
-
this.elementRef.nativeElement['borderSideTablet'] = value;
|
|
30551
|
-
}
|
|
30552
|
-
get borderSideTablet() {
|
|
30553
|
-
return this.elementRef.nativeElement['borderSideTablet'];
|
|
30554
|
-
}
|
|
30555
|
-
set borderSideLaptop(value) {
|
|
30556
|
-
this.elementRef.nativeElement['borderSideLaptop'] = value;
|
|
30908
|
+
args: ['justify-self--mobile']
|
|
30909
|
+
}], justifySelfTablet: [{
|
|
30910
|
+
type: Input,
|
|
30911
|
+
args: ['justify-self--tablet']
|
|
30912
|
+
}], justifySelfLaptop: [{
|
|
30913
|
+
type: Input,
|
|
30914
|
+
args: ['justify-self--laptop']
|
|
30915
|
+
}], justifySelfDesktop: [{
|
|
30916
|
+
type: Input,
|
|
30917
|
+
args: ['justify-self--desktop']
|
|
30918
|
+
}], hidden: [{
|
|
30919
|
+
type: Input
|
|
30920
|
+
}], hiddenMobile: [{
|
|
30921
|
+
type: Input,
|
|
30922
|
+
args: ['hidden--mobile']
|
|
30923
|
+
}], hiddenTablet: [{
|
|
30924
|
+
type: Input,
|
|
30925
|
+
args: ['hidden--tablet']
|
|
30926
|
+
}], hiddenLaptop: [{
|
|
30927
|
+
type: Input,
|
|
30928
|
+
args: ['hidden--laptop']
|
|
30929
|
+
}], hiddenDesktop: [{
|
|
30930
|
+
type: Input,
|
|
30931
|
+
args: ['hidden--desktop']
|
|
30932
|
+
}], shownSr: [{
|
|
30933
|
+
type: Input,
|
|
30934
|
+
args: ['shown--sr']
|
|
30935
|
+
}], shownSrMobile: [{
|
|
30936
|
+
type: Input,
|
|
30937
|
+
args: ['shown--sr--mobile']
|
|
30938
|
+
}], shownSrTablet: [{
|
|
30939
|
+
type: Input,
|
|
30940
|
+
args: ['shown--sr--tablet']
|
|
30941
|
+
}], shownSrLaptop: [{
|
|
30942
|
+
type: Input,
|
|
30943
|
+
args: ['shown--sr--laptop']
|
|
30944
|
+
}], shownSrDesktop: [{
|
|
30945
|
+
type: Input,
|
|
30946
|
+
args: ['shown--sr--desktop']
|
|
30947
|
+
}], colSpan: [{
|
|
30948
|
+
type: Input,
|
|
30949
|
+
args: ['col-span']
|
|
30950
|
+
}], colSpanMobile: [{
|
|
30951
|
+
type: Input,
|
|
30952
|
+
args: ['col-span--mobile']
|
|
30953
|
+
}], colSpanTablet: [{
|
|
30954
|
+
type: Input,
|
|
30955
|
+
args: ['col-span--tablet']
|
|
30956
|
+
}], colSpanLaptop: [{
|
|
30957
|
+
type: Input,
|
|
30958
|
+
args: ['col-span--laptop']
|
|
30959
|
+
}], colSpanDesktop: [{
|
|
30960
|
+
type: Input,
|
|
30961
|
+
args: ['col-span--desktop']
|
|
30962
|
+
}], order: [{
|
|
30963
|
+
type: Input
|
|
30964
|
+
}], orderMobile: [{
|
|
30965
|
+
type: Input,
|
|
30966
|
+
args: ['order--mobile']
|
|
30967
|
+
}], orderTablet: [{
|
|
30968
|
+
type: Input,
|
|
30969
|
+
args: ['order--tablet']
|
|
30970
|
+
}], orderLaptop: [{
|
|
30971
|
+
type: Input,
|
|
30972
|
+
args: ['order--laptop']
|
|
30973
|
+
}], orderDesktop: [{
|
|
30974
|
+
type: Input,
|
|
30975
|
+
args: ['order--desktop']
|
|
30976
|
+
}], stickyTop: [{
|
|
30977
|
+
type: Input,
|
|
30978
|
+
args: ['sticky-top']
|
|
30979
|
+
}], stickyBottom: [{
|
|
30980
|
+
type: Input,
|
|
30981
|
+
args: ['sticky-bottom']
|
|
30982
|
+
}], wordBreakAll: [{
|
|
30983
|
+
type: Input,
|
|
30984
|
+
args: ['word-break-all']
|
|
30985
|
+
}], wordBreakAllMobile: [{
|
|
30986
|
+
type: Input,
|
|
30987
|
+
args: ['word-break-all--mobile']
|
|
30988
|
+
}], wordBreakAllTablet: [{
|
|
30989
|
+
type: Input,
|
|
30990
|
+
args: ['word-break-all--tablet']
|
|
30991
|
+
}], wordBreakAllLaptop: [{
|
|
30992
|
+
type: Input,
|
|
30993
|
+
args: ['word-break-all--laptop']
|
|
30994
|
+
}], wordBreakAllDesktop: [{
|
|
30995
|
+
type: Input,
|
|
30996
|
+
args: ['word-break-all--desktop']
|
|
30997
|
+
}] } });
|
|
30998
|
+
/**
|
|
30999
|
+
* @description Type-only wrapper for <px-ribbon>
|
|
31000
|
+
*/
|
|
31001
|
+
class PxRibbon {
|
|
31002
|
+
elementRef;
|
|
31003
|
+
set inverted(value) {
|
|
31004
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
30557
31005
|
}
|
|
30558
|
-
get
|
|
30559
|
-
return this.elementRef.nativeElement['
|
|
31006
|
+
get inverted() {
|
|
31007
|
+
return this.elementRef.nativeElement['inverted'];
|
|
30560
31008
|
}
|
|
30561
31009
|
set grow(value) {
|
|
30562
31010
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -30873,89 +31321,17 @@ class PxSection {
|
|
|
30873
31321
|
constructor(elementRef) {
|
|
30874
31322
|
this.elementRef = elementRef;
|
|
30875
31323
|
}
|
|
30876
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30877
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
31324
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRibbon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
31325
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxRibbon, isStandalone: true, selector: "px-ribbon", inputs: { inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
30878
31326
|
}
|
|
30879
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
31327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRibbon, decorators: [{
|
|
30880
31328
|
type: Directive,
|
|
30881
31329
|
args: [{
|
|
30882
|
-
selector: 'px-
|
|
31330
|
+
selector: 'px-ribbon',
|
|
30883
31331
|
standalone: true,
|
|
30884
31332
|
}]
|
|
30885
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
30886
|
-
type: Input,
|
|
30887
|
-
args: ['background-color']
|
|
30888
|
-
}], backgroundGradient: [{
|
|
30889
|
-
type: Input,
|
|
30890
|
-
args: ['background-gradient']
|
|
30891
|
-
}], backgroundImage: [{
|
|
30892
|
-
type: Input,
|
|
30893
|
-
args: ['background-image']
|
|
30894
|
-
}], backgroundImageMobile: [{
|
|
30895
|
-
type: Input,
|
|
30896
|
-
args: ['background-image--mobile']
|
|
30897
|
-
}], backgroundImageTablet: [{
|
|
30898
|
-
type: Input,
|
|
30899
|
-
args: ['background-image--tablet']
|
|
30900
|
-
}], backgroundImageLaptop: [{
|
|
30901
|
-
type: Input,
|
|
30902
|
-
args: ['background-image--laptop']
|
|
30903
|
-
}], backgroundSize: [{
|
|
30904
|
-
type: Input,
|
|
30905
|
-
args: ['background-size']
|
|
30906
|
-
}], backgroundPosition: [{
|
|
30907
|
-
type: Input,
|
|
30908
|
-
args: ['background-position']
|
|
30909
|
-
}], paddingBlock: [{
|
|
30910
|
-
type: Input,
|
|
30911
|
-
args: ['padding-block']
|
|
30912
|
-
}], paddingTop: [{
|
|
30913
|
-
type: Input,
|
|
30914
|
-
args: ['padding-top']
|
|
30915
|
-
}], paddingBottom: [{
|
|
30916
|
-
type: Input,
|
|
30917
|
-
args: ['padding-bottom']
|
|
30918
|
-
}], paddingBlockMobile: [{
|
|
30919
|
-
type: Input,
|
|
30920
|
-
args: ['padding-block--mobile']
|
|
30921
|
-
}], paddingTopMobile: [{
|
|
30922
|
-
type: Input,
|
|
30923
|
-
args: ['padding-top--mobile']
|
|
30924
|
-
}], paddingBottomMobile: [{
|
|
30925
|
-
type: Input,
|
|
30926
|
-
args: ['padding-bottom--mobile']
|
|
30927
|
-
}], paddingBlockTablet: [{
|
|
30928
|
-
type: Input,
|
|
30929
|
-
args: ['padding-block--tablet']
|
|
30930
|
-
}], paddingTopTablet: [{
|
|
30931
|
-
type: Input,
|
|
30932
|
-
args: ['padding-top--tablet']
|
|
30933
|
-
}], paddingBottomTablet: [{
|
|
30934
|
-
type: Input,
|
|
30935
|
-
args: ['padding-bottom--tablet']
|
|
30936
|
-
}], paddingBlockLaptop: [{
|
|
30937
|
-
type: Input,
|
|
30938
|
-
args: ['padding-block--laptop']
|
|
30939
|
-
}], paddingTopLaptop: [{
|
|
30940
|
-
type: Input,
|
|
30941
|
-
args: ['padding-top--laptop']
|
|
30942
|
-
}], paddingBottomLaptop: [{
|
|
30943
|
-
type: Input,
|
|
30944
|
-
args: ['padding-bottom--laptop']
|
|
30945
|
-
}], border: [{
|
|
31333
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
30946
31334
|
type: Input
|
|
30947
|
-
}], borderSide: [{
|
|
30948
|
-
type: Input,
|
|
30949
|
-
args: ['border-side']
|
|
30950
|
-
}], borderSideMobile: [{
|
|
30951
|
-
type: Input,
|
|
30952
|
-
args: ['border-side--mobile']
|
|
30953
|
-
}], borderSideTablet: [{
|
|
30954
|
-
type: Input,
|
|
30955
|
-
args: ['border-side--tablet']
|
|
30956
|
-
}], borderSideLaptop: [{
|
|
30957
|
-
type: Input,
|
|
30958
|
-
args: ['border-side--laptop']
|
|
30959
31335
|
}], grow: [{
|
|
30960
31336
|
type: Input
|
|
30961
31337
|
}], growMobile: [{
|
|
@@ -31109,15 +31485,159 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
31109
31485
|
args: ['word-break-all--desktop']
|
|
31110
31486
|
}] } });
|
|
31111
31487
|
/**
|
|
31112
|
-
* @description Type-only wrapper for <px-
|
|
31488
|
+
* @description Type-only wrapper for <px-section>
|
|
31113
31489
|
*/
|
|
31114
|
-
class
|
|
31490
|
+
class PxSection {
|
|
31115
31491
|
elementRef;
|
|
31116
|
-
set
|
|
31117
|
-
this.elementRef.nativeElement['
|
|
31492
|
+
set backgroundColor(value) {
|
|
31493
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
31494
|
+
}
|
|
31495
|
+
get backgroundColor() {
|
|
31496
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
31497
|
+
}
|
|
31498
|
+
set backgroundGradient(value) {
|
|
31499
|
+
this.elementRef.nativeElement['backgroundGradient'] = value;
|
|
31500
|
+
}
|
|
31501
|
+
get backgroundGradient() {
|
|
31502
|
+
return this.elementRef.nativeElement['backgroundGradient'];
|
|
31503
|
+
}
|
|
31504
|
+
set backgroundImage(value) {
|
|
31505
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
31506
|
+
}
|
|
31507
|
+
get backgroundImage() {
|
|
31508
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
31509
|
+
}
|
|
31510
|
+
set backgroundImageMobile(value) {
|
|
31511
|
+
this.elementRef.nativeElement['backgroundImageMobile'] = value;
|
|
31512
|
+
}
|
|
31513
|
+
get backgroundImageMobile() {
|
|
31514
|
+
return this.elementRef.nativeElement['backgroundImageMobile'];
|
|
31515
|
+
}
|
|
31516
|
+
set backgroundImageTablet(value) {
|
|
31517
|
+
this.elementRef.nativeElement['backgroundImageTablet'] = value;
|
|
31518
|
+
}
|
|
31519
|
+
get backgroundImageTablet() {
|
|
31520
|
+
return this.elementRef.nativeElement['backgroundImageTablet'];
|
|
31521
|
+
}
|
|
31522
|
+
set backgroundImageLaptop(value) {
|
|
31523
|
+
this.elementRef.nativeElement['backgroundImageLaptop'] = value;
|
|
31524
|
+
}
|
|
31525
|
+
get backgroundImageLaptop() {
|
|
31526
|
+
return this.elementRef.nativeElement['backgroundImageLaptop'];
|
|
31527
|
+
}
|
|
31528
|
+
set backgroundSize(value) {
|
|
31529
|
+
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
31530
|
+
}
|
|
31531
|
+
get backgroundSize() {
|
|
31532
|
+
return this.elementRef.nativeElement['backgroundSize'];
|
|
31533
|
+
}
|
|
31534
|
+
set backgroundPosition(value) {
|
|
31535
|
+
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
31536
|
+
}
|
|
31537
|
+
get backgroundPosition() {
|
|
31538
|
+
return this.elementRef.nativeElement['backgroundPosition'];
|
|
31539
|
+
}
|
|
31540
|
+
set paddingBlock(value) {
|
|
31541
|
+
this.elementRef.nativeElement['paddingBlock'] = value;
|
|
31542
|
+
}
|
|
31543
|
+
get paddingBlock() {
|
|
31544
|
+
return this.elementRef.nativeElement['paddingBlock'];
|
|
31545
|
+
}
|
|
31546
|
+
set paddingTop(value) {
|
|
31547
|
+
this.elementRef.nativeElement['paddingTop'] = value;
|
|
31548
|
+
}
|
|
31549
|
+
get paddingTop() {
|
|
31550
|
+
return this.elementRef.nativeElement['paddingTop'];
|
|
31551
|
+
}
|
|
31552
|
+
set paddingBottom(value) {
|
|
31553
|
+
this.elementRef.nativeElement['paddingBottom'] = value;
|
|
31554
|
+
}
|
|
31555
|
+
get paddingBottom() {
|
|
31556
|
+
return this.elementRef.nativeElement['paddingBottom'];
|
|
31557
|
+
}
|
|
31558
|
+
set paddingBlockMobile(value) {
|
|
31559
|
+
this.elementRef.nativeElement['paddingBlockMobile'] = value;
|
|
31118
31560
|
}
|
|
31119
|
-
get
|
|
31120
|
-
return this.elementRef.nativeElement['
|
|
31561
|
+
get paddingBlockMobile() {
|
|
31562
|
+
return this.elementRef.nativeElement['paddingBlockMobile'];
|
|
31563
|
+
}
|
|
31564
|
+
set paddingTopMobile(value) {
|
|
31565
|
+
this.elementRef.nativeElement['paddingTopMobile'] = value;
|
|
31566
|
+
}
|
|
31567
|
+
get paddingTopMobile() {
|
|
31568
|
+
return this.elementRef.nativeElement['paddingTopMobile'];
|
|
31569
|
+
}
|
|
31570
|
+
set paddingBottomMobile(value) {
|
|
31571
|
+
this.elementRef.nativeElement['paddingBottomMobile'] = value;
|
|
31572
|
+
}
|
|
31573
|
+
get paddingBottomMobile() {
|
|
31574
|
+
return this.elementRef.nativeElement['paddingBottomMobile'];
|
|
31575
|
+
}
|
|
31576
|
+
set paddingBlockTablet(value) {
|
|
31577
|
+
this.elementRef.nativeElement['paddingBlockTablet'] = value;
|
|
31578
|
+
}
|
|
31579
|
+
get paddingBlockTablet() {
|
|
31580
|
+
return this.elementRef.nativeElement['paddingBlockTablet'];
|
|
31581
|
+
}
|
|
31582
|
+
set paddingTopTablet(value) {
|
|
31583
|
+
this.elementRef.nativeElement['paddingTopTablet'] = value;
|
|
31584
|
+
}
|
|
31585
|
+
get paddingTopTablet() {
|
|
31586
|
+
return this.elementRef.nativeElement['paddingTopTablet'];
|
|
31587
|
+
}
|
|
31588
|
+
set paddingBottomTablet(value) {
|
|
31589
|
+
this.elementRef.nativeElement['paddingBottomTablet'] = value;
|
|
31590
|
+
}
|
|
31591
|
+
get paddingBottomTablet() {
|
|
31592
|
+
return this.elementRef.nativeElement['paddingBottomTablet'];
|
|
31593
|
+
}
|
|
31594
|
+
set paddingBlockLaptop(value) {
|
|
31595
|
+
this.elementRef.nativeElement['paddingBlockLaptop'] = value;
|
|
31596
|
+
}
|
|
31597
|
+
get paddingBlockLaptop() {
|
|
31598
|
+
return this.elementRef.nativeElement['paddingBlockLaptop'];
|
|
31599
|
+
}
|
|
31600
|
+
set paddingTopLaptop(value) {
|
|
31601
|
+
this.elementRef.nativeElement['paddingTopLaptop'] = value;
|
|
31602
|
+
}
|
|
31603
|
+
get paddingTopLaptop() {
|
|
31604
|
+
return this.elementRef.nativeElement['paddingTopLaptop'];
|
|
31605
|
+
}
|
|
31606
|
+
set paddingBottomLaptop(value) {
|
|
31607
|
+
this.elementRef.nativeElement['paddingBottomLaptop'] = value;
|
|
31608
|
+
}
|
|
31609
|
+
get paddingBottomLaptop() {
|
|
31610
|
+
return this.elementRef.nativeElement['paddingBottomLaptop'];
|
|
31611
|
+
}
|
|
31612
|
+
set border(value) {
|
|
31613
|
+
this.elementRef.nativeElement['border'] = value;
|
|
31614
|
+
}
|
|
31615
|
+
get border() {
|
|
31616
|
+
return this.elementRef.nativeElement['border'];
|
|
31617
|
+
}
|
|
31618
|
+
set borderSide(value) {
|
|
31619
|
+
this.elementRef.nativeElement['borderSide'] = value;
|
|
31620
|
+
}
|
|
31621
|
+
get borderSide() {
|
|
31622
|
+
return this.elementRef.nativeElement['borderSide'];
|
|
31623
|
+
}
|
|
31624
|
+
set borderSideMobile(value) {
|
|
31625
|
+
this.elementRef.nativeElement['borderSideMobile'] = value;
|
|
31626
|
+
}
|
|
31627
|
+
get borderSideMobile() {
|
|
31628
|
+
return this.elementRef.nativeElement['borderSideMobile'];
|
|
31629
|
+
}
|
|
31630
|
+
set borderSideTablet(value) {
|
|
31631
|
+
this.elementRef.nativeElement['borderSideTablet'] = value;
|
|
31632
|
+
}
|
|
31633
|
+
get borderSideTablet() {
|
|
31634
|
+
return this.elementRef.nativeElement['borderSideTablet'];
|
|
31635
|
+
}
|
|
31636
|
+
set borderSideLaptop(value) {
|
|
31637
|
+
this.elementRef.nativeElement['borderSideLaptop'] = value;
|
|
31638
|
+
}
|
|
31639
|
+
get borderSideLaptop() {
|
|
31640
|
+
return this.elementRef.nativeElement['borderSideLaptop'];
|
|
31121
31641
|
}
|
|
31122
31642
|
set grow(value) {
|
|
31123
31643
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -31434,17 +31954,89 @@ class PxRibbon {
|
|
|
31434
31954
|
constructor(elementRef) {
|
|
31435
31955
|
this.elementRef = elementRef;
|
|
31436
31956
|
}
|
|
31437
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
31438
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
31957
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSection, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
31958
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSection, isStandalone: true, selector: "px-section", inputs: { backgroundColor: ["background-color", "backgroundColor"], backgroundGradient: ["background-gradient", "backgroundGradient"], backgroundImage: ["background-image", "backgroundImage"], backgroundImageMobile: ["background-image--mobile", "backgroundImageMobile"], backgroundImageTablet: ["background-image--tablet", "backgroundImageTablet"], backgroundImageLaptop: ["background-image--laptop", "backgroundImageLaptop"], backgroundSize: ["background-size", "backgroundSize"], backgroundPosition: ["background-position", "backgroundPosition"], paddingBlock: ["padding-block", "paddingBlock"], paddingTop: ["padding-top", "paddingTop"], paddingBottom: ["padding-bottom", "paddingBottom"], paddingBlockMobile: ["padding-block--mobile", "paddingBlockMobile"], paddingTopMobile: ["padding-top--mobile", "paddingTopMobile"], paddingBottomMobile: ["padding-bottom--mobile", "paddingBottomMobile"], paddingBlockTablet: ["padding-block--tablet", "paddingBlockTablet"], paddingTopTablet: ["padding-top--tablet", "paddingTopTablet"], paddingBottomTablet: ["padding-bottom--tablet", "paddingBottomTablet"], paddingBlockLaptop: ["padding-block--laptop", "paddingBlockLaptop"], paddingTopLaptop: ["padding-top--laptop", "paddingTopLaptop"], paddingBottomLaptop: ["padding-bottom--laptop", "paddingBottomLaptop"], border: "border", borderSide: ["border-side", "borderSide"], borderSideMobile: ["border-side--mobile", "borderSideMobile"], borderSideTablet: ["border-side--tablet", "borderSideTablet"], borderSideLaptop: ["border-side--laptop", "borderSideLaptop"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
31439
31959
|
}
|
|
31440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
31960
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSection, decorators: [{
|
|
31441
31961
|
type: Directive,
|
|
31442
31962
|
args: [{
|
|
31443
|
-
selector: 'px-
|
|
31963
|
+
selector: 'px-section',
|
|
31444
31964
|
standalone: true,
|
|
31445
31965
|
}]
|
|
31446
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
31966
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { backgroundColor: [{
|
|
31967
|
+
type: Input,
|
|
31968
|
+
args: ['background-color']
|
|
31969
|
+
}], backgroundGradient: [{
|
|
31970
|
+
type: Input,
|
|
31971
|
+
args: ['background-gradient']
|
|
31972
|
+
}], backgroundImage: [{
|
|
31973
|
+
type: Input,
|
|
31974
|
+
args: ['background-image']
|
|
31975
|
+
}], backgroundImageMobile: [{
|
|
31976
|
+
type: Input,
|
|
31977
|
+
args: ['background-image--mobile']
|
|
31978
|
+
}], backgroundImageTablet: [{
|
|
31979
|
+
type: Input,
|
|
31980
|
+
args: ['background-image--tablet']
|
|
31981
|
+
}], backgroundImageLaptop: [{
|
|
31982
|
+
type: Input,
|
|
31983
|
+
args: ['background-image--laptop']
|
|
31984
|
+
}], backgroundSize: [{
|
|
31985
|
+
type: Input,
|
|
31986
|
+
args: ['background-size']
|
|
31987
|
+
}], backgroundPosition: [{
|
|
31988
|
+
type: Input,
|
|
31989
|
+
args: ['background-position']
|
|
31990
|
+
}], paddingBlock: [{
|
|
31991
|
+
type: Input,
|
|
31992
|
+
args: ['padding-block']
|
|
31993
|
+
}], paddingTop: [{
|
|
31994
|
+
type: Input,
|
|
31995
|
+
args: ['padding-top']
|
|
31996
|
+
}], paddingBottom: [{
|
|
31997
|
+
type: Input,
|
|
31998
|
+
args: ['padding-bottom']
|
|
31999
|
+
}], paddingBlockMobile: [{
|
|
32000
|
+
type: Input,
|
|
32001
|
+
args: ['padding-block--mobile']
|
|
32002
|
+
}], paddingTopMobile: [{
|
|
32003
|
+
type: Input,
|
|
32004
|
+
args: ['padding-top--mobile']
|
|
32005
|
+
}], paddingBottomMobile: [{
|
|
32006
|
+
type: Input,
|
|
32007
|
+
args: ['padding-bottom--mobile']
|
|
32008
|
+
}], paddingBlockTablet: [{
|
|
32009
|
+
type: Input,
|
|
32010
|
+
args: ['padding-block--tablet']
|
|
32011
|
+
}], paddingTopTablet: [{
|
|
32012
|
+
type: Input,
|
|
32013
|
+
args: ['padding-top--tablet']
|
|
32014
|
+
}], paddingBottomTablet: [{
|
|
32015
|
+
type: Input,
|
|
32016
|
+
args: ['padding-bottom--tablet']
|
|
32017
|
+
}], paddingBlockLaptop: [{
|
|
32018
|
+
type: Input,
|
|
32019
|
+
args: ['padding-block--laptop']
|
|
32020
|
+
}], paddingTopLaptop: [{
|
|
32021
|
+
type: Input,
|
|
32022
|
+
args: ['padding-top--laptop']
|
|
32023
|
+
}], paddingBottomLaptop: [{
|
|
32024
|
+
type: Input,
|
|
32025
|
+
args: ['padding-bottom--laptop']
|
|
32026
|
+
}], border: [{
|
|
31447
32027
|
type: Input
|
|
32028
|
+
}], borderSide: [{
|
|
32029
|
+
type: Input,
|
|
32030
|
+
args: ['border-side']
|
|
32031
|
+
}], borderSideMobile: [{
|
|
32032
|
+
type: Input,
|
|
32033
|
+
args: ['border-side--mobile']
|
|
32034
|
+
}], borderSideTablet: [{
|
|
32035
|
+
type: Input,
|
|
32036
|
+
args: ['border-side--tablet']
|
|
32037
|
+
}], borderSideLaptop: [{
|
|
32038
|
+
type: Input,
|
|
32039
|
+
args: ['border-side--laptop']
|
|
31448
32040
|
}], grow: [{
|
|
31449
32041
|
type: Input
|
|
31450
32042
|
}], growMobile: [{
|
|
@@ -31614,6 +32206,12 @@ class PxSelectableBox {
|
|
|
31614
32206
|
get hideFooter() {
|
|
31615
32207
|
return this.elementRef.nativeElement['hideFooter'];
|
|
31616
32208
|
}
|
|
32209
|
+
set footerPosition(value) {
|
|
32210
|
+
this.elementRef.nativeElement['footerPosition'] = value;
|
|
32211
|
+
}
|
|
32212
|
+
get footerPosition() {
|
|
32213
|
+
return this.elementRef.nativeElement['footerPosition'];
|
|
32214
|
+
}
|
|
31617
32215
|
set grow(value) {
|
|
31618
32216
|
this.elementRef.nativeElement['grow'] = value;
|
|
31619
32217
|
}
|
|
@@ -31930,7 +32528,7 @@ class PxSelectableBox {
|
|
|
31930
32528
|
this.elementRef = elementRef;
|
|
31931
32529
|
}
|
|
31932
32530
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
31933
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBox, isStandalone: true, selector: "px-selectable-box", inputs: { inverted: "inverted", hideFooter: ["hide-footer", "hideFooter"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
32531
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBox, isStandalone: true, selector: "px-selectable-box", inputs: { inverted: "inverted", hideFooter: ["hide-footer", "hideFooter"], footerPosition: ["footer-position", "footerPosition"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
31934
32532
|
}
|
|
31935
32533
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBox, decorators: [{
|
|
31936
32534
|
type: Directive,
|
|
@@ -31943,6 +32541,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
31943
32541
|
}], hideFooter: [{
|
|
31944
32542
|
type: Input,
|
|
31945
32543
|
args: ['hide-footer']
|
|
32544
|
+
}], footerPosition: [{
|
|
32545
|
+
type: Input,
|
|
32546
|
+
args: ['footer-position']
|
|
31946
32547
|
}], grow: [{
|
|
31947
32548
|
type: Input
|
|
31948
32549
|
}], growMobile: [{
|
|
@@ -32130,6 +32731,12 @@ class PxSelectableBoxCheckbox {
|
|
|
32130
32731
|
get disabled() {
|
|
32131
32732
|
return this.elementRef.nativeElement['disabled'];
|
|
32132
32733
|
}
|
|
32734
|
+
set footerPosition(value) {
|
|
32735
|
+
this.elementRef.nativeElement['footerPosition'] = value;
|
|
32736
|
+
}
|
|
32737
|
+
get footerPosition() {
|
|
32738
|
+
return this.elementRef.nativeElement['footerPosition'];
|
|
32739
|
+
}
|
|
32133
32740
|
set grow(value) {
|
|
32134
32741
|
this.elementRef.nativeElement['grow'] = value;
|
|
32135
32742
|
}
|
|
@@ -32450,7 +33057,7 @@ class PxSelectableBoxCheckbox {
|
|
|
32450
33057
|
});
|
|
32451
33058
|
}
|
|
32452
33059
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxCheckbox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
32453
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxCheckbox, isStandalone: true, selector: "px-selectable-box-checkbox", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
33060
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxCheckbox, isStandalone: true, selector: "px-selectable-box-checkbox", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", footerPosition: ["footer-position", "footerPosition"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
32454
33061
|
}
|
|
32455
33062
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxCheckbox, decorators: [{
|
|
32456
33063
|
type: Directive,
|
|
@@ -32468,6 +33075,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
32468
33075
|
type: Input
|
|
32469
33076
|
}], disabled: [{
|
|
32470
33077
|
type: Input
|
|
33078
|
+
}], footerPosition: [{
|
|
33079
|
+
type: Input,
|
|
33080
|
+
args: ['footer-position']
|
|
32471
33081
|
}], grow: [{
|
|
32472
33082
|
type: Input
|
|
32473
33083
|
}], growMobile: [{
|
|
@@ -32657,6 +33267,12 @@ class PxSelectableBoxRadio {
|
|
|
32657
33267
|
get disabled() {
|
|
32658
33268
|
return this.elementRef.nativeElement['disabled'];
|
|
32659
33269
|
}
|
|
33270
|
+
set footerPosition(value) {
|
|
33271
|
+
this.elementRef.nativeElement['footerPosition'] = value;
|
|
33272
|
+
}
|
|
33273
|
+
get footerPosition() {
|
|
33274
|
+
return this.elementRef.nativeElement['footerPosition'];
|
|
33275
|
+
}
|
|
32660
33276
|
set grow(value) {
|
|
32661
33277
|
this.elementRef.nativeElement['grow'] = value;
|
|
32662
33278
|
}
|
|
@@ -32985,7 +33601,7 @@ class PxSelectableBoxRadio {
|
|
|
32985
33601
|
});
|
|
32986
33602
|
}
|
|
32987
33603
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
32988
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxRadio, isStandalone: true, selector: "px-selectable-box-radio", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { SELECTABLE_BOX_RADIO_CONNECTED_EVENT: "SELECTABLE_BOX_RADIO_CONNECTED_EVENT", SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: "SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT", change: "change" }, ngImport: i0 });
|
|
33604
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxRadio, isStandalone: true, selector: "px-selectable-box-radio", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", footerPosition: ["footer-position", "footerPosition"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { SELECTABLE_BOX_RADIO_CONNECTED_EVENT: "SELECTABLE_BOX_RADIO_CONNECTED_EVENT", SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: "SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT", change: "change" }, ngImport: i0 });
|
|
32989
33605
|
}
|
|
32990
33606
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxRadio, decorators: [{
|
|
32991
33607
|
type: Directive,
|
|
@@ -33003,6 +33619,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
33003
33619
|
type: Input
|
|
33004
33620
|
}], disabled: [{
|
|
33005
33621
|
type: Input
|
|
33622
|
+
}], footerPosition: [{
|
|
33623
|
+
type: Input,
|
|
33624
|
+
args: ['footer-position']
|
|
33006
33625
|
}], grow: [{
|
|
33007
33626
|
type: Input
|
|
33008
33627
|
}], growMobile: [{
|
|
@@ -35869,42 +36488,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
35869
36488
|
}], CLOSE_EVENT: [{
|
|
35870
36489
|
type: Output
|
|
35871
36490
|
}] } });
|
|
35872
|
-
/**
|
|
35873
|
-
* @description Type-only wrapper for <px-sticky-container>
|
|
35874
|
-
*/
|
|
35875
|
-
class PxStickyContainer {
|
|
35876
|
-
elementRef;
|
|
35877
|
-
set offsetLeft(value) {
|
|
35878
|
-
this.elementRef.nativeElement['offsetLeft'] = value;
|
|
35879
|
-
}
|
|
35880
|
-
get offsetLeft() {
|
|
35881
|
-
return this.elementRef.nativeElement['offsetLeft'];
|
|
35882
|
-
}
|
|
35883
|
-
set offsetRight(value) {
|
|
35884
|
-
this.elementRef.nativeElement['offsetRight'] = value;
|
|
35885
|
-
}
|
|
35886
|
-
get offsetRight() {
|
|
35887
|
-
return this.elementRef.nativeElement['offsetRight'];
|
|
35888
|
-
}
|
|
35889
|
-
constructor(elementRef) {
|
|
35890
|
-
this.elementRef = elementRef;
|
|
35891
|
-
}
|
|
35892
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStickyContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
35893
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxStickyContainer, isStandalone: true, selector: "px-sticky-container", inputs: { offsetLeft: ["offset-left", "offsetLeft"], offsetRight: ["offset-right", "offsetRight"] }, ngImport: i0 });
|
|
35894
|
-
}
|
|
35895
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStickyContainer, decorators: [{
|
|
35896
|
-
type: Directive,
|
|
35897
|
-
args: [{
|
|
35898
|
-
selector: 'px-sticky-container',
|
|
35899
|
-
standalone: true,
|
|
35900
|
-
}]
|
|
35901
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { offsetLeft: [{
|
|
35902
|
-
type: Input,
|
|
35903
|
-
args: ['offset-left']
|
|
35904
|
-
}], offsetRight: [{
|
|
35905
|
-
type: Input,
|
|
35906
|
-
args: ['offset-right']
|
|
35907
|
-
}] } });
|
|
35908
36491
|
/**
|
|
35909
36492
|
* @description Type-only wrapper for <px-theme-switcher>
|
|
35910
36493
|
*/
|
|
@@ -40519,6 +41102,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
40519
41102
|
}], TIMELINE_ITEM_CONNECTED_EVENT: [{
|
|
40520
41103
|
type: Output
|
|
40521
41104
|
}] } });
|
|
41105
|
+
/**
|
|
41106
|
+
* @description Type-only wrapper for <px-toaster>
|
|
41107
|
+
*/
|
|
41108
|
+
class PxToaster {
|
|
41109
|
+
elementRef;
|
|
41110
|
+
set id(value) {
|
|
41111
|
+
this.elementRef.nativeElement['id'] = value;
|
|
41112
|
+
}
|
|
41113
|
+
get id() {
|
|
41114
|
+
return this.elementRef.nativeElement['id'];
|
|
41115
|
+
}
|
|
41116
|
+
set open(value) {
|
|
41117
|
+
this.elementRef.nativeElement['open'] = value;
|
|
41118
|
+
}
|
|
41119
|
+
get open() {
|
|
41120
|
+
return this.elementRef.nativeElement['open'];
|
|
41121
|
+
}
|
|
41122
|
+
set status(value) {
|
|
41123
|
+
this.elementRef.nativeElement['status'] = value;
|
|
41124
|
+
}
|
|
41125
|
+
get status() {
|
|
41126
|
+
return this.elementRef.nativeElement['status'];
|
|
41127
|
+
}
|
|
41128
|
+
set duration(value) {
|
|
41129
|
+
this.elementRef.nativeElement['duration'] = value;
|
|
41130
|
+
}
|
|
41131
|
+
get duration() {
|
|
41132
|
+
return this.elementRef.nativeElement['duration'];
|
|
41133
|
+
}
|
|
41134
|
+
set inverted(value) {
|
|
41135
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
41136
|
+
}
|
|
41137
|
+
get inverted() {
|
|
41138
|
+
return this.elementRef.nativeElement['inverted'];
|
|
41139
|
+
}
|
|
41140
|
+
HIDE_EVENT = new EventEmitter();
|
|
41141
|
+
constructor(elementRef) {
|
|
41142
|
+
this.elementRef = elementRef;
|
|
41143
|
+
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
41144
|
+
this.HIDE_EVENT.emit(e.detail);
|
|
41145
|
+
});
|
|
41146
|
+
}
|
|
41147
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxToaster, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
41148
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxToaster, isStandalone: true, selector: "px-toaster", inputs: { id: "id", open: "open", status: "status", duration: "duration", inverted: "inverted" }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
41149
|
+
}
|
|
41150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxToaster, decorators: [{
|
|
41151
|
+
type: Directive,
|
|
41152
|
+
args: [{
|
|
41153
|
+
selector: 'px-toaster',
|
|
41154
|
+
standalone: true,
|
|
41155
|
+
}]
|
|
41156
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { id: [{
|
|
41157
|
+
type: Input
|
|
41158
|
+
}], open: [{
|
|
41159
|
+
type: Input
|
|
41160
|
+
}], status: [{
|
|
41161
|
+
type: Input
|
|
41162
|
+
}], duration: [{
|
|
41163
|
+
type: Input
|
|
41164
|
+
}], inverted: [{
|
|
41165
|
+
type: Input
|
|
41166
|
+
}], HIDE_EVENT: [{
|
|
41167
|
+
type: Output
|
|
41168
|
+
}] } });
|
|
40522
41169
|
/**
|
|
40523
41170
|
* @description Type-only wrapper for <px-typography>
|
|
40524
41171
|
*/
|
|
@@ -41266,7 +41913,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41266
41913
|
}] } });
|
|
41267
41914
|
class Lavender {
|
|
41268
41915
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41269
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxInput, PxSelect, PxTextarea, PxFileupload,
|
|
41916
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxCodeInput, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxCodeInput, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41270
41917
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41271
41918
|
}
|
|
41272
41919
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41309,12 +41956,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41309
41956
|
PxH5,
|
|
41310
41957
|
PxH6,
|
|
41311
41958
|
PxHeadingGroup,
|
|
41959
|
+
PxImg,
|
|
41960
|
+
PxPicture,
|
|
41312
41961
|
PxInput,
|
|
41313
41962
|
PxSelect,
|
|
41314
41963
|
PxTextarea,
|
|
41315
41964
|
PxFileupload,
|
|
41316
|
-
|
|
41317
|
-
PxPicture,
|
|
41965
|
+
PxCodeInput,
|
|
41318
41966
|
PxPage,
|
|
41319
41967
|
PxSpacer,
|
|
41320
41968
|
PxStack,
|
|
@@ -41334,8 +41982,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41334
41982
|
PxRadio,
|
|
41335
41983
|
PxRadioBase,
|
|
41336
41984
|
PxRadioGroup,
|
|
41337
|
-
PxSection,
|
|
41338
41985
|
PxRibbon,
|
|
41986
|
+
PxSection,
|
|
41339
41987
|
PxSelectableBox,
|
|
41340
41988
|
PxSelectableBoxCheckbox,
|
|
41341
41989
|
PxSelectableBoxRadio,
|
|
@@ -41345,7 +41993,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41345
41993
|
PxSpinner,
|
|
41346
41994
|
PxStatus,
|
|
41347
41995
|
PxStatusCard,
|
|
41348
|
-
PxStickyContainer,
|
|
41349
41996
|
PxThemeSwitcher,
|
|
41350
41997
|
PxSwitch,
|
|
41351
41998
|
PxTable,
|
|
@@ -41366,6 +42013,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41366
42013
|
PxTileSwitch,
|
|
41367
42014
|
PxTimeline,
|
|
41368
42015
|
PxTimelineItem,
|
|
42016
|
+
PxToaster,
|
|
41369
42017
|
PxTypography,
|
|
41370
42018
|
PxPatch,
|
|
41371
42019
|
PxIcon,
|
|
@@ -41411,12 +42059,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41411
42059
|
PxH5,
|
|
41412
42060
|
PxH6,
|
|
41413
42061
|
PxHeadingGroup,
|
|
42062
|
+
PxImg,
|
|
42063
|
+
PxPicture,
|
|
41414
42064
|
PxInput,
|
|
41415
42065
|
PxSelect,
|
|
41416
42066
|
PxTextarea,
|
|
41417
42067
|
PxFileupload,
|
|
41418
|
-
|
|
41419
|
-
PxPicture,
|
|
42068
|
+
PxCodeInput,
|
|
41420
42069
|
PxPage,
|
|
41421
42070
|
PxSpacer,
|
|
41422
42071
|
PxStack,
|
|
@@ -41436,8 +42085,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41436
42085
|
PxRadio,
|
|
41437
42086
|
PxRadioBase,
|
|
41438
42087
|
PxRadioGroup,
|
|
41439
|
-
PxSection,
|
|
41440
42088
|
PxRibbon,
|
|
42089
|
+
PxSection,
|
|
41441
42090
|
PxSelectableBox,
|
|
41442
42091
|
PxSelectableBoxCheckbox,
|
|
41443
42092
|
PxSelectableBoxRadio,
|
|
@@ -41447,7 +42096,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41447
42096
|
PxSpinner,
|
|
41448
42097
|
PxStatus,
|
|
41449
42098
|
PxStatusCard,
|
|
41450
|
-
PxStickyContainer,
|
|
41451
42099
|
PxThemeSwitcher,
|
|
41452
42100
|
PxSwitch,
|
|
41453
42101
|
PxTable,
|
|
@@ -41468,6 +42116,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41468
42116
|
PxTileSwitch,
|
|
41469
42117
|
PxTimeline,
|
|
41470
42118
|
PxTimelineItem,
|
|
42119
|
+
PxToaster,
|
|
41471
42120
|
PxTypography,
|
|
41472
42121
|
PxPatch,
|
|
41473
42122
|
PxIcon,
|
|
@@ -41483,5 +42132,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41483
42132
|
* Generated bundle index. Do not edit.
|
|
41484
42133
|
*/
|
|
41485
42134
|
|
|
41486
|
-
export { Lavender, LavenderValueAccessors, PxA, PxAWrapper, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxButtonWrapper, PxCard, PxCardActions, PxCardContainer, PxCardHeading, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxCheckboxValueAccessor, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxInputValueAccessor, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRadioGroupValueAccessor, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard,
|
|
42135
|
+
export { Lavender, LavenderValueAccessors, PxA, PxAWrapper, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxButtonWrapper, PxCard, PxCardActions, PxCardContainer, PxCardHeading, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxCheckboxValueAccessor, PxCodeInput, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxInputValueAccessor, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRadioGroupValueAccessor, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard, PxSwitch, PxSwitchValueAccessor, PxTab, PxTabPanel, PxTable, PxTabs, PxTag, PxTbody, PxTd, PxTextarea, PxTextareaValueAccessor, PxTh, PxThead, PxThemeProvider, PxThemeSwitcher, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTr, PxTypography, PxVstack };
|
|
41487
42136
|
//# sourceMappingURL=proximus-lavender-angular.mjs.map
|