@proximus/lavender-angular 1.4.9-alpha.3 → 1.4.9-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -26031,66 +26031,28 @@ 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-price>
|
|
26035
26035
|
*/
|
|
26036
|
-
class
|
|
26036
|
+
class PxPrice {
|
|
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. */
|
|
26046
26038
|
set variant(value) {
|
|
26047
26039
|
this.elementRef.nativeElement['variant'] = value;
|
|
26048
26040
|
}
|
|
26049
26041
|
get variant() {
|
|
26050
26042
|
return this.elementRef.nativeElement['variant'];
|
|
26051
26043
|
}
|
|
26052
|
-
|
|
26044
|
+
set size(value) {
|
|
26045
|
+
this.elementRef.nativeElement['size'] = value;
|
|
26046
|
+
}
|
|
26047
|
+
get size() {
|
|
26048
|
+
return this.elementRef.nativeElement['size'];
|
|
26049
|
+
}
|
|
26053
26050
|
set inverted(value) {
|
|
26054
26051
|
this.elementRef.nativeElement['inverted'] = value;
|
|
26055
26052
|
}
|
|
26056
26053
|
get inverted() {
|
|
26057
26054
|
return this.elementRef.nativeElement['inverted'];
|
|
26058
26055
|
}
|
|
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
|
-
}
|
|
26094
26056
|
set grow(value) {
|
|
26095
26057
|
this.elementRef.nativeElement['grow'] = value;
|
|
26096
26058
|
}
|
|
@@ -26373,38 +26335,23 @@ class PxRadio {
|
|
|
26373
26335
|
get stickyBottom() {
|
|
26374
26336
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
26375
26337
|
}
|
|
26376
|
-
/** Fired when the radio button becomes checked. */
|
|
26377
|
-
change = new EventEmitter();
|
|
26378
26338
|
constructor(elementRef) {
|
|
26379
26339
|
this.elementRef = elementRef;
|
|
26380
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
26381
|
-
this.change.emit(e.detail);
|
|
26382
|
-
});
|
|
26383
26340
|
}
|
|
26384
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26385
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
26341
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26342
|
+
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 });
|
|
26386
26343
|
}
|
|
26387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, decorators: [{
|
|
26388
26345
|
type: Directive,
|
|
26389
26346
|
args: [{
|
|
26390
|
-
selector: 'px-
|
|
26347
|
+
selector: 'px-price',
|
|
26391
26348
|
}]
|
|
26392
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
26349
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
26393
26350
|
type: Input
|
|
26394
|
-
}],
|
|
26351
|
+
}], size: [{
|
|
26395
26352
|
type: Input
|
|
26396
26353
|
}], inverted: [{
|
|
26397
26354
|
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
|
|
26408
26355
|
}], grow: [{
|
|
26409
26356
|
type: Input
|
|
26410
26357
|
}], growMobile: [{
|
|
@@ -26541,26 +26488,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
26541
26488
|
}], stickyBottom: [{
|
|
26542
26489
|
type: Input,
|
|
26543
26490
|
args: ['sticky-bottom']
|
|
26544
|
-
}], change: [{
|
|
26545
|
-
type: Output
|
|
26546
26491
|
}] } });
|
|
26547
26492
|
/**
|
|
26548
|
-
* @description Type-only wrapper for <px-radio
|
|
26493
|
+
* @description Type-only wrapper for <px-radio>
|
|
26549
26494
|
*/
|
|
26550
|
-
class
|
|
26495
|
+
class PxRadio {
|
|
26551
26496
|
elementRef;
|
|
26552
|
-
|
|
26553
|
-
|
|
26497
|
+
/** The validation state of the radio button. */
|
|
26498
|
+
set state(value) {
|
|
26499
|
+
this.elementRef.nativeElement['state'] = value;
|
|
26554
26500
|
}
|
|
26555
|
-
get
|
|
26556
|
-
return this.elementRef.nativeElement['
|
|
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;
|
|
26557
26507
|
}
|
|
26508
|
+
get variant() {
|
|
26509
|
+
return this.elementRef.nativeElement['variant'];
|
|
26510
|
+
}
|
|
26511
|
+
/** Whether to use inverted (dark background) styling. */
|
|
26558
26512
|
set inverted(value) {
|
|
26559
26513
|
this.elementRef.nativeElement['inverted'] = value;
|
|
26560
26514
|
}
|
|
26561
26515
|
get inverted() {
|
|
26562
26516
|
return this.elementRef.nativeElement['inverted'];
|
|
26563
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
|
+
set hover(value) {
|
|
26534
|
+
this.elementRef.nativeElement['hover'] = value;
|
|
26535
|
+
}
|
|
26536
|
+
get hover() {
|
|
26537
|
+
return this.elementRef.nativeElement['hover'];
|
|
26538
|
+
}
|
|
26539
|
+
/** The name of the radio button, used for form submission. */
|
|
26540
|
+
set name(value) {
|
|
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;
|
|
26549
|
+
}
|
|
26550
|
+
get value() {
|
|
26551
|
+
return this.elementRef.nativeElement['value'];
|
|
26552
|
+
}
|
|
26564
26553
|
set grow(value) {
|
|
26565
26554
|
this.elementRef.nativeElement['grow'] = value;
|
|
26566
26555
|
}
|
|
@@ -26843,21 +26832,38 @@ class PxRadioBase {
|
|
|
26843
26832
|
get stickyBottom() {
|
|
26844
26833
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
26845
26834
|
}
|
|
26835
|
+
/** Fired when the radio button becomes checked. */
|
|
26836
|
+
change = new EventEmitter();
|
|
26846
26837
|
constructor(elementRef) {
|
|
26847
26838
|
this.elementRef = elementRef;
|
|
26839
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
26840
|
+
this.change.emit(e.detail);
|
|
26841
|
+
});
|
|
26848
26842
|
}
|
|
26849
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26850
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
26843
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26844
|
+
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 });
|
|
26851
26845
|
}
|
|
26852
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
26846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, decorators: [{
|
|
26853
26847
|
type: Directive,
|
|
26854
26848
|
args: [{
|
|
26855
|
-
selector: 'px-radio
|
|
26849
|
+
selector: 'px-radio',
|
|
26856
26850
|
}]
|
|
26857
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
26851
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
26852
|
+
type: Input
|
|
26853
|
+
}], variant: [{
|
|
26858
26854
|
type: Input
|
|
26859
26855
|
}], inverted: [{
|
|
26860
26856
|
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
|
|
26861
26867
|
}], grow: [{
|
|
26862
26868
|
type: Input
|
|
26863
26869
|
}], growMobile: [{
|
|
@@ -26994,47 +27000,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
26994
27000
|
}], stickyBottom: [{
|
|
26995
27001
|
type: Input,
|
|
26996
27002
|
args: ['sticky-bottom']
|
|
27003
|
+
}], change: [{
|
|
27004
|
+
type: Output
|
|
26997
27005
|
}] } });
|
|
26998
27006
|
/**
|
|
26999
|
-
* @description Type-only wrapper for <px-radio-
|
|
27007
|
+
* @description Type-only wrapper for <px-radio-base>
|
|
27000
27008
|
*/
|
|
27001
|
-
class
|
|
27009
|
+
class PxRadioBase {
|
|
27002
27010
|
elementRef;
|
|
27003
|
-
set
|
|
27004
|
-
this.elementRef.nativeElement['
|
|
27005
|
-
}
|
|
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;
|
|
27011
|
+
set hover(value) {
|
|
27012
|
+
this.elementRef.nativeElement['hover'] = value;
|
|
27035
27013
|
}
|
|
27036
|
-
get
|
|
27037
|
-
return this.elementRef.nativeElement['
|
|
27014
|
+
get hover() {
|
|
27015
|
+
return this.elementRef.nativeElement['hover'];
|
|
27038
27016
|
}
|
|
27039
27017
|
set inverted(value) {
|
|
27040
27018
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -27327,25 +27305,15 @@ class PxRadioGroup {
|
|
|
27327
27305
|
constructor(elementRef) {
|
|
27328
27306
|
this.elementRef = elementRef;
|
|
27329
27307
|
}
|
|
27330
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27331
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
27308
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27309
|
+
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 });
|
|
27332
27310
|
}
|
|
27333
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27311
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, decorators: [{
|
|
27334
27312
|
type: Directive,
|
|
27335
27313
|
args: [{
|
|
27336
|
-
selector: 'px-radio-
|
|
27314
|
+
selector: 'px-radio-base',
|
|
27337
27315
|
}]
|
|
27338
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
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: [{
|
|
27316
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { hover: [{
|
|
27349
27317
|
type: Input
|
|
27350
27318
|
}], inverted: [{
|
|
27351
27319
|
type: Input
|
|
@@ -27487,21 +27455,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
27487
27455
|
args: ['sticky-bottom']
|
|
27488
27456
|
}] } });
|
|
27489
27457
|
/**
|
|
27490
|
-
* @description Type-only wrapper for <px-
|
|
27458
|
+
* @description Type-only wrapper for <px-radio-group>
|
|
27491
27459
|
*/
|
|
27492
|
-
class
|
|
27460
|
+
class PxRadioGroup {
|
|
27493
27461
|
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
|
+
}
|
|
27494
27474
|
set variant(value) {
|
|
27495
27475
|
this.elementRef.nativeElement['variant'] = value;
|
|
27496
27476
|
}
|
|
27497
27477
|
get variant() {
|
|
27498
27478
|
return this.elementRef.nativeElement['variant'];
|
|
27499
27479
|
}
|
|
27500
|
-
set
|
|
27501
|
-
this.elementRef.nativeElement['
|
|
27480
|
+
set required(value) {
|
|
27481
|
+
this.elementRef.nativeElement['required'] = value;
|
|
27502
27482
|
}
|
|
27503
|
-
get
|
|
27504
|
-
return this.elementRef.nativeElement['
|
|
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;
|
|
27494
|
+
}
|
|
27495
|
+
get state() {
|
|
27496
|
+
return this.elementRef.nativeElement['state'];
|
|
27505
27497
|
}
|
|
27506
27498
|
set inverted(value) {
|
|
27507
27499
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -27794,17 +27786,25 @@ class PxPrice {
|
|
|
27794
27786
|
constructor(elementRef) {
|
|
27795
27787
|
this.elementRef = elementRef;
|
|
27796
27788
|
}
|
|
27797
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27798
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
27789
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27790
|
+
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 });
|
|
27799
27791
|
}
|
|
27800
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
27792
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, decorators: [{
|
|
27801
27793
|
type: Directive,
|
|
27802
27794
|
args: [{
|
|
27803
|
-
selector: 'px-
|
|
27795
|
+
selector: 'px-radio-group',
|
|
27804
27796
|
}]
|
|
27805
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
27797
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
|
|
27806
27798
|
type: Input
|
|
27807
|
-
}],
|
|
27799
|
+
}], gap: [{
|
|
27800
|
+
type: Input
|
|
27801
|
+
}], variant: [{
|
|
27802
|
+
type: Input
|
|
27803
|
+
}], required: [{
|
|
27804
|
+
type: Input
|
|
27805
|
+
}], disabled: [{
|
|
27806
|
+
type: Input
|
|
27807
|
+
}], state: [{
|
|
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, PxRadio, PxRadioBase, PxRadioGroup,
|
|
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, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, 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,
|
|
37475
37476
|
PxRadio,
|
|
37476
37477
|
PxRadioBase,
|
|
37477
37478
|
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,
|
|
37577
37578
|
PxRadio,
|
|
37578
37579
|
PxRadioBase,
|
|
37579
37580
|
PxRadioGroup,
|
|
37580
|
-
PxPrice,
|
|
37581
37581
|
PxRibbon,
|
|
37582
37582
|
PxSection,
|
|
37583
37583
|
PxSelectableBox,
|