@proximus/lavender-angular 1.4.6-alpha.4 → 1.4.6-alpha.6
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.
|
@@ -3521,6 +3521,34 @@ class PxButton {
|
|
|
3521
3521
|
get extendedDesktop() {
|
|
3522
3522
|
return this.elementRef.nativeElement['extendedDesktop'];
|
|
3523
3523
|
}
|
|
3524
|
+
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
3525
|
+
set name(value) {
|
|
3526
|
+
this.elementRef.nativeElement['name'] = value;
|
|
3527
|
+
}
|
|
3528
|
+
get name() {
|
|
3529
|
+
return this.elementRef.nativeElement['name'];
|
|
3530
|
+
}
|
|
3531
|
+
/** The value associated with the button's name when it's submitted with a form. */
|
|
3532
|
+
set value(value) {
|
|
3533
|
+
this.elementRef.nativeElement['value'] = value;
|
|
3534
|
+
}
|
|
3535
|
+
get value() {
|
|
3536
|
+
return this.elementRef.nativeElement['value'];
|
|
3537
|
+
}
|
|
3538
|
+
/** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
|
|
3539
|
+
set type(value) {
|
|
3540
|
+
this.elementRef.nativeElement['type'] = value;
|
|
3541
|
+
}
|
|
3542
|
+
get type() {
|
|
3543
|
+
return this.elementRef.nativeElement['type'];
|
|
3544
|
+
}
|
|
3545
|
+
/** Whether the button is disabled. */
|
|
3546
|
+
set disabled(value) {
|
|
3547
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
3548
|
+
}
|
|
3549
|
+
get disabled() {
|
|
3550
|
+
return this.elementRef.nativeElement['disabled'];
|
|
3551
|
+
}
|
|
3524
3552
|
set grow(value) {
|
|
3525
3553
|
this.elementRef.nativeElement['grow'] = value;
|
|
3526
3554
|
}
|
|
@@ -3795,7 +3823,7 @@ class PxButton {
|
|
|
3795
3823
|
this.elementRef = elementRef;
|
|
3796
3824
|
}
|
|
3797
3825
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButton, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3798
|
-
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"], 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"] }, ngImport: i0 });
|
|
3826
|
+
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"], 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"] }, ngImport: i0 });
|
|
3799
3827
|
}
|
|
3800
3828
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButton, decorators: [{
|
|
3801
3829
|
type: Directive,
|
|
@@ -3841,6 +3869,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3841
3869
|
}], extendedDesktop: [{
|
|
3842
3870
|
type: Input,
|
|
3843
3871
|
args: ['extended--desktop']
|
|
3872
|
+
}], name: [{
|
|
3873
|
+
type: Input
|
|
3874
|
+
}], value: [{
|
|
3875
|
+
type: Input
|
|
3876
|
+
}], type: [{
|
|
3877
|
+
type: Input
|
|
3878
|
+
}], disabled: [{
|
|
3879
|
+
type: Input
|
|
3844
3880
|
}], grow: [{
|
|
3845
3881
|
type: Input
|
|
3846
3882
|
}], growMobile: [{
|
|
@@ -4007,6 +4043,34 @@ class PxButtonIcon {
|
|
|
4007
4043
|
get ariaExpanded() {
|
|
4008
4044
|
return this.elementRef.nativeElement['ariaExpanded'];
|
|
4009
4045
|
}
|
|
4046
|
+
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
4047
|
+
set name(value) {
|
|
4048
|
+
this.elementRef.nativeElement['name'] = value;
|
|
4049
|
+
}
|
|
4050
|
+
get name() {
|
|
4051
|
+
return this.elementRef.nativeElement['name'];
|
|
4052
|
+
}
|
|
4053
|
+
/** The value associated with the button's name when it's submitted with a form. */
|
|
4054
|
+
set value(value) {
|
|
4055
|
+
this.elementRef.nativeElement['value'] = value;
|
|
4056
|
+
}
|
|
4057
|
+
get value() {
|
|
4058
|
+
return this.elementRef.nativeElement['value'];
|
|
4059
|
+
}
|
|
4060
|
+
/** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
|
|
4061
|
+
set type(value) {
|
|
4062
|
+
this.elementRef.nativeElement['type'] = value;
|
|
4063
|
+
}
|
|
4064
|
+
get type() {
|
|
4065
|
+
return this.elementRef.nativeElement['type'];
|
|
4066
|
+
}
|
|
4067
|
+
/** Whether the button is disabled. */
|
|
4068
|
+
set disabled(value) {
|
|
4069
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
4070
|
+
}
|
|
4071
|
+
get disabled() {
|
|
4072
|
+
return this.elementRef.nativeElement['disabled'];
|
|
4073
|
+
}
|
|
4010
4074
|
set grow(value) {
|
|
4011
4075
|
this.elementRef.nativeElement['grow'] = value;
|
|
4012
4076
|
}
|
|
@@ -4281,7 +4345,7 @@ class PxButtonIcon {
|
|
|
4281
4345
|
this.elementRef = elementRef;
|
|
4282
4346
|
}
|
|
4283
4347
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonIcon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4284
|
-
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"], 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"] }, ngImport: i0 });
|
|
4348
|
+
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"] }, ngImport: i0 });
|
|
4285
4349
|
}
|
|
4286
4350
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonIcon, decorators: [{
|
|
4287
4351
|
type: Directive,
|
|
@@ -4299,6 +4363,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
4299
4363
|
}], ariaExpanded: [{
|
|
4300
4364
|
type: Input,
|
|
4301
4365
|
args: ['aria-expanded']
|
|
4366
|
+
}], name: [{
|
|
4367
|
+
type: Input
|
|
4368
|
+
}], value: [{
|
|
4369
|
+
type: Input
|
|
4370
|
+
}], type: [{
|
|
4371
|
+
type: Input
|
|
4372
|
+
}], disabled: [{
|
|
4373
|
+
type: Input
|
|
4302
4374
|
}], grow: [{
|
|
4303
4375
|
type: Input
|
|
4304
4376
|
}], growMobile: [{
|
|
@@ -5611,6 +5683,7 @@ class PxCellButton {
|
|
|
5611
5683
|
get variant() {
|
|
5612
5684
|
return this.elementRef.nativeElement['variant'];
|
|
5613
5685
|
}
|
|
5686
|
+
/** Whether the button is disabled. */
|
|
5614
5687
|
set disabled(value) {
|
|
5615
5688
|
this.elementRef.nativeElement['disabled'] = value;
|
|
5616
5689
|
}
|
|
@@ -5689,6 +5762,27 @@ class PxCellButton {
|
|
|
5689
5762
|
get compact() {
|
|
5690
5763
|
return this.elementRef.nativeElement['compact'];
|
|
5691
5764
|
}
|
|
5765
|
+
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
5766
|
+
set name(value) {
|
|
5767
|
+
this.elementRef.nativeElement['name'] = value;
|
|
5768
|
+
}
|
|
5769
|
+
get name() {
|
|
5770
|
+
return this.elementRef.nativeElement['name'];
|
|
5771
|
+
}
|
|
5772
|
+
/** The value associated with the button's name when it's submitted with a form. */
|
|
5773
|
+
set value(value) {
|
|
5774
|
+
this.elementRef.nativeElement['value'] = value;
|
|
5775
|
+
}
|
|
5776
|
+
get value() {
|
|
5777
|
+
return this.elementRef.nativeElement['value'];
|
|
5778
|
+
}
|
|
5779
|
+
/** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
|
|
5780
|
+
set type(value) {
|
|
5781
|
+
this.elementRef.nativeElement['type'] = value;
|
|
5782
|
+
}
|
|
5783
|
+
get type() {
|
|
5784
|
+
return this.elementRef.nativeElement['type'];
|
|
5785
|
+
}
|
|
5692
5786
|
set grow(value) {
|
|
5693
5787
|
this.elementRef.nativeElement['grow'] = value;
|
|
5694
5788
|
}
|
|
@@ -5963,7 +6057,7 @@ class PxCellButton {
|
|
|
5963
6057
|
this.elementRef = elementRef;
|
|
5964
6058
|
}
|
|
5965
6059
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellButton, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5966
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCellButton, selector: "px-cell-button", inputs: { inverted: "inverted", variant: "variant", disabled: "disabled", separator: "separator", separatorMobile: ["separator--mobile", "separatorMobile"], separatorTablet: ["separator--tablet", "separatorTablet"], separatorLaptop: ["separator--laptop", "separatorLaptop"], separatorDesktop: ["separator--desktop", "separatorDesktop"], radius: "radius", radiusMobile: ["radius--mobile", "radiusMobile"], radiusTablet: ["radius--tablet", "radiusTablet"], radiusLaptop: ["radius--laptop", "radiusLaptop"], radiusDesktop: ["radius--desktop", "radiusDesktop"], backgroundColor: ["background-color", "backgroundColor"], compact: "compact", 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"] }, ngImport: i0 });
|
|
6060
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCellButton, selector: "px-cell-button", inputs: { inverted: "inverted", variant: "variant", disabled: "disabled", separator: "separator", separatorMobile: ["separator--mobile", "separatorMobile"], separatorTablet: ["separator--tablet", "separatorTablet"], separatorLaptop: ["separator--laptop", "separatorLaptop"], separatorDesktop: ["separator--desktop", "separatorDesktop"], radius: "radius", radiusMobile: ["radius--mobile", "radiusMobile"], radiusTablet: ["radius--tablet", "radiusTablet"], radiusLaptop: ["radius--laptop", "radiusLaptop"], radiusDesktop: ["radius--desktop", "radiusDesktop"], backgroundColor: ["background-color", "backgroundColor"], compact: "compact", name: "name", value: "value", type: "type", 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"] }, ngImport: i0 });
|
|
5967
6061
|
}
|
|
5968
6062
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellButton, decorators: [{
|
|
5969
6063
|
type: Directive,
|
|
@@ -6009,6 +6103,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6009
6103
|
args: ['background-color']
|
|
6010
6104
|
}], compact: [{
|
|
6011
6105
|
type: Input
|
|
6106
|
+
}], name: [{
|
|
6107
|
+
type: Input
|
|
6108
|
+
}], value: [{
|
|
6109
|
+
type: Input
|
|
6110
|
+
}], type: [{
|
|
6111
|
+
type: Input
|
|
6012
6112
|
}], grow: [{
|
|
6013
6113
|
type: Input
|
|
6014
6114
|
}], growMobile: [{
|
|
@@ -8500,6 +8600,41 @@ class PxCheckbox {
|
|
|
8500
8600
|
get hover() {
|
|
8501
8601
|
return this.elementRef.nativeElement['hover'];
|
|
8502
8602
|
}
|
|
8603
|
+
/** The name of the checkbox. */
|
|
8604
|
+
set name(value) {
|
|
8605
|
+
this.elementRef.nativeElement['name'] = value;
|
|
8606
|
+
}
|
|
8607
|
+
get name() {
|
|
8608
|
+
return this.elementRef.nativeElement['name'];
|
|
8609
|
+
}
|
|
8610
|
+
/** The value of the checkbox. */
|
|
8611
|
+
set value(value) {
|
|
8612
|
+
this.elementRef.nativeElement['value'] = value;
|
|
8613
|
+
}
|
|
8614
|
+
get value() {
|
|
8615
|
+
return this.elementRef.nativeElement['value'];
|
|
8616
|
+
}
|
|
8617
|
+
/** Whether the checkbox is checked. */
|
|
8618
|
+
set checked(value) {
|
|
8619
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
8620
|
+
}
|
|
8621
|
+
get checked() {
|
|
8622
|
+
return this.elementRef.nativeElement['checked'];
|
|
8623
|
+
}
|
|
8624
|
+
/** Whether the checkbox is disabled. */
|
|
8625
|
+
set disabled(value) {
|
|
8626
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
8627
|
+
}
|
|
8628
|
+
get disabled() {
|
|
8629
|
+
return this.elementRef.nativeElement['disabled'];
|
|
8630
|
+
}
|
|
8631
|
+
/** Whether the checkbox is required. */
|
|
8632
|
+
set required(value) {
|
|
8633
|
+
this.elementRef.nativeElement['required'] = value;
|
|
8634
|
+
}
|
|
8635
|
+
get required() {
|
|
8636
|
+
return this.elementRef.nativeElement['required'];
|
|
8637
|
+
}
|
|
8503
8638
|
set grow(value) {
|
|
8504
8639
|
this.elementRef.nativeElement['grow'] = value;
|
|
8505
8640
|
}
|
|
@@ -8774,7 +8909,7 @@ class PxCheckbox {
|
|
|
8774
8909
|
this.elementRef = elementRef;
|
|
8775
8910
|
}
|
|
8776
8911
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCheckbox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
8777
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCheckbox, selector: "px-checkbox", inputs: { state: "state", variant: "variant", indeterminate: "indeterminate", inverted: "inverted", hover: "hover", 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"] }, ngImport: i0 });
|
|
8912
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCheckbox, selector: "px-checkbox", inputs: { state: "state", variant: "variant", indeterminate: "indeterminate", inverted: "inverted", hover: "hover", name: "name", value: "value", checked: "checked", disabled: "disabled", required: "required", 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"] }, ngImport: i0 });
|
|
8778
8913
|
}
|
|
8779
8914
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCheckbox, decorators: [{
|
|
8780
8915
|
type: Directive,
|
|
@@ -8791,6 +8926,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
8791
8926
|
type: Input
|
|
8792
8927
|
}], hover: [{
|
|
8793
8928
|
type: Input
|
|
8929
|
+
}], name: [{
|
|
8930
|
+
type: Input
|
|
8931
|
+
}], value: [{
|
|
8932
|
+
type: Input
|
|
8933
|
+
}], checked: [{
|
|
8934
|
+
type: Input
|
|
8935
|
+
}], disabled: [{
|
|
8936
|
+
type: Input
|
|
8937
|
+
}], required: [{
|
|
8938
|
+
type: Input
|
|
8794
8939
|
}], grow: [{
|
|
8795
8940
|
type: Input
|
|
8796
8941
|
}], growMobile: [{
|
|
@@ -15622,6 +15767,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
15622
15767
|
*/
|
|
15623
15768
|
class PxImg {
|
|
15624
15769
|
elementRef;
|
|
15770
|
+
/** The URL of the image. */
|
|
15771
|
+
set src(value) {
|
|
15772
|
+
this.elementRef.nativeElement['src'] = value;
|
|
15773
|
+
}
|
|
15774
|
+
get src() {
|
|
15775
|
+
return this.elementRef.nativeElement['src'];
|
|
15776
|
+
}
|
|
15777
|
+
/** The alternative text for the image. */
|
|
15778
|
+
set alt(value) {
|
|
15779
|
+
this.elementRef.nativeElement['alt'] = value;
|
|
15780
|
+
}
|
|
15781
|
+
get alt() {
|
|
15782
|
+
return this.elementRef.nativeElement['alt'];
|
|
15783
|
+
}
|
|
15784
|
+
/** The loading strategy for the image ('lazy' or 'eager'). */
|
|
15785
|
+
set loading(value) {
|
|
15786
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
15787
|
+
}
|
|
15788
|
+
get loading() {
|
|
15789
|
+
return this.elementRef.nativeElement['loading'];
|
|
15790
|
+
}
|
|
15625
15791
|
set borderRadius(value) {
|
|
15626
15792
|
this.elementRef.nativeElement['borderRadius'] = value;
|
|
15627
15793
|
}
|
|
@@ -15968,14 +16134,20 @@ class PxImg {
|
|
|
15968
16134
|
this.elementRef = elementRef;
|
|
15969
16135
|
}
|
|
15970
16136
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxImg, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
15971
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxImg, selector: "px-img", inputs: { borderRadius: ["border-radius", "borderRadius"], noBorderRadius: ["no-border-radius", "noBorderRadius"], noBorderRadiusMobile: ["no-border-radius--mobile", "noBorderRadiusMobile"], noBorderRadiusTablet: ["no-border-radius--tablet", "noBorderRadiusTablet"], noBorderRadiusLaptop: ["no-border-radius--laptop", "noBorderRadiusLaptop"], width: "width", widthMobile: ["width--mobile", "widthMobile"], widthTablet: ["width--tablet", "widthTablet"], widthLaptop: ["width--laptop", "widthLaptop"], widthDesktop: ["width--desktop", "widthDesktop"], cover: "cover", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
16137
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxImg, selector: "px-img", inputs: { src: "src", alt: "alt", loading: "loading", borderRadius: ["border-radius", "borderRadius"], noBorderRadius: ["no-border-radius", "noBorderRadius"], noBorderRadiusMobile: ["no-border-radius--mobile", "noBorderRadiusMobile"], noBorderRadiusTablet: ["no-border-radius--tablet", "noBorderRadiusTablet"], noBorderRadiusLaptop: ["no-border-radius--laptop", "noBorderRadiusLaptop"], width: "width", widthMobile: ["width--mobile", "widthMobile"], widthTablet: ["width--tablet", "widthTablet"], widthLaptop: ["width--laptop", "widthLaptop"], widthDesktop: ["width--desktop", "widthDesktop"], cover: "cover", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
15972
16138
|
}
|
|
15973
16139
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxImg, decorators: [{
|
|
15974
16140
|
type: Directive,
|
|
15975
16141
|
args: [{
|
|
15976
16142
|
selector: 'px-img',
|
|
15977
16143
|
}]
|
|
15978
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
16144
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { src: [{
|
|
16145
|
+
type: Input
|
|
16146
|
+
}], alt: [{
|
|
16147
|
+
type: Input
|
|
16148
|
+
}], loading: [{
|
|
16149
|
+
type: Input
|
|
16150
|
+
}], borderRadius: [{
|
|
15979
16151
|
type: Input,
|
|
15980
16152
|
args: ['border-radius']
|
|
15981
16153
|
}], noBorderRadius: [{
|
|
@@ -21238,6 +21410,34 @@ class PxA {
|
|
|
21238
21410
|
get title() {
|
|
21239
21411
|
return this.elementRef.nativeElement['title'];
|
|
21240
21412
|
}
|
|
21413
|
+
/** The URL that the hyperlink points to. */
|
|
21414
|
+
set href(value) {
|
|
21415
|
+
this.elementRef.nativeElement['href'] = value;
|
|
21416
|
+
}
|
|
21417
|
+
get href() {
|
|
21418
|
+
return this.elementRef.nativeElement['href'];
|
|
21419
|
+
}
|
|
21420
|
+
/** Where to display the linked URL. */
|
|
21421
|
+
set target(value) {
|
|
21422
|
+
this.elementRef.nativeElement['target'] = value;
|
|
21423
|
+
}
|
|
21424
|
+
get target() {
|
|
21425
|
+
return this.elementRef.nativeElement['target'];
|
|
21426
|
+
}
|
|
21427
|
+
/** The relationship of the linked URL as space-separated link types. */
|
|
21428
|
+
set rel(value) {
|
|
21429
|
+
this.elementRef.nativeElement['rel'] = value;
|
|
21430
|
+
}
|
|
21431
|
+
get rel() {
|
|
21432
|
+
return this.elementRef.nativeElement['rel'];
|
|
21433
|
+
}
|
|
21434
|
+
/** Prompts the user to save the linked URL instead of navigating to it. */
|
|
21435
|
+
set download(value) {
|
|
21436
|
+
this.elementRef.nativeElement['download'] = value;
|
|
21437
|
+
}
|
|
21438
|
+
get download() {
|
|
21439
|
+
return this.elementRef.nativeElement['download'];
|
|
21440
|
+
}
|
|
21241
21441
|
set grow(value) {
|
|
21242
21442
|
this.elementRef.nativeElement['grow'] = value;
|
|
21243
21443
|
}
|
|
@@ -21512,7 +21712,7 @@ class PxA {
|
|
|
21512
21712
|
this.elementRef = elementRef;
|
|
21513
21713
|
}
|
|
21514
21714
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxA, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21515
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxA, selector: "px-a", inputs: { disabled: "disabled", variant: "variant", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], inverted: "inverted", fontSize: ["font-size", "fontSize"], color: "color", fontWeight: ["font-weight", "fontWeight"], title: "title", 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"] }, ngImport: i0 });
|
|
21715
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxA, selector: "px-a", inputs: { disabled: "disabled", variant: "variant", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], inverted: "inverted", fontSize: ["font-size", "fontSize"], color: "color", fontWeight: ["font-weight", "fontWeight"], title: "title", href: "href", target: "target", rel: "rel", download: "download", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
21516
21716
|
}
|
|
21517
21717
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxA, decorators: [{
|
|
21518
21718
|
type: Directive,
|
|
@@ -21563,6 +21763,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
21563
21763
|
args: ['font-weight']
|
|
21564
21764
|
}], title: [{
|
|
21565
21765
|
type: Input
|
|
21766
|
+
}], href: [{
|
|
21767
|
+
type: Input
|
|
21768
|
+
}], target: [{
|
|
21769
|
+
type: Input
|
|
21770
|
+
}], rel: [{
|
|
21771
|
+
type: Input
|
|
21772
|
+
}], download: [{
|
|
21773
|
+
type: Input
|
|
21566
21774
|
}], grow: [{
|
|
21567
21775
|
type: Input
|
|
21568
21776
|
}], growMobile: [{
|
|
@@ -28414,6 +28622,13 @@ class PxSpan {
|
|
|
28414
28622
|
get strikethrough() {
|
|
28415
28623
|
return this.elementRef.nativeElement['strikethrough'];
|
|
28416
28624
|
}
|
|
28625
|
+
/** Text to be displayed in a tooltip when hovering over the element. */
|
|
28626
|
+
set title(value) {
|
|
28627
|
+
this.elementRef.nativeElement['title'] = value;
|
|
28628
|
+
}
|
|
28629
|
+
get title() {
|
|
28630
|
+
return this.elementRef.nativeElement['title'];
|
|
28631
|
+
}
|
|
28417
28632
|
set grow(value) {
|
|
28418
28633
|
this.elementRef.nativeElement['grow'] = value;
|
|
28419
28634
|
}
|
|
@@ -28688,7 +28903,7 @@ class PxSpan {
|
|
|
28688
28903
|
this.elementRef = elementRef;
|
|
28689
28904
|
}
|
|
28690
28905
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpan, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28691
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpan, selector: "px-span", inputs: { color: "color", fontSize: ["font-size", "fontSize"], fontWeight: ["font-weight", "fontWeight"], inverted: "inverted", disabled: "disabled", strikethrough: "strikethrough", 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"] }, ngImport: i0 });
|
|
28906
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpan, selector: "px-span", inputs: { color: "color", fontSize: ["font-size", "fontSize"], fontWeight: ["font-weight", "fontWeight"], inverted: "inverted", disabled: "disabled", strikethrough: "strikethrough", title: "title", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
28692
28907
|
}
|
|
28693
28908
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpan, decorators: [{
|
|
28694
28909
|
type: Directive,
|
|
@@ -28709,6 +28924,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28709
28924
|
type: Input
|
|
28710
28925
|
}], strikethrough: [{
|
|
28711
28926
|
type: Input
|
|
28927
|
+
}], title: [{
|
|
28928
|
+
type: Input
|
|
28712
28929
|
}], grow: [{
|
|
28713
28930
|
type: Input
|
|
28714
28931
|
}], growMobile: [{
|
|
@@ -28840,6 +29057,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28840
29057
|
type: Input,
|
|
28841
29058
|
args: ['order--desktop']
|
|
28842
29059
|
}] } });
|
|
29060
|
+
/**
|
|
29061
|
+
* @description Type-only wrapper for <px-spinner>
|
|
29062
|
+
*/
|
|
29063
|
+
class PxSpinner {
|
|
29064
|
+
elementRef;
|
|
29065
|
+
set size(value) {
|
|
29066
|
+
this.elementRef.nativeElement['size'] = value;
|
|
29067
|
+
}
|
|
29068
|
+
get size() {
|
|
29069
|
+
return this.elementRef.nativeElement['size'];
|
|
29070
|
+
}
|
|
29071
|
+
set inverted(value) {
|
|
29072
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
29073
|
+
}
|
|
29074
|
+
get inverted() {
|
|
29075
|
+
return this.elementRef.nativeElement['inverted'];
|
|
29076
|
+
}
|
|
29077
|
+
set timeout(value) {
|
|
29078
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
29079
|
+
}
|
|
29080
|
+
get timeout() {
|
|
29081
|
+
return this.elementRef.nativeElement['timeout'];
|
|
29082
|
+
}
|
|
29083
|
+
set ariaLabel(value) {
|
|
29084
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
29085
|
+
}
|
|
29086
|
+
get ariaLabel() {
|
|
29087
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
29088
|
+
}
|
|
29089
|
+
constructor(elementRef) {
|
|
29090
|
+
this.elementRef = elementRef;
|
|
29091
|
+
}
|
|
29092
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29093
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpinner, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
29094
|
+
}
|
|
29095
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, decorators: [{
|
|
29096
|
+
type: Directive,
|
|
29097
|
+
args: [{
|
|
29098
|
+
selector: 'px-spinner',
|
|
29099
|
+
}]
|
|
29100
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
29101
|
+
type: Input
|
|
29102
|
+
}], inverted: [{
|
|
29103
|
+
type: Input
|
|
29104
|
+
}], timeout: [{
|
|
29105
|
+
type: Input
|
|
29106
|
+
}], ariaLabel: [{
|
|
29107
|
+
type: Input,
|
|
29108
|
+
args: ['aria-label']
|
|
29109
|
+
}] } });
|
|
28843
29110
|
/**
|
|
28844
29111
|
* @description Type-only wrapper for <px-status>
|
|
28845
29112
|
*/
|
|
@@ -29326,56 +29593,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
29326
29593
|
type: Input,
|
|
29327
29594
|
args: ['order--desktop']
|
|
29328
29595
|
}] } });
|
|
29329
|
-
/**
|
|
29330
|
-
* @description Type-only wrapper for <px-spinner>
|
|
29331
|
-
*/
|
|
29332
|
-
class PxSpinner {
|
|
29333
|
-
elementRef;
|
|
29334
|
-
set size(value) {
|
|
29335
|
-
this.elementRef.nativeElement['size'] = value;
|
|
29336
|
-
}
|
|
29337
|
-
get size() {
|
|
29338
|
-
return this.elementRef.nativeElement['size'];
|
|
29339
|
-
}
|
|
29340
|
-
set inverted(value) {
|
|
29341
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
29342
|
-
}
|
|
29343
|
-
get inverted() {
|
|
29344
|
-
return this.elementRef.nativeElement['inverted'];
|
|
29345
|
-
}
|
|
29346
|
-
set timeout(value) {
|
|
29347
|
-
this.elementRef.nativeElement['timeout'] = value;
|
|
29348
|
-
}
|
|
29349
|
-
get timeout() {
|
|
29350
|
-
return this.elementRef.nativeElement['timeout'];
|
|
29351
|
-
}
|
|
29352
|
-
set ariaLabel(value) {
|
|
29353
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
29354
|
-
}
|
|
29355
|
-
get ariaLabel() {
|
|
29356
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
29357
|
-
}
|
|
29358
|
-
constructor(elementRef) {
|
|
29359
|
-
this.elementRef = elementRef;
|
|
29360
|
-
}
|
|
29361
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29362
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpinner, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
29363
|
-
}
|
|
29364
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, decorators: [{
|
|
29365
|
-
type: Directive,
|
|
29366
|
-
args: [{
|
|
29367
|
-
selector: 'px-spinner',
|
|
29368
|
-
}]
|
|
29369
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
29370
|
-
type: Input
|
|
29371
|
-
}], inverted: [{
|
|
29372
|
-
type: Input
|
|
29373
|
-
}], timeout: [{
|
|
29374
|
-
type: Input
|
|
29375
|
-
}], ariaLabel: [{
|
|
29376
|
-
type: Input,
|
|
29377
|
-
args: ['aria-label']
|
|
29378
|
-
}] } });
|
|
29379
29596
|
/**
|
|
29380
29597
|
* @description Type-only wrapper for <px-status-card>
|
|
29381
29598
|
*/
|
|
@@ -33952,6 +34169,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
33952
34169
|
*/
|
|
33953
34170
|
class PxIcon {
|
|
33954
34171
|
elementRef;
|
|
34172
|
+
set name(value) {
|
|
34173
|
+
this.elementRef.nativeElement['name'] = value;
|
|
34174
|
+
}
|
|
34175
|
+
get name() {
|
|
34176
|
+
return this.elementRef.nativeElement['name'];
|
|
34177
|
+
}
|
|
34178
|
+
set size(value) {
|
|
34179
|
+
this.elementRef.nativeElement['size'] = value;
|
|
34180
|
+
}
|
|
34181
|
+
get size() {
|
|
34182
|
+
return this.elementRef.nativeElement['size'];
|
|
34183
|
+
}
|
|
34184
|
+
set color(value) {
|
|
34185
|
+
this.elementRef.nativeElement['color'] = value;
|
|
34186
|
+
}
|
|
34187
|
+
get color() {
|
|
34188
|
+
return this.elementRef.nativeElement['color'];
|
|
34189
|
+
}
|
|
34190
|
+
set ariaLabel(value) {
|
|
34191
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
34192
|
+
}
|
|
34193
|
+
get ariaLabel() {
|
|
34194
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
34195
|
+
}
|
|
34196
|
+
set inverted(value) {
|
|
34197
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
34198
|
+
}
|
|
34199
|
+
get inverted() {
|
|
34200
|
+
return this.elementRef.nativeElement['inverted'];
|
|
34201
|
+
}
|
|
34202
|
+
set from(value) {
|
|
34203
|
+
this.elementRef.nativeElement['from'] = value;
|
|
34204
|
+
}
|
|
34205
|
+
get from() {
|
|
34206
|
+
return this.elementRef.nativeElement['from'];
|
|
34207
|
+
}
|
|
34208
|
+
set disabled(value) {
|
|
34209
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
34210
|
+
}
|
|
34211
|
+
get disabled() {
|
|
34212
|
+
return this.elementRef.nativeElement['disabled'];
|
|
34213
|
+
}
|
|
33955
34214
|
set grow(value) {
|
|
33956
34215
|
this.elementRef.nativeElement['grow'] = value;
|
|
33957
34216
|
}
|
|
@@ -34226,14 +34485,29 @@ class PxIcon {
|
|
|
34226
34485
|
this.elementRef = elementRef;
|
|
34227
34486
|
}
|
|
34228
34487
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxIcon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
34229
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxIcon, selector: "px-icon", inputs: { 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"] }, ngImport: i0 });
|
|
34488
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxIcon, selector: "px-icon", inputs: { name: "name", size: "size", color: "color", ariaLabel: ["aria-label", "ariaLabel"], inverted: "inverted", from: "from", 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"] }, ngImport: i0 });
|
|
34230
34489
|
}
|
|
34231
34490
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxIcon, decorators: [{
|
|
34232
34491
|
type: Directive,
|
|
34233
34492
|
args: [{
|
|
34234
34493
|
selector: 'px-icon',
|
|
34235
34494
|
}]
|
|
34236
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
34495
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
|
|
34496
|
+
type: Input
|
|
34497
|
+
}], size: [{
|
|
34498
|
+
type: Input
|
|
34499
|
+
}], color: [{
|
|
34500
|
+
type: Input
|
|
34501
|
+
}], ariaLabel: [{
|
|
34502
|
+
type: Input,
|
|
34503
|
+
args: ['aria-label']
|
|
34504
|
+
}], inverted: [{
|
|
34505
|
+
type: Input
|
|
34506
|
+
}], from: [{
|
|
34507
|
+
type: Input
|
|
34508
|
+
}], disabled: [{
|
|
34509
|
+
type: Input
|
|
34510
|
+
}], grow: [{
|
|
34237
34511
|
type: Input
|
|
34238
34512
|
}], growMobile: [{
|
|
34239
34513
|
type: Input,
|
|
@@ -34474,7 +34748,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34474
34748
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
34475
34749
|
class Lavender {
|
|
34476
34750
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
34477
|
-
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, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxList, PxListItem, PxModal, PxP, PxPillar, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan,
|
|
34751
|
+
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, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxList, PxListItem, PxModal, PxP, PxPillar, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxList, PxListItem, PxModal, PxP, PxPillar, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
34478
34752
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
34479
34753
|
}
|
|
34480
34754
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -34545,8 +34819,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34545
34819
|
PxSeparator,
|
|
34546
34820
|
PxSkeleton,
|
|
34547
34821
|
PxSpan,
|
|
34548
|
-
PxStatus,
|
|
34549
34822
|
PxSpinner,
|
|
34823
|
+
PxStatus,
|
|
34550
34824
|
PxStatusCard,
|
|
34551
34825
|
PxStickyContainer,
|
|
34552
34826
|
PxThemeSwitcher,
|
|
@@ -34642,8 +34916,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34642
34916
|
PxSeparator,
|
|
34643
34917
|
PxSkeleton,
|
|
34644
34918
|
PxSpan,
|
|
34645
|
-
PxStatus,
|
|
34646
34919
|
PxSpinner,
|
|
34920
|
+
PxStatus,
|
|
34647
34921
|
PxStatusCard,
|
|
34648
34922
|
PxStickyContainer,
|
|
34649
34923
|
PxThemeSwitcher,
|