@proximus/lavender-angular 1.4.15-alpha.2 → 1.4.15-alpha.20
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 +68 -0
- package/fesm2022/proximus-lavender-angular.mjs +754 -663
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +211 -190
- 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,6 +21860,8 @@ 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
21867
|
* @description Type-only wrapper for <px-page>
|
|
@@ -30404,189 +30440,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
30404
30440
|
args: ['word-break-all--desktop']
|
|
30405
30441
|
}] } });
|
|
30406
30442
|
/**
|
|
30407
|
-
* @description Type-only wrapper for <px-
|
|
30443
|
+
* @description Type-only wrapper for <px-ribbon>
|
|
30408
30444
|
*/
|
|
30409
|
-
class
|
|
30445
|
+
class PxRibbon {
|
|
30410
30446
|
elementRef;
|
|
30411
|
-
set
|
|
30412
|
-
this.elementRef.nativeElement['
|
|
30447
|
+
set inverted(value) {
|
|
30448
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
30413
30449
|
}
|
|
30414
|
-
get
|
|
30415
|
-
return this.elementRef.nativeElement['
|
|
30450
|
+
get inverted() {
|
|
30451
|
+
return this.elementRef.nativeElement['inverted'];
|
|
30416
30452
|
}
|
|
30417
|
-
set
|
|
30418
|
-
this.elementRef.nativeElement['
|
|
30453
|
+
set grow(value) {
|
|
30454
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
30419
30455
|
}
|
|
30420
|
-
get
|
|
30421
|
-
return this.elementRef.nativeElement['
|
|
30456
|
+
get grow() {
|
|
30457
|
+
return this.elementRef.nativeElement['grow'];
|
|
30422
30458
|
}
|
|
30423
|
-
set
|
|
30424
|
-
this.elementRef.nativeElement['
|
|
30459
|
+
set growMobile(value) {
|
|
30460
|
+
this.elementRef.nativeElement['growMobile'] = value;
|
|
30425
30461
|
}
|
|
30426
|
-
get
|
|
30427
|
-
return this.elementRef.nativeElement['
|
|
30462
|
+
get growMobile() {
|
|
30463
|
+
return this.elementRef.nativeElement['growMobile'];
|
|
30428
30464
|
}
|
|
30429
|
-
set
|
|
30430
|
-
this.elementRef.nativeElement['
|
|
30465
|
+
set growTablet(value) {
|
|
30466
|
+
this.elementRef.nativeElement['growTablet'] = value;
|
|
30431
30467
|
}
|
|
30432
|
-
get
|
|
30433
|
-
return this.elementRef.nativeElement['
|
|
30468
|
+
get growTablet() {
|
|
30469
|
+
return this.elementRef.nativeElement['growTablet'];
|
|
30434
30470
|
}
|
|
30435
|
-
set
|
|
30436
|
-
this.elementRef.nativeElement['
|
|
30471
|
+
set growLaptop(value) {
|
|
30472
|
+
this.elementRef.nativeElement['growLaptop'] = value;
|
|
30437
30473
|
}
|
|
30438
|
-
get
|
|
30439
|
-
return this.elementRef.nativeElement['
|
|
30474
|
+
get growLaptop() {
|
|
30475
|
+
return this.elementRef.nativeElement['growLaptop'];
|
|
30440
30476
|
}
|
|
30441
|
-
set
|
|
30442
|
-
this.elementRef.nativeElement['
|
|
30477
|
+
set growDesktop(value) {
|
|
30478
|
+
this.elementRef.nativeElement['growDesktop'] = value;
|
|
30443
30479
|
}
|
|
30444
|
-
get
|
|
30445
|
-
return this.elementRef.nativeElement['
|
|
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;
|
|
30557
|
-
}
|
|
30558
|
-
get borderSideLaptop() {
|
|
30559
|
-
return this.elementRef.nativeElement['borderSideLaptop'];
|
|
30560
|
-
}
|
|
30561
|
-
set grow(value) {
|
|
30562
|
-
this.elementRef.nativeElement['grow'] = value;
|
|
30563
|
-
}
|
|
30564
|
-
get grow() {
|
|
30565
|
-
return this.elementRef.nativeElement['grow'];
|
|
30566
|
-
}
|
|
30567
|
-
set growMobile(value) {
|
|
30568
|
-
this.elementRef.nativeElement['growMobile'] = value;
|
|
30569
|
-
}
|
|
30570
|
-
get growMobile() {
|
|
30571
|
-
return this.elementRef.nativeElement['growMobile'];
|
|
30572
|
-
}
|
|
30573
|
-
set growTablet(value) {
|
|
30574
|
-
this.elementRef.nativeElement['growTablet'] = value;
|
|
30575
|
-
}
|
|
30576
|
-
get growTablet() {
|
|
30577
|
-
return this.elementRef.nativeElement['growTablet'];
|
|
30578
|
-
}
|
|
30579
|
-
set growLaptop(value) {
|
|
30580
|
-
this.elementRef.nativeElement['growLaptop'] = value;
|
|
30581
|
-
}
|
|
30582
|
-
get growLaptop() {
|
|
30583
|
-
return this.elementRef.nativeElement['growLaptop'];
|
|
30584
|
-
}
|
|
30585
|
-
set growDesktop(value) {
|
|
30586
|
-
this.elementRef.nativeElement['growDesktop'] = value;
|
|
30587
|
-
}
|
|
30588
|
-
get growDesktop() {
|
|
30589
|
-
return this.elementRef.nativeElement['growDesktop'];
|
|
30480
|
+
get growDesktop() {
|
|
30481
|
+
return this.elementRef.nativeElement['growDesktop'];
|
|
30590
30482
|
}
|
|
30591
30483
|
set shrink(value) {
|
|
30592
30484
|
this.elementRef.nativeElement['shrink'] = value;
|
|
@@ -30873,89 +30765,17 @@ class PxSection {
|
|
|
30873
30765
|
constructor(elementRef) {
|
|
30874
30766
|
this.elementRef = elementRef;
|
|
30875
30767
|
}
|
|
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:
|
|
30768
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRibbon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30769
|
+
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
30770
|
}
|
|
30879
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRibbon, decorators: [{
|
|
30880
30772
|
type: Directive,
|
|
30881
30773
|
args: [{
|
|
30882
|
-
selector: 'px-
|
|
30774
|
+
selector: 'px-ribbon',
|
|
30883
30775
|
standalone: true,
|
|
30884
30776
|
}]
|
|
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: [{
|
|
30777
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
30946
30778
|
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
30779
|
}], grow: [{
|
|
30960
30780
|
type: Input
|
|
30961
30781
|
}], growMobile: [{
|
|
@@ -31109,15 +30929,159 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
31109
30929
|
args: ['word-break-all--desktop']
|
|
31110
30930
|
}] } });
|
|
31111
30931
|
/**
|
|
31112
|
-
* @description Type-only wrapper for <px-
|
|
30932
|
+
* @description Type-only wrapper for <px-section>
|
|
31113
30933
|
*/
|
|
31114
|
-
class
|
|
30934
|
+
class PxSection {
|
|
31115
30935
|
elementRef;
|
|
31116
|
-
set
|
|
31117
|
-
this.elementRef.nativeElement['
|
|
30936
|
+
set backgroundColor(value) {
|
|
30937
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
30938
|
+
}
|
|
30939
|
+
get backgroundColor() {
|
|
30940
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
30941
|
+
}
|
|
30942
|
+
set backgroundGradient(value) {
|
|
30943
|
+
this.elementRef.nativeElement['backgroundGradient'] = value;
|
|
30944
|
+
}
|
|
30945
|
+
get backgroundGradient() {
|
|
30946
|
+
return this.elementRef.nativeElement['backgroundGradient'];
|
|
30947
|
+
}
|
|
30948
|
+
set backgroundImage(value) {
|
|
30949
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
30950
|
+
}
|
|
30951
|
+
get backgroundImage() {
|
|
30952
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
30953
|
+
}
|
|
30954
|
+
set backgroundImageMobile(value) {
|
|
30955
|
+
this.elementRef.nativeElement['backgroundImageMobile'] = value;
|
|
30956
|
+
}
|
|
30957
|
+
get backgroundImageMobile() {
|
|
30958
|
+
return this.elementRef.nativeElement['backgroundImageMobile'];
|
|
30959
|
+
}
|
|
30960
|
+
set backgroundImageTablet(value) {
|
|
30961
|
+
this.elementRef.nativeElement['backgroundImageTablet'] = value;
|
|
30962
|
+
}
|
|
30963
|
+
get backgroundImageTablet() {
|
|
30964
|
+
return this.elementRef.nativeElement['backgroundImageTablet'];
|
|
30965
|
+
}
|
|
30966
|
+
set backgroundImageLaptop(value) {
|
|
30967
|
+
this.elementRef.nativeElement['backgroundImageLaptop'] = value;
|
|
30968
|
+
}
|
|
30969
|
+
get backgroundImageLaptop() {
|
|
30970
|
+
return this.elementRef.nativeElement['backgroundImageLaptop'];
|
|
30971
|
+
}
|
|
30972
|
+
set backgroundSize(value) {
|
|
30973
|
+
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
30974
|
+
}
|
|
30975
|
+
get backgroundSize() {
|
|
30976
|
+
return this.elementRef.nativeElement['backgroundSize'];
|
|
30977
|
+
}
|
|
30978
|
+
set backgroundPosition(value) {
|
|
30979
|
+
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
30980
|
+
}
|
|
30981
|
+
get backgroundPosition() {
|
|
30982
|
+
return this.elementRef.nativeElement['backgroundPosition'];
|
|
30983
|
+
}
|
|
30984
|
+
set paddingBlock(value) {
|
|
30985
|
+
this.elementRef.nativeElement['paddingBlock'] = value;
|
|
30986
|
+
}
|
|
30987
|
+
get paddingBlock() {
|
|
30988
|
+
return this.elementRef.nativeElement['paddingBlock'];
|
|
30989
|
+
}
|
|
30990
|
+
set paddingTop(value) {
|
|
30991
|
+
this.elementRef.nativeElement['paddingTop'] = value;
|
|
30992
|
+
}
|
|
30993
|
+
get paddingTop() {
|
|
30994
|
+
return this.elementRef.nativeElement['paddingTop'];
|
|
30995
|
+
}
|
|
30996
|
+
set paddingBottom(value) {
|
|
30997
|
+
this.elementRef.nativeElement['paddingBottom'] = value;
|
|
30998
|
+
}
|
|
30999
|
+
get paddingBottom() {
|
|
31000
|
+
return this.elementRef.nativeElement['paddingBottom'];
|
|
31001
|
+
}
|
|
31002
|
+
set paddingBlockMobile(value) {
|
|
31003
|
+
this.elementRef.nativeElement['paddingBlockMobile'] = value;
|
|
31118
31004
|
}
|
|
31119
|
-
get
|
|
31120
|
-
return this.elementRef.nativeElement['
|
|
31005
|
+
get paddingBlockMobile() {
|
|
31006
|
+
return this.elementRef.nativeElement['paddingBlockMobile'];
|
|
31007
|
+
}
|
|
31008
|
+
set paddingTopMobile(value) {
|
|
31009
|
+
this.elementRef.nativeElement['paddingTopMobile'] = value;
|
|
31010
|
+
}
|
|
31011
|
+
get paddingTopMobile() {
|
|
31012
|
+
return this.elementRef.nativeElement['paddingTopMobile'];
|
|
31013
|
+
}
|
|
31014
|
+
set paddingBottomMobile(value) {
|
|
31015
|
+
this.elementRef.nativeElement['paddingBottomMobile'] = value;
|
|
31016
|
+
}
|
|
31017
|
+
get paddingBottomMobile() {
|
|
31018
|
+
return this.elementRef.nativeElement['paddingBottomMobile'];
|
|
31019
|
+
}
|
|
31020
|
+
set paddingBlockTablet(value) {
|
|
31021
|
+
this.elementRef.nativeElement['paddingBlockTablet'] = value;
|
|
31022
|
+
}
|
|
31023
|
+
get paddingBlockTablet() {
|
|
31024
|
+
return this.elementRef.nativeElement['paddingBlockTablet'];
|
|
31025
|
+
}
|
|
31026
|
+
set paddingTopTablet(value) {
|
|
31027
|
+
this.elementRef.nativeElement['paddingTopTablet'] = value;
|
|
31028
|
+
}
|
|
31029
|
+
get paddingTopTablet() {
|
|
31030
|
+
return this.elementRef.nativeElement['paddingTopTablet'];
|
|
31031
|
+
}
|
|
31032
|
+
set paddingBottomTablet(value) {
|
|
31033
|
+
this.elementRef.nativeElement['paddingBottomTablet'] = value;
|
|
31034
|
+
}
|
|
31035
|
+
get paddingBottomTablet() {
|
|
31036
|
+
return this.elementRef.nativeElement['paddingBottomTablet'];
|
|
31037
|
+
}
|
|
31038
|
+
set paddingBlockLaptop(value) {
|
|
31039
|
+
this.elementRef.nativeElement['paddingBlockLaptop'] = value;
|
|
31040
|
+
}
|
|
31041
|
+
get paddingBlockLaptop() {
|
|
31042
|
+
return this.elementRef.nativeElement['paddingBlockLaptop'];
|
|
31043
|
+
}
|
|
31044
|
+
set paddingTopLaptop(value) {
|
|
31045
|
+
this.elementRef.nativeElement['paddingTopLaptop'] = value;
|
|
31046
|
+
}
|
|
31047
|
+
get paddingTopLaptop() {
|
|
31048
|
+
return this.elementRef.nativeElement['paddingTopLaptop'];
|
|
31049
|
+
}
|
|
31050
|
+
set paddingBottomLaptop(value) {
|
|
31051
|
+
this.elementRef.nativeElement['paddingBottomLaptop'] = value;
|
|
31052
|
+
}
|
|
31053
|
+
get paddingBottomLaptop() {
|
|
31054
|
+
return this.elementRef.nativeElement['paddingBottomLaptop'];
|
|
31055
|
+
}
|
|
31056
|
+
set border(value) {
|
|
31057
|
+
this.elementRef.nativeElement['border'] = value;
|
|
31058
|
+
}
|
|
31059
|
+
get border() {
|
|
31060
|
+
return this.elementRef.nativeElement['border'];
|
|
31061
|
+
}
|
|
31062
|
+
set borderSide(value) {
|
|
31063
|
+
this.elementRef.nativeElement['borderSide'] = value;
|
|
31064
|
+
}
|
|
31065
|
+
get borderSide() {
|
|
31066
|
+
return this.elementRef.nativeElement['borderSide'];
|
|
31067
|
+
}
|
|
31068
|
+
set borderSideMobile(value) {
|
|
31069
|
+
this.elementRef.nativeElement['borderSideMobile'] = value;
|
|
31070
|
+
}
|
|
31071
|
+
get borderSideMobile() {
|
|
31072
|
+
return this.elementRef.nativeElement['borderSideMobile'];
|
|
31073
|
+
}
|
|
31074
|
+
set borderSideTablet(value) {
|
|
31075
|
+
this.elementRef.nativeElement['borderSideTablet'] = value;
|
|
31076
|
+
}
|
|
31077
|
+
get borderSideTablet() {
|
|
31078
|
+
return this.elementRef.nativeElement['borderSideTablet'];
|
|
31079
|
+
}
|
|
31080
|
+
set borderSideLaptop(value) {
|
|
31081
|
+
this.elementRef.nativeElement['borderSideLaptop'] = value;
|
|
31082
|
+
}
|
|
31083
|
+
get borderSideLaptop() {
|
|
31084
|
+
return this.elementRef.nativeElement['borderSideLaptop'];
|
|
31121
31085
|
}
|
|
31122
31086
|
set grow(value) {
|
|
31123
31087
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -31434,17 +31398,89 @@ class PxRibbon {
|
|
|
31434
31398
|
constructor(elementRef) {
|
|
31435
31399
|
this.elementRef = elementRef;
|
|
31436
31400
|
}
|
|
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:
|
|
31401
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSection, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
31402
|
+
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
31403
|
}
|
|
31440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
31404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSection, decorators: [{
|
|
31441
31405
|
type: Directive,
|
|
31442
31406
|
args: [{
|
|
31443
|
-
selector: 'px-
|
|
31407
|
+
selector: 'px-section',
|
|
31444
31408
|
standalone: true,
|
|
31445
31409
|
}]
|
|
31446
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
31410
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { backgroundColor: [{
|
|
31411
|
+
type: Input,
|
|
31412
|
+
args: ['background-color']
|
|
31413
|
+
}], backgroundGradient: [{
|
|
31414
|
+
type: Input,
|
|
31415
|
+
args: ['background-gradient']
|
|
31416
|
+
}], backgroundImage: [{
|
|
31417
|
+
type: Input,
|
|
31418
|
+
args: ['background-image']
|
|
31419
|
+
}], backgroundImageMobile: [{
|
|
31420
|
+
type: Input,
|
|
31421
|
+
args: ['background-image--mobile']
|
|
31422
|
+
}], backgroundImageTablet: [{
|
|
31423
|
+
type: Input,
|
|
31424
|
+
args: ['background-image--tablet']
|
|
31425
|
+
}], backgroundImageLaptop: [{
|
|
31426
|
+
type: Input,
|
|
31427
|
+
args: ['background-image--laptop']
|
|
31428
|
+
}], backgroundSize: [{
|
|
31429
|
+
type: Input,
|
|
31430
|
+
args: ['background-size']
|
|
31431
|
+
}], backgroundPosition: [{
|
|
31432
|
+
type: Input,
|
|
31433
|
+
args: ['background-position']
|
|
31434
|
+
}], paddingBlock: [{
|
|
31435
|
+
type: Input,
|
|
31436
|
+
args: ['padding-block']
|
|
31437
|
+
}], paddingTop: [{
|
|
31438
|
+
type: Input,
|
|
31439
|
+
args: ['padding-top']
|
|
31440
|
+
}], paddingBottom: [{
|
|
31441
|
+
type: Input,
|
|
31442
|
+
args: ['padding-bottom']
|
|
31443
|
+
}], paddingBlockMobile: [{
|
|
31444
|
+
type: Input,
|
|
31445
|
+
args: ['padding-block--mobile']
|
|
31446
|
+
}], paddingTopMobile: [{
|
|
31447
|
+
type: Input,
|
|
31448
|
+
args: ['padding-top--mobile']
|
|
31449
|
+
}], paddingBottomMobile: [{
|
|
31450
|
+
type: Input,
|
|
31451
|
+
args: ['padding-bottom--mobile']
|
|
31452
|
+
}], paddingBlockTablet: [{
|
|
31453
|
+
type: Input,
|
|
31454
|
+
args: ['padding-block--tablet']
|
|
31455
|
+
}], paddingTopTablet: [{
|
|
31456
|
+
type: Input,
|
|
31457
|
+
args: ['padding-top--tablet']
|
|
31458
|
+
}], paddingBottomTablet: [{
|
|
31459
|
+
type: Input,
|
|
31460
|
+
args: ['padding-bottom--tablet']
|
|
31461
|
+
}], paddingBlockLaptop: [{
|
|
31462
|
+
type: Input,
|
|
31463
|
+
args: ['padding-block--laptop']
|
|
31464
|
+
}], paddingTopLaptop: [{
|
|
31465
|
+
type: Input,
|
|
31466
|
+
args: ['padding-top--laptop']
|
|
31467
|
+
}], paddingBottomLaptop: [{
|
|
31468
|
+
type: Input,
|
|
31469
|
+
args: ['padding-bottom--laptop']
|
|
31470
|
+
}], border: [{
|
|
31447
31471
|
type: Input
|
|
31472
|
+
}], borderSide: [{
|
|
31473
|
+
type: Input,
|
|
31474
|
+
args: ['border-side']
|
|
31475
|
+
}], borderSideMobile: [{
|
|
31476
|
+
type: Input,
|
|
31477
|
+
args: ['border-side--mobile']
|
|
31478
|
+
}], borderSideTablet: [{
|
|
31479
|
+
type: Input,
|
|
31480
|
+
args: ['border-side--tablet']
|
|
31481
|
+
}], borderSideLaptop: [{
|
|
31482
|
+
type: Input,
|
|
31483
|
+
args: ['border-side--laptop']
|
|
31448
31484
|
}], grow: [{
|
|
31449
31485
|
type: Input
|
|
31450
31486
|
}], growMobile: [{
|
|
@@ -31614,6 +31650,12 @@ class PxSelectableBox {
|
|
|
31614
31650
|
get hideFooter() {
|
|
31615
31651
|
return this.elementRef.nativeElement['hideFooter'];
|
|
31616
31652
|
}
|
|
31653
|
+
set footerPosition(value) {
|
|
31654
|
+
this.elementRef.nativeElement['footerPosition'] = value;
|
|
31655
|
+
}
|
|
31656
|
+
get footerPosition() {
|
|
31657
|
+
return this.elementRef.nativeElement['footerPosition'];
|
|
31658
|
+
}
|
|
31617
31659
|
set grow(value) {
|
|
31618
31660
|
this.elementRef.nativeElement['grow'] = value;
|
|
31619
31661
|
}
|
|
@@ -31930,7 +31972,7 @@ class PxSelectableBox {
|
|
|
31930
31972
|
this.elementRef = elementRef;
|
|
31931
31973
|
}
|
|
31932
31974
|
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 });
|
|
31975
|
+
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
31976
|
}
|
|
31935
31977
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBox, decorators: [{
|
|
31936
31978
|
type: Directive,
|
|
@@ -31943,6 +31985,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
31943
31985
|
}], hideFooter: [{
|
|
31944
31986
|
type: Input,
|
|
31945
31987
|
args: ['hide-footer']
|
|
31988
|
+
}], footerPosition: [{
|
|
31989
|
+
type: Input,
|
|
31990
|
+
args: ['footer-position']
|
|
31946
31991
|
}], grow: [{
|
|
31947
31992
|
type: Input
|
|
31948
31993
|
}], growMobile: [{
|
|
@@ -32130,6 +32175,12 @@ class PxSelectableBoxCheckbox {
|
|
|
32130
32175
|
get disabled() {
|
|
32131
32176
|
return this.elementRef.nativeElement['disabled'];
|
|
32132
32177
|
}
|
|
32178
|
+
set footerPosition(value) {
|
|
32179
|
+
this.elementRef.nativeElement['footerPosition'] = value;
|
|
32180
|
+
}
|
|
32181
|
+
get footerPosition() {
|
|
32182
|
+
return this.elementRef.nativeElement['footerPosition'];
|
|
32183
|
+
}
|
|
32133
32184
|
set grow(value) {
|
|
32134
32185
|
this.elementRef.nativeElement['grow'] = value;
|
|
32135
32186
|
}
|
|
@@ -32450,7 +32501,7 @@ class PxSelectableBoxCheckbox {
|
|
|
32450
32501
|
});
|
|
32451
32502
|
}
|
|
32452
32503
|
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 });
|
|
32504
|
+
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
32505
|
}
|
|
32455
32506
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxCheckbox, decorators: [{
|
|
32456
32507
|
type: Directive,
|
|
@@ -32468,6 +32519,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
32468
32519
|
type: Input
|
|
32469
32520
|
}], disabled: [{
|
|
32470
32521
|
type: Input
|
|
32522
|
+
}], footerPosition: [{
|
|
32523
|
+
type: Input,
|
|
32524
|
+
args: ['footer-position']
|
|
32471
32525
|
}], grow: [{
|
|
32472
32526
|
type: Input
|
|
32473
32527
|
}], growMobile: [{
|
|
@@ -32657,6 +32711,12 @@ class PxSelectableBoxRadio {
|
|
|
32657
32711
|
get disabled() {
|
|
32658
32712
|
return this.elementRef.nativeElement['disabled'];
|
|
32659
32713
|
}
|
|
32714
|
+
set footerPosition(value) {
|
|
32715
|
+
this.elementRef.nativeElement['footerPosition'] = value;
|
|
32716
|
+
}
|
|
32717
|
+
get footerPosition() {
|
|
32718
|
+
return this.elementRef.nativeElement['footerPosition'];
|
|
32719
|
+
}
|
|
32660
32720
|
set grow(value) {
|
|
32661
32721
|
this.elementRef.nativeElement['grow'] = value;
|
|
32662
32722
|
}
|
|
@@ -32985,7 +33045,7 @@ class PxSelectableBoxRadio {
|
|
|
32985
33045
|
});
|
|
32986
33046
|
}
|
|
32987
33047
|
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 });
|
|
33048
|
+
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
33049
|
}
|
|
32990
33050
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxRadio, decorators: [{
|
|
32991
33051
|
type: Directive,
|
|
@@ -33003,6 +33063,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
33003
33063
|
type: Input
|
|
33004
33064
|
}], disabled: [{
|
|
33005
33065
|
type: Input
|
|
33066
|
+
}], footerPosition: [{
|
|
33067
|
+
type: Input,
|
|
33068
|
+
args: ['footer-position']
|
|
33006
33069
|
}], grow: [{
|
|
33007
33070
|
type: Input
|
|
33008
33071
|
}], growMobile: [{
|
|
@@ -35869,42 +35932,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
35869
35932
|
}], CLOSE_EVENT: [{
|
|
35870
35933
|
type: Output
|
|
35871
35934
|
}] } });
|
|
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
35935
|
/**
|
|
35909
35936
|
* @description Type-only wrapper for <px-theme-switcher>
|
|
35910
35937
|
*/
|
|
@@ -40519,6 +40546,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
40519
40546
|
}], TIMELINE_ITEM_CONNECTED_EVENT: [{
|
|
40520
40547
|
type: Output
|
|
40521
40548
|
}] } });
|
|
40549
|
+
/**
|
|
40550
|
+
* @description Type-only wrapper for <px-toaster>
|
|
40551
|
+
*/
|
|
40552
|
+
class PxToaster {
|
|
40553
|
+
elementRef;
|
|
40554
|
+
set id(value) {
|
|
40555
|
+
this.elementRef.nativeElement['id'] = value;
|
|
40556
|
+
}
|
|
40557
|
+
get id() {
|
|
40558
|
+
return this.elementRef.nativeElement['id'];
|
|
40559
|
+
}
|
|
40560
|
+
set open(value) {
|
|
40561
|
+
this.elementRef.nativeElement['open'] = value;
|
|
40562
|
+
}
|
|
40563
|
+
get open() {
|
|
40564
|
+
return this.elementRef.nativeElement['open'];
|
|
40565
|
+
}
|
|
40566
|
+
set status(value) {
|
|
40567
|
+
this.elementRef.nativeElement['status'] = value;
|
|
40568
|
+
}
|
|
40569
|
+
get status() {
|
|
40570
|
+
return this.elementRef.nativeElement['status'];
|
|
40571
|
+
}
|
|
40572
|
+
set duration(value) {
|
|
40573
|
+
this.elementRef.nativeElement['duration'] = value;
|
|
40574
|
+
}
|
|
40575
|
+
get duration() {
|
|
40576
|
+
return this.elementRef.nativeElement['duration'];
|
|
40577
|
+
}
|
|
40578
|
+
set inverted(value) {
|
|
40579
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
40580
|
+
}
|
|
40581
|
+
get inverted() {
|
|
40582
|
+
return this.elementRef.nativeElement['inverted'];
|
|
40583
|
+
}
|
|
40584
|
+
HIDE_EVENT = new EventEmitter();
|
|
40585
|
+
constructor(elementRef) {
|
|
40586
|
+
this.elementRef = elementRef;
|
|
40587
|
+
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
40588
|
+
this.HIDE_EVENT.emit(e.detail);
|
|
40589
|
+
});
|
|
40590
|
+
}
|
|
40591
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxToaster, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
40592
|
+
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 });
|
|
40593
|
+
}
|
|
40594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxToaster, decorators: [{
|
|
40595
|
+
type: Directive,
|
|
40596
|
+
args: [{
|
|
40597
|
+
selector: 'px-toaster',
|
|
40598
|
+
standalone: true,
|
|
40599
|
+
}]
|
|
40600
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { id: [{
|
|
40601
|
+
type: Input
|
|
40602
|
+
}], open: [{
|
|
40603
|
+
type: Input
|
|
40604
|
+
}], status: [{
|
|
40605
|
+
type: Input
|
|
40606
|
+
}], duration: [{
|
|
40607
|
+
type: Input
|
|
40608
|
+
}], inverted: [{
|
|
40609
|
+
type: Input
|
|
40610
|
+
}], HIDE_EVENT: [{
|
|
40611
|
+
type: Output
|
|
40612
|
+
}] } });
|
|
40522
40613
|
/**
|
|
40523
40614
|
* @description Type-only wrapper for <px-typography>
|
|
40524
40615
|
*/
|
|
@@ -41266,7 +41357,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41266
41357
|
}] } });
|
|
41267
41358
|
class Lavender {
|
|
41268
41359
|
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,
|
|
41360
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, 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, 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
41361
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41271
41362
|
}
|
|
41272
41363
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41309,12 +41400,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41309
41400
|
PxH5,
|
|
41310
41401
|
PxH6,
|
|
41311
41402
|
PxHeadingGroup,
|
|
41403
|
+
PxImg,
|
|
41404
|
+
PxPicture,
|
|
41312
41405
|
PxInput,
|
|
41313
41406
|
PxSelect,
|
|
41314
41407
|
PxTextarea,
|
|
41315
41408
|
PxFileupload,
|
|
41316
|
-
PxImg,
|
|
41317
|
-
PxPicture,
|
|
41318
41409
|
PxPage,
|
|
41319
41410
|
PxSpacer,
|
|
41320
41411
|
PxStack,
|
|
@@ -41334,8 +41425,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41334
41425
|
PxRadio,
|
|
41335
41426
|
PxRadioBase,
|
|
41336
41427
|
PxRadioGroup,
|
|
41337
|
-
PxSection,
|
|
41338
41428
|
PxRibbon,
|
|
41429
|
+
PxSection,
|
|
41339
41430
|
PxSelectableBox,
|
|
41340
41431
|
PxSelectableBoxCheckbox,
|
|
41341
41432
|
PxSelectableBoxRadio,
|
|
@@ -41345,7 +41436,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41345
41436
|
PxSpinner,
|
|
41346
41437
|
PxStatus,
|
|
41347
41438
|
PxStatusCard,
|
|
41348
|
-
PxStickyContainer,
|
|
41349
41439
|
PxThemeSwitcher,
|
|
41350
41440
|
PxSwitch,
|
|
41351
41441
|
PxTable,
|
|
@@ -41366,6 +41456,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41366
41456
|
PxTileSwitch,
|
|
41367
41457
|
PxTimeline,
|
|
41368
41458
|
PxTimelineItem,
|
|
41459
|
+
PxToaster,
|
|
41369
41460
|
PxTypography,
|
|
41370
41461
|
PxPatch,
|
|
41371
41462
|
PxIcon,
|
|
@@ -41411,12 +41502,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41411
41502
|
PxH5,
|
|
41412
41503
|
PxH6,
|
|
41413
41504
|
PxHeadingGroup,
|
|
41505
|
+
PxImg,
|
|
41506
|
+
PxPicture,
|
|
41414
41507
|
PxInput,
|
|
41415
41508
|
PxSelect,
|
|
41416
41509
|
PxTextarea,
|
|
41417
41510
|
PxFileupload,
|
|
41418
|
-
PxImg,
|
|
41419
|
-
PxPicture,
|
|
41420
41511
|
PxPage,
|
|
41421
41512
|
PxSpacer,
|
|
41422
41513
|
PxStack,
|
|
@@ -41436,8 +41527,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41436
41527
|
PxRadio,
|
|
41437
41528
|
PxRadioBase,
|
|
41438
41529
|
PxRadioGroup,
|
|
41439
|
-
PxSection,
|
|
41440
41530
|
PxRibbon,
|
|
41531
|
+
PxSection,
|
|
41441
41532
|
PxSelectableBox,
|
|
41442
41533
|
PxSelectableBoxCheckbox,
|
|
41443
41534
|
PxSelectableBoxRadio,
|
|
@@ -41447,7 +41538,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41447
41538
|
PxSpinner,
|
|
41448
41539
|
PxStatus,
|
|
41449
41540
|
PxStatusCard,
|
|
41450
|
-
PxStickyContainer,
|
|
41451
41541
|
PxThemeSwitcher,
|
|
41452
41542
|
PxSwitch,
|
|
41453
41543
|
PxTable,
|
|
@@ -41468,6 +41558,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41468
41558
|
PxTileSwitch,
|
|
41469
41559
|
PxTimeline,
|
|
41470
41560
|
PxTimelineItem,
|
|
41561
|
+
PxToaster,
|
|
41471
41562
|
PxTypography,
|
|
41472
41563
|
PxPatch,
|
|
41473
41564
|
PxIcon,
|
|
@@ -41483,5 +41574,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41483
41574
|
* Generated bundle index. Do not edit.
|
|
41484
41575
|
*/
|
|
41485
41576
|
|
|
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,
|
|
41577
|
+
export { Lavender, LavenderValueAccessors, PxA, PxAWrapper, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxButtonWrapper, PxCard, PxCardActions, PxCardContainer, PxCardHeading, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxCheckboxValueAccessor, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxInputValueAccessor, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRadioGroupValueAccessor, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard, PxSwitch, PxSwitchValueAccessor, PxTab, PxTabPanel, PxTable, PxTabs, PxTag, PxTbody, PxTd, PxTextarea, PxTextareaValueAccessor, PxTh, PxThead, PxThemeProvider, PxThemeSwitcher, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTr, PxTypography, PxVstack };
|
|
41487
41578
|
//# sourceMappingURL=proximus-lavender-angular.mjs.map
|