@proximus/lavender-angular 1.4.9-alpha.3 → 1.4.9-alpha.7

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.
@@ -5868,27 +5868,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
5868
5868
  */
5869
5869
  class PxCarousel {
5870
5870
  elementRef;
5871
- set visibleItems(value) {
5872
- this.elementRef.nativeElement['visibleItems'] = value;
5873
- }
5874
- get visibleItems() {
5875
- return this.elementRef.nativeElement['visibleItems'];
5876
- }
5877
5871
  constructor(elementRef) {
5878
5872
  this.elementRef = elementRef;
5879
5873
  }
5880
5874
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
5881
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarousel, selector: "px-carousel", inputs: { visibleItems: ["visible-items", "visibleItems"] }, ngImport: i0 });
5875
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarousel, selector: "px-carousel", ngImport: i0 });
5882
5876
  }
5883
5877
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, decorators: [{
5884
5878
  type: Directive,
5885
5879
  args: [{
5886
5880
  selector: 'px-carousel',
5887
5881
  }]
5888
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { visibleItems: [{
5889
- type: Input,
5890
- args: ['visible-items']
5891
- }] } });
5882
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
5892
5883
  /**
5893
5884
  * @description Type-only wrapper for <px-carousel-item>
5894
5885
  */
@@ -26031,66 +26022,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
26031
26022
  }]
26032
26023
  }], ctorParameters: () => [{ type: i0.ElementRef }] });
26033
26024
  /**
26034
- * @description Type-only wrapper for <px-radio>
26025
+ * @description Type-only wrapper for <px-price>
26035
26026
  */
26036
- class PxRadio {
26027
+ class PxPrice {
26037
26028
  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
26029
  set variant(value) {
26047
26030
  this.elementRef.nativeElement['variant'] = value;
26048
26031
  }
26049
26032
  get variant() {
26050
26033
  return this.elementRef.nativeElement['variant'];
26051
26034
  }
26052
- /** Whether to use inverted (dark background) styling. */
26035
+ set size(value) {
26036
+ this.elementRef.nativeElement['size'] = value;
26037
+ }
26038
+ get size() {
26039
+ return this.elementRef.nativeElement['size'];
26040
+ }
26053
26041
  set inverted(value) {
26054
26042
  this.elementRef.nativeElement['inverted'] = value;
26055
26043
  }
26056
26044
  get inverted() {
26057
26045
  return this.elementRef.nativeElement['inverted'];
26058
26046
  }
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
26047
  set grow(value) {
26095
26048
  this.elementRef.nativeElement['grow'] = value;
26096
26049
  }
@@ -26373,38 +26326,23 @@ class PxRadio {
26373
26326
  get stickyBottom() {
26374
26327
  return this.elementRef.nativeElement['stickyBottom'];
26375
26328
  }
26376
- /** Fired when the radio button becomes checked. */
26377
- change = new EventEmitter();
26378
26329
  constructor(elementRef) {
26379
26330
  this.elementRef = elementRef;
26380
- this.elementRef.nativeElement.addEventListener('change', (e) => {
26381
- this.change.emit(e.detail);
26382
- });
26383
26331
  }
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 });
26332
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
26333
+ 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
26334
  }
26387
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, decorators: [{
26335
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, decorators: [{
26388
26336
  type: Directive,
26389
26337
  args: [{
26390
- selector: 'px-radio',
26338
+ selector: 'px-price',
26391
26339
  }]
26392
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
26340
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
26393
26341
  type: Input
26394
- }], variant: [{
26342
+ }], size: [{
26395
26343
  type: Input
26396
26344
  }], inverted: [{
26397
26345
  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
26346
  }], grow: [{
26409
26347
  type: Input
26410
26348
  }], growMobile: [{
@@ -26541,26 +26479,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
26541
26479
  }], stickyBottom: [{
26542
26480
  type: Input,
26543
26481
  args: ['sticky-bottom']
26544
- }], change: [{
26545
- type: Output
26546
26482
  }] } });
26547
26483
  /**
26548
- * @description Type-only wrapper for <px-radio-base>
26484
+ * @description Type-only wrapper for <px-radio>
26549
26485
  */
26550
- class PxRadioBase {
26486
+ class PxRadio {
26551
26487
  elementRef;
26552
- set hover(value) {
26553
- this.elementRef.nativeElement['hover'] = value;
26488
+ /** The validation state of the radio button. */
26489
+ set state(value) {
26490
+ this.elementRef.nativeElement['state'] = value;
26554
26491
  }
26555
- get hover() {
26556
- return this.elementRef.nativeElement['hover'];
26492
+ get state() {
26493
+ return this.elementRef.nativeElement['state'];
26494
+ }
26495
+ /** The visual variant of the radio button. */
26496
+ set variant(value) {
26497
+ this.elementRef.nativeElement['variant'] = value;
26557
26498
  }
26499
+ get variant() {
26500
+ return this.elementRef.nativeElement['variant'];
26501
+ }
26502
+ /** Whether to use inverted (dark background) styling. */
26558
26503
  set inverted(value) {
26559
26504
  this.elementRef.nativeElement['inverted'] = value;
26560
26505
  }
26561
26506
  get inverted() {
26562
26507
  return this.elementRef.nativeElement['inverted'];
26563
26508
  }
26509
+ /** Whether the radio button is checked. */
26510
+ set checked(value) {
26511
+ this.elementRef.nativeElement['checked'] = value;
26512
+ }
26513
+ get checked() {
26514
+ return this.elementRef.nativeElement['checked'];
26515
+ }
26516
+ /** Whether the radio button is disabled. */
26517
+ set disabled(value) {
26518
+ this.elementRef.nativeElement['disabled'] = value;
26519
+ }
26520
+ get disabled() {
26521
+ return this.elementRef.nativeElement['disabled'];
26522
+ }
26523
+ /** Whether to apply hover styling. */
26524
+ set hover(value) {
26525
+ this.elementRef.nativeElement['hover'] = value;
26526
+ }
26527
+ get hover() {
26528
+ return this.elementRef.nativeElement['hover'];
26529
+ }
26530
+ /** The name of the radio button, used for form submission. */
26531
+ set name(value) {
26532
+ this.elementRef.nativeElement['name'] = value;
26533
+ }
26534
+ get name() {
26535
+ return this.elementRef.nativeElement['name'];
26536
+ }
26537
+ /** The value of the radio button, used for form submission. */
26538
+ set value(value) {
26539
+ this.elementRef.nativeElement['value'] = value;
26540
+ }
26541
+ get value() {
26542
+ return this.elementRef.nativeElement['value'];
26543
+ }
26564
26544
  set grow(value) {
26565
26545
  this.elementRef.nativeElement['grow'] = value;
26566
26546
  }
@@ -26843,21 +26823,38 @@ class PxRadioBase {
26843
26823
  get stickyBottom() {
26844
26824
  return this.elementRef.nativeElement['stickyBottom'];
26845
26825
  }
26826
+ /** Fired when the radio button becomes checked. */
26827
+ change = new EventEmitter();
26846
26828
  constructor(elementRef) {
26847
26829
  this.elementRef = elementRef;
26830
+ this.elementRef.nativeElement.addEventListener('change', (e) => {
26831
+ this.change.emit(e.detail);
26832
+ });
26848
26833
  }
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 });
26834
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
26835
+ 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
26836
  }
26852
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, decorators: [{
26837
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, decorators: [{
26853
26838
  type: Directive,
26854
26839
  args: [{
26855
- selector: 'px-radio-base',
26840
+ selector: 'px-radio',
26856
26841
  }]
26857
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { hover: [{
26842
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
26843
+ type: Input
26844
+ }], variant: [{
26858
26845
  type: Input
26859
26846
  }], inverted: [{
26860
26847
  type: Input
26848
+ }], checked: [{
26849
+ type: Input
26850
+ }], disabled: [{
26851
+ type: Input
26852
+ }], hover: [{
26853
+ type: Input
26854
+ }], name: [{
26855
+ type: Input
26856
+ }], value: [{
26857
+ type: Input
26861
26858
  }], grow: [{
26862
26859
  type: Input
26863
26860
  }], growMobile: [{
@@ -26994,47 +26991,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
26994
26991
  }], stickyBottom: [{
26995
26992
  type: Input,
26996
26993
  args: ['sticky-bottom']
26994
+ }], change: [{
26995
+ type: Output
26997
26996
  }] } });
26998
26997
  /**
26999
- * @description Type-only wrapper for <px-radio-group>
26998
+ * @description Type-only wrapper for <px-radio-base>
27000
26999
  */
27001
- class PxRadioGroup {
27000
+ class PxRadioBase {
27002
27001
  elementRef;
27003
- set name(value) {
27004
- this.elementRef.nativeElement['name'] = value;
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;
27002
+ set hover(value) {
27003
+ this.elementRef.nativeElement['hover'] = value;
27035
27004
  }
27036
- get state() {
27037
- return this.elementRef.nativeElement['state'];
27005
+ get hover() {
27006
+ return this.elementRef.nativeElement['hover'];
27038
27007
  }
27039
27008
  set inverted(value) {
27040
27009
  this.elementRef.nativeElement['inverted'] = value;
@@ -27327,25 +27296,15 @@ class PxRadioGroup {
27327
27296
  constructor(elementRef) {
27328
27297
  this.elementRef = elementRef;
27329
27298
  }
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 });
27299
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
27300
+ 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
27301
  }
27333
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, decorators: [{
27302
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, decorators: [{
27334
27303
  type: Directive,
27335
27304
  args: [{
27336
- selector: 'px-radio-group',
27305
+ selector: 'px-radio-base',
27337
27306
  }]
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: [{
27307
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { hover: [{
27349
27308
  type: Input
27350
27309
  }], inverted: [{
27351
27310
  type: Input
@@ -27487,21 +27446,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
27487
27446
  args: ['sticky-bottom']
27488
27447
  }] } });
27489
27448
  /**
27490
- * @description Type-only wrapper for <px-price>
27449
+ * @description Type-only wrapper for <px-radio-group>
27491
27450
  */
27492
- class PxPrice {
27451
+ class PxRadioGroup {
27493
27452
  elementRef;
27453
+ set name(value) {
27454
+ this.elementRef.nativeElement['name'] = value;
27455
+ }
27456
+ get name() {
27457
+ return this.elementRef.nativeElement['name'];
27458
+ }
27459
+ set gap(value) {
27460
+ this.elementRef.nativeElement['gap'] = value;
27461
+ }
27462
+ get gap() {
27463
+ return this.elementRef.nativeElement['gap'];
27464
+ }
27494
27465
  set variant(value) {
27495
27466
  this.elementRef.nativeElement['variant'] = value;
27496
27467
  }
27497
27468
  get variant() {
27498
27469
  return this.elementRef.nativeElement['variant'];
27499
27470
  }
27500
- set size(value) {
27501
- this.elementRef.nativeElement['size'] = value;
27471
+ set required(value) {
27472
+ this.elementRef.nativeElement['required'] = value;
27502
27473
  }
27503
- get size() {
27504
- return this.elementRef.nativeElement['size'];
27474
+ get required() {
27475
+ return this.elementRef.nativeElement['required'];
27476
+ }
27477
+ set disabled(value) {
27478
+ this.elementRef.nativeElement['disabled'] = value;
27479
+ }
27480
+ get disabled() {
27481
+ return this.elementRef.nativeElement['disabled'];
27482
+ }
27483
+ set state(value) {
27484
+ this.elementRef.nativeElement['state'] = value;
27485
+ }
27486
+ get state() {
27487
+ return this.elementRef.nativeElement['state'];
27505
27488
  }
27506
27489
  set inverted(value) {
27507
27490
  this.elementRef.nativeElement['inverted'] = value;
@@ -27794,17 +27777,25 @@ class PxPrice {
27794
27777
  constructor(elementRef) {
27795
27778
  this.elementRef = elementRef;
27796
27779
  }
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 });
27780
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
27781
+ 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
27782
  }
27800
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, decorators: [{
27783
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, decorators: [{
27801
27784
  type: Directive,
27802
27785
  args: [{
27803
- selector: 'px-price',
27786
+ selector: 'px-radio-group',
27804
27787
  }]
27805
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
27788
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
27806
27789
  type: Input
27807
- }], size: [{
27790
+ }], gap: [{
27791
+ type: Input
27792
+ }], variant: [{
27793
+ type: Input
27794
+ }], required: [{
27795
+ type: Input
27796
+ }], disabled: [{
27797
+ type: Input
27798
+ }], state: [{
27808
27799
  type: Input
27809
27800
  }], inverted: [{
27810
27801
  type: Input
@@ -37408,7 +37399,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
37408
37399
  }], ctorParameters: () => [{ type: i0.ElementRef }] });
37409
37400
  class Lavender {
37410
37401
  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, 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] });
37402
+ 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
37403
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
37413
37404
  }
37414
37405
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
@@ -37472,10 +37463,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
37472
37463
  PxCardActions,
37473
37464
  PxCardContainer,
37474
37465
  PxCardHeading,
37466
+ PxPrice,
37475
37467
  PxRadio,
37476
37468
  PxRadioBase,
37477
37469
  PxRadioGroup,
37478
- PxPrice,
37479
37470
  PxRibbon,
37480
37471
  PxSection,
37481
37472
  PxSelectableBox,
@@ -37574,10 +37565,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
37574
37565
  PxCardActions,
37575
37566
  PxCardContainer,
37576
37567
  PxCardHeading,
37568
+ PxPrice,
37577
37569
  PxRadio,
37578
37570
  PxRadioBase,
37579
37571
  PxRadioGroup,
37580
- PxPrice,
37581
37572
  PxRibbon,
37582
37573
  PxSection,
37583
37574
  PxSelectableBox,