@proximus/lavender-angular 1.4.15-alpha.2 → 1.4.15-alpha.4
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 +8 -0
- package/fesm2022/proximus-lavender-angular.mjs +675 -675
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +191 -191
- 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['
|
|
19069
|
+
set loading(value) {
|
|
19070
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
18997
19071
|
}
|
|
18998
|
-
get
|
|
18999
|
-
return this.elementRef.nativeElement['
|
|
19072
|
+
get loading() {
|
|
19073
|
+
return this.elementRef.nativeElement['loading'];
|
|
19000
19074
|
}
|
|
19001
|
-
set
|
|
19002
|
-
this.elementRef.nativeElement['
|
|
19075
|
+
set alt(value) {
|
|
19076
|
+
this.elementRef.nativeElement['alt'] = value;
|
|
19003
19077
|
}
|
|
19004
|
-
get
|
|
19005
|
-
return this.elementRef.nativeElement['
|
|
19078
|
+
get alt() {
|
|
19079
|
+
return this.elementRef.nativeElement['alt'];
|
|
19006
19080
|
}
|
|
19007
|
-
set
|
|
19008
|
-
this.elementRef.nativeElement['
|
|
19081
|
+
set src(value) {
|
|
19082
|
+
this.elementRef.nativeElement['src'] = value;
|
|
19009
19083
|
}
|
|
19010
|
-
get
|
|
19011
|
-
return this.elementRef.nativeElement['
|
|
19084
|
+
get src() {
|
|
19085
|
+
return this.elementRef.nativeElement['src'];
|
|
19012
19086
|
}
|
|
19013
|
-
set
|
|
19014
|
-
this.elementRef.nativeElement['
|
|
19087
|
+
set borderRadius(value) {
|
|
19088
|
+
this.elementRef.nativeElement['borderRadius'] = value;
|
|
19015
19089
|
}
|
|
19016
|
-
get
|
|
19017
|
-
return this.elementRef.nativeElement['
|
|
19090
|
+
get borderRadius() {
|
|
19091
|
+
return this.elementRef.nativeElement['borderRadius'];
|
|
19018
19092
|
}
|
|
19019
|
-
set
|
|
19020
|
-
this.elementRef.nativeElement['
|
|
19093
|
+
set noBorderRadius(value) {
|
|
19094
|
+
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
19021
19095
|
}
|
|
19022
|
-
get
|
|
19023
|
-
return this.elementRef.nativeElement['
|
|
19096
|
+
get noBorderRadius() {
|
|
19097
|
+
return this.elementRef.nativeElement['noBorderRadius'];
|
|
19024
19098
|
}
|
|
19025
|
-
set
|
|
19026
|
-
this.elementRef.nativeElement['
|
|
19099
|
+
set noBorderRadiusMobile(value) {
|
|
19100
|
+
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
19027
19101
|
}
|
|
19028
|
-
get
|
|
19029
|
-
return this.elementRef.nativeElement['
|
|
19102
|
+
get noBorderRadiusMobile() {
|
|
19103
|
+
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
19030
19104
|
}
|
|
19031
|
-
set
|
|
19032
|
-
this.elementRef.nativeElement['
|
|
19105
|
+
set noBorderRadiusTablet(value) {
|
|
19106
|
+
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
19033
19107
|
}
|
|
19034
|
-
get
|
|
19035
|
-
return this.elementRef.nativeElement['
|
|
19108
|
+
get noBorderRadiusTablet() {
|
|
19109
|
+
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
19036
19110
|
}
|
|
19037
|
-
set
|
|
19038
|
-
this.elementRef.nativeElement['
|
|
19111
|
+
set noBorderRadiusLaptop(value) {
|
|
19112
|
+
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
19039
19113
|
}
|
|
19040
|
-
get
|
|
19041
|
-
return this.elementRef.nativeElement['
|
|
19114
|
+
get noBorderRadiusLaptop() {
|
|
19115
|
+
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
19042
19116
|
}
|
|
19043
|
-
set
|
|
19044
|
-
this.elementRef.nativeElement['
|
|
19117
|
+
set width(value) {
|
|
19118
|
+
this.elementRef.nativeElement['width'] = value;
|
|
19045
19119
|
}
|
|
19046
|
-
get
|
|
19047
|
-
return this.elementRef.nativeElement['
|
|
19120
|
+
get width() {
|
|
19121
|
+
return this.elementRef.nativeElement['width'];
|
|
19048
19122
|
}
|
|
19049
|
-
set
|
|
19050
|
-
this.elementRef.nativeElement['
|
|
19123
|
+
set widthMobile(value) {
|
|
19124
|
+
this.elementRef.nativeElement['widthMobile'] = value;
|
|
19051
19125
|
}
|
|
19052
|
-
get
|
|
19053
|
-
return this.elementRef.nativeElement['
|
|
19126
|
+
get widthMobile() {
|
|
19127
|
+
return this.elementRef.nativeElement['widthMobile'];
|
|
19054
19128
|
}
|
|
19055
|
-
set
|
|
19056
|
-
this.elementRef.nativeElement['
|
|
19129
|
+
set widthTablet(value) {
|
|
19130
|
+
this.elementRef.nativeElement['widthTablet'] = value;
|
|
19057
19131
|
}
|
|
19058
|
-
get
|
|
19059
|
-
return this.elementRef.nativeElement['
|
|
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;
|
|
@@ -19886,13 +20031,13 @@ class PxTextarea {
|
|
|
19886
20031
|
this.event.emit(e.detail);
|
|
19887
20032
|
});
|
|
19888
20033
|
}
|
|
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:
|
|
20034
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxInput, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
20035
|
+
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"], 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
20036
|
}
|
|
19892
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
20037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxInput, decorators: [{
|
|
19893
20038
|
type: Directive,
|
|
19894
20039
|
args: [{
|
|
19895
|
-
selector: 'px-
|
|
20040
|
+
selector: 'px-input',
|
|
19896
20041
|
standalone: true,
|
|
19897
20042
|
}]
|
|
19898
20043
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
@@ -20066,9 +20211,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
20066
20211
|
type: Output
|
|
20067
20212
|
}] } });
|
|
20068
20213
|
/**
|
|
20069
|
-
* @description Type-only wrapper for <px-
|
|
20214
|
+
* @description Type-only wrapper for <px-select>
|
|
20070
20215
|
*/
|
|
20071
|
-
class
|
|
20216
|
+
class PxSelect {
|
|
20072
20217
|
elementRef;
|
|
20073
20218
|
set state(value) {
|
|
20074
20219
|
this.elementRef.nativeElement['state'] = value;
|
|
@@ -20425,13 +20570,13 @@ class PxFileupload {
|
|
|
20425
20570
|
this.event.emit(e.detail);
|
|
20426
20571
|
});
|
|
20427
20572
|
}
|
|
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:
|
|
20573
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelect, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
20574
|
+
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"], 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
20575
|
}
|
|
20431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
20576
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelect, decorators: [{
|
|
20432
20577
|
type: Directive,
|
|
20433
20578
|
args: [{
|
|
20434
|
-
selector: 'px-
|
|
20579
|
+
selector: 'px-select',
|
|
20435
20580
|
standalone: true,
|
|
20436
20581
|
}]
|
|
20437
20582
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
@@ -20605,102 +20750,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
20605
20750
|
type: Output
|
|
20606
20751
|
}] } });
|
|
20607
20752
|
/**
|
|
20608
|
-
* @description Type-only wrapper for <px-
|
|
20753
|
+
* @description Type-only wrapper for <px-textarea>
|
|
20609
20754
|
*/
|
|
20610
|
-
class
|
|
20755
|
+
class PxTextarea {
|
|
20611
20756
|
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;
|
|
20665
|
-
}
|
|
20666
|
-
get width() {
|
|
20667
|
-
return this.elementRef.nativeElement['width'];
|
|
20668
|
-
}
|
|
20669
|
-
set widthMobile(value) {
|
|
20670
|
-
this.elementRef.nativeElement['widthMobile'] = value;
|
|
20757
|
+
set state(value) {
|
|
20758
|
+
this.elementRef.nativeElement['state'] = value;
|
|
20671
20759
|
}
|
|
20672
|
-
get
|
|
20673
|
-
return this.elementRef.nativeElement['
|
|
20760
|
+
get state() {
|
|
20761
|
+
return this.elementRef.nativeElement['state'];
|
|
20674
20762
|
}
|
|
20675
|
-
set
|
|
20676
|
-
this.elementRef.nativeElement['
|
|
20763
|
+
set extended(value) {
|
|
20764
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
20677
20765
|
}
|
|
20678
|
-
get
|
|
20679
|
-
return this.elementRef.nativeElement['
|
|
20766
|
+
get extended() {
|
|
20767
|
+
return this.elementRef.nativeElement['extended'];
|
|
20680
20768
|
}
|
|
20681
|
-
set
|
|
20682
|
-
this.elementRef.nativeElement['
|
|
20769
|
+
set extendedMobile(value) {
|
|
20770
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
20683
20771
|
}
|
|
20684
|
-
get
|
|
20685
|
-
return this.elementRef.nativeElement['
|
|
20772
|
+
get extendedMobile() {
|
|
20773
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
20686
20774
|
}
|
|
20687
|
-
set
|
|
20688
|
-
this.elementRef.nativeElement['
|
|
20775
|
+
set extendedTablet(value) {
|
|
20776
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
20689
20777
|
}
|
|
20690
|
-
get
|
|
20691
|
-
return this.elementRef.nativeElement['
|
|
20778
|
+
get extendedTablet() {
|
|
20779
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
20692
20780
|
}
|
|
20693
|
-
set
|
|
20694
|
-
this.elementRef.nativeElement['
|
|
20781
|
+
set extendedLaptop(value) {
|
|
20782
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
20695
20783
|
}
|
|
20696
|
-
get
|
|
20697
|
-
return this.elementRef.nativeElement['
|
|
20784
|
+
get extendedLaptop() {
|
|
20785
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
20698
20786
|
}
|
|
20699
|
-
set
|
|
20700
|
-
this.elementRef.nativeElement['
|
|
20787
|
+
set extendedDesktop(value) {
|
|
20788
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
20701
20789
|
}
|
|
20702
|
-
get
|
|
20703
|
-
return this.elementRef.nativeElement['
|
|
20790
|
+
get extendedDesktop() {
|
|
20791
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
20704
20792
|
}
|
|
20705
20793
|
set grow(value) {
|
|
20706
20794
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -21014,57 +21102,38 @@ class PxImg {
|
|
|
21014
21102
|
get wordBreakAllDesktop() {
|
|
21015
21103
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
21016
21104
|
}
|
|
21105
|
+
event = new EventEmitter();
|
|
21017
21106
|
constructor(elementRef) {
|
|
21018
21107
|
this.elementRef = elementRef;
|
|
21108
|
+
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
21109
|
+
this.event.emit(e.detail);
|
|
21110
|
+
});
|
|
21019
21111
|
}
|
|
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:
|
|
21112
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTextarea, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21113
|
+
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"], 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
21114
|
}
|
|
21023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
21115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTextarea, decorators: [{
|
|
21024
21116
|
type: Directive,
|
|
21025
21117
|
args: [{
|
|
21026
|
-
selector: 'px-
|
|
21118
|
+
selector: 'px-textarea',
|
|
21027
21119
|
standalone: true,
|
|
21028
21120
|
}]
|
|
21029
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
21030
|
-
type: Input
|
|
21031
|
-
}], alt: [{
|
|
21032
|
-
type: Input
|
|
21033
|
-
}], loading: [{
|
|
21121
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
21034
21122
|
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: [{
|
|
21048
|
-
type: Input,
|
|
21049
|
-
args: ['no-border-radius--laptop']
|
|
21050
|
-
}], width: [{
|
|
21123
|
+
}], extended: [{
|
|
21051
21124
|
type: Input
|
|
21052
|
-
}],
|
|
21125
|
+
}], extendedMobile: [{
|
|
21053
21126
|
type: Input,
|
|
21054
|
-
args: ['
|
|
21055
|
-
}],
|
|
21127
|
+
args: ['extended--mobile']
|
|
21128
|
+
}], extendedTablet: [{
|
|
21056
21129
|
type: Input,
|
|
21057
|
-
args: ['
|
|
21058
|
-
}],
|
|
21130
|
+
args: ['extended--tablet']
|
|
21131
|
+
}], extendedLaptop: [{
|
|
21059
21132
|
type: Input,
|
|
21060
|
-
args: ['
|
|
21061
|
-
}],
|
|
21133
|
+
args: ['extended--laptop']
|
|
21134
|
+
}], extendedDesktop: [{
|
|
21062
21135
|
type: Input,
|
|
21063
|
-
args: ['
|
|
21064
|
-
}], cover: [{
|
|
21065
|
-
type: Input
|
|
21066
|
-
}], disabled: [{
|
|
21067
|
-
type: Input
|
|
21136
|
+
args: ['extended--desktop']
|
|
21068
21137
|
}], grow: [{
|
|
21069
21138
|
type: Input
|
|
21070
21139
|
}], growMobile: [{
|
|
@@ -21216,101 +21285,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
21216
21285
|
}], wordBreakAllDesktop: [{
|
|
21217
21286
|
type: Input,
|
|
21218
21287
|
args: ['word-break-all--desktop']
|
|
21288
|
+
}], event: [{
|
|
21289
|
+
type: Output
|
|
21219
21290
|
}] } });
|
|
21220
21291
|
/**
|
|
21221
|
-
* @description Type-only wrapper for <px-
|
|
21292
|
+
* @description Type-only wrapper for <px-fileupload>
|
|
21222
21293
|
*/
|
|
21223
|
-
class
|
|
21294
|
+
class PxFileupload {
|
|
21224
21295
|
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;
|
|
21275
|
-
}
|
|
21276
|
-
get width() {
|
|
21277
|
-
return this.elementRef.nativeElement['width'];
|
|
21278
|
-
}
|
|
21279
|
-
set widthMobile(value) {
|
|
21280
|
-
this.elementRef.nativeElement['widthMobile'] = value;
|
|
21296
|
+
set state(value) {
|
|
21297
|
+
this.elementRef.nativeElement['state'] = value;
|
|
21281
21298
|
}
|
|
21282
|
-
get
|
|
21283
|
-
return this.elementRef.nativeElement['
|
|
21299
|
+
get state() {
|
|
21300
|
+
return this.elementRef.nativeElement['state'];
|
|
21284
21301
|
}
|
|
21285
|
-
set
|
|
21286
|
-
this.elementRef.nativeElement['
|
|
21302
|
+
set extended(value) {
|
|
21303
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
21287
21304
|
}
|
|
21288
|
-
get
|
|
21289
|
-
return this.elementRef.nativeElement['
|
|
21305
|
+
get extended() {
|
|
21306
|
+
return this.elementRef.nativeElement['extended'];
|
|
21290
21307
|
}
|
|
21291
|
-
set
|
|
21292
|
-
this.elementRef.nativeElement['
|
|
21308
|
+
set extendedMobile(value) {
|
|
21309
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
21293
21310
|
}
|
|
21294
|
-
get
|
|
21295
|
-
return this.elementRef.nativeElement['
|
|
21311
|
+
get extendedMobile() {
|
|
21312
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
21296
21313
|
}
|
|
21297
|
-
set
|
|
21298
|
-
this.elementRef.nativeElement['
|
|
21314
|
+
set extendedTablet(value) {
|
|
21315
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
21299
21316
|
}
|
|
21300
|
-
get
|
|
21301
|
-
return this.elementRef.nativeElement['
|
|
21317
|
+
get extendedTablet() {
|
|
21318
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
21302
21319
|
}
|
|
21303
|
-
set
|
|
21304
|
-
this.elementRef.nativeElement['
|
|
21320
|
+
set extendedLaptop(value) {
|
|
21321
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
21305
21322
|
}
|
|
21306
|
-
get
|
|
21307
|
-
return this.elementRef.nativeElement['
|
|
21323
|
+
get extendedLaptop() {
|
|
21324
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
21308
21325
|
}
|
|
21309
|
-
set
|
|
21310
|
-
this.elementRef.nativeElement['
|
|
21326
|
+
set extendedDesktop(value) {
|
|
21327
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
21311
21328
|
}
|
|
21312
|
-
get
|
|
21313
|
-
return this.elementRef.nativeElement['
|
|
21329
|
+
get extendedDesktop() {
|
|
21330
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
21314
21331
|
}
|
|
21315
21332
|
set grow(value) {
|
|
21316
21333
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -21624,57 +21641,38 @@ class PxPicture {
|
|
|
21624
21641
|
get wordBreakAllDesktop() {
|
|
21625
21642
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
21626
21643
|
}
|
|
21644
|
+
event = new EventEmitter();
|
|
21627
21645
|
constructor(elementRef) {
|
|
21628
21646
|
this.elementRef = elementRef;
|
|
21647
|
+
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
21648
|
+
this.event.emit(e.detail);
|
|
21649
|
+
});
|
|
21629
21650
|
}
|
|
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:
|
|
21651
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxFileupload, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21652
|
+
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"], 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
21653
|
}
|
|
21633
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
21654
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxFileupload, decorators: [{
|
|
21634
21655
|
type: Directive,
|
|
21635
21656
|
args: [{
|
|
21636
|
-
selector: 'px-
|
|
21657
|
+
selector: 'px-fileupload',
|
|
21637
21658
|
standalone: true,
|
|
21638
21659
|
}]
|
|
21639
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
21640
|
-
type: Input
|
|
21641
|
-
}], alt: [{
|
|
21642
|
-
type: Input
|
|
21643
|
-
}], src: [{
|
|
21660
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
21644
21661
|
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: [{
|
|
21658
|
-
type: Input,
|
|
21659
|
-
args: ['no-border-radius--laptop']
|
|
21660
|
-
}], width: [{
|
|
21662
|
+
}], extended: [{
|
|
21661
21663
|
type: Input
|
|
21662
|
-
}],
|
|
21664
|
+
}], extendedMobile: [{
|
|
21663
21665
|
type: Input,
|
|
21664
|
-
args: ['
|
|
21665
|
-
}],
|
|
21666
|
+
args: ['extended--mobile']
|
|
21667
|
+
}], extendedTablet: [{
|
|
21666
21668
|
type: Input,
|
|
21667
|
-
args: ['
|
|
21668
|
-
}],
|
|
21669
|
+
args: ['extended--tablet']
|
|
21670
|
+
}], extendedLaptop: [{
|
|
21669
21671
|
type: Input,
|
|
21670
|
-
args: ['
|
|
21671
|
-
}],
|
|
21672
|
+
args: ['extended--laptop']
|
|
21673
|
+
}], extendedDesktop: [{
|
|
21672
21674
|
type: Input,
|
|
21673
|
-
args: ['
|
|
21674
|
-
}], cover: [{
|
|
21675
|
-
type: Input
|
|
21676
|
-
}], disabled: [{
|
|
21677
|
-
type: Input
|
|
21675
|
+
args: ['extended--desktop']
|
|
21678
21676
|
}], grow: [{
|
|
21679
21677
|
type: Input
|
|
21680
21678
|
}], growMobile: [{
|
|
@@ -21826,6 +21824,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
21826
21824
|
}], wordBreakAllDesktop: [{
|
|
21827
21825
|
type: Input,
|
|
21828
21826
|
args: ['word-break-all--desktop']
|
|
21827
|
+
}], event: [{
|
|
21828
|
+
type: Output
|
|
21829
21829
|
}] } });
|
|
21830
21830
|
/**
|
|
21831
21831
|
* @description Type-only wrapper for <px-page>
|
|
@@ -30404,183 +30404,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
30404
30404
|
args: ['word-break-all--desktop']
|
|
30405
30405
|
}] } });
|
|
30406
30406
|
/**
|
|
30407
|
-
* @description Type-only wrapper for <px-
|
|
30407
|
+
* @description Type-only wrapper for <px-ribbon>
|
|
30408
30408
|
*/
|
|
30409
|
-
class
|
|
30409
|
+
class PxRibbon {
|
|
30410
30410
|
elementRef;
|
|
30411
|
-
set
|
|
30412
|
-
this.elementRef.nativeElement['
|
|
30411
|
+
set inverted(value) {
|
|
30412
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
30413
30413
|
}
|
|
30414
|
-
get
|
|
30415
|
-
return this.elementRef.nativeElement['
|
|
30414
|
+
get inverted() {
|
|
30415
|
+
return this.elementRef.nativeElement['inverted'];
|
|
30416
30416
|
}
|
|
30417
|
-
set
|
|
30418
|
-
this.elementRef.nativeElement['
|
|
30417
|
+
set grow(value) {
|
|
30418
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
30419
30419
|
}
|
|
30420
|
-
get
|
|
30421
|
-
return this.elementRef.nativeElement['
|
|
30420
|
+
get grow() {
|
|
30421
|
+
return this.elementRef.nativeElement['grow'];
|
|
30422
30422
|
}
|
|
30423
|
-
set
|
|
30424
|
-
this.elementRef.nativeElement['
|
|
30423
|
+
set growMobile(value) {
|
|
30424
|
+
this.elementRef.nativeElement['growMobile'] = value;
|
|
30425
30425
|
}
|
|
30426
|
-
get
|
|
30427
|
-
return this.elementRef.nativeElement['
|
|
30426
|
+
get growMobile() {
|
|
30427
|
+
return this.elementRef.nativeElement['growMobile'];
|
|
30428
30428
|
}
|
|
30429
|
-
set
|
|
30430
|
-
this.elementRef.nativeElement['
|
|
30429
|
+
set growTablet(value) {
|
|
30430
|
+
this.elementRef.nativeElement['growTablet'] = value;
|
|
30431
30431
|
}
|
|
30432
|
-
get
|
|
30433
|
-
return this.elementRef.nativeElement['
|
|
30432
|
+
get growTablet() {
|
|
30433
|
+
return this.elementRef.nativeElement['growTablet'];
|
|
30434
30434
|
}
|
|
30435
|
-
set
|
|
30436
|
-
this.elementRef.nativeElement['
|
|
30435
|
+
set growLaptop(value) {
|
|
30436
|
+
this.elementRef.nativeElement['growLaptop'] = value;
|
|
30437
30437
|
}
|
|
30438
|
-
get
|
|
30439
|
-
return this.elementRef.nativeElement['
|
|
30440
|
-
}
|
|
30441
|
-
set backgroundImageLaptop(value) {
|
|
30442
|
-
this.elementRef.nativeElement['backgroundImageLaptop'] = value;
|
|
30443
|
-
}
|
|
30444
|
-
get backgroundImageLaptop() {
|
|
30445
|
-
return this.elementRef.nativeElement['backgroundImageLaptop'];
|
|
30446
|
-
}
|
|
30447
|
-
set backgroundSize(value) {
|
|
30448
|
-
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
30449
|
-
}
|
|
30450
|
-
get backgroundSize() {
|
|
30451
|
-
return this.elementRef.nativeElement['backgroundSize'];
|
|
30452
|
-
}
|
|
30453
|
-
set backgroundPosition(value) {
|
|
30454
|
-
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
30455
|
-
}
|
|
30456
|
-
get backgroundPosition() {
|
|
30457
|
-
return this.elementRef.nativeElement['backgroundPosition'];
|
|
30458
|
-
}
|
|
30459
|
-
set paddingBlock(value) {
|
|
30460
|
-
this.elementRef.nativeElement['paddingBlock'] = value;
|
|
30461
|
-
}
|
|
30462
|
-
get paddingBlock() {
|
|
30463
|
-
return this.elementRef.nativeElement['paddingBlock'];
|
|
30464
|
-
}
|
|
30465
|
-
set paddingTop(value) {
|
|
30466
|
-
this.elementRef.nativeElement['paddingTop'] = value;
|
|
30467
|
-
}
|
|
30468
|
-
get paddingTop() {
|
|
30469
|
-
return this.elementRef.nativeElement['paddingTop'];
|
|
30470
|
-
}
|
|
30471
|
-
set paddingBottom(value) {
|
|
30472
|
-
this.elementRef.nativeElement['paddingBottom'] = value;
|
|
30473
|
-
}
|
|
30474
|
-
get paddingBottom() {
|
|
30475
|
-
return this.elementRef.nativeElement['paddingBottom'];
|
|
30476
|
-
}
|
|
30477
|
-
set paddingBlockMobile(value) {
|
|
30478
|
-
this.elementRef.nativeElement['paddingBlockMobile'] = value;
|
|
30479
|
-
}
|
|
30480
|
-
get paddingBlockMobile() {
|
|
30481
|
-
return this.elementRef.nativeElement['paddingBlockMobile'];
|
|
30482
|
-
}
|
|
30483
|
-
set paddingTopMobile(value) {
|
|
30484
|
-
this.elementRef.nativeElement['paddingTopMobile'] = value;
|
|
30485
|
-
}
|
|
30486
|
-
get paddingTopMobile() {
|
|
30487
|
-
return this.elementRef.nativeElement['paddingTopMobile'];
|
|
30488
|
-
}
|
|
30489
|
-
set paddingBottomMobile(value) {
|
|
30490
|
-
this.elementRef.nativeElement['paddingBottomMobile'] = value;
|
|
30491
|
-
}
|
|
30492
|
-
get paddingBottomMobile() {
|
|
30493
|
-
return this.elementRef.nativeElement['paddingBottomMobile'];
|
|
30494
|
-
}
|
|
30495
|
-
set paddingBlockTablet(value) {
|
|
30496
|
-
this.elementRef.nativeElement['paddingBlockTablet'] = value;
|
|
30497
|
-
}
|
|
30498
|
-
get paddingBlockTablet() {
|
|
30499
|
-
return this.elementRef.nativeElement['paddingBlockTablet'];
|
|
30500
|
-
}
|
|
30501
|
-
set paddingTopTablet(value) {
|
|
30502
|
-
this.elementRef.nativeElement['paddingTopTablet'] = value;
|
|
30503
|
-
}
|
|
30504
|
-
get paddingTopTablet() {
|
|
30505
|
-
return this.elementRef.nativeElement['paddingTopTablet'];
|
|
30506
|
-
}
|
|
30507
|
-
set paddingBottomTablet(value) {
|
|
30508
|
-
this.elementRef.nativeElement['paddingBottomTablet'] = value;
|
|
30509
|
-
}
|
|
30510
|
-
get paddingBottomTablet() {
|
|
30511
|
-
return this.elementRef.nativeElement['paddingBottomTablet'];
|
|
30512
|
-
}
|
|
30513
|
-
set paddingBlockLaptop(value) {
|
|
30514
|
-
this.elementRef.nativeElement['paddingBlockLaptop'] = value;
|
|
30515
|
-
}
|
|
30516
|
-
get paddingBlockLaptop() {
|
|
30517
|
-
return this.elementRef.nativeElement['paddingBlockLaptop'];
|
|
30518
|
-
}
|
|
30519
|
-
set paddingTopLaptop(value) {
|
|
30520
|
-
this.elementRef.nativeElement['paddingTopLaptop'] = value;
|
|
30521
|
-
}
|
|
30522
|
-
get paddingTopLaptop() {
|
|
30523
|
-
return this.elementRef.nativeElement['paddingTopLaptop'];
|
|
30524
|
-
}
|
|
30525
|
-
set paddingBottomLaptop(value) {
|
|
30526
|
-
this.elementRef.nativeElement['paddingBottomLaptop'] = value;
|
|
30527
|
-
}
|
|
30528
|
-
get paddingBottomLaptop() {
|
|
30529
|
-
return this.elementRef.nativeElement['paddingBottomLaptop'];
|
|
30530
|
-
}
|
|
30531
|
-
set border(value) {
|
|
30532
|
-
this.elementRef.nativeElement['border'] = value;
|
|
30533
|
-
}
|
|
30534
|
-
get border() {
|
|
30535
|
-
return this.elementRef.nativeElement['border'];
|
|
30536
|
-
}
|
|
30537
|
-
set borderSide(value) {
|
|
30538
|
-
this.elementRef.nativeElement['borderSide'] = value;
|
|
30539
|
-
}
|
|
30540
|
-
get borderSide() {
|
|
30541
|
-
return this.elementRef.nativeElement['borderSide'];
|
|
30542
|
-
}
|
|
30543
|
-
set borderSideMobile(value) {
|
|
30544
|
-
this.elementRef.nativeElement['borderSideMobile'] = value;
|
|
30545
|
-
}
|
|
30546
|
-
get borderSideMobile() {
|
|
30547
|
-
return this.elementRef.nativeElement['borderSideMobile'];
|
|
30548
|
-
}
|
|
30549
|
-
set borderSideTablet(value) {
|
|
30550
|
-
this.elementRef.nativeElement['borderSideTablet'] = value;
|
|
30551
|
-
}
|
|
30552
|
-
get borderSideTablet() {
|
|
30553
|
-
return this.elementRef.nativeElement['borderSideTablet'];
|
|
30554
|
-
}
|
|
30555
|
-
set borderSideLaptop(value) {
|
|
30556
|
-
this.elementRef.nativeElement['borderSideLaptop'] = value;
|
|
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'];
|
|
30438
|
+
get growLaptop() {
|
|
30439
|
+
return this.elementRef.nativeElement['growLaptop'];
|
|
30584
30440
|
}
|
|
30585
30441
|
set growDesktop(value) {
|
|
30586
30442
|
this.elementRef.nativeElement['growDesktop'] = value;
|
|
@@ -30873,89 +30729,17 @@ class PxSection {
|
|
|
30873
30729
|
constructor(elementRef) {
|
|
30874
30730
|
this.elementRef = elementRef;
|
|
30875
30731
|
}
|
|
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:
|
|
30732
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRibbon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30733
|
+
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
30734
|
}
|
|
30879
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30735
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRibbon, decorators: [{
|
|
30880
30736
|
type: Directive,
|
|
30881
30737
|
args: [{
|
|
30882
|
-
selector: 'px-
|
|
30738
|
+
selector: 'px-ribbon',
|
|
30883
30739
|
standalone: true,
|
|
30884
30740
|
}]
|
|
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: [{
|
|
30741
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
30946
30742
|
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
30743
|
}], grow: [{
|
|
30960
30744
|
type: Input
|
|
30961
30745
|
}], growMobile: [{
|
|
@@ -31109,15 +30893,159 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
31109
30893
|
args: ['word-break-all--desktop']
|
|
31110
30894
|
}] } });
|
|
31111
30895
|
/**
|
|
31112
|
-
* @description Type-only wrapper for <px-
|
|
30896
|
+
* @description Type-only wrapper for <px-section>
|
|
31113
30897
|
*/
|
|
31114
|
-
class
|
|
30898
|
+
class PxSection {
|
|
31115
30899
|
elementRef;
|
|
31116
|
-
set
|
|
31117
|
-
this.elementRef.nativeElement['
|
|
30900
|
+
set backgroundColor(value) {
|
|
30901
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
30902
|
+
}
|
|
30903
|
+
get backgroundColor() {
|
|
30904
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
30905
|
+
}
|
|
30906
|
+
set backgroundGradient(value) {
|
|
30907
|
+
this.elementRef.nativeElement['backgroundGradient'] = value;
|
|
30908
|
+
}
|
|
30909
|
+
get backgroundGradient() {
|
|
30910
|
+
return this.elementRef.nativeElement['backgroundGradient'];
|
|
30911
|
+
}
|
|
30912
|
+
set backgroundImage(value) {
|
|
30913
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
30914
|
+
}
|
|
30915
|
+
get backgroundImage() {
|
|
30916
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
30917
|
+
}
|
|
30918
|
+
set backgroundImageMobile(value) {
|
|
30919
|
+
this.elementRef.nativeElement['backgroundImageMobile'] = value;
|
|
30920
|
+
}
|
|
30921
|
+
get backgroundImageMobile() {
|
|
30922
|
+
return this.elementRef.nativeElement['backgroundImageMobile'];
|
|
30923
|
+
}
|
|
30924
|
+
set backgroundImageTablet(value) {
|
|
30925
|
+
this.elementRef.nativeElement['backgroundImageTablet'] = value;
|
|
30926
|
+
}
|
|
30927
|
+
get backgroundImageTablet() {
|
|
30928
|
+
return this.elementRef.nativeElement['backgroundImageTablet'];
|
|
30929
|
+
}
|
|
30930
|
+
set backgroundImageLaptop(value) {
|
|
30931
|
+
this.elementRef.nativeElement['backgroundImageLaptop'] = value;
|
|
30932
|
+
}
|
|
30933
|
+
get backgroundImageLaptop() {
|
|
30934
|
+
return this.elementRef.nativeElement['backgroundImageLaptop'];
|
|
30935
|
+
}
|
|
30936
|
+
set backgroundSize(value) {
|
|
30937
|
+
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
30938
|
+
}
|
|
30939
|
+
get backgroundSize() {
|
|
30940
|
+
return this.elementRef.nativeElement['backgroundSize'];
|
|
30941
|
+
}
|
|
30942
|
+
set backgroundPosition(value) {
|
|
30943
|
+
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
30944
|
+
}
|
|
30945
|
+
get backgroundPosition() {
|
|
30946
|
+
return this.elementRef.nativeElement['backgroundPosition'];
|
|
30947
|
+
}
|
|
30948
|
+
set paddingBlock(value) {
|
|
30949
|
+
this.elementRef.nativeElement['paddingBlock'] = value;
|
|
30950
|
+
}
|
|
30951
|
+
get paddingBlock() {
|
|
30952
|
+
return this.elementRef.nativeElement['paddingBlock'];
|
|
30953
|
+
}
|
|
30954
|
+
set paddingTop(value) {
|
|
30955
|
+
this.elementRef.nativeElement['paddingTop'] = value;
|
|
30956
|
+
}
|
|
30957
|
+
get paddingTop() {
|
|
30958
|
+
return this.elementRef.nativeElement['paddingTop'];
|
|
30959
|
+
}
|
|
30960
|
+
set paddingBottom(value) {
|
|
30961
|
+
this.elementRef.nativeElement['paddingBottom'] = value;
|
|
30962
|
+
}
|
|
30963
|
+
get paddingBottom() {
|
|
30964
|
+
return this.elementRef.nativeElement['paddingBottom'];
|
|
30965
|
+
}
|
|
30966
|
+
set paddingBlockMobile(value) {
|
|
30967
|
+
this.elementRef.nativeElement['paddingBlockMobile'] = value;
|
|
30968
|
+
}
|
|
30969
|
+
get paddingBlockMobile() {
|
|
30970
|
+
return this.elementRef.nativeElement['paddingBlockMobile'];
|
|
30971
|
+
}
|
|
30972
|
+
set paddingTopMobile(value) {
|
|
30973
|
+
this.elementRef.nativeElement['paddingTopMobile'] = value;
|
|
30974
|
+
}
|
|
30975
|
+
get paddingTopMobile() {
|
|
30976
|
+
return this.elementRef.nativeElement['paddingTopMobile'];
|
|
30977
|
+
}
|
|
30978
|
+
set paddingBottomMobile(value) {
|
|
30979
|
+
this.elementRef.nativeElement['paddingBottomMobile'] = value;
|
|
30980
|
+
}
|
|
30981
|
+
get paddingBottomMobile() {
|
|
30982
|
+
return this.elementRef.nativeElement['paddingBottomMobile'];
|
|
30983
|
+
}
|
|
30984
|
+
set paddingBlockTablet(value) {
|
|
30985
|
+
this.elementRef.nativeElement['paddingBlockTablet'] = value;
|
|
30986
|
+
}
|
|
30987
|
+
get paddingBlockTablet() {
|
|
30988
|
+
return this.elementRef.nativeElement['paddingBlockTablet'];
|
|
30989
|
+
}
|
|
30990
|
+
set paddingTopTablet(value) {
|
|
30991
|
+
this.elementRef.nativeElement['paddingTopTablet'] = value;
|
|
30992
|
+
}
|
|
30993
|
+
get paddingTopTablet() {
|
|
30994
|
+
return this.elementRef.nativeElement['paddingTopTablet'];
|
|
31118
30995
|
}
|
|
31119
|
-
|
|
31120
|
-
|
|
30996
|
+
set paddingBottomTablet(value) {
|
|
30997
|
+
this.elementRef.nativeElement['paddingBottomTablet'] = value;
|
|
30998
|
+
}
|
|
30999
|
+
get paddingBottomTablet() {
|
|
31000
|
+
return this.elementRef.nativeElement['paddingBottomTablet'];
|
|
31001
|
+
}
|
|
31002
|
+
set paddingBlockLaptop(value) {
|
|
31003
|
+
this.elementRef.nativeElement['paddingBlockLaptop'] = value;
|
|
31004
|
+
}
|
|
31005
|
+
get paddingBlockLaptop() {
|
|
31006
|
+
return this.elementRef.nativeElement['paddingBlockLaptop'];
|
|
31007
|
+
}
|
|
31008
|
+
set paddingTopLaptop(value) {
|
|
31009
|
+
this.elementRef.nativeElement['paddingTopLaptop'] = value;
|
|
31010
|
+
}
|
|
31011
|
+
get paddingTopLaptop() {
|
|
31012
|
+
return this.elementRef.nativeElement['paddingTopLaptop'];
|
|
31013
|
+
}
|
|
31014
|
+
set paddingBottomLaptop(value) {
|
|
31015
|
+
this.elementRef.nativeElement['paddingBottomLaptop'] = value;
|
|
31016
|
+
}
|
|
31017
|
+
get paddingBottomLaptop() {
|
|
31018
|
+
return this.elementRef.nativeElement['paddingBottomLaptop'];
|
|
31019
|
+
}
|
|
31020
|
+
set border(value) {
|
|
31021
|
+
this.elementRef.nativeElement['border'] = value;
|
|
31022
|
+
}
|
|
31023
|
+
get border() {
|
|
31024
|
+
return this.elementRef.nativeElement['border'];
|
|
31025
|
+
}
|
|
31026
|
+
set borderSide(value) {
|
|
31027
|
+
this.elementRef.nativeElement['borderSide'] = value;
|
|
31028
|
+
}
|
|
31029
|
+
get borderSide() {
|
|
31030
|
+
return this.elementRef.nativeElement['borderSide'];
|
|
31031
|
+
}
|
|
31032
|
+
set borderSideMobile(value) {
|
|
31033
|
+
this.elementRef.nativeElement['borderSideMobile'] = value;
|
|
31034
|
+
}
|
|
31035
|
+
get borderSideMobile() {
|
|
31036
|
+
return this.elementRef.nativeElement['borderSideMobile'];
|
|
31037
|
+
}
|
|
31038
|
+
set borderSideTablet(value) {
|
|
31039
|
+
this.elementRef.nativeElement['borderSideTablet'] = value;
|
|
31040
|
+
}
|
|
31041
|
+
get borderSideTablet() {
|
|
31042
|
+
return this.elementRef.nativeElement['borderSideTablet'];
|
|
31043
|
+
}
|
|
31044
|
+
set borderSideLaptop(value) {
|
|
31045
|
+
this.elementRef.nativeElement['borderSideLaptop'] = value;
|
|
31046
|
+
}
|
|
31047
|
+
get borderSideLaptop() {
|
|
31048
|
+
return this.elementRef.nativeElement['borderSideLaptop'];
|
|
31121
31049
|
}
|
|
31122
31050
|
set grow(value) {
|
|
31123
31051
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -31434,17 +31362,89 @@ class PxRibbon {
|
|
|
31434
31362
|
constructor(elementRef) {
|
|
31435
31363
|
this.elementRef = elementRef;
|
|
31436
31364
|
}
|
|
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:
|
|
31365
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSection, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
31366
|
+
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
31367
|
}
|
|
31440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
31368
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSection, decorators: [{
|
|
31441
31369
|
type: Directive,
|
|
31442
31370
|
args: [{
|
|
31443
|
-
selector: 'px-
|
|
31371
|
+
selector: 'px-section',
|
|
31444
31372
|
standalone: true,
|
|
31445
31373
|
}]
|
|
31446
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
31374
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { backgroundColor: [{
|
|
31375
|
+
type: Input,
|
|
31376
|
+
args: ['background-color']
|
|
31377
|
+
}], backgroundGradient: [{
|
|
31378
|
+
type: Input,
|
|
31379
|
+
args: ['background-gradient']
|
|
31380
|
+
}], backgroundImage: [{
|
|
31381
|
+
type: Input,
|
|
31382
|
+
args: ['background-image']
|
|
31383
|
+
}], backgroundImageMobile: [{
|
|
31384
|
+
type: Input,
|
|
31385
|
+
args: ['background-image--mobile']
|
|
31386
|
+
}], backgroundImageTablet: [{
|
|
31387
|
+
type: Input,
|
|
31388
|
+
args: ['background-image--tablet']
|
|
31389
|
+
}], backgroundImageLaptop: [{
|
|
31390
|
+
type: Input,
|
|
31391
|
+
args: ['background-image--laptop']
|
|
31392
|
+
}], backgroundSize: [{
|
|
31393
|
+
type: Input,
|
|
31394
|
+
args: ['background-size']
|
|
31395
|
+
}], backgroundPosition: [{
|
|
31396
|
+
type: Input,
|
|
31397
|
+
args: ['background-position']
|
|
31398
|
+
}], paddingBlock: [{
|
|
31399
|
+
type: Input,
|
|
31400
|
+
args: ['padding-block']
|
|
31401
|
+
}], paddingTop: [{
|
|
31402
|
+
type: Input,
|
|
31403
|
+
args: ['padding-top']
|
|
31404
|
+
}], paddingBottom: [{
|
|
31405
|
+
type: Input,
|
|
31406
|
+
args: ['padding-bottom']
|
|
31407
|
+
}], paddingBlockMobile: [{
|
|
31408
|
+
type: Input,
|
|
31409
|
+
args: ['padding-block--mobile']
|
|
31410
|
+
}], paddingTopMobile: [{
|
|
31411
|
+
type: Input,
|
|
31412
|
+
args: ['padding-top--mobile']
|
|
31413
|
+
}], paddingBottomMobile: [{
|
|
31414
|
+
type: Input,
|
|
31415
|
+
args: ['padding-bottom--mobile']
|
|
31416
|
+
}], paddingBlockTablet: [{
|
|
31417
|
+
type: Input,
|
|
31418
|
+
args: ['padding-block--tablet']
|
|
31419
|
+
}], paddingTopTablet: [{
|
|
31420
|
+
type: Input,
|
|
31421
|
+
args: ['padding-top--tablet']
|
|
31422
|
+
}], paddingBottomTablet: [{
|
|
31423
|
+
type: Input,
|
|
31424
|
+
args: ['padding-bottom--tablet']
|
|
31425
|
+
}], paddingBlockLaptop: [{
|
|
31426
|
+
type: Input,
|
|
31427
|
+
args: ['padding-block--laptop']
|
|
31428
|
+
}], paddingTopLaptop: [{
|
|
31429
|
+
type: Input,
|
|
31430
|
+
args: ['padding-top--laptop']
|
|
31431
|
+
}], paddingBottomLaptop: [{
|
|
31432
|
+
type: Input,
|
|
31433
|
+
args: ['padding-bottom--laptop']
|
|
31434
|
+
}], border: [{
|
|
31447
31435
|
type: Input
|
|
31436
|
+
}], borderSide: [{
|
|
31437
|
+
type: Input,
|
|
31438
|
+
args: ['border-side']
|
|
31439
|
+
}], borderSideMobile: [{
|
|
31440
|
+
type: Input,
|
|
31441
|
+
args: ['border-side--mobile']
|
|
31442
|
+
}], borderSideTablet: [{
|
|
31443
|
+
type: Input,
|
|
31444
|
+
args: ['border-side--tablet']
|
|
31445
|
+
}], borderSideLaptop: [{
|
|
31446
|
+
type: Input,
|
|
31447
|
+
args: ['border-side--laptop']
|
|
31448
31448
|
}], grow: [{
|
|
31449
31449
|
type: Input
|
|
31450
31450
|
}], growMobile: [{
|
|
@@ -34747,57 +34747,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
34747
34747
|
type: Input,
|
|
34748
34748
|
args: ['word-break-all--desktop']
|
|
34749
34749
|
}] } });
|
|
34750
|
-
/**
|
|
34751
|
-
* @description Type-only wrapper for <px-spinner>
|
|
34752
|
-
*/
|
|
34753
|
-
class PxSpinner {
|
|
34754
|
-
elementRef;
|
|
34755
|
-
set size(value) {
|
|
34756
|
-
this.elementRef.nativeElement['size'] = value;
|
|
34757
|
-
}
|
|
34758
|
-
get size() {
|
|
34759
|
-
return this.elementRef.nativeElement['size'];
|
|
34760
|
-
}
|
|
34761
|
-
set inverted(value) {
|
|
34762
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
34763
|
-
}
|
|
34764
|
-
get inverted() {
|
|
34765
|
-
return this.elementRef.nativeElement['inverted'];
|
|
34766
|
-
}
|
|
34767
|
-
set timeout(value) {
|
|
34768
|
-
this.elementRef.nativeElement['timeout'] = value;
|
|
34769
|
-
}
|
|
34770
|
-
get timeout() {
|
|
34771
|
-
return this.elementRef.nativeElement['timeout'];
|
|
34772
|
-
}
|
|
34773
|
-
set ariaLabel(value) {
|
|
34774
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
34775
|
-
}
|
|
34776
|
-
get ariaLabel() {
|
|
34777
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
34778
|
-
}
|
|
34779
|
-
constructor(elementRef) {
|
|
34780
|
-
this.elementRef = elementRef;
|
|
34781
|
-
}
|
|
34782
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
34783
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpinner, isStandalone: true, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
34784
|
-
}
|
|
34785
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
|
|
34786
|
-
type: Directive,
|
|
34787
|
-
args: [{
|
|
34788
|
-
selector: 'px-spinner',
|
|
34789
|
-
standalone: true,
|
|
34790
|
-
}]
|
|
34791
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
34792
|
-
type: Input
|
|
34793
|
-
}], inverted: [{
|
|
34794
|
-
type: Input
|
|
34795
|
-
}], timeout: [{
|
|
34796
|
-
type: Input
|
|
34797
|
-
}], ariaLabel: [{
|
|
34798
|
-
type: Input,
|
|
34799
|
-
args: ['aria-label']
|
|
34800
|
-
}] } });
|
|
34801
34750
|
/**
|
|
34802
34751
|
* @description Type-only wrapper for <px-status>
|
|
34803
34752
|
*/
|
|
@@ -35348,6 +35297,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
35348
35297
|
type: Input,
|
|
35349
35298
|
args: ['word-break-all--desktop']
|
|
35350
35299
|
}] } });
|
|
35300
|
+
/**
|
|
35301
|
+
* @description Type-only wrapper for <px-spinner>
|
|
35302
|
+
*/
|
|
35303
|
+
class PxSpinner {
|
|
35304
|
+
elementRef;
|
|
35305
|
+
set size(value) {
|
|
35306
|
+
this.elementRef.nativeElement['size'] = value;
|
|
35307
|
+
}
|
|
35308
|
+
get size() {
|
|
35309
|
+
return this.elementRef.nativeElement['size'];
|
|
35310
|
+
}
|
|
35311
|
+
set inverted(value) {
|
|
35312
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
35313
|
+
}
|
|
35314
|
+
get inverted() {
|
|
35315
|
+
return this.elementRef.nativeElement['inverted'];
|
|
35316
|
+
}
|
|
35317
|
+
set timeout(value) {
|
|
35318
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
35319
|
+
}
|
|
35320
|
+
get timeout() {
|
|
35321
|
+
return this.elementRef.nativeElement['timeout'];
|
|
35322
|
+
}
|
|
35323
|
+
set ariaLabel(value) {
|
|
35324
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
35325
|
+
}
|
|
35326
|
+
get ariaLabel() {
|
|
35327
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
35328
|
+
}
|
|
35329
|
+
constructor(elementRef) {
|
|
35330
|
+
this.elementRef = elementRef;
|
|
35331
|
+
}
|
|
35332
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
35333
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpinner, isStandalone: true, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
35334
|
+
}
|
|
35335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
|
|
35336
|
+
type: Directive,
|
|
35337
|
+
args: [{
|
|
35338
|
+
selector: 'px-spinner',
|
|
35339
|
+
standalone: true,
|
|
35340
|
+
}]
|
|
35341
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
35342
|
+
type: Input
|
|
35343
|
+
}], inverted: [{
|
|
35344
|
+
type: Input
|
|
35345
|
+
}], timeout: [{
|
|
35346
|
+
type: Input
|
|
35347
|
+
}], ariaLabel: [{
|
|
35348
|
+
type: Input,
|
|
35349
|
+
args: ['aria-label']
|
|
35350
|
+
}] } });
|
|
35351
35351
|
/**
|
|
35352
35352
|
* @description Type-only wrapper for <px-status-card>
|
|
35353
35353
|
*/
|
|
@@ -41266,7 +41266,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41266
41266
|
}] } });
|
|
41267
41267
|
class Lavender {
|
|
41268
41268
|
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,
|
|
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, 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, PxStatus, PxSpinner, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxStatus, PxSpinner, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41270
41270
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41271
41271
|
}
|
|
41272
41272
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41309,12 +41309,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41309
41309
|
PxH5,
|
|
41310
41310
|
PxH6,
|
|
41311
41311
|
PxHeadingGroup,
|
|
41312
|
+
PxImg,
|
|
41313
|
+
PxPicture,
|
|
41312
41314
|
PxInput,
|
|
41313
41315
|
PxSelect,
|
|
41314
41316
|
PxTextarea,
|
|
41315
41317
|
PxFileupload,
|
|
41316
|
-
PxImg,
|
|
41317
|
-
PxPicture,
|
|
41318
41318
|
PxPage,
|
|
41319
41319
|
PxSpacer,
|
|
41320
41320
|
PxStack,
|
|
@@ -41334,16 +41334,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41334
41334
|
PxRadio,
|
|
41335
41335
|
PxRadioBase,
|
|
41336
41336
|
PxRadioGroup,
|
|
41337
|
-
PxSection,
|
|
41338
41337
|
PxRibbon,
|
|
41338
|
+
PxSection,
|
|
41339
41339
|
PxSelectableBox,
|
|
41340
41340
|
PxSelectableBoxCheckbox,
|
|
41341
41341
|
PxSelectableBoxRadio,
|
|
41342
41342
|
PxSeparator,
|
|
41343
41343
|
PxSkeleton,
|
|
41344
41344
|
PxSpan,
|
|
41345
|
-
PxSpinner,
|
|
41346
41345
|
PxStatus,
|
|
41346
|
+
PxSpinner,
|
|
41347
41347
|
PxStatusCard,
|
|
41348
41348
|
PxStickyContainer,
|
|
41349
41349
|
PxThemeSwitcher,
|
|
@@ -41411,12 +41411,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41411
41411
|
PxH5,
|
|
41412
41412
|
PxH6,
|
|
41413
41413
|
PxHeadingGroup,
|
|
41414
|
+
PxImg,
|
|
41415
|
+
PxPicture,
|
|
41414
41416
|
PxInput,
|
|
41415
41417
|
PxSelect,
|
|
41416
41418
|
PxTextarea,
|
|
41417
41419
|
PxFileupload,
|
|
41418
|
-
PxImg,
|
|
41419
|
-
PxPicture,
|
|
41420
41420
|
PxPage,
|
|
41421
41421
|
PxSpacer,
|
|
41422
41422
|
PxStack,
|
|
@@ -41436,16 +41436,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41436
41436
|
PxRadio,
|
|
41437
41437
|
PxRadioBase,
|
|
41438
41438
|
PxRadioGroup,
|
|
41439
|
-
PxSection,
|
|
41440
41439
|
PxRibbon,
|
|
41440
|
+
PxSection,
|
|
41441
41441
|
PxSelectableBox,
|
|
41442
41442
|
PxSelectableBoxCheckbox,
|
|
41443
41443
|
PxSelectableBoxRadio,
|
|
41444
41444
|
PxSeparator,
|
|
41445
41445
|
PxSkeleton,
|
|
41446
41446
|
PxSpan,
|
|
41447
|
-
PxSpinner,
|
|
41448
41447
|
PxStatus,
|
|
41448
|
+
PxSpinner,
|
|
41449
41449
|
PxStatusCard,
|
|
41450
41450
|
PxStickyContainer,
|
|
41451
41451
|
PxThemeSwitcher,
|