@proximus/lavender-angular 1.4.10-alpha.9 → 1.4.10-beta.1
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 +18 -262
- package/esm2022/lavender.directive.mjs +712 -294
- package/fesm2022/proximus-lavender-angular.mjs +711 -293
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +206 -112
- package/package.json +1 -1
|
@@ -26023,66 +26023,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
26023
26023
|
}]
|
|
26024
26024
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
26025
26025
|
/**
|
|
26026
|
-
* @description Type-only wrapper for <px-
|
|
26026
|
+
* @description Type-only wrapper for <px-price>
|
|
26027
26027
|
*/
|
|
26028
|
-
class
|
|
26028
|
+
class PxPrice {
|
|
26029
26029
|
elementRef;
|
|
26030
|
-
/** The validation state of the radio button. */
|
|
26031
|
-
set state(value) {
|
|
26032
|
-
this.elementRef.nativeElement['state'] = value;
|
|
26033
|
-
}
|
|
26034
|
-
get state() {
|
|
26035
|
-
return this.elementRef.nativeElement['state'];
|
|
26036
|
-
}
|
|
26037
|
-
/** The visual variant of the radio button. */
|
|
26038
26030
|
set variant(value) {
|
|
26039
26031
|
this.elementRef.nativeElement['variant'] = value;
|
|
26040
26032
|
}
|
|
26041
26033
|
get variant() {
|
|
26042
26034
|
return this.elementRef.nativeElement['variant'];
|
|
26043
26035
|
}
|
|
26044
|
-
|
|
26036
|
+
set size(value) {
|
|
26037
|
+
this.elementRef.nativeElement['size'] = value;
|
|
26038
|
+
}
|
|
26039
|
+
get size() {
|
|
26040
|
+
return this.elementRef.nativeElement['size'];
|
|
26041
|
+
}
|
|
26045
26042
|
set inverted(value) {
|
|
26046
26043
|
this.elementRef.nativeElement['inverted'] = value;
|
|
26047
26044
|
}
|
|
26048
26045
|
get inverted() {
|
|
26049
26046
|
return this.elementRef.nativeElement['inverted'];
|
|
26050
26047
|
}
|
|
26051
|
-
/** Whether the radio button is checked. */
|
|
26052
|
-
set checked(value) {
|
|
26053
|
-
this.elementRef.nativeElement['checked'] = value;
|
|
26054
|
-
}
|
|
26055
|
-
get checked() {
|
|
26056
|
-
return this.elementRef.nativeElement['checked'];
|
|
26057
|
-
}
|
|
26058
|
-
/** Whether the radio button is disabled. */
|
|
26059
|
-
set disabled(value) {
|
|
26060
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
26061
|
-
}
|
|
26062
|
-
get disabled() {
|
|
26063
|
-
return this.elementRef.nativeElement['disabled'];
|
|
26064
|
-
}
|
|
26065
|
-
/** Whether to apply hover styling. */
|
|
26066
|
-
set hover(value) {
|
|
26067
|
-
this.elementRef.nativeElement['hover'] = value;
|
|
26068
|
-
}
|
|
26069
|
-
get hover() {
|
|
26070
|
-
return this.elementRef.nativeElement['hover'];
|
|
26071
|
-
}
|
|
26072
|
-
/** The name of the radio button, used for form submission. */
|
|
26073
|
-
set name(value) {
|
|
26074
|
-
this.elementRef.nativeElement['name'] = value;
|
|
26075
|
-
}
|
|
26076
|
-
get name() {
|
|
26077
|
-
return this.elementRef.nativeElement['name'];
|
|
26078
|
-
}
|
|
26079
|
-
/** The value of the radio button, used for form submission. */
|
|
26080
|
-
set value(value) {
|
|
26081
|
-
this.elementRef.nativeElement['value'] = value;
|
|
26082
|
-
}
|
|
26083
|
-
get value() {
|
|
26084
|
-
return this.elementRef.nativeElement['value'];
|
|
26085
|
-
}
|
|
26086
26048
|
set grow(value) {
|
|
26087
26049
|
this.elementRef.nativeElement['grow'] = value;
|
|
26088
26050
|
}
|
|
@@ -26365,38 +26327,23 @@ class PxRadio {
|
|
|
26365
26327
|
get stickyBottom() {
|
|
26366
26328
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
26367
26329
|
}
|
|
26368
|
-
/** Fired when the radio button becomes checked. */
|
|
26369
|
-
change = new EventEmitter();
|
|
26370
26330
|
constructor(elementRef) {
|
|
26371
26331
|
this.elementRef = elementRef;
|
|
26372
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
26373
|
-
this.change.emit(e.detail);
|
|
26374
|
-
});
|
|
26375
26332
|
}
|
|
26376
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26377
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
26333
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26334
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxPrice, selector: "px-price", inputs: { variant: "variant", size: "size", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, ngImport: i0 });
|
|
26378
26335
|
}
|
|
26379
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, decorators: [{
|
|
26380
26337
|
type: Directive,
|
|
26381
26338
|
args: [{
|
|
26382
|
-
selector: 'px-
|
|
26339
|
+
selector: 'px-price',
|
|
26383
26340
|
}]
|
|
26384
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
26341
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
26385
26342
|
type: Input
|
|
26386
|
-
}],
|
|
26343
|
+
}], size: [{
|
|
26387
26344
|
type: Input
|
|
26388
26345
|
}], inverted: [{
|
|
26389
26346
|
type: Input
|
|
26390
|
-
}], checked: [{
|
|
26391
|
-
type: Input
|
|
26392
|
-
}], disabled: [{
|
|
26393
|
-
type: Input
|
|
26394
|
-
}], hover: [{
|
|
26395
|
-
type: Input
|
|
26396
|
-
}], name: [{
|
|
26397
|
-
type: Input
|
|
26398
|
-
}], value: [{
|
|
26399
|
-
type: Input
|
|
26400
26347
|
}], grow: [{
|
|
26401
26348
|
type: Input
|
|
26402
26349
|
}], growMobile: [{
|
|
@@ -26533,26 +26480,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
26533
26480
|
}], stickyBottom: [{
|
|
26534
26481
|
type: Input,
|
|
26535
26482
|
args: ['sticky-bottom']
|
|
26536
|
-
}], change: [{
|
|
26537
|
-
type: Output
|
|
26538
26483
|
}] } });
|
|
26539
26484
|
/**
|
|
26540
|
-
* @description Type-only wrapper for <px-radio
|
|
26485
|
+
* @description Type-only wrapper for <px-radio>
|
|
26541
26486
|
*/
|
|
26542
|
-
class
|
|
26487
|
+
class PxRadio {
|
|
26543
26488
|
elementRef;
|
|
26544
|
-
|
|
26545
|
-
|
|
26489
|
+
/** The validation state of the radio button. */
|
|
26490
|
+
set state(value) {
|
|
26491
|
+
this.elementRef.nativeElement['state'] = value;
|
|
26546
26492
|
}
|
|
26547
|
-
get
|
|
26548
|
-
return this.elementRef.nativeElement['
|
|
26493
|
+
get state() {
|
|
26494
|
+
return this.elementRef.nativeElement['state'];
|
|
26549
26495
|
}
|
|
26496
|
+
/** The visual variant of the radio button. */
|
|
26497
|
+
set variant(value) {
|
|
26498
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
26499
|
+
}
|
|
26500
|
+
get variant() {
|
|
26501
|
+
return this.elementRef.nativeElement['variant'];
|
|
26502
|
+
}
|
|
26503
|
+
/** Whether to use inverted (dark background) styling. */
|
|
26550
26504
|
set inverted(value) {
|
|
26551
26505
|
this.elementRef.nativeElement['inverted'] = value;
|
|
26552
26506
|
}
|
|
26553
26507
|
get inverted() {
|
|
26554
26508
|
return this.elementRef.nativeElement['inverted'];
|
|
26555
26509
|
}
|
|
26510
|
+
/** Whether the radio button is checked. */
|
|
26511
|
+
set checked(value) {
|
|
26512
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
26513
|
+
}
|
|
26514
|
+
get checked() {
|
|
26515
|
+
return this.elementRef.nativeElement['checked'];
|
|
26516
|
+
}
|
|
26517
|
+
/** Whether the radio button is disabled. */
|
|
26518
|
+
set disabled(value) {
|
|
26519
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
26520
|
+
}
|
|
26521
|
+
get disabled() {
|
|
26522
|
+
return this.elementRef.nativeElement['disabled'];
|
|
26523
|
+
}
|
|
26524
|
+
/** Whether to apply hover styling. */
|
|
26525
|
+
set hover(value) {
|
|
26526
|
+
this.elementRef.nativeElement['hover'] = value;
|
|
26527
|
+
}
|
|
26528
|
+
get hover() {
|
|
26529
|
+
return this.elementRef.nativeElement['hover'];
|
|
26530
|
+
}
|
|
26531
|
+
/** The name of the radio button, used for form submission. */
|
|
26532
|
+
set name(value) {
|
|
26533
|
+
this.elementRef.nativeElement['name'] = value;
|
|
26534
|
+
}
|
|
26535
|
+
get name() {
|
|
26536
|
+
return this.elementRef.nativeElement['name'];
|
|
26537
|
+
}
|
|
26538
|
+
/** The value of the radio button, used for form submission. */
|
|
26539
|
+
set value(value) {
|
|
26540
|
+
this.elementRef.nativeElement['value'] = value;
|
|
26541
|
+
}
|
|
26542
|
+
get value() {
|
|
26543
|
+
return this.elementRef.nativeElement['value'];
|
|
26544
|
+
}
|
|
26556
26545
|
set grow(value) {
|
|
26557
26546
|
this.elementRef.nativeElement['grow'] = value;
|
|
26558
26547
|
}
|
|
@@ -26835,21 +26824,38 @@ class PxRadioBase {
|
|
|
26835
26824
|
get stickyBottom() {
|
|
26836
26825
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
26837
26826
|
}
|
|
26827
|
+
/** Fired when the radio button becomes checked. */
|
|
26828
|
+
change = new EventEmitter();
|
|
26838
26829
|
constructor(elementRef) {
|
|
26839
26830
|
this.elementRef = elementRef;
|
|
26831
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
26832
|
+
this.change.emit(e.detail);
|
|
26833
|
+
});
|
|
26840
26834
|
}
|
|
26841
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26842
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
26835
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26836
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxRadio, selector: "px-radio", inputs: { state: "state", variant: "variant", inverted: "inverted", checked: "checked", disabled: "disabled", hover: "hover", name: "name", value: "value", 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"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
26843
26837
|
}
|
|
26844
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26838
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, decorators: [{
|
|
26845
26839
|
type: Directive,
|
|
26846
26840
|
args: [{
|
|
26847
|
-
selector: 'px-radio
|
|
26841
|
+
selector: 'px-radio',
|
|
26848
26842
|
}]
|
|
26849
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
26843
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
26844
|
+
type: Input
|
|
26845
|
+
}], variant: [{
|
|
26850
26846
|
type: Input
|
|
26851
26847
|
}], inverted: [{
|
|
26852
26848
|
type: Input
|
|
26849
|
+
}], checked: [{
|
|
26850
|
+
type: Input
|
|
26851
|
+
}], disabled: [{
|
|
26852
|
+
type: Input
|
|
26853
|
+
}], hover: [{
|
|
26854
|
+
type: Input
|
|
26855
|
+
}], name: [{
|
|
26856
|
+
type: Input
|
|
26857
|
+
}], value: [{
|
|
26858
|
+
type: Input
|
|
26853
26859
|
}], grow: [{
|
|
26854
26860
|
type: Input
|
|
26855
26861
|
}], growMobile: [{
|
|
@@ -26986,47 +26992,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
26986
26992
|
}], stickyBottom: [{
|
|
26987
26993
|
type: Input,
|
|
26988
26994
|
args: ['sticky-bottom']
|
|
26995
|
+
}], change: [{
|
|
26996
|
+
type: Output
|
|
26989
26997
|
}] } });
|
|
26990
26998
|
/**
|
|
26991
|
-
* @description Type-only wrapper for <px-radio-
|
|
26999
|
+
* @description Type-only wrapper for <px-radio-base>
|
|
26992
27000
|
*/
|
|
26993
|
-
class
|
|
27001
|
+
class PxRadioBase {
|
|
26994
27002
|
elementRef;
|
|
26995
|
-
set
|
|
26996
|
-
this.elementRef.nativeElement['
|
|
26997
|
-
}
|
|
26998
|
-
get name() {
|
|
26999
|
-
return this.elementRef.nativeElement['name'];
|
|
27000
|
-
}
|
|
27001
|
-
set gap(value) {
|
|
27002
|
-
this.elementRef.nativeElement['gap'] = value;
|
|
27003
|
-
}
|
|
27004
|
-
get gap() {
|
|
27005
|
-
return this.elementRef.nativeElement['gap'];
|
|
27006
|
-
}
|
|
27007
|
-
set variant(value) {
|
|
27008
|
-
this.elementRef.nativeElement['variant'] = value;
|
|
27009
|
-
}
|
|
27010
|
-
get variant() {
|
|
27011
|
-
return this.elementRef.nativeElement['variant'];
|
|
27012
|
-
}
|
|
27013
|
-
set required(value) {
|
|
27014
|
-
this.elementRef.nativeElement['required'] = value;
|
|
27015
|
-
}
|
|
27016
|
-
get required() {
|
|
27017
|
-
return this.elementRef.nativeElement['required'];
|
|
27018
|
-
}
|
|
27019
|
-
set disabled(value) {
|
|
27020
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
27021
|
-
}
|
|
27022
|
-
get disabled() {
|
|
27023
|
-
return this.elementRef.nativeElement['disabled'];
|
|
27024
|
-
}
|
|
27025
|
-
set state(value) {
|
|
27026
|
-
this.elementRef.nativeElement['state'] = value;
|
|
27003
|
+
set hover(value) {
|
|
27004
|
+
this.elementRef.nativeElement['hover'] = value;
|
|
27027
27005
|
}
|
|
27028
|
-
get
|
|
27029
|
-
return this.elementRef.nativeElement['
|
|
27006
|
+
get hover() {
|
|
27007
|
+
return this.elementRef.nativeElement['hover'];
|
|
27030
27008
|
}
|
|
27031
27009
|
set inverted(value) {
|
|
27032
27010
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -27319,25 +27297,15 @@ class PxRadioGroup {
|
|
|
27319
27297
|
constructor(elementRef) {
|
|
27320
27298
|
this.elementRef = elementRef;
|
|
27321
27299
|
}
|
|
27322
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27323
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
27300
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27301
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxRadioBase, selector: "px-radio-base", inputs: { hover: "hover", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, ngImport: i0 });
|
|
27324
27302
|
}
|
|
27325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, decorators: [{
|
|
27326
27304
|
type: Directive,
|
|
27327
27305
|
args: [{
|
|
27328
|
-
selector: 'px-radio-
|
|
27306
|
+
selector: 'px-radio-base',
|
|
27329
27307
|
}]
|
|
27330
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
27331
|
-
type: Input
|
|
27332
|
-
}], gap: [{
|
|
27333
|
-
type: Input
|
|
27334
|
-
}], variant: [{
|
|
27335
|
-
type: Input
|
|
27336
|
-
}], required: [{
|
|
27337
|
-
type: Input
|
|
27338
|
-
}], disabled: [{
|
|
27339
|
-
type: Input
|
|
27340
|
-
}], state: [{
|
|
27308
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { hover: [{
|
|
27341
27309
|
type: Input
|
|
27342
27310
|
}], inverted: [{
|
|
27343
27311
|
type: Input
|
|
@@ -27479,24 +27447,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
27479
27447
|
args: ['sticky-bottom']
|
|
27480
27448
|
}] } });
|
|
27481
27449
|
/**
|
|
27482
|
-
* @description Type-only wrapper for <px-
|
|
27450
|
+
* @description Type-only wrapper for <px-radio-group>
|
|
27483
27451
|
*/
|
|
27484
|
-
class
|
|
27452
|
+
class PxRadioGroup {
|
|
27485
27453
|
elementRef;
|
|
27454
|
+
set name(value) {
|
|
27455
|
+
this.elementRef.nativeElement['name'] = value;
|
|
27456
|
+
}
|
|
27457
|
+
get name() {
|
|
27458
|
+
return this.elementRef.nativeElement['name'];
|
|
27459
|
+
}
|
|
27460
|
+
set gap(value) {
|
|
27461
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
27462
|
+
}
|
|
27463
|
+
get gap() {
|
|
27464
|
+
return this.elementRef.nativeElement['gap'];
|
|
27465
|
+
}
|
|
27486
27466
|
set variant(value) {
|
|
27487
27467
|
this.elementRef.nativeElement['variant'] = value;
|
|
27488
27468
|
}
|
|
27489
27469
|
get variant() {
|
|
27490
27470
|
return this.elementRef.nativeElement['variant'];
|
|
27491
27471
|
}
|
|
27492
|
-
set
|
|
27493
|
-
this.elementRef.nativeElement['
|
|
27472
|
+
set required(value) {
|
|
27473
|
+
this.elementRef.nativeElement['required'] = value;
|
|
27494
27474
|
}
|
|
27495
|
-
get
|
|
27496
|
-
return this.elementRef.nativeElement['
|
|
27475
|
+
get required() {
|
|
27476
|
+
return this.elementRef.nativeElement['required'];
|
|
27497
27477
|
}
|
|
27498
|
-
set
|
|
27499
|
-
this.elementRef.nativeElement['
|
|
27478
|
+
set disabled(value) {
|
|
27479
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
27480
|
+
}
|
|
27481
|
+
get disabled() {
|
|
27482
|
+
return this.elementRef.nativeElement['disabled'];
|
|
27483
|
+
}
|
|
27484
|
+
set state(value) {
|
|
27485
|
+
this.elementRef.nativeElement['state'] = value;
|
|
27486
|
+
}
|
|
27487
|
+
get state() {
|
|
27488
|
+
return this.elementRef.nativeElement['state'];
|
|
27489
|
+
}
|
|
27490
|
+
set inverted(value) {
|
|
27491
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
27500
27492
|
}
|
|
27501
27493
|
get inverted() {
|
|
27502
27494
|
return this.elementRef.nativeElement['inverted'];
|
|
@@ -27786,17 +27778,25 @@ class PxPrice {
|
|
|
27786
27778
|
constructor(elementRef) {
|
|
27787
27779
|
this.elementRef = elementRef;
|
|
27788
27780
|
}
|
|
27789
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27790
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
27781
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27782
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxRadioGroup, selector: "px-radio-group", inputs: { name: "name", gap: "gap", variant: "variant", required: "required", disabled: "disabled", state: "state", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, ngImport: i0 });
|
|
27791
27783
|
}
|
|
27792
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, decorators: [{
|
|
27793
27785
|
type: Directive,
|
|
27794
27786
|
args: [{
|
|
27795
|
-
selector: 'px-
|
|
27787
|
+
selector: 'px-radio-group',
|
|
27796
27788
|
}]
|
|
27797
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
27789
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
|
|
27798
27790
|
type: Input
|
|
27799
|
-
}],
|
|
27791
|
+
}], gap: [{
|
|
27792
|
+
type: Input
|
|
27793
|
+
}], variant: [{
|
|
27794
|
+
type: Input
|
|
27795
|
+
}], required: [{
|
|
27796
|
+
type: Input
|
|
27797
|
+
}], disabled: [{
|
|
27798
|
+
type: Input
|
|
27799
|
+
}], state: [{
|
|
27800
27800
|
type: Input
|
|
27801
27801
|
}], inverted: [{
|
|
27802
27802
|
type: Input
|
|
@@ -28535,11 +28535,293 @@ class PxSection {
|
|
|
28535
28535
|
get borderSideLaptop() {
|
|
28536
28536
|
return this.elementRef.nativeElement['borderSideLaptop'];
|
|
28537
28537
|
}
|
|
28538
|
+
set grow(value) {
|
|
28539
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
28540
|
+
}
|
|
28541
|
+
get grow() {
|
|
28542
|
+
return this.elementRef.nativeElement['grow'];
|
|
28543
|
+
}
|
|
28544
|
+
set growMobile(value) {
|
|
28545
|
+
this.elementRef.nativeElement['growMobile'] = value;
|
|
28546
|
+
}
|
|
28547
|
+
get growMobile() {
|
|
28548
|
+
return this.elementRef.nativeElement['growMobile'];
|
|
28549
|
+
}
|
|
28550
|
+
set growTablet(value) {
|
|
28551
|
+
this.elementRef.nativeElement['growTablet'] = value;
|
|
28552
|
+
}
|
|
28553
|
+
get growTablet() {
|
|
28554
|
+
return this.elementRef.nativeElement['growTablet'];
|
|
28555
|
+
}
|
|
28556
|
+
set growLaptop(value) {
|
|
28557
|
+
this.elementRef.nativeElement['growLaptop'] = value;
|
|
28558
|
+
}
|
|
28559
|
+
get growLaptop() {
|
|
28560
|
+
return this.elementRef.nativeElement['growLaptop'];
|
|
28561
|
+
}
|
|
28562
|
+
set growDesktop(value) {
|
|
28563
|
+
this.elementRef.nativeElement['growDesktop'] = value;
|
|
28564
|
+
}
|
|
28565
|
+
get growDesktop() {
|
|
28566
|
+
return this.elementRef.nativeElement['growDesktop'];
|
|
28567
|
+
}
|
|
28568
|
+
set shrink(value) {
|
|
28569
|
+
this.elementRef.nativeElement['shrink'] = value;
|
|
28570
|
+
}
|
|
28571
|
+
get shrink() {
|
|
28572
|
+
return this.elementRef.nativeElement['shrink'];
|
|
28573
|
+
}
|
|
28574
|
+
set shrinkMobile(value) {
|
|
28575
|
+
this.elementRef.nativeElement['shrinkMobile'] = value;
|
|
28576
|
+
}
|
|
28577
|
+
get shrinkMobile() {
|
|
28578
|
+
return this.elementRef.nativeElement['shrinkMobile'];
|
|
28579
|
+
}
|
|
28580
|
+
set shrinkTablet(value) {
|
|
28581
|
+
this.elementRef.nativeElement['shrinkTablet'] = value;
|
|
28582
|
+
}
|
|
28583
|
+
get shrinkTablet() {
|
|
28584
|
+
return this.elementRef.nativeElement['shrinkTablet'];
|
|
28585
|
+
}
|
|
28586
|
+
set shrinkLaptop(value) {
|
|
28587
|
+
this.elementRef.nativeElement['shrinkLaptop'] = value;
|
|
28588
|
+
}
|
|
28589
|
+
get shrinkLaptop() {
|
|
28590
|
+
return this.elementRef.nativeElement['shrinkLaptop'];
|
|
28591
|
+
}
|
|
28592
|
+
set shrinkDesktop(value) {
|
|
28593
|
+
this.elementRef.nativeElement['shrinkDesktop'] = value;
|
|
28594
|
+
}
|
|
28595
|
+
get shrinkDesktop() {
|
|
28596
|
+
return this.elementRef.nativeElement['shrinkDesktop'];
|
|
28597
|
+
}
|
|
28598
|
+
set basis(value) {
|
|
28599
|
+
this.elementRef.nativeElement['basis'] = value;
|
|
28600
|
+
}
|
|
28601
|
+
get basis() {
|
|
28602
|
+
return this.elementRef.nativeElement['basis'];
|
|
28603
|
+
}
|
|
28604
|
+
set basisMobile(value) {
|
|
28605
|
+
this.elementRef.nativeElement['basisMobile'] = value;
|
|
28606
|
+
}
|
|
28607
|
+
get basisMobile() {
|
|
28608
|
+
return this.elementRef.nativeElement['basisMobile'];
|
|
28609
|
+
}
|
|
28610
|
+
set basisTablet(value) {
|
|
28611
|
+
this.elementRef.nativeElement['basisTablet'] = value;
|
|
28612
|
+
}
|
|
28613
|
+
get basisTablet() {
|
|
28614
|
+
return this.elementRef.nativeElement['basisTablet'];
|
|
28615
|
+
}
|
|
28616
|
+
set basisLaptop(value) {
|
|
28617
|
+
this.elementRef.nativeElement['basisLaptop'] = value;
|
|
28618
|
+
}
|
|
28619
|
+
get basisLaptop() {
|
|
28620
|
+
return this.elementRef.nativeElement['basisLaptop'];
|
|
28621
|
+
}
|
|
28622
|
+
set basisDesktop(value) {
|
|
28623
|
+
this.elementRef.nativeElement['basisDesktop'] = value;
|
|
28624
|
+
}
|
|
28625
|
+
get basisDesktop() {
|
|
28626
|
+
return this.elementRef.nativeElement['basisDesktop'];
|
|
28627
|
+
}
|
|
28628
|
+
set alignSelf(value) {
|
|
28629
|
+
this.elementRef.nativeElement['alignSelf'] = value;
|
|
28630
|
+
}
|
|
28631
|
+
get alignSelf() {
|
|
28632
|
+
return this.elementRef.nativeElement['alignSelf'];
|
|
28633
|
+
}
|
|
28634
|
+
set alignSelfMobile(value) {
|
|
28635
|
+
this.elementRef.nativeElement['alignSelfMobile'] = value;
|
|
28636
|
+
}
|
|
28637
|
+
get alignSelfMobile() {
|
|
28638
|
+
return this.elementRef.nativeElement['alignSelfMobile'];
|
|
28639
|
+
}
|
|
28640
|
+
set alignSelfTablet(value) {
|
|
28641
|
+
this.elementRef.nativeElement['alignSelfTablet'] = value;
|
|
28642
|
+
}
|
|
28643
|
+
get alignSelfTablet() {
|
|
28644
|
+
return this.elementRef.nativeElement['alignSelfTablet'];
|
|
28645
|
+
}
|
|
28646
|
+
set alignSelfLaptop(value) {
|
|
28647
|
+
this.elementRef.nativeElement['alignSelfLaptop'] = value;
|
|
28648
|
+
}
|
|
28649
|
+
get alignSelfLaptop() {
|
|
28650
|
+
return this.elementRef.nativeElement['alignSelfLaptop'];
|
|
28651
|
+
}
|
|
28652
|
+
set alignSelfDesktop(value) {
|
|
28653
|
+
this.elementRef.nativeElement['alignSelfDesktop'] = value;
|
|
28654
|
+
}
|
|
28655
|
+
get alignSelfDesktop() {
|
|
28656
|
+
return this.elementRef.nativeElement['alignSelfDesktop'];
|
|
28657
|
+
}
|
|
28658
|
+
set justifySelf(value) {
|
|
28659
|
+
this.elementRef.nativeElement['justifySelf'] = value;
|
|
28660
|
+
}
|
|
28661
|
+
get justifySelf() {
|
|
28662
|
+
return this.elementRef.nativeElement['justifySelf'];
|
|
28663
|
+
}
|
|
28664
|
+
set justifySelfMobile(value) {
|
|
28665
|
+
this.elementRef.nativeElement['justifySelfMobile'] = value;
|
|
28666
|
+
}
|
|
28667
|
+
get justifySelfMobile() {
|
|
28668
|
+
return this.elementRef.nativeElement['justifySelfMobile'];
|
|
28669
|
+
}
|
|
28670
|
+
set justifySelfTablet(value) {
|
|
28671
|
+
this.elementRef.nativeElement['justifySelfTablet'] = value;
|
|
28672
|
+
}
|
|
28673
|
+
get justifySelfTablet() {
|
|
28674
|
+
return this.elementRef.nativeElement['justifySelfTablet'];
|
|
28675
|
+
}
|
|
28676
|
+
set justifySelfLaptop(value) {
|
|
28677
|
+
this.elementRef.nativeElement['justifySelfLaptop'] = value;
|
|
28678
|
+
}
|
|
28679
|
+
get justifySelfLaptop() {
|
|
28680
|
+
return this.elementRef.nativeElement['justifySelfLaptop'];
|
|
28681
|
+
}
|
|
28682
|
+
set justifySelfDesktop(value) {
|
|
28683
|
+
this.elementRef.nativeElement['justifySelfDesktop'] = value;
|
|
28684
|
+
}
|
|
28685
|
+
get justifySelfDesktop() {
|
|
28686
|
+
return this.elementRef.nativeElement['justifySelfDesktop'];
|
|
28687
|
+
}
|
|
28688
|
+
set hidden(value) {
|
|
28689
|
+
this.elementRef.nativeElement['hidden'] = value;
|
|
28690
|
+
}
|
|
28691
|
+
get hidden() {
|
|
28692
|
+
return this.elementRef.nativeElement['hidden'];
|
|
28693
|
+
}
|
|
28694
|
+
set hiddenMobile(value) {
|
|
28695
|
+
this.elementRef.nativeElement['hiddenMobile'] = value;
|
|
28696
|
+
}
|
|
28697
|
+
get hiddenMobile() {
|
|
28698
|
+
return this.elementRef.nativeElement['hiddenMobile'];
|
|
28699
|
+
}
|
|
28700
|
+
set hiddenTablet(value) {
|
|
28701
|
+
this.elementRef.nativeElement['hiddenTablet'] = value;
|
|
28702
|
+
}
|
|
28703
|
+
get hiddenTablet() {
|
|
28704
|
+
return this.elementRef.nativeElement['hiddenTablet'];
|
|
28705
|
+
}
|
|
28706
|
+
set hiddenLaptop(value) {
|
|
28707
|
+
this.elementRef.nativeElement['hiddenLaptop'] = value;
|
|
28708
|
+
}
|
|
28709
|
+
get hiddenLaptop() {
|
|
28710
|
+
return this.elementRef.nativeElement['hiddenLaptop'];
|
|
28711
|
+
}
|
|
28712
|
+
set hiddenDesktop(value) {
|
|
28713
|
+
this.elementRef.nativeElement['hiddenDesktop'] = value;
|
|
28714
|
+
}
|
|
28715
|
+
get hiddenDesktop() {
|
|
28716
|
+
return this.elementRef.nativeElement['hiddenDesktop'];
|
|
28717
|
+
}
|
|
28718
|
+
set shownSr(value) {
|
|
28719
|
+
this.elementRef.nativeElement['shownSr'] = value;
|
|
28720
|
+
}
|
|
28721
|
+
get shownSr() {
|
|
28722
|
+
return this.elementRef.nativeElement['shownSr'];
|
|
28723
|
+
}
|
|
28724
|
+
set shownSrMobile(value) {
|
|
28725
|
+
this.elementRef.nativeElement['shownSrMobile'] = value;
|
|
28726
|
+
}
|
|
28727
|
+
get shownSrMobile() {
|
|
28728
|
+
return this.elementRef.nativeElement['shownSrMobile'];
|
|
28729
|
+
}
|
|
28730
|
+
set shownSrTablet(value) {
|
|
28731
|
+
this.elementRef.nativeElement['shownSrTablet'] = value;
|
|
28732
|
+
}
|
|
28733
|
+
get shownSrTablet() {
|
|
28734
|
+
return this.elementRef.nativeElement['shownSrTablet'];
|
|
28735
|
+
}
|
|
28736
|
+
set shownSrLaptop(value) {
|
|
28737
|
+
this.elementRef.nativeElement['shownSrLaptop'] = value;
|
|
28738
|
+
}
|
|
28739
|
+
get shownSrLaptop() {
|
|
28740
|
+
return this.elementRef.nativeElement['shownSrLaptop'];
|
|
28741
|
+
}
|
|
28742
|
+
set shownSrDesktop(value) {
|
|
28743
|
+
this.elementRef.nativeElement['shownSrDesktop'] = value;
|
|
28744
|
+
}
|
|
28745
|
+
get shownSrDesktop() {
|
|
28746
|
+
return this.elementRef.nativeElement['shownSrDesktop'];
|
|
28747
|
+
}
|
|
28748
|
+
set colSpan(value) {
|
|
28749
|
+
this.elementRef.nativeElement['colSpan'] = value;
|
|
28750
|
+
}
|
|
28751
|
+
get colSpan() {
|
|
28752
|
+
return this.elementRef.nativeElement['colSpan'];
|
|
28753
|
+
}
|
|
28754
|
+
set colSpanMobile(value) {
|
|
28755
|
+
this.elementRef.nativeElement['colSpanMobile'] = value;
|
|
28756
|
+
}
|
|
28757
|
+
get colSpanMobile() {
|
|
28758
|
+
return this.elementRef.nativeElement['colSpanMobile'];
|
|
28759
|
+
}
|
|
28760
|
+
set colSpanTablet(value) {
|
|
28761
|
+
this.elementRef.nativeElement['colSpanTablet'] = value;
|
|
28762
|
+
}
|
|
28763
|
+
get colSpanTablet() {
|
|
28764
|
+
return this.elementRef.nativeElement['colSpanTablet'];
|
|
28765
|
+
}
|
|
28766
|
+
set colSpanLaptop(value) {
|
|
28767
|
+
this.elementRef.nativeElement['colSpanLaptop'] = value;
|
|
28768
|
+
}
|
|
28769
|
+
get colSpanLaptop() {
|
|
28770
|
+
return this.elementRef.nativeElement['colSpanLaptop'];
|
|
28771
|
+
}
|
|
28772
|
+
set colSpanDesktop(value) {
|
|
28773
|
+
this.elementRef.nativeElement['colSpanDesktop'] = value;
|
|
28774
|
+
}
|
|
28775
|
+
get colSpanDesktop() {
|
|
28776
|
+
return this.elementRef.nativeElement['colSpanDesktop'];
|
|
28777
|
+
}
|
|
28778
|
+
set order(value) {
|
|
28779
|
+
this.elementRef.nativeElement['order'] = value;
|
|
28780
|
+
}
|
|
28781
|
+
get order() {
|
|
28782
|
+
return this.elementRef.nativeElement['order'];
|
|
28783
|
+
}
|
|
28784
|
+
set orderMobile(value) {
|
|
28785
|
+
this.elementRef.nativeElement['orderMobile'] = value;
|
|
28786
|
+
}
|
|
28787
|
+
get orderMobile() {
|
|
28788
|
+
return this.elementRef.nativeElement['orderMobile'];
|
|
28789
|
+
}
|
|
28790
|
+
set orderTablet(value) {
|
|
28791
|
+
this.elementRef.nativeElement['orderTablet'] = value;
|
|
28792
|
+
}
|
|
28793
|
+
get orderTablet() {
|
|
28794
|
+
return this.elementRef.nativeElement['orderTablet'];
|
|
28795
|
+
}
|
|
28796
|
+
set orderLaptop(value) {
|
|
28797
|
+
this.elementRef.nativeElement['orderLaptop'] = value;
|
|
28798
|
+
}
|
|
28799
|
+
get orderLaptop() {
|
|
28800
|
+
return this.elementRef.nativeElement['orderLaptop'];
|
|
28801
|
+
}
|
|
28802
|
+
set orderDesktop(value) {
|
|
28803
|
+
this.elementRef.nativeElement['orderDesktop'] = value;
|
|
28804
|
+
}
|
|
28805
|
+
get orderDesktop() {
|
|
28806
|
+
return this.elementRef.nativeElement['orderDesktop'];
|
|
28807
|
+
}
|
|
28808
|
+
set stickyTop(value) {
|
|
28809
|
+
this.elementRef.nativeElement['stickyTop'] = value;
|
|
28810
|
+
}
|
|
28811
|
+
get stickyTop() {
|
|
28812
|
+
return this.elementRef.nativeElement['stickyTop'];
|
|
28813
|
+
}
|
|
28814
|
+
set stickyBottom(value) {
|
|
28815
|
+
this.elementRef.nativeElement['stickyBottom'] = value;
|
|
28816
|
+
}
|
|
28817
|
+
get stickyBottom() {
|
|
28818
|
+
return this.elementRef.nativeElement['stickyBottom'];
|
|
28819
|
+
}
|
|
28538
28820
|
constructor(elementRef) {
|
|
28539
28821
|
this.elementRef = elementRef;
|
|
28540
28822
|
}
|
|
28541
28823
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSection, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28542
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSection, selector: "px-section", inputs: { backgroundColor: ["background-color", "backgroundColor"], backgroundGradient: ["background-gradient", "backgroundGradient"], backgroundImage: ["background-image", "backgroundImage"], backgroundImageMobile: ["background-image--mobile", "backgroundImageMobile"], backgroundImageTablet: ["background-image--tablet", "backgroundImageTablet"], backgroundImageLaptop: ["background-image--laptop", "backgroundImageLaptop"], backgroundSize: ["background-size", "backgroundSize"], backgroundPosition: ["background-position", "backgroundPosition"], paddingBlock: ["padding-block", "paddingBlock"], paddingTop: ["padding-top", "paddingTop"], paddingBottom: ["padding-bottom", "paddingBottom"], paddingBlockMobile: ["padding-block--mobile", "paddingBlockMobile"], paddingTopMobile: ["padding-top--mobile", "paddingTopMobile"], paddingBottomMobile: ["padding-bottom--mobile", "paddingBottomMobile"], paddingBlockTablet: ["padding-block--tablet", "paddingBlockTablet"], paddingTopTablet: ["padding-top--tablet", "paddingTopTablet"], paddingBottomTablet: ["padding-bottom--tablet", "paddingBottomTablet"], paddingBlockLaptop: ["padding-block--laptop", "paddingBlockLaptop"], paddingTopLaptop: ["padding-top--laptop", "paddingTopLaptop"], paddingBottomLaptop: ["padding-bottom--laptop", "paddingBottomLaptop"], border: "border", borderSide: ["border-side", "borderSide"], borderSideMobile: ["border-side--mobile", "borderSideMobile"], borderSideTablet: ["border-side--tablet", "borderSideTablet"], borderSideLaptop: ["border-side--laptop", "borderSideLaptop"] }, ngImport: i0 });
|
|
28824
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSection, selector: "px-section", inputs: { backgroundColor: ["background-color", "backgroundColor"], backgroundGradient: ["background-gradient", "backgroundGradient"], backgroundImage: ["background-image", "backgroundImage"], backgroundImageMobile: ["background-image--mobile", "backgroundImageMobile"], backgroundImageTablet: ["background-image--tablet", "backgroundImageTablet"], backgroundImageLaptop: ["background-image--laptop", "backgroundImageLaptop"], backgroundSize: ["background-size", "backgroundSize"], backgroundPosition: ["background-position", "backgroundPosition"], paddingBlock: ["padding-block", "paddingBlock"], paddingTop: ["padding-top", "paddingTop"], paddingBottom: ["padding-bottom", "paddingBottom"], paddingBlockMobile: ["padding-block--mobile", "paddingBlockMobile"], paddingTopMobile: ["padding-top--mobile", "paddingTopMobile"], paddingBottomMobile: ["padding-bottom--mobile", "paddingBottomMobile"], paddingBlockTablet: ["padding-block--tablet", "paddingBlockTablet"], paddingTopTablet: ["padding-top--tablet", "paddingTopTablet"], paddingBottomTablet: ["padding-bottom--tablet", "paddingBottomTablet"], paddingBlockLaptop: ["padding-block--laptop", "paddingBlockLaptop"], paddingTopLaptop: ["padding-top--laptop", "paddingTopLaptop"], paddingBottomLaptop: ["padding-bottom--laptop", "paddingBottomLaptop"], border: "border", borderSide: ["border-side", "borderSide"], borderSideMobile: ["border-side--mobile", "borderSideMobile"], borderSideTablet: ["border-side--tablet", "borderSideTablet"], borderSideLaptop: ["border-side--laptop", "borderSideLaptop"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, ngImport: i0 });
|
|
28543
28825
|
}
|
|
28544
28826
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSection, decorators: [{
|
|
28545
28827
|
type: Directive,
|
|
@@ -28620,24 +28902,196 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28620
28902
|
}], borderSideLaptop: [{
|
|
28621
28903
|
type: Input,
|
|
28622
28904
|
args: ['border-side--laptop']
|
|
28905
|
+
}], grow: [{
|
|
28906
|
+
type: Input
|
|
28907
|
+
}], growMobile: [{
|
|
28908
|
+
type: Input,
|
|
28909
|
+
args: ['grow--mobile']
|
|
28910
|
+
}], growTablet: [{
|
|
28911
|
+
type: Input,
|
|
28912
|
+
args: ['grow--tablet']
|
|
28913
|
+
}], growLaptop: [{
|
|
28914
|
+
type: Input,
|
|
28915
|
+
args: ['grow--laptop']
|
|
28916
|
+
}], growDesktop: [{
|
|
28917
|
+
type: Input,
|
|
28918
|
+
args: ['grow--desktop']
|
|
28919
|
+
}], shrink: [{
|
|
28920
|
+
type: Input
|
|
28921
|
+
}], shrinkMobile: [{
|
|
28922
|
+
type: Input,
|
|
28923
|
+
args: ['shrink--mobile']
|
|
28924
|
+
}], shrinkTablet: [{
|
|
28925
|
+
type: Input,
|
|
28926
|
+
args: ['shrink--tablet']
|
|
28927
|
+
}], shrinkLaptop: [{
|
|
28928
|
+
type: Input,
|
|
28929
|
+
args: ['shrink--laptop']
|
|
28930
|
+
}], shrinkDesktop: [{
|
|
28931
|
+
type: Input,
|
|
28932
|
+
args: ['shrink--desktop']
|
|
28933
|
+
}], basis: [{
|
|
28934
|
+
type: Input
|
|
28935
|
+
}], basisMobile: [{
|
|
28936
|
+
type: Input,
|
|
28937
|
+
args: ['basis--mobile']
|
|
28938
|
+
}], basisTablet: [{
|
|
28939
|
+
type: Input,
|
|
28940
|
+
args: ['basis--tablet']
|
|
28941
|
+
}], basisLaptop: [{
|
|
28942
|
+
type: Input,
|
|
28943
|
+
args: ['basis--laptop']
|
|
28944
|
+
}], basisDesktop: [{
|
|
28945
|
+
type: Input,
|
|
28946
|
+
args: ['basis--desktop']
|
|
28947
|
+
}], alignSelf: [{
|
|
28948
|
+
type: Input,
|
|
28949
|
+
args: ['align-self']
|
|
28950
|
+
}], alignSelfMobile: [{
|
|
28951
|
+
type: Input,
|
|
28952
|
+
args: ['align-self--mobile']
|
|
28953
|
+
}], alignSelfTablet: [{
|
|
28954
|
+
type: Input,
|
|
28955
|
+
args: ['align-self--tablet']
|
|
28956
|
+
}], alignSelfLaptop: [{
|
|
28957
|
+
type: Input,
|
|
28958
|
+
args: ['align-self--laptop']
|
|
28959
|
+
}], alignSelfDesktop: [{
|
|
28960
|
+
type: Input,
|
|
28961
|
+
args: ['align-self--desktop']
|
|
28962
|
+
}], justifySelf: [{
|
|
28963
|
+
type: Input,
|
|
28964
|
+
args: ['justify-self']
|
|
28965
|
+
}], justifySelfMobile: [{
|
|
28966
|
+
type: Input,
|
|
28967
|
+
args: ['justify-self--mobile']
|
|
28968
|
+
}], justifySelfTablet: [{
|
|
28969
|
+
type: Input,
|
|
28970
|
+
args: ['justify-self--tablet']
|
|
28971
|
+
}], justifySelfLaptop: [{
|
|
28972
|
+
type: Input,
|
|
28973
|
+
args: ['justify-self--laptop']
|
|
28974
|
+
}], justifySelfDesktop: [{
|
|
28975
|
+
type: Input,
|
|
28976
|
+
args: ['justify-self--desktop']
|
|
28977
|
+
}], hidden: [{
|
|
28978
|
+
type: Input
|
|
28979
|
+
}], hiddenMobile: [{
|
|
28980
|
+
type: Input,
|
|
28981
|
+
args: ['hidden--mobile']
|
|
28982
|
+
}], hiddenTablet: [{
|
|
28983
|
+
type: Input,
|
|
28984
|
+
args: ['hidden--tablet']
|
|
28985
|
+
}], hiddenLaptop: [{
|
|
28986
|
+
type: Input,
|
|
28987
|
+
args: ['hidden--laptop']
|
|
28988
|
+
}], hiddenDesktop: [{
|
|
28989
|
+
type: Input,
|
|
28990
|
+
args: ['hidden--desktop']
|
|
28991
|
+
}], shownSr: [{
|
|
28992
|
+
type: Input,
|
|
28993
|
+
args: ['shown--sr']
|
|
28994
|
+
}], shownSrMobile: [{
|
|
28995
|
+
type: Input,
|
|
28996
|
+
args: ['shown--sr--mobile']
|
|
28997
|
+
}], shownSrTablet: [{
|
|
28998
|
+
type: Input,
|
|
28999
|
+
args: ['shown--sr--tablet']
|
|
29000
|
+
}], shownSrLaptop: [{
|
|
29001
|
+
type: Input,
|
|
29002
|
+
args: ['shown--sr--laptop']
|
|
29003
|
+
}], shownSrDesktop: [{
|
|
29004
|
+
type: Input,
|
|
29005
|
+
args: ['shown--sr--desktop']
|
|
29006
|
+
}], colSpan: [{
|
|
29007
|
+
type: Input,
|
|
29008
|
+
args: ['col-span']
|
|
29009
|
+
}], colSpanMobile: [{
|
|
29010
|
+
type: Input,
|
|
29011
|
+
args: ['col-span--mobile']
|
|
29012
|
+
}], colSpanTablet: [{
|
|
29013
|
+
type: Input,
|
|
29014
|
+
args: ['col-span--tablet']
|
|
29015
|
+
}], colSpanLaptop: [{
|
|
29016
|
+
type: Input,
|
|
29017
|
+
args: ['col-span--laptop']
|
|
29018
|
+
}], colSpanDesktop: [{
|
|
29019
|
+
type: Input,
|
|
29020
|
+
args: ['col-span--desktop']
|
|
29021
|
+
}], order: [{
|
|
29022
|
+
type: Input
|
|
29023
|
+
}], orderMobile: [{
|
|
29024
|
+
type: Input,
|
|
29025
|
+
args: ['order--mobile']
|
|
29026
|
+
}], orderTablet: [{
|
|
29027
|
+
type: Input,
|
|
29028
|
+
args: ['order--tablet']
|
|
29029
|
+
}], orderLaptop: [{
|
|
29030
|
+
type: Input,
|
|
29031
|
+
args: ['order--laptop']
|
|
29032
|
+
}], orderDesktop: [{
|
|
29033
|
+
type: Input,
|
|
29034
|
+
args: ['order--desktop']
|
|
29035
|
+
}], stickyTop: [{
|
|
29036
|
+
type: Input,
|
|
29037
|
+
args: ['sticky-top']
|
|
29038
|
+
}], stickyBottom: [{
|
|
29039
|
+
type: Input,
|
|
29040
|
+
args: ['sticky-bottom']
|
|
28623
29041
|
}] } });
|
|
28624
29042
|
/**
|
|
28625
|
-
* @description Type-only wrapper for <px-
|
|
29043
|
+
* @description Type-only wrapper for <px-separator>
|
|
28626
29044
|
*/
|
|
28627
|
-
class
|
|
29045
|
+
class PxSeparator {
|
|
28628
29046
|
elementRef;
|
|
29047
|
+
set direction(value) {
|
|
29048
|
+
this.elementRef.nativeElement['direction'] = value;
|
|
29049
|
+
}
|
|
29050
|
+
get direction() {
|
|
29051
|
+
return this.elementRef.nativeElement['direction'];
|
|
29052
|
+
}
|
|
29053
|
+
set directionMobile(value) {
|
|
29054
|
+
this.elementRef.nativeElement['directionMobile'] = value;
|
|
29055
|
+
}
|
|
29056
|
+
get directionMobile() {
|
|
29057
|
+
return this.elementRef.nativeElement['directionMobile'];
|
|
29058
|
+
}
|
|
29059
|
+
set directionTablet(value) {
|
|
29060
|
+
this.elementRef.nativeElement['directionTablet'] = value;
|
|
29061
|
+
}
|
|
29062
|
+
get directionTablet() {
|
|
29063
|
+
return this.elementRef.nativeElement['directionTablet'];
|
|
29064
|
+
}
|
|
29065
|
+
set directionLaptop(value) {
|
|
29066
|
+
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
29067
|
+
}
|
|
29068
|
+
get directionLaptop() {
|
|
29069
|
+
return this.elementRef.nativeElement['directionLaptop'];
|
|
29070
|
+
}
|
|
29071
|
+
set directionDesktop(value) {
|
|
29072
|
+
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
29073
|
+
}
|
|
29074
|
+
get directionDesktop() {
|
|
29075
|
+
return this.elementRef.nativeElement['directionDesktop'];
|
|
29076
|
+
}
|
|
29077
|
+
set size(value) {
|
|
29078
|
+
this.elementRef.nativeElement['size'] = value;
|
|
29079
|
+
}
|
|
29080
|
+
get size() {
|
|
29081
|
+
return this.elementRef.nativeElement['size'];
|
|
29082
|
+
}
|
|
29083
|
+
set color(value) {
|
|
29084
|
+
this.elementRef.nativeElement['color'] = value;
|
|
29085
|
+
}
|
|
29086
|
+
get color() {
|
|
29087
|
+
return this.elementRef.nativeElement['color'];
|
|
29088
|
+
}
|
|
28629
29089
|
set inverted(value) {
|
|
28630
29090
|
this.elementRef.nativeElement['inverted'] = value;
|
|
28631
29091
|
}
|
|
28632
29092
|
get inverted() {
|
|
28633
29093
|
return this.elementRef.nativeElement['inverted'];
|
|
28634
29094
|
}
|
|
28635
|
-
set hideFooter(value) {
|
|
28636
|
-
this.elementRef.nativeElement['hideFooter'] = value;
|
|
28637
|
-
}
|
|
28638
|
-
get hideFooter() {
|
|
28639
|
-
return this.elementRef.nativeElement['hideFooter'];
|
|
28640
|
-
}
|
|
28641
29095
|
set grow(value) {
|
|
28642
29096
|
this.elementRef.nativeElement['grow'] = value;
|
|
28643
29097
|
}
|
|
@@ -28923,19 +29377,34 @@ class PxSelectableBox {
|
|
|
28923
29377
|
constructor(elementRef) {
|
|
28924
29378
|
this.elementRef = elementRef;
|
|
28925
29379
|
}
|
|
28926
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
28927
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
29380
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSeparator, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29381
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSeparator, selector: "px-separator", inputs: { direction: "direction", directionMobile: ["direction--mobile", "directionMobile"], directionTablet: ["direction--tablet", "directionTablet"], directionLaptop: ["direction--laptop", "directionLaptop"], directionDesktop: ["direction--desktop", "directionDesktop"], size: "size", color: "color", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, ngImport: i0 });
|
|
28928
29382
|
}
|
|
28929
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
29383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSeparator, decorators: [{
|
|
28930
29384
|
type: Directive,
|
|
28931
29385
|
args: [{
|
|
28932
|
-
selector: 'px-
|
|
29386
|
+
selector: 'px-separator',
|
|
28933
29387
|
}]
|
|
28934
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
29388
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { direction: [{
|
|
28935
29389
|
type: Input
|
|
28936
|
-
}],
|
|
29390
|
+
}], directionMobile: [{
|
|
28937
29391
|
type: Input,
|
|
28938
|
-
args: ['
|
|
29392
|
+
args: ['direction--mobile']
|
|
29393
|
+
}], directionTablet: [{
|
|
29394
|
+
type: Input,
|
|
29395
|
+
args: ['direction--tablet']
|
|
29396
|
+
}], directionLaptop: [{
|
|
29397
|
+
type: Input,
|
|
29398
|
+
args: ['direction--laptop']
|
|
29399
|
+
}], directionDesktop: [{
|
|
29400
|
+
type: Input,
|
|
29401
|
+
args: ['direction--desktop']
|
|
29402
|
+
}], size: [{
|
|
29403
|
+
type: Input
|
|
29404
|
+
}], color: [{
|
|
29405
|
+
type: Input
|
|
29406
|
+
}], inverted: [{
|
|
29407
|
+
type: Input
|
|
28939
29408
|
}], grow: [{
|
|
28940
29409
|
type: Input
|
|
28941
29410
|
}], growMobile: [{
|
|
@@ -29074,9 +29543,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
29074
29543
|
args: ['sticky-bottom']
|
|
29075
29544
|
}] } });
|
|
29076
29545
|
/**
|
|
29077
|
-
* @description Type-only wrapper for <px-selectable-box
|
|
29546
|
+
* @description Type-only wrapper for <px-selectable-box>
|
|
29078
29547
|
*/
|
|
29079
|
-
class
|
|
29548
|
+
class PxSelectableBox {
|
|
29080
29549
|
elementRef;
|
|
29081
29550
|
set inverted(value) {
|
|
29082
29551
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -29084,29 +29553,11 @@ class PxSelectableBoxCheckbox {
|
|
|
29084
29553
|
get inverted() {
|
|
29085
29554
|
return this.elementRef.nativeElement['inverted'];
|
|
29086
29555
|
}
|
|
29087
|
-
set
|
|
29088
|
-
this.elementRef.nativeElement['
|
|
29089
|
-
}
|
|
29090
|
-
get name() {
|
|
29091
|
-
return this.elementRef.nativeElement['name'];
|
|
29092
|
-
}
|
|
29093
|
-
set value(value) {
|
|
29094
|
-
this.elementRef.nativeElement['value'] = value;
|
|
29095
|
-
}
|
|
29096
|
-
get value() {
|
|
29097
|
-
return this.elementRef.nativeElement['value'];
|
|
29098
|
-
}
|
|
29099
|
-
set checked(value) {
|
|
29100
|
-
this.elementRef.nativeElement['checked'] = value;
|
|
29101
|
-
}
|
|
29102
|
-
get checked() {
|
|
29103
|
-
return this.elementRef.nativeElement['checked'];
|
|
29104
|
-
}
|
|
29105
|
-
set disabled(value) {
|
|
29106
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
29556
|
+
set hideFooter(value) {
|
|
29557
|
+
this.elementRef.nativeElement['hideFooter'] = value;
|
|
29107
29558
|
}
|
|
29108
|
-
get
|
|
29109
|
-
return this.elementRef.nativeElement['
|
|
29559
|
+
get hideFooter() {
|
|
29560
|
+
return this.elementRef.nativeElement['hideFooter'];
|
|
29110
29561
|
}
|
|
29111
29562
|
set grow(value) {
|
|
29112
29563
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -29390,31 +29841,22 @@ class PxSelectableBoxCheckbox {
|
|
|
29390
29841
|
get stickyBottom() {
|
|
29391
29842
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
29392
29843
|
}
|
|
29393
|
-
change = new EventEmitter();
|
|
29394
29844
|
constructor(elementRef) {
|
|
29395
29845
|
this.elementRef = elementRef;
|
|
29396
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
29397
|
-
this.change.emit(e.detail);
|
|
29398
|
-
});
|
|
29399
29846
|
}
|
|
29400
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
29401
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
29847
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelectableBox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29848
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSelectableBox, selector: "px-selectable-box", inputs: { inverted: "inverted", hideFooter: ["hide-footer", "hideFooter"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, ngImport: i0 });
|
|
29402
29849
|
}
|
|
29403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
29850
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelectableBox, decorators: [{
|
|
29404
29851
|
type: Directive,
|
|
29405
29852
|
args: [{
|
|
29406
|
-
selector: 'px-selectable-box
|
|
29853
|
+
selector: 'px-selectable-box',
|
|
29407
29854
|
}]
|
|
29408
29855
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
29409
29856
|
type: Input
|
|
29410
|
-
}],
|
|
29411
|
-
type: Input
|
|
29412
|
-
|
|
29413
|
-
type: Input
|
|
29414
|
-
}], checked: [{
|
|
29415
|
-
type: Input
|
|
29416
|
-
}], disabled: [{
|
|
29417
|
-
type: Input
|
|
29857
|
+
}], hideFooter: [{
|
|
29858
|
+
type: Input,
|
|
29859
|
+
args: ['hide-footer']
|
|
29418
29860
|
}], grow: [{
|
|
29419
29861
|
type: Input
|
|
29420
29862
|
}], growMobile: [{
|
|
@@ -29551,13 +29993,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
29551
29993
|
}], stickyBottom: [{
|
|
29552
29994
|
type: Input,
|
|
29553
29995
|
args: ['sticky-bottom']
|
|
29554
|
-
}], change: [{
|
|
29555
|
-
type: Output
|
|
29556
29996
|
}] } });
|
|
29557
29997
|
/**
|
|
29558
|
-
* @description Type-only wrapper for <px-selectable-box-
|
|
29998
|
+
* @description Type-only wrapper for <px-selectable-box-checkbox>
|
|
29559
29999
|
*/
|
|
29560
|
-
class
|
|
30000
|
+
class PxSelectableBoxCheckbox {
|
|
29561
30001
|
elementRef;
|
|
29562
30002
|
set inverted(value) {
|
|
29563
30003
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -29878,13 +30318,13 @@ class PxSelectableBoxRadio {
|
|
|
29878
30318
|
this.change.emit(e.detail);
|
|
29879
30319
|
});
|
|
29880
30320
|
}
|
|
29881
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
29882
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
30321
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelectableBoxCheckbox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30322
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSelectableBoxCheckbox, selector: "px-selectable-box-checkbox", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
29883
30323
|
}
|
|
29884
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
30324
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelectableBoxCheckbox, decorators: [{
|
|
29885
30325
|
type: Directive,
|
|
29886
30326
|
args: [{
|
|
29887
|
-
selector: 'px-selectable-box-
|
|
30327
|
+
selector: 'px-selectable-box-checkbox',
|
|
29888
30328
|
}]
|
|
29889
30329
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
29890
30330
|
type: Input
|
|
@@ -30036,57 +30476,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
30036
30476
|
type: Output
|
|
30037
30477
|
}] } });
|
|
30038
30478
|
/**
|
|
30039
|
-
* @description Type-only wrapper for <px-
|
|
30479
|
+
* @description Type-only wrapper for <px-selectable-box-radio>
|
|
30040
30480
|
*/
|
|
30041
|
-
class
|
|
30481
|
+
class PxSelectableBoxRadio {
|
|
30042
30482
|
elementRef;
|
|
30043
|
-
set
|
|
30044
|
-
this.elementRef.nativeElement['
|
|
30045
|
-
}
|
|
30046
|
-
get direction() {
|
|
30047
|
-
return this.elementRef.nativeElement['direction'];
|
|
30048
|
-
}
|
|
30049
|
-
set directionMobile(value) {
|
|
30050
|
-
this.elementRef.nativeElement['directionMobile'] = value;
|
|
30051
|
-
}
|
|
30052
|
-
get directionMobile() {
|
|
30053
|
-
return this.elementRef.nativeElement['directionMobile'];
|
|
30054
|
-
}
|
|
30055
|
-
set directionTablet(value) {
|
|
30056
|
-
this.elementRef.nativeElement['directionTablet'] = value;
|
|
30057
|
-
}
|
|
30058
|
-
get directionTablet() {
|
|
30059
|
-
return this.elementRef.nativeElement['directionTablet'];
|
|
30060
|
-
}
|
|
30061
|
-
set directionLaptop(value) {
|
|
30062
|
-
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
30483
|
+
set inverted(value) {
|
|
30484
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
30063
30485
|
}
|
|
30064
|
-
get
|
|
30065
|
-
return this.elementRef.nativeElement['
|
|
30486
|
+
get inverted() {
|
|
30487
|
+
return this.elementRef.nativeElement['inverted'];
|
|
30066
30488
|
}
|
|
30067
|
-
set
|
|
30068
|
-
this.elementRef.nativeElement['
|
|
30489
|
+
set name(value) {
|
|
30490
|
+
this.elementRef.nativeElement['name'] = value;
|
|
30069
30491
|
}
|
|
30070
|
-
get
|
|
30071
|
-
return this.elementRef.nativeElement['
|
|
30492
|
+
get name() {
|
|
30493
|
+
return this.elementRef.nativeElement['name'];
|
|
30072
30494
|
}
|
|
30073
|
-
set
|
|
30074
|
-
this.elementRef.nativeElement['
|
|
30495
|
+
set value(value) {
|
|
30496
|
+
this.elementRef.nativeElement['value'] = value;
|
|
30075
30497
|
}
|
|
30076
|
-
get
|
|
30077
|
-
return this.elementRef.nativeElement['
|
|
30498
|
+
get value() {
|
|
30499
|
+
return this.elementRef.nativeElement['value'];
|
|
30078
30500
|
}
|
|
30079
|
-
set
|
|
30080
|
-
this.elementRef.nativeElement['
|
|
30501
|
+
set checked(value) {
|
|
30502
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
30081
30503
|
}
|
|
30082
|
-
get
|
|
30083
|
-
return this.elementRef.nativeElement['
|
|
30504
|
+
get checked() {
|
|
30505
|
+
return this.elementRef.nativeElement['checked'];
|
|
30084
30506
|
}
|
|
30085
|
-
set
|
|
30086
|
-
this.elementRef.nativeElement['
|
|
30507
|
+
set disabled(value) {
|
|
30508
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
30087
30509
|
}
|
|
30088
|
-
get
|
|
30089
|
-
return this.elementRef.nativeElement['
|
|
30510
|
+
get disabled() {
|
|
30511
|
+
return this.elementRef.nativeElement['disabled'];
|
|
30090
30512
|
}
|
|
30091
30513
|
set grow(value) {
|
|
30092
30514
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -30370,36 +30792,30 @@ class PxSeparator {
|
|
|
30370
30792
|
get stickyBottom() {
|
|
30371
30793
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
30372
30794
|
}
|
|
30795
|
+
change = new EventEmitter();
|
|
30373
30796
|
constructor(elementRef) {
|
|
30374
30797
|
this.elementRef = elementRef;
|
|
30798
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
30799
|
+
this.change.emit(e.detail);
|
|
30800
|
+
});
|
|
30375
30801
|
}
|
|
30376
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
30377
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
30802
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelectableBoxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30803
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSelectableBoxRadio, selector: "px-selectable-box-radio", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
30378
30804
|
}
|
|
30379
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
30805
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelectableBoxRadio, decorators: [{
|
|
30380
30806
|
type: Directive,
|
|
30381
30807
|
args: [{
|
|
30382
|
-
selector: 'px-
|
|
30808
|
+
selector: 'px-selectable-box-radio',
|
|
30383
30809
|
}]
|
|
30384
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
30810
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
30385
30811
|
type: Input
|
|
30386
|
-
}],
|
|
30387
|
-
type: Input,
|
|
30388
|
-
args: ['direction--mobile']
|
|
30389
|
-
}], directionTablet: [{
|
|
30390
|
-
type: Input,
|
|
30391
|
-
args: ['direction--tablet']
|
|
30392
|
-
}], directionLaptop: [{
|
|
30393
|
-
type: Input,
|
|
30394
|
-
args: ['direction--laptop']
|
|
30395
|
-
}], directionDesktop: [{
|
|
30396
|
-
type: Input,
|
|
30397
|
-
args: ['direction--desktop']
|
|
30398
|
-
}], size: [{
|
|
30812
|
+
}], name: [{
|
|
30399
30813
|
type: Input
|
|
30400
|
-
}],
|
|
30814
|
+
}], value: [{
|
|
30401
30815
|
type: Input
|
|
30402
|
-
}],
|
|
30816
|
+
}], checked: [{
|
|
30817
|
+
type: Input
|
|
30818
|
+
}], disabled: [{
|
|
30403
30819
|
type: Input
|
|
30404
30820
|
}], grow: [{
|
|
30405
30821
|
type: Input
|
|
@@ -30537,6 +30953,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
30537
30953
|
}], stickyBottom: [{
|
|
30538
30954
|
type: Input,
|
|
30539
30955
|
args: ['sticky-bottom']
|
|
30956
|
+
}], change: [{
|
|
30957
|
+
type: Output
|
|
30540
30958
|
}] } });
|
|
30541
30959
|
/**
|
|
30542
30960
|
* @description Type-only wrapper for <px-skeleton>
|
|
@@ -32503,6 +32921,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
32503
32921
|
}], CLOSE_EVENT: [{
|
|
32504
32922
|
type: Output
|
|
32505
32923
|
}] } });
|
|
32924
|
+
/**
|
|
32925
|
+
* @description Type-only wrapper for <px-theme-switcher>
|
|
32926
|
+
*/
|
|
32927
|
+
class PxThemeSwitcher {
|
|
32928
|
+
elementRef;
|
|
32929
|
+
constructor(elementRef) {
|
|
32930
|
+
this.elementRef = elementRef;
|
|
32931
|
+
}
|
|
32932
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxThemeSwitcher, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
32933
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxThemeSwitcher, selector: "px-theme-switcher", ngImport: i0 });
|
|
32934
|
+
}
|
|
32935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxThemeSwitcher, decorators: [{
|
|
32936
|
+
type: Directive,
|
|
32937
|
+
args: [{
|
|
32938
|
+
selector: 'px-theme-switcher',
|
|
32939
|
+
}]
|
|
32940
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
32506
32941
|
/**
|
|
32507
32942
|
* @description Type-only wrapper for <px-sticky-container>
|
|
32508
32943
|
*/
|
|
@@ -32538,23 +32973,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
32538
32973
|
type: Input,
|
|
32539
32974
|
args: ['offset-right']
|
|
32540
32975
|
}] } });
|
|
32541
|
-
/**
|
|
32542
|
-
* @description Type-only wrapper for <px-theme-switcher>
|
|
32543
|
-
*/
|
|
32544
|
-
class PxThemeSwitcher {
|
|
32545
|
-
elementRef;
|
|
32546
|
-
constructor(elementRef) {
|
|
32547
|
-
this.elementRef = elementRef;
|
|
32548
|
-
}
|
|
32549
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxThemeSwitcher, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
32550
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxThemeSwitcher, selector: "px-theme-switcher", ngImport: i0 });
|
|
32551
|
-
}
|
|
32552
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxThemeSwitcher, decorators: [{
|
|
32553
|
-
type: Directive,
|
|
32554
|
-
args: [{
|
|
32555
|
-
selector: 'px-theme-switcher',
|
|
32556
|
-
}]
|
|
32557
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
32558
32976
|
/**
|
|
32559
32977
|
* @description Type-only wrapper for <px-switch>
|
|
32560
32978
|
*/
|
|
@@ -37433,7 +37851,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37433
37851
|
}] } });
|
|
37434
37852
|
class Lavender {
|
|
37435
37853
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
37436
|
-
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, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxRadio, PxRadioBase, PxRadioGroup,
|
|
37854
|
+
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, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSeparator, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxStickyContainer, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSeparator, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxStickyContainer, 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] });
|
|
37437
37855
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
37438
37856
|
}
|
|
37439
37857
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -37497,23 +37915,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37497
37915
|
PxCardActions,
|
|
37498
37916
|
PxCardContainer,
|
|
37499
37917
|
PxCardHeading,
|
|
37918
|
+
PxPrice,
|
|
37500
37919
|
PxRadio,
|
|
37501
37920
|
PxRadioBase,
|
|
37502
37921
|
PxRadioGroup,
|
|
37503
|
-
PxPrice,
|
|
37504
37922
|
PxRibbon,
|
|
37505
37923
|
PxSection,
|
|
37924
|
+
PxSeparator,
|
|
37506
37925
|
PxSelectableBox,
|
|
37507
37926
|
PxSelectableBoxCheckbox,
|
|
37508
37927
|
PxSelectableBoxRadio,
|
|
37509
|
-
PxSeparator,
|
|
37510
37928
|
PxSkeleton,
|
|
37511
37929
|
PxSpan,
|
|
37512
37930
|
PxSpinner,
|
|
37513
37931
|
PxStatus,
|
|
37514
37932
|
PxStatusCard,
|
|
37515
|
-
PxStickyContainer,
|
|
37516
37933
|
PxThemeSwitcher,
|
|
37934
|
+
PxStickyContainer,
|
|
37517
37935
|
PxSwitch,
|
|
37518
37936
|
PxTable,
|
|
37519
37937
|
PxTbody,
|
|
@@ -37599,23 +38017,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37599
38017
|
PxCardActions,
|
|
37600
38018
|
PxCardContainer,
|
|
37601
38019
|
PxCardHeading,
|
|
38020
|
+
PxPrice,
|
|
37602
38021
|
PxRadio,
|
|
37603
38022
|
PxRadioBase,
|
|
37604
38023
|
PxRadioGroup,
|
|
37605
|
-
PxPrice,
|
|
37606
38024
|
PxRibbon,
|
|
37607
38025
|
PxSection,
|
|
38026
|
+
PxSeparator,
|
|
37608
38027
|
PxSelectableBox,
|
|
37609
38028
|
PxSelectableBoxCheckbox,
|
|
37610
38029
|
PxSelectableBoxRadio,
|
|
37611
|
-
PxSeparator,
|
|
37612
38030
|
PxSkeleton,
|
|
37613
38031
|
PxSpan,
|
|
37614
38032
|
PxSpinner,
|
|
37615
38033
|
PxStatus,
|
|
37616
38034
|
PxStatusCard,
|
|
37617
|
-
PxStickyContainer,
|
|
37618
38035
|
PxThemeSwitcher,
|
|
38036
|
+
PxStickyContainer,
|
|
37619
38037
|
PxSwitch,
|
|
37620
38038
|
PxTable,
|
|
37621
38039
|
PxTbody,
|