@proximus/lavender-angular 1.4.14-alpha.7 → 1.4.14-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/esm2022/lavender.directive.mjs +677 -668
- package/fesm2022/proximus-lavender-angular.mjs +676 -667
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +221 -219
- package/package.json +1 -1
|
@@ -3874,21 +3874,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3874
3874
|
args: ['word-break-all--desktop']
|
|
3875
3875
|
}] } });
|
|
3876
3876
|
/**
|
|
3877
|
-
* @description Type-only wrapper for <px-button>
|
|
3877
|
+
* @description Type-only wrapper for <px-button-icon>
|
|
3878
3878
|
*/
|
|
3879
|
-
class
|
|
3879
|
+
class PxButtonIcon {
|
|
3880
3880
|
elementRef;
|
|
3881
|
-
set
|
|
3882
|
-
this.elementRef.nativeElement['
|
|
3883
|
-
}
|
|
3884
|
-
get variant() {
|
|
3885
|
-
return this.elementRef.nativeElement['variant'];
|
|
3886
|
-
}
|
|
3887
|
-
set state(value) {
|
|
3888
|
-
this.elementRef.nativeElement['state'] = value;
|
|
3881
|
+
set inverted(value) {
|
|
3882
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
3889
3883
|
}
|
|
3890
|
-
get
|
|
3891
|
-
return this.elementRef.nativeElement['
|
|
3884
|
+
get inverted() {
|
|
3885
|
+
return this.elementRef.nativeElement['inverted'];
|
|
3892
3886
|
}
|
|
3893
3887
|
set loading(value) {
|
|
3894
3888
|
this.elementRef.nativeElement['loading'] = value;
|
|
@@ -3896,41 +3890,17 @@ class PxButton {
|
|
|
3896
3890
|
get loading() {
|
|
3897
3891
|
return this.elementRef.nativeElement['loading'];
|
|
3898
3892
|
}
|
|
3899
|
-
set
|
|
3900
|
-
this.elementRef.nativeElement['
|
|
3901
|
-
}
|
|
3902
|
-
get shape() {
|
|
3903
|
-
return this.elementRef.nativeElement['shape'];
|
|
3904
|
-
}
|
|
3905
|
-
set shapeMobile(value) {
|
|
3906
|
-
this.elementRef.nativeElement['shapeMobile'] = value;
|
|
3907
|
-
}
|
|
3908
|
-
get shapeMobile() {
|
|
3909
|
-
return this.elementRef.nativeElement['shapeMobile'];
|
|
3910
|
-
}
|
|
3911
|
-
set shapeTablet(value) {
|
|
3912
|
-
this.elementRef.nativeElement['shapeTablet'] = value;
|
|
3913
|
-
}
|
|
3914
|
-
get shapeTablet() {
|
|
3915
|
-
return this.elementRef.nativeElement['shapeTablet'];
|
|
3916
|
-
}
|
|
3917
|
-
set shapeLaptop(value) {
|
|
3918
|
-
this.elementRef.nativeElement['shapeLaptop'] = value;
|
|
3919
|
-
}
|
|
3920
|
-
get shapeLaptop() {
|
|
3921
|
-
return this.elementRef.nativeElement['shapeLaptop'];
|
|
3922
|
-
}
|
|
3923
|
-
set shapeDesktop(value) {
|
|
3924
|
-
this.elementRef.nativeElement['shapeDesktop'] = value;
|
|
3893
|
+
set size(value) {
|
|
3894
|
+
this.elementRef.nativeElement['size'] = value;
|
|
3925
3895
|
}
|
|
3926
|
-
get
|
|
3927
|
-
return this.elementRef.nativeElement['
|
|
3896
|
+
get size() {
|
|
3897
|
+
return this.elementRef.nativeElement['size'];
|
|
3928
3898
|
}
|
|
3929
|
-
set
|
|
3930
|
-
this.elementRef.nativeElement['
|
|
3899
|
+
set variant(value) {
|
|
3900
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
3931
3901
|
}
|
|
3932
|
-
get
|
|
3933
|
-
return this.elementRef.nativeElement['
|
|
3902
|
+
get variant() {
|
|
3903
|
+
return this.elementRef.nativeElement['variant'];
|
|
3934
3904
|
}
|
|
3935
3905
|
set ariaExpanded(value) {
|
|
3936
3906
|
this.elementRef.nativeElement['ariaExpanded'] = value;
|
|
@@ -3938,42 +3908,6 @@ class PxButton {
|
|
|
3938
3908
|
get ariaExpanded() {
|
|
3939
3909
|
return this.elementRef.nativeElement['ariaExpanded'];
|
|
3940
3910
|
}
|
|
3941
|
-
set extended(value) {
|
|
3942
|
-
this.elementRef.nativeElement['extended'] = value;
|
|
3943
|
-
}
|
|
3944
|
-
get extended() {
|
|
3945
|
-
return this.elementRef.nativeElement['extended'];
|
|
3946
|
-
}
|
|
3947
|
-
set extendedMobile(value) {
|
|
3948
|
-
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
3949
|
-
}
|
|
3950
|
-
get extendedMobile() {
|
|
3951
|
-
return this.elementRef.nativeElement['extendedMobile'];
|
|
3952
|
-
}
|
|
3953
|
-
set extendedTablet(value) {
|
|
3954
|
-
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
3955
|
-
}
|
|
3956
|
-
get extendedTablet() {
|
|
3957
|
-
return this.elementRef.nativeElement['extendedTablet'];
|
|
3958
|
-
}
|
|
3959
|
-
set extendedLaptop(value) {
|
|
3960
|
-
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
3961
|
-
}
|
|
3962
|
-
get extendedLaptop() {
|
|
3963
|
-
return this.elementRef.nativeElement['extendedLaptop'];
|
|
3964
|
-
}
|
|
3965
|
-
set extendedDesktop(value) {
|
|
3966
|
-
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
3967
|
-
}
|
|
3968
|
-
get extendedDesktop() {
|
|
3969
|
-
return this.elementRef.nativeElement['extendedDesktop'];
|
|
3970
|
-
}
|
|
3971
|
-
set size(value) {
|
|
3972
|
-
this.elementRef.nativeElement['size'] = value;
|
|
3973
|
-
}
|
|
3974
|
-
get size() {
|
|
3975
|
-
return this.elementRef.nativeElement['size'];
|
|
3976
|
-
}
|
|
3977
3911
|
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
3978
3912
|
set name(value) {
|
|
3979
3913
|
this.elementRef.nativeElement['name'] = value;
|
|
@@ -4317,55 +4251,25 @@ class PxButton {
|
|
|
4317
4251
|
constructor(elementRef) {
|
|
4318
4252
|
this.elementRef = elementRef;
|
|
4319
4253
|
}
|
|
4320
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4321
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
4254
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonIcon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4255
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxButtonIcon, selector: "px-button-icon", inputs: { inverted: "inverted", loading: "loading", size: "size", variant: "variant", ariaExpanded: ["aria-expanded", "ariaExpanded"], name: "name", value: "value", type: "type", 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 });
|
|
4322
4256
|
}
|
|
4323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4257
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonIcon, decorators: [{
|
|
4324
4258
|
type: Directive,
|
|
4325
4259
|
args: [{
|
|
4326
|
-
selector: 'px-button',
|
|
4260
|
+
selector: 'px-button-icon',
|
|
4327
4261
|
}]
|
|
4328
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
4329
|
-
type: Input
|
|
4330
|
-
}], state: [{
|
|
4262
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
4331
4263
|
type: Input
|
|
4332
4264
|
}], loading: [{
|
|
4333
4265
|
type: Input
|
|
4334
|
-
}],
|
|
4266
|
+
}], size: [{
|
|
4335
4267
|
type: Input
|
|
4336
|
-
}],
|
|
4337
|
-
type: Input,
|
|
4338
|
-
args: ['shape--mobile']
|
|
4339
|
-
}], shapeTablet: [{
|
|
4340
|
-
type: Input,
|
|
4341
|
-
args: ['shape--tablet']
|
|
4342
|
-
}], shapeLaptop: [{
|
|
4343
|
-
type: Input,
|
|
4344
|
-
args: ['shape--laptop']
|
|
4345
|
-
}], shapeDesktop: [{
|
|
4346
|
-
type: Input,
|
|
4347
|
-
args: ['shape--desktop']
|
|
4348
|
-
}], inverted: [{
|
|
4268
|
+
}], variant: [{
|
|
4349
4269
|
type: Input
|
|
4350
4270
|
}], ariaExpanded: [{
|
|
4351
4271
|
type: Input,
|
|
4352
4272
|
args: ['aria-expanded']
|
|
4353
|
-
}], extended: [{
|
|
4354
|
-
type: Input
|
|
4355
|
-
}], extendedMobile: [{
|
|
4356
|
-
type: Input,
|
|
4357
|
-
args: ['extended--mobile']
|
|
4358
|
-
}], extendedTablet: [{
|
|
4359
|
-
type: Input,
|
|
4360
|
-
args: ['extended--tablet']
|
|
4361
|
-
}], extendedLaptop: [{
|
|
4362
|
-
type: Input,
|
|
4363
|
-
args: ['extended--laptop']
|
|
4364
|
-
}], extendedDesktop: [{
|
|
4365
|
-
type: Input,
|
|
4366
|
-
args: ['extended--desktop']
|
|
4367
|
-
}], size: [{
|
|
4368
|
-
type: Input
|
|
4369
4273
|
}], name: [{
|
|
4370
4274
|
type: Input
|
|
4371
4275
|
}], value: [{
|
|
@@ -4527,38 +4431,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
4527
4431
|
args: ['word-break-all--desktop']
|
|
4528
4432
|
}] } });
|
|
4529
4433
|
/**
|
|
4530
|
-
* @description Type-only wrapper for <px-button
|
|
4434
|
+
* @description Type-only wrapper for <px-button>
|
|
4531
4435
|
*/
|
|
4532
|
-
class
|
|
4436
|
+
class PxButton {
|
|
4533
4437
|
elementRef;
|
|
4534
|
-
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
4535
|
-
set name(value) {
|
|
4536
|
-
this.elementRef.nativeElement['name'] = value;
|
|
4537
|
-
}
|
|
4538
|
-
get name() {
|
|
4539
|
-
return this.elementRef.nativeElement['name'];
|
|
4540
|
-
}
|
|
4541
|
-
/** The value associated with the button's name when it's submitted with a form. */
|
|
4542
|
-
set value(value) {
|
|
4543
|
-
this.elementRef.nativeElement['value'] = value;
|
|
4544
|
-
}
|
|
4545
|
-
get value() {
|
|
4546
|
-
return this.elementRef.nativeElement['value'];
|
|
4547
|
-
}
|
|
4548
|
-
/** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
|
|
4549
|
-
set type(value) {
|
|
4550
|
-
this.elementRef.nativeElement['type'] = value;
|
|
4551
|
-
}
|
|
4552
|
-
get type() {
|
|
4553
|
-
return this.elementRef.nativeElement['type'];
|
|
4554
|
-
}
|
|
4555
|
-
/** Whether the button is disabled. */
|
|
4556
|
-
set disabled(value) {
|
|
4557
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
4558
|
-
}
|
|
4559
|
-
get disabled() {
|
|
4560
|
-
return this.elementRef.nativeElement['disabled'];
|
|
4561
|
-
}
|
|
4562
4438
|
set variant(value) {
|
|
4563
4439
|
this.elementRef.nativeElement['variant'] = value;
|
|
4564
4440
|
}
|
|
@@ -4655,6 +4531,34 @@ class PxButtonWrapper {
|
|
|
4655
4531
|
get size() {
|
|
4656
4532
|
return this.elementRef.nativeElement['size'];
|
|
4657
4533
|
}
|
|
4534
|
+
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
4535
|
+
set name(value) {
|
|
4536
|
+
this.elementRef.nativeElement['name'] = value;
|
|
4537
|
+
}
|
|
4538
|
+
get name() {
|
|
4539
|
+
return this.elementRef.nativeElement['name'];
|
|
4540
|
+
}
|
|
4541
|
+
/** The value associated with the button's name when it's submitted with a form. */
|
|
4542
|
+
set value(value) {
|
|
4543
|
+
this.elementRef.nativeElement['value'] = value;
|
|
4544
|
+
}
|
|
4545
|
+
get value() {
|
|
4546
|
+
return this.elementRef.nativeElement['value'];
|
|
4547
|
+
}
|
|
4548
|
+
/** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
|
|
4549
|
+
set type(value) {
|
|
4550
|
+
this.elementRef.nativeElement['type'] = value;
|
|
4551
|
+
}
|
|
4552
|
+
get type() {
|
|
4553
|
+
return this.elementRef.nativeElement['type'];
|
|
4554
|
+
}
|
|
4555
|
+
/** Whether the button is disabled. */
|
|
4556
|
+
set disabled(value) {
|
|
4557
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
4558
|
+
}
|
|
4559
|
+
get disabled() {
|
|
4560
|
+
return this.elementRef.nativeElement['disabled'];
|
|
4561
|
+
}
|
|
4658
4562
|
set grow(value) {
|
|
4659
4563
|
this.elementRef.nativeElement['grow'] = value;
|
|
4660
4564
|
}
|
|
@@ -4970,23 +4874,15 @@ class PxButtonWrapper {
|
|
|
4970
4874
|
constructor(elementRef) {
|
|
4971
4875
|
this.elementRef = elementRef;
|
|
4972
4876
|
}
|
|
4973
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4974
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
4877
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButton, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4878
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxButton, selector: "px-button", inputs: { variant: "variant", state: "state", loading: "loading", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], inverted: "inverted", ariaExpanded: ["aria-expanded", "ariaExpanded"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], size: "size", name: "name", value: "value", type: "type", 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 });
|
|
4975
4879
|
}
|
|
4976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4880
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButton, decorators: [{
|
|
4977
4881
|
type: Directive,
|
|
4978
4882
|
args: [{
|
|
4979
|
-
selector: 'px-button
|
|
4883
|
+
selector: 'px-button',
|
|
4980
4884
|
}]
|
|
4981
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
4982
|
-
type: Input
|
|
4983
|
-
}], value: [{
|
|
4984
|
-
type: Input
|
|
4985
|
-
}], type: [{
|
|
4986
|
-
type: Input
|
|
4987
|
-
}], disabled: [{
|
|
4988
|
-
type: Input
|
|
4989
|
-
}], variant: [{
|
|
4885
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
4990
4886
|
type: Input
|
|
4991
4887
|
}], state: [{
|
|
4992
4888
|
type: Input
|
|
@@ -5027,6 +4923,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
5027
4923
|
args: ['extended--desktop']
|
|
5028
4924
|
}], size: [{
|
|
5029
4925
|
type: Input
|
|
4926
|
+
}], name: [{
|
|
4927
|
+
type: Input
|
|
4928
|
+
}], value: [{
|
|
4929
|
+
type: Input
|
|
4930
|
+
}], type: [{
|
|
4931
|
+
type: Input
|
|
4932
|
+
}], disabled: [{
|
|
4933
|
+
type: Input
|
|
5030
4934
|
}], grow: [{
|
|
5031
4935
|
type: Input
|
|
5032
4936
|
}], growMobile: [{
|
|
@@ -5180,40 +5084,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
5180
5084
|
args: ['word-break-all--desktop']
|
|
5181
5085
|
}] } });
|
|
5182
5086
|
/**
|
|
5183
|
-
* @description Type-only wrapper for <px-button-
|
|
5087
|
+
* @description Type-only wrapper for <px-button-wrapper>
|
|
5184
5088
|
*/
|
|
5185
|
-
class
|
|
5089
|
+
class PxButtonWrapper {
|
|
5186
5090
|
elementRef;
|
|
5187
|
-
set inverted(value) {
|
|
5188
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
5189
|
-
}
|
|
5190
|
-
get inverted() {
|
|
5191
|
-
return this.elementRef.nativeElement['inverted'];
|
|
5192
|
-
}
|
|
5193
|
-
set loading(value) {
|
|
5194
|
-
this.elementRef.nativeElement['loading'] = value;
|
|
5195
|
-
}
|
|
5196
|
-
get loading() {
|
|
5197
|
-
return this.elementRef.nativeElement['loading'];
|
|
5198
|
-
}
|
|
5199
|
-
set size(value) {
|
|
5200
|
-
this.elementRef.nativeElement['size'] = value;
|
|
5201
|
-
}
|
|
5202
|
-
get size() {
|
|
5203
|
-
return this.elementRef.nativeElement['size'];
|
|
5204
|
-
}
|
|
5205
|
-
set variant(value) {
|
|
5206
|
-
this.elementRef.nativeElement['variant'] = value;
|
|
5207
|
-
}
|
|
5208
|
-
get variant() {
|
|
5209
|
-
return this.elementRef.nativeElement['variant'];
|
|
5210
|
-
}
|
|
5211
|
-
set ariaExpanded(value) {
|
|
5212
|
-
this.elementRef.nativeElement['ariaExpanded'] = value;
|
|
5213
|
-
}
|
|
5214
|
-
get ariaExpanded() {
|
|
5215
|
-
return this.elementRef.nativeElement['ariaExpanded'];
|
|
5216
|
-
}
|
|
5217
5091
|
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
5218
5092
|
set name(value) {
|
|
5219
5093
|
this.elementRef.nativeElement['name'] = value;
|
|
@@ -5242,6 +5116,102 @@ class PxButtonIcon {
|
|
|
5242
5116
|
get disabled() {
|
|
5243
5117
|
return this.elementRef.nativeElement['disabled'];
|
|
5244
5118
|
}
|
|
5119
|
+
set variant(value) {
|
|
5120
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
5121
|
+
}
|
|
5122
|
+
get variant() {
|
|
5123
|
+
return this.elementRef.nativeElement['variant'];
|
|
5124
|
+
}
|
|
5125
|
+
set state(value) {
|
|
5126
|
+
this.elementRef.nativeElement['state'] = value;
|
|
5127
|
+
}
|
|
5128
|
+
get state() {
|
|
5129
|
+
return this.elementRef.nativeElement['state'];
|
|
5130
|
+
}
|
|
5131
|
+
set loading(value) {
|
|
5132
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
5133
|
+
}
|
|
5134
|
+
get loading() {
|
|
5135
|
+
return this.elementRef.nativeElement['loading'];
|
|
5136
|
+
}
|
|
5137
|
+
set shape(value) {
|
|
5138
|
+
this.elementRef.nativeElement['shape'] = value;
|
|
5139
|
+
}
|
|
5140
|
+
get shape() {
|
|
5141
|
+
return this.elementRef.nativeElement['shape'];
|
|
5142
|
+
}
|
|
5143
|
+
set shapeMobile(value) {
|
|
5144
|
+
this.elementRef.nativeElement['shapeMobile'] = value;
|
|
5145
|
+
}
|
|
5146
|
+
get shapeMobile() {
|
|
5147
|
+
return this.elementRef.nativeElement['shapeMobile'];
|
|
5148
|
+
}
|
|
5149
|
+
set shapeTablet(value) {
|
|
5150
|
+
this.elementRef.nativeElement['shapeTablet'] = value;
|
|
5151
|
+
}
|
|
5152
|
+
get shapeTablet() {
|
|
5153
|
+
return this.elementRef.nativeElement['shapeTablet'];
|
|
5154
|
+
}
|
|
5155
|
+
set shapeLaptop(value) {
|
|
5156
|
+
this.elementRef.nativeElement['shapeLaptop'] = value;
|
|
5157
|
+
}
|
|
5158
|
+
get shapeLaptop() {
|
|
5159
|
+
return this.elementRef.nativeElement['shapeLaptop'];
|
|
5160
|
+
}
|
|
5161
|
+
set shapeDesktop(value) {
|
|
5162
|
+
this.elementRef.nativeElement['shapeDesktop'] = value;
|
|
5163
|
+
}
|
|
5164
|
+
get shapeDesktop() {
|
|
5165
|
+
return this.elementRef.nativeElement['shapeDesktop'];
|
|
5166
|
+
}
|
|
5167
|
+
set inverted(value) {
|
|
5168
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
5169
|
+
}
|
|
5170
|
+
get inverted() {
|
|
5171
|
+
return this.elementRef.nativeElement['inverted'];
|
|
5172
|
+
}
|
|
5173
|
+
set ariaExpanded(value) {
|
|
5174
|
+
this.elementRef.nativeElement['ariaExpanded'] = value;
|
|
5175
|
+
}
|
|
5176
|
+
get ariaExpanded() {
|
|
5177
|
+
return this.elementRef.nativeElement['ariaExpanded'];
|
|
5178
|
+
}
|
|
5179
|
+
set extended(value) {
|
|
5180
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
5181
|
+
}
|
|
5182
|
+
get extended() {
|
|
5183
|
+
return this.elementRef.nativeElement['extended'];
|
|
5184
|
+
}
|
|
5185
|
+
set extendedMobile(value) {
|
|
5186
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
5187
|
+
}
|
|
5188
|
+
get extendedMobile() {
|
|
5189
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
5190
|
+
}
|
|
5191
|
+
set extendedTablet(value) {
|
|
5192
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
5193
|
+
}
|
|
5194
|
+
get extendedTablet() {
|
|
5195
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
5196
|
+
}
|
|
5197
|
+
set extendedLaptop(value) {
|
|
5198
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
5199
|
+
}
|
|
5200
|
+
get extendedLaptop() {
|
|
5201
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
5202
|
+
}
|
|
5203
|
+
set extendedDesktop(value) {
|
|
5204
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
5205
|
+
}
|
|
5206
|
+
get extendedDesktop() {
|
|
5207
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
5208
|
+
}
|
|
5209
|
+
set size(value) {
|
|
5210
|
+
this.elementRef.nativeElement['size'] = value;
|
|
5211
|
+
}
|
|
5212
|
+
get size() {
|
|
5213
|
+
return this.elementRef.nativeElement['size'];
|
|
5214
|
+
}
|
|
5245
5215
|
set grow(value) {
|
|
5246
5216
|
this.elementRef.nativeElement['grow'] = value;
|
|
5247
5217
|
}
|
|
@@ -5557,32 +5527,62 @@ class PxButtonIcon {
|
|
|
5557
5527
|
constructor(elementRef) {
|
|
5558
5528
|
this.elementRef = elementRef;
|
|
5559
5529
|
}
|
|
5560
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
5561
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
5530
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonWrapper, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5531
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxButtonWrapper, selector: "px-button-wrapper", inputs: { name: "name", value: "value", type: "type", disabled: "disabled", variant: "variant", state: "state", loading: "loading", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], inverted: "inverted", ariaExpanded: ["aria-expanded", "ariaExpanded"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], size: "size", 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 });
|
|
5562
5532
|
}
|
|
5563
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
5533
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonWrapper, decorators: [{
|
|
5564
5534
|
type: Directive,
|
|
5565
5535
|
args: [{
|
|
5566
|
-
selector: 'px-button-
|
|
5536
|
+
selector: 'px-button-wrapper',
|
|
5567
5537
|
}]
|
|
5568
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
5538
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
|
|
5569
5539
|
type: Input
|
|
5570
|
-
}],
|
|
5540
|
+
}], value: [{
|
|
5571
5541
|
type: Input
|
|
5572
|
-
}],
|
|
5542
|
+
}], type: [{
|
|
5543
|
+
type: Input
|
|
5544
|
+
}], disabled: [{
|
|
5573
5545
|
type: Input
|
|
5574
5546
|
}], variant: [{
|
|
5575
5547
|
type: Input
|
|
5548
|
+
}], state: [{
|
|
5549
|
+
type: Input
|
|
5550
|
+
}], loading: [{
|
|
5551
|
+
type: Input
|
|
5552
|
+
}], shape: [{
|
|
5553
|
+
type: Input
|
|
5554
|
+
}], shapeMobile: [{
|
|
5555
|
+
type: Input,
|
|
5556
|
+
args: ['shape--mobile']
|
|
5557
|
+
}], shapeTablet: [{
|
|
5558
|
+
type: Input,
|
|
5559
|
+
args: ['shape--tablet']
|
|
5560
|
+
}], shapeLaptop: [{
|
|
5561
|
+
type: Input,
|
|
5562
|
+
args: ['shape--laptop']
|
|
5563
|
+
}], shapeDesktop: [{
|
|
5564
|
+
type: Input,
|
|
5565
|
+
args: ['shape--desktop']
|
|
5566
|
+
}], inverted: [{
|
|
5567
|
+
type: Input
|
|
5576
5568
|
}], ariaExpanded: [{
|
|
5577
5569
|
type: Input,
|
|
5578
5570
|
args: ['aria-expanded']
|
|
5579
|
-
}],
|
|
5580
|
-
type: Input
|
|
5581
|
-
}], value: [{
|
|
5582
|
-
type: Input
|
|
5583
|
-
}], type: [{
|
|
5571
|
+
}], extended: [{
|
|
5584
5572
|
type: Input
|
|
5585
|
-
}],
|
|
5573
|
+
}], extendedMobile: [{
|
|
5574
|
+
type: Input,
|
|
5575
|
+
args: ['extended--mobile']
|
|
5576
|
+
}], extendedTablet: [{
|
|
5577
|
+
type: Input,
|
|
5578
|
+
args: ['extended--tablet']
|
|
5579
|
+
}], extendedLaptop: [{
|
|
5580
|
+
type: Input,
|
|
5581
|
+
args: ['extended--laptop']
|
|
5582
|
+
}], extendedDesktop: [{
|
|
5583
|
+
type: Input,
|
|
5584
|
+
args: ['extended--desktop']
|
|
5585
|
+
}], size: [{
|
|
5586
5586
|
type: Input
|
|
5587
5587
|
}], grow: [{
|
|
5588
5588
|
type: Input
|
|
@@ -14352,153 +14352,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14352
14352
|
args: ['word-break-all--desktop']
|
|
14353
14353
|
}] } });
|
|
14354
14354
|
/**
|
|
14355
|
-
* @description Type-only wrapper for <px-
|
|
14355
|
+
* @description Type-only wrapper for <px-h1>
|
|
14356
14356
|
*/
|
|
14357
|
-
class
|
|
14357
|
+
class PxH1 {
|
|
14358
14358
|
elementRef;
|
|
14359
|
-
set
|
|
14360
|
-
this.elementRef.nativeElement['
|
|
14361
|
-
}
|
|
14362
|
-
get gridCols() {
|
|
14363
|
-
return this.elementRef.nativeElement['gridCols'];
|
|
14364
|
-
}
|
|
14365
|
-
set gridColsMobile(value) {
|
|
14366
|
-
this.elementRef.nativeElement['gridColsMobile'] = value;
|
|
14367
|
-
}
|
|
14368
|
-
get gridColsMobile() {
|
|
14369
|
-
return this.elementRef.nativeElement['gridColsMobile'];
|
|
14370
|
-
}
|
|
14371
|
-
set gridColsTablet(value) {
|
|
14372
|
-
this.elementRef.nativeElement['gridColsTablet'] = value;
|
|
14373
|
-
}
|
|
14374
|
-
get gridColsTablet() {
|
|
14375
|
-
return this.elementRef.nativeElement['gridColsTablet'];
|
|
14376
|
-
}
|
|
14377
|
-
set gridColsLaptop(value) {
|
|
14378
|
-
this.elementRef.nativeElement['gridColsLaptop'] = value;
|
|
14379
|
-
}
|
|
14380
|
-
get gridColsLaptop() {
|
|
14381
|
-
return this.elementRef.nativeElement['gridColsLaptop'];
|
|
14382
|
-
}
|
|
14383
|
-
set justifyContent(value) {
|
|
14384
|
-
this.elementRef.nativeElement['justifyContent'] = value;
|
|
14385
|
-
}
|
|
14386
|
-
get justifyContent() {
|
|
14387
|
-
return this.elementRef.nativeElement['justifyContent'];
|
|
14388
|
-
}
|
|
14389
|
-
set justifyItems(value) {
|
|
14390
|
-
this.elementRef.nativeElement['justifyItems'] = value;
|
|
14391
|
-
}
|
|
14392
|
-
get justifyItems() {
|
|
14393
|
-
return this.elementRef.nativeElement['justifyItems'];
|
|
14394
|
-
}
|
|
14395
|
-
set alignContent(value) {
|
|
14396
|
-
this.elementRef.nativeElement['alignContent'] = value;
|
|
14397
|
-
}
|
|
14398
|
-
get alignContent() {
|
|
14399
|
-
return this.elementRef.nativeElement['alignContent'];
|
|
14400
|
-
}
|
|
14401
|
-
set alignItems(value) {
|
|
14402
|
-
this.elementRef.nativeElement['alignItems'] = value;
|
|
14403
|
-
}
|
|
14404
|
-
get alignItems() {
|
|
14405
|
-
return this.elementRef.nativeElement['alignItems'];
|
|
14406
|
-
}
|
|
14407
|
-
set justifyContentMobile(value) {
|
|
14408
|
-
this.elementRef.nativeElement['justifyContentMobile'] = value;
|
|
14409
|
-
}
|
|
14410
|
-
get justifyContentMobile() {
|
|
14411
|
-
return this.elementRef.nativeElement['justifyContentMobile'];
|
|
14412
|
-
}
|
|
14413
|
-
set justifyItemsMobile(value) {
|
|
14414
|
-
this.elementRef.nativeElement['justifyItemsMobile'] = value;
|
|
14415
|
-
}
|
|
14416
|
-
get justifyItemsMobile() {
|
|
14417
|
-
return this.elementRef.nativeElement['justifyItemsMobile'];
|
|
14418
|
-
}
|
|
14419
|
-
set alignContentMobile(value) {
|
|
14420
|
-
this.elementRef.nativeElement['alignContentMobile'] = value;
|
|
14421
|
-
}
|
|
14422
|
-
get alignContentMobile() {
|
|
14423
|
-
return this.elementRef.nativeElement['alignContentMobile'];
|
|
14424
|
-
}
|
|
14425
|
-
set alignItemsMobile(value) {
|
|
14426
|
-
this.elementRef.nativeElement['alignItemsMobile'] = value;
|
|
14427
|
-
}
|
|
14428
|
-
get alignItemsMobile() {
|
|
14429
|
-
return this.elementRef.nativeElement['alignItemsMobile'];
|
|
14430
|
-
}
|
|
14431
|
-
set justifyContentTablet(value) {
|
|
14432
|
-
this.elementRef.nativeElement['justifyContentTablet'] = value;
|
|
14433
|
-
}
|
|
14434
|
-
get justifyContentTablet() {
|
|
14435
|
-
return this.elementRef.nativeElement['justifyContentTablet'];
|
|
14436
|
-
}
|
|
14437
|
-
set justifyItemsTablet(value) {
|
|
14438
|
-
this.elementRef.nativeElement['justifyItemsTablet'] = value;
|
|
14439
|
-
}
|
|
14440
|
-
get justifyItemsTablet() {
|
|
14441
|
-
return this.elementRef.nativeElement['justifyItemsTablet'];
|
|
14442
|
-
}
|
|
14443
|
-
set alignContentTablet(value) {
|
|
14444
|
-
this.elementRef.nativeElement['alignContentTablet'] = value;
|
|
14445
|
-
}
|
|
14446
|
-
get alignContentTablet() {
|
|
14447
|
-
return this.elementRef.nativeElement['alignContentTablet'];
|
|
14448
|
-
}
|
|
14449
|
-
set alignItemsTablet(value) {
|
|
14450
|
-
this.elementRef.nativeElement['alignItemsTablet'] = value;
|
|
14359
|
+
set variant(value) {
|
|
14360
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
14451
14361
|
}
|
|
14452
|
-
get
|
|
14453
|
-
return this.elementRef.nativeElement['
|
|
14362
|
+
get variant() {
|
|
14363
|
+
return this.elementRef.nativeElement['variant'];
|
|
14454
14364
|
}
|
|
14455
|
-
set
|
|
14456
|
-
this.elementRef.nativeElement['
|
|
14365
|
+
set color(value) {
|
|
14366
|
+
this.elementRef.nativeElement['color'] = value;
|
|
14457
14367
|
}
|
|
14458
|
-
get
|
|
14459
|
-
return this.elementRef.nativeElement['
|
|
14368
|
+
get color() {
|
|
14369
|
+
return this.elementRef.nativeElement['color'];
|
|
14460
14370
|
}
|
|
14461
|
-
set
|
|
14462
|
-
this.elementRef.nativeElement['
|
|
14371
|
+
set textAlign(value) {
|
|
14372
|
+
this.elementRef.nativeElement['textAlign'] = value;
|
|
14463
14373
|
}
|
|
14464
|
-
get
|
|
14465
|
-
return this.elementRef.nativeElement['
|
|
14374
|
+
get textAlign() {
|
|
14375
|
+
return this.elementRef.nativeElement['textAlign'];
|
|
14466
14376
|
}
|
|
14467
|
-
set
|
|
14468
|
-
this.elementRef.nativeElement['
|
|
14377
|
+
set textAlignMobile(value) {
|
|
14378
|
+
this.elementRef.nativeElement['textAlignMobile'] = value;
|
|
14469
14379
|
}
|
|
14470
|
-
get
|
|
14471
|
-
return this.elementRef.nativeElement['
|
|
14380
|
+
get textAlignMobile() {
|
|
14381
|
+
return this.elementRef.nativeElement['textAlignMobile'];
|
|
14472
14382
|
}
|
|
14473
|
-
set
|
|
14474
|
-
this.elementRef.nativeElement['
|
|
14383
|
+
set textAlignTablet(value) {
|
|
14384
|
+
this.elementRef.nativeElement['textAlignTablet'] = value;
|
|
14475
14385
|
}
|
|
14476
|
-
get
|
|
14477
|
-
return this.elementRef.nativeElement['
|
|
14386
|
+
get textAlignTablet() {
|
|
14387
|
+
return this.elementRef.nativeElement['textAlignTablet'];
|
|
14478
14388
|
}
|
|
14479
|
-
set
|
|
14480
|
-
this.elementRef.nativeElement['
|
|
14389
|
+
set textAlignLaptop(value) {
|
|
14390
|
+
this.elementRef.nativeElement['textAlignLaptop'] = value;
|
|
14481
14391
|
}
|
|
14482
|
-
get
|
|
14483
|
-
return this.elementRef.nativeElement['
|
|
14392
|
+
get textAlignLaptop() {
|
|
14393
|
+
return this.elementRef.nativeElement['textAlignLaptop'];
|
|
14484
14394
|
}
|
|
14485
|
-
set
|
|
14486
|
-
this.elementRef.nativeElement['
|
|
14395
|
+
set textAlignDesktop(value) {
|
|
14396
|
+
this.elementRef.nativeElement['textAlignDesktop'] = value;
|
|
14487
14397
|
}
|
|
14488
|
-
get
|
|
14489
|
-
return this.elementRef.nativeElement['
|
|
14398
|
+
get textAlignDesktop() {
|
|
14399
|
+
return this.elementRef.nativeElement['textAlignDesktop'];
|
|
14490
14400
|
}
|
|
14491
|
-
set
|
|
14492
|
-
this.elementRef.nativeElement['
|
|
14401
|
+
set inverted(value) {
|
|
14402
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
14493
14403
|
}
|
|
14494
|
-
get
|
|
14495
|
-
return this.elementRef.nativeElement['
|
|
14404
|
+
get inverted() {
|
|
14405
|
+
return this.elementRef.nativeElement['inverted'];
|
|
14496
14406
|
}
|
|
14497
|
-
set
|
|
14498
|
-
this.elementRef.nativeElement['
|
|
14407
|
+
set autoSpacing(value) {
|
|
14408
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
14499
14409
|
}
|
|
14500
|
-
get
|
|
14501
|
-
return this.elementRef.nativeElement['
|
|
14410
|
+
get autoSpacing() {
|
|
14411
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
14502
14412
|
}
|
|
14503
14413
|
set grow(value) {
|
|
14504
14414
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -14815,86 +14725,38 @@ class PxGrid {
|
|
|
14815
14725
|
constructor(elementRef) {
|
|
14816
14726
|
this.elementRef = elementRef;
|
|
14817
14727
|
}
|
|
14818
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
14819
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
14728
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH1, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
14729
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH1, selector: "px-h1", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
14820
14730
|
}
|
|
14821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
14731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH1, decorators: [{
|
|
14822
14732
|
type: Directive,
|
|
14823
14733
|
args: [{
|
|
14824
|
-
selector: 'px-
|
|
14734
|
+
selector: 'px-h1',
|
|
14825
14735
|
}]
|
|
14826
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
14827
|
-
type: Input
|
|
14828
|
-
|
|
14829
|
-
|
|
14830
|
-
|
|
14831
|
-
args: ['grid-cols--mobile']
|
|
14832
|
-
}], gridColsTablet: [{
|
|
14833
|
-
type: Input,
|
|
14834
|
-
args: ['grid-cols--tablet']
|
|
14835
|
-
}], gridColsLaptop: [{
|
|
14836
|
-
type: Input,
|
|
14837
|
-
args: ['grid-cols--laptop']
|
|
14838
|
-
}], justifyContent: [{
|
|
14839
|
-
type: Input,
|
|
14840
|
-
args: ['justify-content']
|
|
14841
|
-
}], justifyItems: [{
|
|
14842
|
-
type: Input,
|
|
14843
|
-
args: ['justify-items']
|
|
14844
|
-
}], alignContent: [{
|
|
14845
|
-
type: Input,
|
|
14846
|
-
args: ['align-content']
|
|
14847
|
-
}], alignItems: [{
|
|
14848
|
-
type: Input,
|
|
14849
|
-
args: ['align-items']
|
|
14850
|
-
}], justifyContentMobile: [{
|
|
14851
|
-
type: Input,
|
|
14852
|
-
args: ['justify-content--mobile']
|
|
14853
|
-
}], justifyItemsMobile: [{
|
|
14854
|
-
type: Input,
|
|
14855
|
-
args: ['justify-items--mobile']
|
|
14856
|
-
}], alignContentMobile: [{
|
|
14857
|
-
type: Input,
|
|
14858
|
-
args: ['align-content--mobile']
|
|
14859
|
-
}], alignItemsMobile: [{
|
|
14860
|
-
type: Input,
|
|
14861
|
-
args: ['align-items--mobile']
|
|
14862
|
-
}], justifyContentTablet: [{
|
|
14863
|
-
type: Input,
|
|
14864
|
-
args: ['justify-content--tablet']
|
|
14865
|
-
}], justifyItemsTablet: [{
|
|
14866
|
-
type: Input,
|
|
14867
|
-
args: ['justify-items--tablet']
|
|
14868
|
-
}], alignContentTablet: [{
|
|
14869
|
-
type: Input,
|
|
14870
|
-
args: ['align-content--tablet']
|
|
14871
|
-
}], alignItemsTablet: [{
|
|
14872
|
-
type: Input,
|
|
14873
|
-
args: ['align-items--tablet']
|
|
14874
|
-
}], justifyContentLaptop: [{
|
|
14875
|
-
type: Input,
|
|
14876
|
-
args: ['justify-content--laptop']
|
|
14877
|
-
}], justifyItemsLaptop: [{
|
|
14878
|
-
type: Input,
|
|
14879
|
-
args: ['justify-items--laptop']
|
|
14880
|
-
}], alignContentLaptop: [{
|
|
14736
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
14737
|
+
type: Input
|
|
14738
|
+
}], color: [{
|
|
14739
|
+
type: Input
|
|
14740
|
+
}], textAlign: [{
|
|
14881
14741
|
type: Input,
|
|
14882
|
-
args: ['align
|
|
14883
|
-
}],
|
|
14742
|
+
args: ['text-align']
|
|
14743
|
+
}], textAlignMobile: [{
|
|
14884
14744
|
type: Input,
|
|
14885
|
-
args: ['align
|
|
14886
|
-
}],
|
|
14745
|
+
args: ['text-align--mobile']
|
|
14746
|
+
}], textAlignTablet: [{
|
|
14887
14747
|
type: Input,
|
|
14888
|
-
args: ['
|
|
14889
|
-
}],
|
|
14748
|
+
args: ['text-align--tablet']
|
|
14749
|
+
}], textAlignLaptop: [{
|
|
14890
14750
|
type: Input,
|
|
14891
|
-
args: ['
|
|
14892
|
-
}],
|
|
14751
|
+
args: ['text-align--laptop']
|
|
14752
|
+
}], textAlignDesktop: [{
|
|
14893
14753
|
type: Input,
|
|
14894
|
-
args: ['align
|
|
14895
|
-
}],
|
|
14754
|
+
args: ['text-align--desktop']
|
|
14755
|
+
}], inverted: [{
|
|
14756
|
+
type: Input
|
|
14757
|
+
}], autoSpacing: [{
|
|
14896
14758
|
type: Input,
|
|
14897
|
-
args: ['
|
|
14759
|
+
args: ['auto-spacing']
|
|
14898
14760
|
}], grow: [{
|
|
14899
14761
|
type: Input
|
|
14900
14762
|
}], growMobile: [{
|
|
@@ -15048,9 +14910,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
15048
14910
|
args: ['word-break-all--desktop']
|
|
15049
14911
|
}] } });
|
|
15050
14912
|
/**
|
|
15051
|
-
* @description Type-only wrapper for <px-
|
|
14913
|
+
* @description Type-only wrapper for <px-h2>
|
|
15052
14914
|
*/
|
|
15053
|
-
class
|
|
14915
|
+
class PxH2 {
|
|
15054
14916
|
elementRef;
|
|
15055
14917
|
set variant(value) {
|
|
15056
14918
|
this.elementRef.nativeElement['variant'] = value;
|
|
@@ -15421,13 +15283,13 @@ class PxH1 {
|
|
|
15421
15283
|
constructor(elementRef) {
|
|
15422
15284
|
this.elementRef = elementRef;
|
|
15423
15285
|
}
|
|
15424
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
15425
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
15286
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH2, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
15287
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH2, selector: "px-h2", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
15426
15288
|
}
|
|
15427
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
15289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH2, decorators: [{
|
|
15428
15290
|
type: Directive,
|
|
15429
15291
|
args: [{
|
|
15430
|
-
selector: 'px-
|
|
15292
|
+
selector: 'px-h2',
|
|
15431
15293
|
}]
|
|
15432
15294
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
15433
15295
|
type: Input
|
|
@@ -15606,9 +15468,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
15606
15468
|
args: ['word-break-all--desktop']
|
|
15607
15469
|
}] } });
|
|
15608
15470
|
/**
|
|
15609
|
-
* @description Type-only wrapper for <px-
|
|
15471
|
+
* @description Type-only wrapper for <px-h3>
|
|
15610
15472
|
*/
|
|
15611
|
-
class
|
|
15473
|
+
class PxH3 {
|
|
15612
15474
|
elementRef;
|
|
15613
15475
|
set variant(value) {
|
|
15614
15476
|
this.elementRef.nativeElement['variant'] = value;
|
|
@@ -15979,13 +15841,13 @@ class PxH2 {
|
|
|
15979
15841
|
constructor(elementRef) {
|
|
15980
15842
|
this.elementRef = elementRef;
|
|
15981
15843
|
}
|
|
15982
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
15983
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
15844
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH3, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
15845
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH3, selector: "px-h3", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
15984
15846
|
}
|
|
15985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
15847
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH3, decorators: [{
|
|
15986
15848
|
type: Directive,
|
|
15987
15849
|
args: [{
|
|
15988
|
-
selector: 'px-
|
|
15850
|
+
selector: 'px-h3',
|
|
15989
15851
|
}]
|
|
15990
15852
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
15991
15853
|
type: Input
|
|
@@ -16164,9 +16026,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
16164
16026
|
args: ['word-break-all--desktop']
|
|
16165
16027
|
}] } });
|
|
16166
16028
|
/**
|
|
16167
|
-
* @description Type-only wrapper for <px-
|
|
16029
|
+
* @description Type-only wrapper for <px-h4>
|
|
16168
16030
|
*/
|
|
16169
|
-
class
|
|
16031
|
+
class PxH4 {
|
|
16170
16032
|
elementRef;
|
|
16171
16033
|
set variant(value) {
|
|
16172
16034
|
this.elementRef.nativeElement['variant'] = value;
|
|
@@ -16537,13 +16399,13 @@ class PxH3 {
|
|
|
16537
16399
|
constructor(elementRef) {
|
|
16538
16400
|
this.elementRef = elementRef;
|
|
16539
16401
|
}
|
|
16540
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
16541
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
16402
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH4, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
16403
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH4, selector: "px-h4", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
16542
16404
|
}
|
|
16543
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
16405
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH4, decorators: [{
|
|
16544
16406
|
type: Directive,
|
|
16545
16407
|
args: [{
|
|
16546
|
-
selector: 'px-
|
|
16408
|
+
selector: 'px-h4',
|
|
16547
16409
|
}]
|
|
16548
16410
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
16549
16411
|
type: Input
|
|
@@ -16722,9 +16584,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
16722
16584
|
args: ['word-break-all--desktop']
|
|
16723
16585
|
}] } });
|
|
16724
16586
|
/**
|
|
16725
|
-
* @description Type-only wrapper for <px-
|
|
16587
|
+
* @description Type-only wrapper for <px-h5>
|
|
16726
16588
|
*/
|
|
16727
|
-
class
|
|
16589
|
+
class PxH5 {
|
|
16728
16590
|
elementRef;
|
|
16729
16591
|
set variant(value) {
|
|
16730
16592
|
this.elementRef.nativeElement['variant'] = value;
|
|
@@ -17095,13 +16957,13 @@ class PxH4 {
|
|
|
17095
16957
|
constructor(elementRef) {
|
|
17096
16958
|
this.elementRef = elementRef;
|
|
17097
16959
|
}
|
|
17098
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
17099
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
16960
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH5, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
16961
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH5, selector: "px-h5", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
17100
16962
|
}
|
|
17101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
16963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH5, decorators: [{
|
|
17102
16964
|
type: Directive,
|
|
17103
16965
|
args: [{
|
|
17104
|
-
selector: 'px-
|
|
16966
|
+
selector: 'px-h5',
|
|
17105
16967
|
}]
|
|
17106
16968
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
17107
16969
|
type: Input
|
|
@@ -17280,9 +17142,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
17280
17142
|
args: ['word-break-all--desktop']
|
|
17281
17143
|
}] } });
|
|
17282
17144
|
/**
|
|
17283
|
-
* @description Type-only wrapper for <px-
|
|
17145
|
+
* @description Type-only wrapper for <px-h6>
|
|
17284
17146
|
*/
|
|
17285
|
-
class
|
|
17147
|
+
class PxH6 {
|
|
17286
17148
|
elementRef;
|
|
17287
17149
|
set variant(value) {
|
|
17288
17150
|
this.elementRef.nativeElement['variant'] = value;
|
|
@@ -17653,13 +17515,13 @@ class PxH5 {
|
|
|
17653
17515
|
constructor(elementRef) {
|
|
17654
17516
|
this.elementRef = elementRef;
|
|
17655
17517
|
}
|
|
17656
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
17657
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
17518
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH6, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
17519
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH6, selector: "px-h6", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
17658
17520
|
}
|
|
17659
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
17521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH6, decorators: [{
|
|
17660
17522
|
type: Directive,
|
|
17661
17523
|
args: [{
|
|
17662
|
-
selector: 'px-
|
|
17524
|
+
selector: 'px-h6',
|
|
17663
17525
|
}]
|
|
17664
17526
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
17665
17527
|
type: Input
|
|
@@ -17838,63 +17700,153 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
17838
17700
|
args: ['word-break-all--desktop']
|
|
17839
17701
|
}] } });
|
|
17840
17702
|
/**
|
|
17841
|
-
* @description Type-only wrapper for <px-
|
|
17703
|
+
* @description Type-only wrapper for <px-grid>
|
|
17842
17704
|
*/
|
|
17843
|
-
class
|
|
17705
|
+
class PxGrid {
|
|
17844
17706
|
elementRef;
|
|
17845
|
-
set
|
|
17846
|
-
this.elementRef.nativeElement['
|
|
17707
|
+
set gridCols(value) {
|
|
17708
|
+
this.elementRef.nativeElement['gridCols'] = value;
|
|
17847
17709
|
}
|
|
17848
|
-
get
|
|
17849
|
-
return this.elementRef.nativeElement['
|
|
17710
|
+
get gridCols() {
|
|
17711
|
+
return this.elementRef.nativeElement['gridCols'];
|
|
17850
17712
|
}
|
|
17851
|
-
set
|
|
17852
|
-
this.elementRef.nativeElement['
|
|
17713
|
+
set gridColsMobile(value) {
|
|
17714
|
+
this.elementRef.nativeElement['gridColsMobile'] = value;
|
|
17853
17715
|
}
|
|
17854
|
-
get
|
|
17855
|
-
return this.elementRef.nativeElement['
|
|
17716
|
+
get gridColsMobile() {
|
|
17717
|
+
return this.elementRef.nativeElement['gridColsMobile'];
|
|
17856
17718
|
}
|
|
17857
|
-
set
|
|
17858
|
-
this.elementRef.nativeElement['
|
|
17719
|
+
set gridColsTablet(value) {
|
|
17720
|
+
this.elementRef.nativeElement['gridColsTablet'] = value;
|
|
17859
17721
|
}
|
|
17860
|
-
get
|
|
17861
|
-
return this.elementRef.nativeElement['
|
|
17722
|
+
get gridColsTablet() {
|
|
17723
|
+
return this.elementRef.nativeElement['gridColsTablet'];
|
|
17862
17724
|
}
|
|
17863
|
-
set
|
|
17864
|
-
this.elementRef.nativeElement['
|
|
17725
|
+
set gridColsLaptop(value) {
|
|
17726
|
+
this.elementRef.nativeElement['gridColsLaptop'] = value;
|
|
17865
17727
|
}
|
|
17866
|
-
get
|
|
17867
|
-
return this.elementRef.nativeElement['
|
|
17728
|
+
get gridColsLaptop() {
|
|
17729
|
+
return this.elementRef.nativeElement['gridColsLaptop'];
|
|
17868
17730
|
}
|
|
17869
|
-
set
|
|
17870
|
-
this.elementRef.nativeElement['
|
|
17731
|
+
set justifyContent(value) {
|
|
17732
|
+
this.elementRef.nativeElement['justifyContent'] = value;
|
|
17871
17733
|
}
|
|
17872
|
-
get
|
|
17873
|
-
return this.elementRef.nativeElement['
|
|
17734
|
+
get justifyContent() {
|
|
17735
|
+
return this.elementRef.nativeElement['justifyContent'];
|
|
17874
17736
|
}
|
|
17875
|
-
set
|
|
17876
|
-
this.elementRef.nativeElement['
|
|
17737
|
+
set justifyItems(value) {
|
|
17738
|
+
this.elementRef.nativeElement['justifyItems'] = value;
|
|
17877
17739
|
}
|
|
17878
|
-
get
|
|
17879
|
-
return this.elementRef.nativeElement['
|
|
17740
|
+
get justifyItems() {
|
|
17741
|
+
return this.elementRef.nativeElement['justifyItems'];
|
|
17880
17742
|
}
|
|
17881
|
-
set
|
|
17882
|
-
this.elementRef.nativeElement['
|
|
17743
|
+
set alignContent(value) {
|
|
17744
|
+
this.elementRef.nativeElement['alignContent'] = value;
|
|
17883
17745
|
}
|
|
17884
|
-
get
|
|
17885
|
-
return this.elementRef.nativeElement['
|
|
17746
|
+
get alignContent() {
|
|
17747
|
+
return this.elementRef.nativeElement['alignContent'];
|
|
17886
17748
|
}
|
|
17887
|
-
set
|
|
17888
|
-
this.elementRef.nativeElement['
|
|
17749
|
+
set alignItems(value) {
|
|
17750
|
+
this.elementRef.nativeElement['alignItems'] = value;
|
|
17889
17751
|
}
|
|
17890
|
-
get
|
|
17891
|
-
return this.elementRef.nativeElement['
|
|
17752
|
+
get alignItems() {
|
|
17753
|
+
return this.elementRef.nativeElement['alignItems'];
|
|
17892
17754
|
}
|
|
17893
|
-
set
|
|
17894
|
-
this.elementRef.nativeElement['
|
|
17755
|
+
set justifyContentMobile(value) {
|
|
17756
|
+
this.elementRef.nativeElement['justifyContentMobile'] = value;
|
|
17895
17757
|
}
|
|
17896
|
-
get
|
|
17897
|
-
return this.elementRef.nativeElement['
|
|
17758
|
+
get justifyContentMobile() {
|
|
17759
|
+
return this.elementRef.nativeElement['justifyContentMobile'];
|
|
17760
|
+
}
|
|
17761
|
+
set justifyItemsMobile(value) {
|
|
17762
|
+
this.elementRef.nativeElement['justifyItemsMobile'] = value;
|
|
17763
|
+
}
|
|
17764
|
+
get justifyItemsMobile() {
|
|
17765
|
+
return this.elementRef.nativeElement['justifyItemsMobile'];
|
|
17766
|
+
}
|
|
17767
|
+
set alignContentMobile(value) {
|
|
17768
|
+
this.elementRef.nativeElement['alignContentMobile'] = value;
|
|
17769
|
+
}
|
|
17770
|
+
get alignContentMobile() {
|
|
17771
|
+
return this.elementRef.nativeElement['alignContentMobile'];
|
|
17772
|
+
}
|
|
17773
|
+
set alignItemsMobile(value) {
|
|
17774
|
+
this.elementRef.nativeElement['alignItemsMobile'] = value;
|
|
17775
|
+
}
|
|
17776
|
+
get alignItemsMobile() {
|
|
17777
|
+
return this.elementRef.nativeElement['alignItemsMobile'];
|
|
17778
|
+
}
|
|
17779
|
+
set justifyContentTablet(value) {
|
|
17780
|
+
this.elementRef.nativeElement['justifyContentTablet'] = value;
|
|
17781
|
+
}
|
|
17782
|
+
get justifyContentTablet() {
|
|
17783
|
+
return this.elementRef.nativeElement['justifyContentTablet'];
|
|
17784
|
+
}
|
|
17785
|
+
set justifyItemsTablet(value) {
|
|
17786
|
+
this.elementRef.nativeElement['justifyItemsTablet'] = value;
|
|
17787
|
+
}
|
|
17788
|
+
get justifyItemsTablet() {
|
|
17789
|
+
return this.elementRef.nativeElement['justifyItemsTablet'];
|
|
17790
|
+
}
|
|
17791
|
+
set alignContentTablet(value) {
|
|
17792
|
+
this.elementRef.nativeElement['alignContentTablet'] = value;
|
|
17793
|
+
}
|
|
17794
|
+
get alignContentTablet() {
|
|
17795
|
+
return this.elementRef.nativeElement['alignContentTablet'];
|
|
17796
|
+
}
|
|
17797
|
+
set alignItemsTablet(value) {
|
|
17798
|
+
this.elementRef.nativeElement['alignItemsTablet'] = value;
|
|
17799
|
+
}
|
|
17800
|
+
get alignItemsTablet() {
|
|
17801
|
+
return this.elementRef.nativeElement['alignItemsTablet'];
|
|
17802
|
+
}
|
|
17803
|
+
set justifyContentLaptop(value) {
|
|
17804
|
+
this.elementRef.nativeElement['justifyContentLaptop'] = value;
|
|
17805
|
+
}
|
|
17806
|
+
get justifyContentLaptop() {
|
|
17807
|
+
return this.elementRef.nativeElement['justifyContentLaptop'];
|
|
17808
|
+
}
|
|
17809
|
+
set justifyItemsLaptop(value) {
|
|
17810
|
+
this.elementRef.nativeElement['justifyItemsLaptop'] = value;
|
|
17811
|
+
}
|
|
17812
|
+
get justifyItemsLaptop() {
|
|
17813
|
+
return this.elementRef.nativeElement['justifyItemsLaptop'];
|
|
17814
|
+
}
|
|
17815
|
+
set alignContentLaptop(value) {
|
|
17816
|
+
this.elementRef.nativeElement['alignContentLaptop'] = value;
|
|
17817
|
+
}
|
|
17818
|
+
get alignContentLaptop() {
|
|
17819
|
+
return this.elementRef.nativeElement['alignContentLaptop'];
|
|
17820
|
+
}
|
|
17821
|
+
set alignItemsLaptop(value) {
|
|
17822
|
+
this.elementRef.nativeElement['alignItemsLaptop'] = value;
|
|
17823
|
+
}
|
|
17824
|
+
get alignItemsLaptop() {
|
|
17825
|
+
return this.elementRef.nativeElement['alignItemsLaptop'];
|
|
17826
|
+
}
|
|
17827
|
+
set justifyContentDesktop(value) {
|
|
17828
|
+
this.elementRef.nativeElement['justifyContentDesktop'] = value;
|
|
17829
|
+
}
|
|
17830
|
+
get justifyContentDesktop() {
|
|
17831
|
+
return this.elementRef.nativeElement['justifyContentDesktop'];
|
|
17832
|
+
}
|
|
17833
|
+
set justifyItemsDesktop(value) {
|
|
17834
|
+
this.elementRef.nativeElement['justifyItemsDesktop'] = value;
|
|
17835
|
+
}
|
|
17836
|
+
get justifyItemsDesktop() {
|
|
17837
|
+
return this.elementRef.nativeElement['justifyItemsDesktop'];
|
|
17838
|
+
}
|
|
17839
|
+
set alignContentDesktop(value) {
|
|
17840
|
+
this.elementRef.nativeElement['alignContentDesktop'] = value;
|
|
17841
|
+
}
|
|
17842
|
+
get alignContentDesktop() {
|
|
17843
|
+
return this.elementRef.nativeElement['alignContentDesktop'];
|
|
17844
|
+
}
|
|
17845
|
+
set alignItemsDesktop(value) {
|
|
17846
|
+
this.elementRef.nativeElement['alignItemsDesktop'] = value;
|
|
17847
|
+
}
|
|
17848
|
+
get alignItemsDesktop() {
|
|
17849
|
+
return this.elementRef.nativeElement['alignItemsDesktop'];
|
|
17898
17850
|
}
|
|
17899
17851
|
set grow(value) {
|
|
17900
17852
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -18211,38 +18163,86 @@ class PxH6 {
|
|
|
18211
18163
|
constructor(elementRef) {
|
|
18212
18164
|
this.elementRef = elementRef;
|
|
18213
18165
|
}
|
|
18214
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
18215
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
18166
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxGrid, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18167
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxGrid, selector: "px-grid", inputs: { gridCols: ["grid-cols", "gridCols"], gridColsMobile: ["grid-cols--mobile", "gridColsMobile"], gridColsTablet: ["grid-cols--tablet", "gridColsTablet"], gridColsLaptop: ["grid-cols--laptop", "gridColsLaptop"], justifyContent: ["justify-content", "justifyContent"], justifyItems: ["justify-items", "justifyItems"], alignContent: ["align-content", "alignContent"], alignItems: ["align-items", "alignItems"], justifyContentMobile: ["justify-content--mobile", "justifyContentMobile"], justifyItemsMobile: ["justify-items--mobile", "justifyItemsMobile"], alignContentMobile: ["align-content--mobile", "alignContentMobile"], alignItemsMobile: ["align-items--mobile", "alignItemsMobile"], justifyContentTablet: ["justify-content--tablet", "justifyContentTablet"], justifyItemsTablet: ["justify-items--tablet", "justifyItemsTablet"], alignContentTablet: ["align-content--tablet", "alignContentTablet"], alignItemsTablet: ["align-items--tablet", "alignItemsTablet"], justifyContentLaptop: ["justify-content--laptop", "justifyContentLaptop"], justifyItemsLaptop: ["justify-items--laptop", "justifyItemsLaptop"], alignContentLaptop: ["align-content--laptop", "alignContentLaptop"], alignItemsLaptop: ["align-items--laptop", "alignItemsLaptop"], justifyContentDesktop: ["justify-content--desktop", "justifyContentDesktop"], justifyItemsDesktop: ["justify-items--desktop", "justifyItemsDesktop"], alignContentDesktop: ["align-content--desktop", "alignContentDesktop"], alignItemsDesktop: ["align-items--desktop", "alignItemsDesktop"], 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 });
|
|
18216
18168
|
}
|
|
18217
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
18169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxGrid, decorators: [{
|
|
18218
18170
|
type: Directive,
|
|
18219
18171
|
args: [{
|
|
18220
|
-
selector: 'px-
|
|
18172
|
+
selector: 'px-grid',
|
|
18221
18173
|
}]
|
|
18222
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
18223
|
-
type: Input
|
|
18224
|
-
}], color: [{
|
|
18225
|
-
type: Input
|
|
18226
|
-
}], textAlign: [{
|
|
18174
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { gridCols: [{
|
|
18227
18175
|
type: Input,
|
|
18228
|
-
args: ['
|
|
18229
|
-
}],
|
|
18176
|
+
args: ['grid-cols']
|
|
18177
|
+
}], gridColsMobile: [{
|
|
18230
18178
|
type: Input,
|
|
18231
|
-
args: ['
|
|
18232
|
-
}],
|
|
18179
|
+
args: ['grid-cols--mobile']
|
|
18180
|
+
}], gridColsTablet: [{
|
|
18233
18181
|
type: Input,
|
|
18234
|
-
args: ['
|
|
18235
|
-
}],
|
|
18182
|
+
args: ['grid-cols--tablet']
|
|
18183
|
+
}], gridColsLaptop: [{
|
|
18236
18184
|
type: Input,
|
|
18237
|
-
args: ['
|
|
18238
|
-
}],
|
|
18185
|
+
args: ['grid-cols--laptop']
|
|
18186
|
+
}], justifyContent: [{
|
|
18239
18187
|
type: Input,
|
|
18240
|
-
args: ['
|
|
18241
|
-
}],
|
|
18242
|
-
type: Input
|
|
18243
|
-
}], autoSpacing: [{
|
|
18188
|
+
args: ['justify-content']
|
|
18189
|
+
}], justifyItems: [{
|
|
18244
18190
|
type: Input,
|
|
18245
|
-
args: ['
|
|
18191
|
+
args: ['justify-items']
|
|
18192
|
+
}], alignContent: [{
|
|
18193
|
+
type: Input,
|
|
18194
|
+
args: ['align-content']
|
|
18195
|
+
}], alignItems: [{
|
|
18196
|
+
type: Input,
|
|
18197
|
+
args: ['align-items']
|
|
18198
|
+
}], justifyContentMobile: [{
|
|
18199
|
+
type: Input,
|
|
18200
|
+
args: ['justify-content--mobile']
|
|
18201
|
+
}], justifyItemsMobile: [{
|
|
18202
|
+
type: Input,
|
|
18203
|
+
args: ['justify-items--mobile']
|
|
18204
|
+
}], alignContentMobile: [{
|
|
18205
|
+
type: Input,
|
|
18206
|
+
args: ['align-content--mobile']
|
|
18207
|
+
}], alignItemsMobile: [{
|
|
18208
|
+
type: Input,
|
|
18209
|
+
args: ['align-items--mobile']
|
|
18210
|
+
}], justifyContentTablet: [{
|
|
18211
|
+
type: Input,
|
|
18212
|
+
args: ['justify-content--tablet']
|
|
18213
|
+
}], justifyItemsTablet: [{
|
|
18214
|
+
type: Input,
|
|
18215
|
+
args: ['justify-items--tablet']
|
|
18216
|
+
}], alignContentTablet: [{
|
|
18217
|
+
type: Input,
|
|
18218
|
+
args: ['align-content--tablet']
|
|
18219
|
+
}], alignItemsTablet: [{
|
|
18220
|
+
type: Input,
|
|
18221
|
+
args: ['align-items--tablet']
|
|
18222
|
+
}], justifyContentLaptop: [{
|
|
18223
|
+
type: Input,
|
|
18224
|
+
args: ['justify-content--laptop']
|
|
18225
|
+
}], justifyItemsLaptop: [{
|
|
18226
|
+
type: Input,
|
|
18227
|
+
args: ['justify-items--laptop']
|
|
18228
|
+
}], alignContentLaptop: [{
|
|
18229
|
+
type: Input,
|
|
18230
|
+
args: ['align-content--laptop']
|
|
18231
|
+
}], alignItemsLaptop: [{
|
|
18232
|
+
type: Input,
|
|
18233
|
+
args: ['align-items--laptop']
|
|
18234
|
+
}], justifyContentDesktop: [{
|
|
18235
|
+
type: Input,
|
|
18236
|
+
args: ['justify-content--desktop']
|
|
18237
|
+
}], justifyItemsDesktop: [{
|
|
18238
|
+
type: Input,
|
|
18239
|
+
args: ['justify-items--desktop']
|
|
18240
|
+
}], alignContentDesktop: [{
|
|
18241
|
+
type: Input,
|
|
18242
|
+
args: ['align-content--desktop']
|
|
18243
|
+
}], alignItemsDesktop: [{
|
|
18244
|
+
type: Input,
|
|
18245
|
+
args: ['align-items--desktop']
|
|
18246
18246
|
}], grow: [{
|
|
18247
18247
|
type: Input
|
|
18248
18248
|
}], growMobile: [{
|
|
@@ -28057,172 +28057,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28057
28057
|
type: Input,
|
|
28058
28058
|
args: ['word-break-all--desktop']
|
|
28059
28059
|
}] } });
|
|
28060
|
-
/**
|
|
28061
|
-
* @description Type-only wrapper for <px-card-actions>
|
|
28062
|
-
*/
|
|
28063
|
-
class PxCardActions {
|
|
28064
|
-
elementRef;
|
|
28065
|
-
constructor(elementRef) {
|
|
28066
|
-
this.elementRef = elementRef;
|
|
28067
|
-
}
|
|
28068
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardActions, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28069
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCardActions, selector: "px-card-actions", ngImport: i0 });
|
|
28070
|
-
}
|
|
28071
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardActions, decorators: [{
|
|
28072
|
-
type: Directive,
|
|
28073
|
-
args: [{
|
|
28074
|
-
selector: 'px-card-actions',
|
|
28075
|
-
}]
|
|
28076
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28077
|
-
/**
|
|
28078
|
-
* @description Type-only wrapper for <px-card-container>
|
|
28079
|
-
*/
|
|
28080
|
-
class PxCardContainer {
|
|
28081
|
-
elementRef;
|
|
28082
|
-
/** Switches to a dark surface with inverted text colors. */
|
|
28083
|
-
set inverted(value) {
|
|
28084
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
28085
|
-
}
|
|
28086
|
-
get inverted() {
|
|
28087
|
-
return this.elementRef.nativeElement['inverted'];
|
|
28088
|
-
}
|
|
28089
|
-
/** URL of the card media image. */
|
|
28090
|
-
set src(value) {
|
|
28091
|
-
this.elementRef.nativeElement['src'] = value;
|
|
28092
|
-
}
|
|
28093
|
-
get src() {
|
|
28094
|
-
return this.elementRef.nativeElement['src'];
|
|
28095
|
-
}
|
|
28096
|
-
/** Where the media image is rendered. */
|
|
28097
|
-
set mediaPosition(value) {
|
|
28098
|
-
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
28099
|
-
}
|
|
28100
|
-
get mediaPosition() {
|
|
28101
|
-
return this.elementRef.nativeElement['mediaPosition'];
|
|
28102
|
-
}
|
|
28103
|
-
/** How the media image is fitted. */
|
|
28104
|
-
set mediaSize(value) {
|
|
28105
|
-
this.elementRef.nativeElement['mediaSize'] = value;
|
|
28106
|
-
}
|
|
28107
|
-
get mediaSize() {
|
|
28108
|
-
return this.elementRef.nativeElement['mediaSize'];
|
|
28109
|
-
}
|
|
28110
|
-
set mediaAltText(value) {
|
|
28111
|
-
this.elementRef.nativeElement['mediaAltText'] = value;
|
|
28112
|
-
}
|
|
28113
|
-
get mediaAltText() {
|
|
28114
|
-
return this.elementRef.nativeElement['mediaAltText'];
|
|
28115
|
-
}
|
|
28116
|
-
/** Inner content padding size. */
|
|
28117
|
-
set padding(value) {
|
|
28118
|
-
this.elementRef.nativeElement['padding'] = value;
|
|
28119
|
-
}
|
|
28120
|
-
get padding() {
|
|
28121
|
-
return this.elementRef.nativeElement['padding'];
|
|
28122
|
-
}
|
|
28123
|
-
/** Aspect ratio applied to top media (e.g. `'16:9'`, `'1:1'`, `'4:3'`). */
|
|
28124
|
-
set aspectRatio(value) {
|
|
28125
|
-
this.elementRef.nativeElement['aspectRatio'] = value;
|
|
28126
|
-
}
|
|
28127
|
-
get aspectRatio() {
|
|
28128
|
-
return this.elementRef.nativeElement['aspectRatio'];
|
|
28129
|
-
}
|
|
28130
|
-
/** Whether the card has a visible border. */
|
|
28131
|
-
set hasBorder(value) {
|
|
28132
|
-
this.elementRef.nativeElement['hasBorder'] = value;
|
|
28133
|
-
}
|
|
28134
|
-
get hasBorder() {
|
|
28135
|
-
return this.elementRef.nativeElement['hasBorder'];
|
|
28136
|
-
}
|
|
28137
|
-
/** Surface color preset. */
|
|
28138
|
-
set backgroundColor(value) {
|
|
28139
|
-
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
28140
|
-
}
|
|
28141
|
-
get backgroundColor() {
|
|
28142
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
28143
|
-
}
|
|
28144
|
-
/** URL of a full-card background image (delegated to `<px-container>`). */
|
|
28145
|
-
set backgroundImage(value) {
|
|
28146
|
-
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
28147
|
-
}
|
|
28148
|
-
get backgroundImage() {
|
|
28149
|
-
return this.elementRef.nativeElement['backgroundImage'];
|
|
28150
|
-
}
|
|
28151
|
-
set interactiveState(value) {
|
|
28152
|
-
this.elementRef.nativeElement['interactiveState'] = value;
|
|
28153
|
-
}
|
|
28154
|
-
get interactiveState() {
|
|
28155
|
-
return this.elementRef.nativeElement['interactiveState'];
|
|
28156
|
-
}
|
|
28157
|
-
/** Alt text for the media image. */
|
|
28158
|
-
set alternativeText(value) {
|
|
28159
|
-
this.elementRef.nativeElement['alternativeText'] = value;
|
|
28160
|
-
}
|
|
28161
|
-
get alternativeText() {
|
|
28162
|
-
return this.elementRef.nativeElement['alternativeText'];
|
|
28163
|
-
}
|
|
28164
|
-
constructor(elementRef) {
|
|
28165
|
-
this.elementRef = elementRef;
|
|
28166
|
-
}
|
|
28167
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28168
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCardContainer, selector: "px-card-container", inputs: { inverted: "inverted", src: "src", mediaPosition: ["media-position", "mediaPosition"], mediaSize: ["media-size", "mediaSize"], mediaAltText: ["media-alt-text", "mediaAltText"], padding: "padding", aspectRatio: ["aspect-ratio", "aspectRatio"], hasBorder: ["has-border", "hasBorder"], backgroundColor: ["background-color", "backgroundColor"], backgroundImage: ["background-image", "backgroundImage"], interactiveState: ["interactive-state", "interactiveState"], alternativeText: ["alternative-text", "alternativeText"] }, ngImport: i0 });
|
|
28169
|
-
}
|
|
28170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardContainer, decorators: [{
|
|
28171
|
-
type: Directive,
|
|
28172
|
-
args: [{
|
|
28173
|
-
selector: 'px-card-container',
|
|
28174
|
-
}]
|
|
28175
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
28176
|
-
type: Input
|
|
28177
|
-
}], src: [{
|
|
28178
|
-
type: Input
|
|
28179
|
-
}], mediaPosition: [{
|
|
28180
|
-
type: Input,
|
|
28181
|
-
args: ['media-position']
|
|
28182
|
-
}], mediaSize: [{
|
|
28183
|
-
type: Input,
|
|
28184
|
-
args: ['media-size']
|
|
28185
|
-
}], mediaAltText: [{
|
|
28186
|
-
type: Input,
|
|
28187
|
-
args: ['media-alt-text']
|
|
28188
|
-
}], padding: [{
|
|
28189
|
-
type: Input
|
|
28190
|
-
}], aspectRatio: [{
|
|
28191
|
-
type: Input,
|
|
28192
|
-
args: ['aspect-ratio']
|
|
28193
|
-
}], hasBorder: [{
|
|
28194
|
-
type: Input,
|
|
28195
|
-
args: ['has-border']
|
|
28196
|
-
}], backgroundColor: [{
|
|
28197
|
-
type: Input,
|
|
28198
|
-
args: ['background-color']
|
|
28199
|
-
}], backgroundImage: [{
|
|
28200
|
-
type: Input,
|
|
28201
|
-
args: ['background-image']
|
|
28202
|
-
}], interactiveState: [{
|
|
28203
|
-
type: Input,
|
|
28204
|
-
args: ['interactive-state']
|
|
28205
|
-
}], alternativeText: [{
|
|
28206
|
-
type: Input,
|
|
28207
|
-
args: ['alternative-text']
|
|
28208
|
-
}] } });
|
|
28209
|
-
/**
|
|
28210
|
-
* @description Type-only wrapper for <px-card-heading>
|
|
28211
|
-
*/
|
|
28212
|
-
class PxCardHeading {
|
|
28213
|
-
elementRef;
|
|
28214
|
-
constructor(elementRef) {
|
|
28215
|
-
this.elementRef = elementRef;
|
|
28216
|
-
}
|
|
28217
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardHeading, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28218
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCardHeading, selector: "px-card-heading", ngImport: i0 });
|
|
28219
|
-
}
|
|
28220
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardHeading, decorators: [{
|
|
28221
|
-
type: Directive,
|
|
28222
|
-
args: [{
|
|
28223
|
-
selector: 'px-card-heading',
|
|
28224
|
-
}]
|
|
28225
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28226
28060
|
/**
|
|
28227
28061
|
* @description Type-only wrapper for <px-price>
|
|
28228
28062
|
*/
|
|
@@ -28727,6 +28561,172 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28727
28561
|
type: Input,
|
|
28728
28562
|
args: ['word-break-all--desktop']
|
|
28729
28563
|
}] } });
|
|
28564
|
+
/**
|
|
28565
|
+
* @description Type-only wrapper for <px-card-actions>
|
|
28566
|
+
*/
|
|
28567
|
+
class PxCardActions {
|
|
28568
|
+
elementRef;
|
|
28569
|
+
constructor(elementRef) {
|
|
28570
|
+
this.elementRef = elementRef;
|
|
28571
|
+
}
|
|
28572
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardActions, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28573
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCardActions, selector: "px-card-actions", ngImport: i0 });
|
|
28574
|
+
}
|
|
28575
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardActions, decorators: [{
|
|
28576
|
+
type: Directive,
|
|
28577
|
+
args: [{
|
|
28578
|
+
selector: 'px-card-actions',
|
|
28579
|
+
}]
|
|
28580
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28581
|
+
/**
|
|
28582
|
+
* @description Type-only wrapper for <px-card-container>
|
|
28583
|
+
*/
|
|
28584
|
+
class PxCardContainer {
|
|
28585
|
+
elementRef;
|
|
28586
|
+
/** Switches to a dark surface with inverted text colors. */
|
|
28587
|
+
set inverted(value) {
|
|
28588
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
28589
|
+
}
|
|
28590
|
+
get inverted() {
|
|
28591
|
+
return this.elementRef.nativeElement['inverted'];
|
|
28592
|
+
}
|
|
28593
|
+
/** URL of the card media image. */
|
|
28594
|
+
set src(value) {
|
|
28595
|
+
this.elementRef.nativeElement['src'] = value;
|
|
28596
|
+
}
|
|
28597
|
+
get src() {
|
|
28598
|
+
return this.elementRef.nativeElement['src'];
|
|
28599
|
+
}
|
|
28600
|
+
/** Where the media image is rendered. */
|
|
28601
|
+
set mediaPosition(value) {
|
|
28602
|
+
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
28603
|
+
}
|
|
28604
|
+
get mediaPosition() {
|
|
28605
|
+
return this.elementRef.nativeElement['mediaPosition'];
|
|
28606
|
+
}
|
|
28607
|
+
/** How the media image is fitted. */
|
|
28608
|
+
set mediaSize(value) {
|
|
28609
|
+
this.elementRef.nativeElement['mediaSize'] = value;
|
|
28610
|
+
}
|
|
28611
|
+
get mediaSize() {
|
|
28612
|
+
return this.elementRef.nativeElement['mediaSize'];
|
|
28613
|
+
}
|
|
28614
|
+
set mediaAltText(value) {
|
|
28615
|
+
this.elementRef.nativeElement['mediaAltText'] = value;
|
|
28616
|
+
}
|
|
28617
|
+
get mediaAltText() {
|
|
28618
|
+
return this.elementRef.nativeElement['mediaAltText'];
|
|
28619
|
+
}
|
|
28620
|
+
/** Inner content padding size. */
|
|
28621
|
+
set padding(value) {
|
|
28622
|
+
this.elementRef.nativeElement['padding'] = value;
|
|
28623
|
+
}
|
|
28624
|
+
get padding() {
|
|
28625
|
+
return this.elementRef.nativeElement['padding'];
|
|
28626
|
+
}
|
|
28627
|
+
/** Aspect ratio applied to top media (e.g. `'16:9'`, `'1:1'`, `'4:3'`). */
|
|
28628
|
+
set aspectRatio(value) {
|
|
28629
|
+
this.elementRef.nativeElement['aspectRatio'] = value;
|
|
28630
|
+
}
|
|
28631
|
+
get aspectRatio() {
|
|
28632
|
+
return this.elementRef.nativeElement['aspectRatio'];
|
|
28633
|
+
}
|
|
28634
|
+
/** Whether the card has a visible border. */
|
|
28635
|
+
set hasBorder(value) {
|
|
28636
|
+
this.elementRef.nativeElement['hasBorder'] = value;
|
|
28637
|
+
}
|
|
28638
|
+
get hasBorder() {
|
|
28639
|
+
return this.elementRef.nativeElement['hasBorder'];
|
|
28640
|
+
}
|
|
28641
|
+
/** Surface color preset. */
|
|
28642
|
+
set backgroundColor(value) {
|
|
28643
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
28644
|
+
}
|
|
28645
|
+
get backgroundColor() {
|
|
28646
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
28647
|
+
}
|
|
28648
|
+
/** URL of a full-card background image (delegated to `<px-container>`). */
|
|
28649
|
+
set backgroundImage(value) {
|
|
28650
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
28651
|
+
}
|
|
28652
|
+
get backgroundImage() {
|
|
28653
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
28654
|
+
}
|
|
28655
|
+
set interactiveState(value) {
|
|
28656
|
+
this.elementRef.nativeElement['interactiveState'] = value;
|
|
28657
|
+
}
|
|
28658
|
+
get interactiveState() {
|
|
28659
|
+
return this.elementRef.nativeElement['interactiveState'];
|
|
28660
|
+
}
|
|
28661
|
+
/** Alt text for the media image. */
|
|
28662
|
+
set alternativeText(value) {
|
|
28663
|
+
this.elementRef.nativeElement['alternativeText'] = value;
|
|
28664
|
+
}
|
|
28665
|
+
get alternativeText() {
|
|
28666
|
+
return this.elementRef.nativeElement['alternativeText'];
|
|
28667
|
+
}
|
|
28668
|
+
constructor(elementRef) {
|
|
28669
|
+
this.elementRef = elementRef;
|
|
28670
|
+
}
|
|
28671
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28672
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCardContainer, selector: "px-card-container", inputs: { inverted: "inverted", src: "src", mediaPosition: ["media-position", "mediaPosition"], mediaSize: ["media-size", "mediaSize"], mediaAltText: ["media-alt-text", "mediaAltText"], padding: "padding", aspectRatio: ["aspect-ratio", "aspectRatio"], hasBorder: ["has-border", "hasBorder"], backgroundColor: ["background-color", "backgroundColor"], backgroundImage: ["background-image", "backgroundImage"], interactiveState: ["interactive-state", "interactiveState"], alternativeText: ["alternative-text", "alternativeText"] }, ngImport: i0 });
|
|
28673
|
+
}
|
|
28674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardContainer, decorators: [{
|
|
28675
|
+
type: Directive,
|
|
28676
|
+
args: [{
|
|
28677
|
+
selector: 'px-card-container',
|
|
28678
|
+
}]
|
|
28679
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
28680
|
+
type: Input
|
|
28681
|
+
}], src: [{
|
|
28682
|
+
type: Input
|
|
28683
|
+
}], mediaPosition: [{
|
|
28684
|
+
type: Input,
|
|
28685
|
+
args: ['media-position']
|
|
28686
|
+
}], mediaSize: [{
|
|
28687
|
+
type: Input,
|
|
28688
|
+
args: ['media-size']
|
|
28689
|
+
}], mediaAltText: [{
|
|
28690
|
+
type: Input,
|
|
28691
|
+
args: ['media-alt-text']
|
|
28692
|
+
}], padding: [{
|
|
28693
|
+
type: Input
|
|
28694
|
+
}], aspectRatio: [{
|
|
28695
|
+
type: Input,
|
|
28696
|
+
args: ['aspect-ratio']
|
|
28697
|
+
}], hasBorder: [{
|
|
28698
|
+
type: Input,
|
|
28699
|
+
args: ['has-border']
|
|
28700
|
+
}], backgroundColor: [{
|
|
28701
|
+
type: Input,
|
|
28702
|
+
args: ['background-color']
|
|
28703
|
+
}], backgroundImage: [{
|
|
28704
|
+
type: Input,
|
|
28705
|
+
args: ['background-image']
|
|
28706
|
+
}], interactiveState: [{
|
|
28707
|
+
type: Input,
|
|
28708
|
+
args: ['interactive-state']
|
|
28709
|
+
}], alternativeText: [{
|
|
28710
|
+
type: Input,
|
|
28711
|
+
args: ['alternative-text']
|
|
28712
|
+
}] } });
|
|
28713
|
+
/**
|
|
28714
|
+
* @description Type-only wrapper for <px-card-heading>
|
|
28715
|
+
*/
|
|
28716
|
+
class PxCardHeading {
|
|
28717
|
+
elementRef;
|
|
28718
|
+
constructor(elementRef) {
|
|
28719
|
+
this.elementRef = elementRef;
|
|
28720
|
+
}
|
|
28721
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardHeading, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28722
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCardHeading, selector: "px-card-heading", ngImport: i0 });
|
|
28723
|
+
}
|
|
28724
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCardHeading, decorators: [{
|
|
28725
|
+
type: Directive,
|
|
28726
|
+
args: [{
|
|
28727
|
+
selector: 'px-card-heading',
|
|
28728
|
+
}]
|
|
28729
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28730
28730
|
/**
|
|
28731
28731
|
* @description Type-only wrapper for <px-radio>
|
|
28732
28732
|
*/
|
|
@@ -35300,6 +35300,12 @@ class PxStatusCard {
|
|
|
35300
35300
|
get statusIconAriaLabel() {
|
|
35301
35301
|
return this.elementRef.nativeElement['statusIconAriaLabel'];
|
|
35302
35302
|
}
|
|
35303
|
+
set backgroundColor(value) {
|
|
35304
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
35305
|
+
}
|
|
35306
|
+
get backgroundColor() {
|
|
35307
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
35308
|
+
}
|
|
35303
35309
|
set grow(value) {
|
|
35304
35310
|
this.elementRef.nativeElement['grow'] = value;
|
|
35305
35311
|
}
|
|
@@ -35620,7 +35626,7 @@ class PxStatusCard {
|
|
|
35620
35626
|
});
|
|
35621
35627
|
}
|
|
35622
35628
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxStatusCard, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
35623
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxStatusCard, selector: "px-status-card", inputs: { state: "state", inverted: "inverted", statusIconAriaLabel: ["status-icon-aria-label", "statusIconAriaLabel"], 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: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
35629
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxStatusCard, selector: "px-status-card", inputs: { state: "state", inverted: "inverted", statusIconAriaLabel: ["status-icon-aria-label", "statusIconAriaLabel"], backgroundColor: ["background-color", "backgroundColor"], 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: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
35624
35630
|
}
|
|
35625
35631
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxStatusCard, decorators: [{
|
|
35626
35632
|
type: Directive,
|
|
@@ -35634,6 +35640,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
35634
35640
|
}], statusIconAriaLabel: [{
|
|
35635
35641
|
type: Input,
|
|
35636
35642
|
args: ['status-icon-aria-label']
|
|
35643
|
+
}], backgroundColor: [{
|
|
35644
|
+
type: Input,
|
|
35645
|
+
args: ['background-color']
|
|
35637
35646
|
}], grow: [{
|
|
35638
35647
|
type: Input
|
|
35639
35648
|
}], growMobile: [{
|
|
@@ -41157,7 +41166,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41157
41166
|
}] } });
|
|
41158
41167
|
class Lavender {
|
|
41159
41168
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41160
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper,
|
|
41169
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButtonIcon, PxButton, PxButtonWrapper, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxGrid, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxPrice, PxCardActions, PxCardContainer, PxCardHeading, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButtonIcon, PxButton, PxButtonWrapper, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxGrid, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxPrice, PxCardActions, PxCardContainer, PxCardHeading, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41161
41170
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
41162
41171
|
}
|
|
41163
41172
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41171,9 +41180,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41171
41180
|
PxBanner,
|
|
41172
41181
|
PxBreadcrumbItem,
|
|
41173
41182
|
PxBreadcrumb,
|
|
41183
|
+
PxButtonIcon,
|
|
41174
41184
|
PxButton,
|
|
41175
41185
|
PxButtonWrapper,
|
|
41176
|
-
PxButtonIcon,
|
|
41177
41186
|
PxCard,
|
|
41178
41187
|
PxAppleseed,
|
|
41179
41188
|
PxCarousel,
|
|
@@ -41192,13 +41201,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41192
41201
|
PxDrawer,
|
|
41193
41202
|
PxDropdown,
|
|
41194
41203
|
PxFieldset,
|
|
41195
|
-
PxGrid,
|
|
41196
41204
|
PxH1,
|
|
41197
41205
|
PxH2,
|
|
41198
41206
|
PxH3,
|
|
41199
41207
|
PxH4,
|
|
41200
41208
|
PxH5,
|
|
41201
41209
|
PxH6,
|
|
41210
|
+
PxGrid,
|
|
41202
41211
|
PxHeadingGroup,
|
|
41203
41212
|
PxImg,
|
|
41204
41213
|
PxPicture,
|
|
@@ -41218,10 +41227,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41218
41227
|
PxModal,
|
|
41219
41228
|
PxP,
|
|
41220
41229
|
PxPillar,
|
|
41230
|
+
PxPrice,
|
|
41221
41231
|
PxCardActions,
|
|
41222
41232
|
PxCardContainer,
|
|
41223
41233
|
PxCardHeading,
|
|
41224
|
-
PxPrice,
|
|
41225
41234
|
PxRadio,
|
|
41226
41235
|
PxRadioBase,
|
|
41227
41236
|
PxRadioGroup,
|
|
@@ -41273,9 +41282,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41273
41282
|
PxBanner,
|
|
41274
41283
|
PxBreadcrumbItem,
|
|
41275
41284
|
PxBreadcrumb,
|
|
41285
|
+
PxButtonIcon,
|
|
41276
41286
|
PxButton,
|
|
41277
41287
|
PxButtonWrapper,
|
|
41278
|
-
PxButtonIcon,
|
|
41279
41288
|
PxCard,
|
|
41280
41289
|
PxAppleseed,
|
|
41281
41290
|
PxCarousel,
|
|
@@ -41294,13 +41303,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41294
41303
|
PxDrawer,
|
|
41295
41304
|
PxDropdown,
|
|
41296
41305
|
PxFieldset,
|
|
41297
|
-
PxGrid,
|
|
41298
41306
|
PxH1,
|
|
41299
41307
|
PxH2,
|
|
41300
41308
|
PxH3,
|
|
41301
41309
|
PxH4,
|
|
41302
41310
|
PxH5,
|
|
41303
41311
|
PxH6,
|
|
41312
|
+
PxGrid,
|
|
41304
41313
|
PxHeadingGroup,
|
|
41305
41314
|
PxImg,
|
|
41306
41315
|
PxPicture,
|
|
@@ -41320,10 +41329,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41320
41329
|
PxModal,
|
|
41321
41330
|
PxP,
|
|
41322
41331
|
PxPillar,
|
|
41332
|
+
PxPrice,
|
|
41323
41333
|
PxCardActions,
|
|
41324
41334
|
PxCardContainer,
|
|
41325
41335
|
PxCardHeading,
|
|
41326
|
-
PxPrice,
|
|
41327
41336
|
PxRadio,
|
|
41328
41337
|
PxRadioBase,
|
|
41329
41338
|
PxRadioGroup,
|