@proximus/lavender-angular 1.4.9-alpha.1 → 1.4.9-alpha.3
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.
|
@@ -26031,28 +26031,66 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
26031
26031
|
}]
|
|
26032
26032
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
26033
26033
|
/**
|
|
26034
|
-
* @description Type-only wrapper for <px-
|
|
26034
|
+
* @description Type-only wrapper for <px-radio>
|
|
26035
26035
|
*/
|
|
26036
|
-
class
|
|
26036
|
+
class PxRadio {
|
|
26037
26037
|
elementRef;
|
|
26038
|
+
/** The validation state of the radio button. */
|
|
26039
|
+
set state(value) {
|
|
26040
|
+
this.elementRef.nativeElement['state'] = value;
|
|
26041
|
+
}
|
|
26042
|
+
get state() {
|
|
26043
|
+
return this.elementRef.nativeElement['state'];
|
|
26044
|
+
}
|
|
26045
|
+
/** The visual variant of the radio button. */
|
|
26038
26046
|
set variant(value) {
|
|
26039
26047
|
this.elementRef.nativeElement['variant'] = value;
|
|
26040
26048
|
}
|
|
26041
26049
|
get variant() {
|
|
26042
26050
|
return this.elementRef.nativeElement['variant'];
|
|
26043
26051
|
}
|
|
26044
|
-
|
|
26045
|
-
this.elementRef.nativeElement['size'] = value;
|
|
26046
|
-
}
|
|
26047
|
-
get size() {
|
|
26048
|
-
return this.elementRef.nativeElement['size'];
|
|
26049
|
-
}
|
|
26052
|
+
/** Whether to use inverted (dark background) styling. */
|
|
26050
26053
|
set inverted(value) {
|
|
26051
26054
|
this.elementRef.nativeElement['inverted'] = value;
|
|
26052
26055
|
}
|
|
26053
26056
|
get inverted() {
|
|
26054
26057
|
return this.elementRef.nativeElement['inverted'];
|
|
26055
26058
|
}
|
|
26059
|
+
/** Whether the radio button is checked. */
|
|
26060
|
+
set checked(value) {
|
|
26061
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
26062
|
+
}
|
|
26063
|
+
get checked() {
|
|
26064
|
+
return this.elementRef.nativeElement['checked'];
|
|
26065
|
+
}
|
|
26066
|
+
/** Whether the radio button is disabled. */
|
|
26067
|
+
set disabled(value) {
|
|
26068
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
26069
|
+
}
|
|
26070
|
+
get disabled() {
|
|
26071
|
+
return this.elementRef.nativeElement['disabled'];
|
|
26072
|
+
}
|
|
26073
|
+
/** Whether to apply hover styling. */
|
|
26074
|
+
set hover(value) {
|
|
26075
|
+
this.elementRef.nativeElement['hover'] = value;
|
|
26076
|
+
}
|
|
26077
|
+
get hover() {
|
|
26078
|
+
return this.elementRef.nativeElement['hover'];
|
|
26079
|
+
}
|
|
26080
|
+
/** The name of the radio button, used for form submission. */
|
|
26081
|
+
set name(value) {
|
|
26082
|
+
this.elementRef.nativeElement['name'] = value;
|
|
26083
|
+
}
|
|
26084
|
+
get name() {
|
|
26085
|
+
return this.elementRef.nativeElement['name'];
|
|
26086
|
+
}
|
|
26087
|
+
/** The value of the radio button, used for form submission. */
|
|
26088
|
+
set value(value) {
|
|
26089
|
+
this.elementRef.nativeElement['value'] = value;
|
|
26090
|
+
}
|
|
26091
|
+
get value() {
|
|
26092
|
+
return this.elementRef.nativeElement['value'];
|
|
26093
|
+
}
|
|
26056
26094
|
set grow(value) {
|
|
26057
26095
|
this.elementRef.nativeElement['grow'] = value;
|
|
26058
26096
|
}
|
|
@@ -26335,23 +26373,38 @@ class PxPrice {
|
|
|
26335
26373
|
get stickyBottom() {
|
|
26336
26374
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
26337
26375
|
}
|
|
26376
|
+
/** Fired when the radio button becomes checked. */
|
|
26377
|
+
change = new EventEmitter();
|
|
26338
26378
|
constructor(elementRef) {
|
|
26339
26379
|
this.elementRef = elementRef;
|
|
26380
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
26381
|
+
this.change.emit(e.detail);
|
|
26382
|
+
});
|
|
26340
26383
|
}
|
|
26341
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26342
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
26384
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26385
|
+
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 });
|
|
26343
26386
|
}
|
|
26344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, decorators: [{
|
|
26345
26388
|
type: Directive,
|
|
26346
26389
|
args: [{
|
|
26347
|
-
selector: 'px-
|
|
26390
|
+
selector: 'px-radio',
|
|
26348
26391
|
}]
|
|
26349
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
26392
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
26350
26393
|
type: Input
|
|
26351
|
-
}],
|
|
26394
|
+
}], variant: [{
|
|
26352
26395
|
type: Input
|
|
26353
26396
|
}], inverted: [{
|
|
26354
26397
|
type: Input
|
|
26398
|
+
}], checked: [{
|
|
26399
|
+
type: Input
|
|
26400
|
+
}], disabled: [{
|
|
26401
|
+
type: Input
|
|
26402
|
+
}], hover: [{
|
|
26403
|
+
type: Input
|
|
26404
|
+
}], name: [{
|
|
26405
|
+
type: Input
|
|
26406
|
+
}], value: [{
|
|
26407
|
+
type: Input
|
|
26355
26408
|
}], grow: [{
|
|
26356
26409
|
type: Input
|
|
26357
26410
|
}], growMobile: [{
|
|
@@ -26488,67 +26541,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
26488
26541
|
}], stickyBottom: [{
|
|
26489
26542
|
type: Input,
|
|
26490
26543
|
args: ['sticky-bottom']
|
|
26544
|
+
}], change: [{
|
|
26545
|
+
type: Output
|
|
26491
26546
|
}] } });
|
|
26492
26547
|
/**
|
|
26493
|
-
* @description Type-only wrapper for <px-radio>
|
|
26548
|
+
* @description Type-only wrapper for <px-radio-base>
|
|
26494
26549
|
*/
|
|
26495
|
-
class
|
|
26550
|
+
class PxRadioBase {
|
|
26496
26551
|
elementRef;
|
|
26497
|
-
/** The validation state of the radio button. */
|
|
26498
|
-
set state(value) {
|
|
26499
|
-
this.elementRef.nativeElement['state'] = value;
|
|
26500
|
-
}
|
|
26501
|
-
get state() {
|
|
26502
|
-
return this.elementRef.nativeElement['state'];
|
|
26503
|
-
}
|
|
26504
|
-
/** The visual variant of the radio button. */
|
|
26505
|
-
set variant(value) {
|
|
26506
|
-
this.elementRef.nativeElement['variant'] = value;
|
|
26507
|
-
}
|
|
26508
|
-
get variant() {
|
|
26509
|
-
return this.elementRef.nativeElement['variant'];
|
|
26510
|
-
}
|
|
26511
|
-
/** Whether to use inverted (dark background) styling. */
|
|
26512
|
-
set inverted(value) {
|
|
26513
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
26514
|
-
}
|
|
26515
|
-
get inverted() {
|
|
26516
|
-
return this.elementRef.nativeElement['inverted'];
|
|
26517
|
-
}
|
|
26518
|
-
/** Whether the radio button is checked. */
|
|
26519
|
-
set checked(value) {
|
|
26520
|
-
this.elementRef.nativeElement['checked'] = value;
|
|
26521
|
-
}
|
|
26522
|
-
get checked() {
|
|
26523
|
-
return this.elementRef.nativeElement['checked'];
|
|
26524
|
-
}
|
|
26525
|
-
/** Whether the radio button is disabled. */
|
|
26526
|
-
set disabled(value) {
|
|
26527
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
26528
|
-
}
|
|
26529
|
-
get disabled() {
|
|
26530
|
-
return this.elementRef.nativeElement['disabled'];
|
|
26531
|
-
}
|
|
26532
|
-
/** Whether to apply hover styling. */
|
|
26533
26552
|
set hover(value) {
|
|
26534
26553
|
this.elementRef.nativeElement['hover'] = value;
|
|
26535
26554
|
}
|
|
26536
26555
|
get hover() {
|
|
26537
26556
|
return this.elementRef.nativeElement['hover'];
|
|
26538
26557
|
}
|
|
26539
|
-
|
|
26540
|
-
|
|
26541
|
-
this.elementRef.nativeElement['name'] = value;
|
|
26542
|
-
}
|
|
26543
|
-
get name() {
|
|
26544
|
-
return this.elementRef.nativeElement['name'];
|
|
26545
|
-
}
|
|
26546
|
-
/** The value of the radio button, used for form submission. */
|
|
26547
|
-
set value(value) {
|
|
26548
|
-
this.elementRef.nativeElement['value'] = value;
|
|
26558
|
+
set inverted(value) {
|
|
26559
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
26549
26560
|
}
|
|
26550
|
-
get
|
|
26551
|
-
return this.elementRef.nativeElement['
|
|
26561
|
+
get inverted() {
|
|
26562
|
+
return this.elementRef.nativeElement['inverted'];
|
|
26552
26563
|
}
|
|
26553
26564
|
set grow(value) {
|
|
26554
26565
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -26832,38 +26843,21 @@ class PxRadio {
|
|
|
26832
26843
|
get stickyBottom() {
|
|
26833
26844
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
26834
26845
|
}
|
|
26835
|
-
/** Fired when the radio button becomes checked. */
|
|
26836
|
-
change = new EventEmitter();
|
|
26837
26846
|
constructor(elementRef) {
|
|
26838
26847
|
this.elementRef = elementRef;
|
|
26839
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
26840
|
-
this.change.emit(e.detail);
|
|
26841
|
-
});
|
|
26842
26848
|
}
|
|
26843
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26844
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
26849
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26850
|
+
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 });
|
|
26845
26851
|
}
|
|
26846
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26852
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, decorators: [{
|
|
26847
26853
|
type: Directive,
|
|
26848
26854
|
args: [{
|
|
26849
|
-
selector: 'px-radio',
|
|
26855
|
+
selector: 'px-radio-base',
|
|
26850
26856
|
}]
|
|
26851
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
26852
|
-
type: Input
|
|
26853
|
-
}], variant: [{
|
|
26857
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { hover: [{
|
|
26854
26858
|
type: Input
|
|
26855
26859
|
}], inverted: [{
|
|
26856
26860
|
type: Input
|
|
26857
|
-
}], checked: [{
|
|
26858
|
-
type: Input
|
|
26859
|
-
}], disabled: [{
|
|
26860
|
-
type: Input
|
|
26861
|
-
}], hover: [{
|
|
26862
|
-
type: Input
|
|
26863
|
-
}], name: [{
|
|
26864
|
-
type: Input
|
|
26865
|
-
}], value: [{
|
|
26866
|
-
type: Input
|
|
26867
26861
|
}], grow: [{
|
|
26868
26862
|
type: Input
|
|
26869
26863
|
}], growMobile: [{
|
|
@@ -27000,19 +26994,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
27000
26994
|
}], stickyBottom: [{
|
|
27001
26995
|
type: Input,
|
|
27002
26996
|
args: ['sticky-bottom']
|
|
27003
|
-
}], change: [{
|
|
27004
|
-
type: Output
|
|
27005
26997
|
}] } });
|
|
27006
26998
|
/**
|
|
27007
|
-
* @description Type-only wrapper for <px-radio-
|
|
26999
|
+
* @description Type-only wrapper for <px-radio-group>
|
|
27008
27000
|
*/
|
|
27009
|
-
class
|
|
27001
|
+
class PxRadioGroup {
|
|
27010
27002
|
elementRef;
|
|
27011
|
-
set
|
|
27012
|
-
this.elementRef.nativeElement['
|
|
27003
|
+
set name(value) {
|
|
27004
|
+
this.elementRef.nativeElement['name'] = value;
|
|
27013
27005
|
}
|
|
27014
|
-
get
|
|
27015
|
-
return this.elementRef.nativeElement['
|
|
27006
|
+
get name() {
|
|
27007
|
+
return this.elementRef.nativeElement['name'];
|
|
27008
|
+
}
|
|
27009
|
+
set gap(value) {
|
|
27010
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
27011
|
+
}
|
|
27012
|
+
get gap() {
|
|
27013
|
+
return this.elementRef.nativeElement['gap'];
|
|
27014
|
+
}
|
|
27015
|
+
set variant(value) {
|
|
27016
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
27017
|
+
}
|
|
27018
|
+
get variant() {
|
|
27019
|
+
return this.elementRef.nativeElement['variant'];
|
|
27020
|
+
}
|
|
27021
|
+
set required(value) {
|
|
27022
|
+
this.elementRef.nativeElement['required'] = value;
|
|
27023
|
+
}
|
|
27024
|
+
get required() {
|
|
27025
|
+
return this.elementRef.nativeElement['required'];
|
|
27026
|
+
}
|
|
27027
|
+
set disabled(value) {
|
|
27028
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
27029
|
+
}
|
|
27030
|
+
get disabled() {
|
|
27031
|
+
return this.elementRef.nativeElement['disabled'];
|
|
27032
|
+
}
|
|
27033
|
+
set state(value) {
|
|
27034
|
+
this.elementRef.nativeElement['state'] = value;
|
|
27035
|
+
}
|
|
27036
|
+
get state() {
|
|
27037
|
+
return this.elementRef.nativeElement['state'];
|
|
27016
27038
|
}
|
|
27017
27039
|
set inverted(value) {
|
|
27018
27040
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -27305,15 +27327,25 @@ class PxRadioBase {
|
|
|
27305
27327
|
constructor(elementRef) {
|
|
27306
27328
|
this.elementRef = elementRef;
|
|
27307
27329
|
}
|
|
27308
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27309
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
27330
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27331
|
+
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 });
|
|
27310
27332
|
}
|
|
27311
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27333
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, decorators: [{
|
|
27312
27334
|
type: Directive,
|
|
27313
27335
|
args: [{
|
|
27314
|
-
selector: 'px-radio-
|
|
27336
|
+
selector: 'px-radio-group',
|
|
27315
27337
|
}]
|
|
27316
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
27338
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
|
|
27339
|
+
type: Input
|
|
27340
|
+
}], gap: [{
|
|
27341
|
+
type: Input
|
|
27342
|
+
}], variant: [{
|
|
27343
|
+
type: Input
|
|
27344
|
+
}], required: [{
|
|
27345
|
+
type: Input
|
|
27346
|
+
}], disabled: [{
|
|
27347
|
+
type: Input
|
|
27348
|
+
}], state: [{
|
|
27317
27349
|
type: Input
|
|
27318
27350
|
}], inverted: [{
|
|
27319
27351
|
type: Input
|
|
@@ -27455,45 +27487,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
27455
27487
|
args: ['sticky-bottom']
|
|
27456
27488
|
}] } });
|
|
27457
27489
|
/**
|
|
27458
|
-
* @description Type-only wrapper for <px-
|
|
27490
|
+
* @description Type-only wrapper for <px-price>
|
|
27459
27491
|
*/
|
|
27460
|
-
class
|
|
27492
|
+
class PxPrice {
|
|
27461
27493
|
elementRef;
|
|
27462
|
-
set name(value) {
|
|
27463
|
-
this.elementRef.nativeElement['name'] = value;
|
|
27464
|
-
}
|
|
27465
|
-
get name() {
|
|
27466
|
-
return this.elementRef.nativeElement['name'];
|
|
27467
|
-
}
|
|
27468
|
-
set gap(value) {
|
|
27469
|
-
this.elementRef.nativeElement['gap'] = value;
|
|
27470
|
-
}
|
|
27471
|
-
get gap() {
|
|
27472
|
-
return this.elementRef.nativeElement['gap'];
|
|
27473
|
-
}
|
|
27474
27494
|
set variant(value) {
|
|
27475
27495
|
this.elementRef.nativeElement['variant'] = value;
|
|
27476
27496
|
}
|
|
27477
27497
|
get variant() {
|
|
27478
27498
|
return this.elementRef.nativeElement['variant'];
|
|
27479
27499
|
}
|
|
27480
|
-
set
|
|
27481
|
-
this.elementRef.nativeElement['
|
|
27482
|
-
}
|
|
27483
|
-
get required() {
|
|
27484
|
-
return this.elementRef.nativeElement['required'];
|
|
27485
|
-
}
|
|
27486
|
-
set disabled(value) {
|
|
27487
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
27488
|
-
}
|
|
27489
|
-
get disabled() {
|
|
27490
|
-
return this.elementRef.nativeElement['disabled'];
|
|
27491
|
-
}
|
|
27492
|
-
set state(value) {
|
|
27493
|
-
this.elementRef.nativeElement['state'] = value;
|
|
27500
|
+
set size(value) {
|
|
27501
|
+
this.elementRef.nativeElement['size'] = value;
|
|
27494
27502
|
}
|
|
27495
|
-
get
|
|
27496
|
-
return this.elementRef.nativeElement['
|
|
27503
|
+
get size() {
|
|
27504
|
+
return this.elementRef.nativeElement['size'];
|
|
27497
27505
|
}
|
|
27498
27506
|
set inverted(value) {
|
|
27499
27507
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -27786,25 +27794,17 @@ class PxRadioGroup {
|
|
|
27786
27794
|
constructor(elementRef) {
|
|
27787
27795
|
this.elementRef = elementRef;
|
|
27788
27796
|
}
|
|
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:
|
|
27797
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27798
|
+
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 });
|
|
27791
27799
|
}
|
|
27792
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, decorators: [{
|
|
27793
27801
|
type: Directive,
|
|
27794
27802
|
args: [{
|
|
27795
|
-
selector: 'px-
|
|
27803
|
+
selector: 'px-price',
|
|
27796
27804
|
}]
|
|
27797
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
27798
|
-
type: Input
|
|
27799
|
-
}], gap: [{
|
|
27800
|
-
type: Input
|
|
27801
|
-
}], variant: [{
|
|
27802
|
-
type: Input
|
|
27803
|
-
}], required: [{
|
|
27804
|
-
type: Input
|
|
27805
|
-
}], disabled: [{
|
|
27805
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
27806
27806
|
type: Input
|
|
27807
|
-
}],
|
|
27807
|
+
}], size: [{
|
|
27808
27808
|
type: Input
|
|
27809
27809
|
}], inverted: [{
|
|
27810
27810
|
type: Input
|
|
@@ -37408,7 +37408,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37408
37408
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
37409
37409
|
class Lavender {
|
|
37410
37410
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
37411
|
-
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,
|
|
37411
|
+
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, PxPrice, 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, 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, PxPrice, 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] });
|
|
37412
37412
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
37413
37413
|
}
|
|
37414
37414
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -37472,10 +37472,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37472
37472
|
PxCardActions,
|
|
37473
37473
|
PxCardContainer,
|
|
37474
37474
|
PxCardHeading,
|
|
37475
|
-
PxPrice,
|
|
37476
37475
|
PxRadio,
|
|
37477
37476
|
PxRadioBase,
|
|
37478
37477
|
PxRadioGroup,
|
|
37478
|
+
PxPrice,
|
|
37479
37479
|
PxRibbon,
|
|
37480
37480
|
PxSection,
|
|
37481
37481
|
PxSelectableBox,
|
|
@@ -37574,10 +37574,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37574
37574
|
PxCardActions,
|
|
37575
37575
|
PxCardContainer,
|
|
37576
37576
|
PxCardHeading,
|
|
37577
|
-
PxPrice,
|
|
37578
37577
|
PxRadio,
|
|
37579
37578
|
PxRadioBase,
|
|
37580
37579
|
PxRadioGroup,
|
|
37580
|
+
PxPrice,
|
|
37581
37581
|
PxRibbon,
|
|
37582
37582
|
PxSection,
|
|
37583
37583
|
PxSelectableBox,
|