@proximus/lavender-angular 1.4.10-alpha.9 → 2.0.0-alpha.101

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.
@@ -12194,11 +12194,11 @@ class PxDrawer {
12194
12194
  get open() {
12195
12195
  return this.elementRef.nativeElement['open'];
12196
12196
  }
12197
- set ariaLabelCloseButton(value) {
12198
- this.elementRef.nativeElement['ariaLabelCloseButton'] = value;
12197
+ set closeButtonAriaLabel(value) {
12198
+ this.elementRef.nativeElement['closeButtonAriaLabel'] = value;
12199
12199
  }
12200
- get ariaLabelCloseButton() {
12201
- return this.elementRef.nativeElement['ariaLabelCloseButton'];
12200
+ get closeButtonAriaLabel() {
12201
+ return this.elementRef.nativeElement['closeButtonAriaLabel'];
12202
12202
  }
12203
12203
  set openedby(value) {
12204
12204
  this.elementRef.nativeElement['openedby'] = value;
@@ -12220,7 +12220,7 @@ class PxDrawer {
12220
12220
  });
12221
12221
  }
12222
12222
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
12223
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby", closedby: "closedby" }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
12223
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", closeButtonAriaLabel: ["close-button-aria-label", "closeButtonAriaLabel"], openedby: "openedby", closedby: "closedby" }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
12224
12224
  }
12225
12225
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, decorators: [{
12226
12226
  type: Directive,
@@ -12229,9 +12229,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
12229
12229
  }]
12230
12230
  }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
12231
12231
  type: Input
12232
- }], ariaLabelCloseButton: [{
12232
+ }], closeButtonAriaLabel: [{
12233
12233
  type: Input,
12234
- args: ['aria-label-close-button']
12234
+ args: ['close-button-aria-label']
12235
12235
  }], openedby: [{
12236
12236
  type: Input
12237
12237
  }], closedby: [{
@@ -26023,66 +26023,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
26023
26023
  }]
26024
26024
  }], ctorParameters: () => [{ type: i0.ElementRef }] });
26025
26025
  /**
26026
- * @description Type-only wrapper for <px-radio>
26026
+ * @description Type-only wrapper for <px-price>
26027
26027
  */
26028
- class PxRadio {
26028
+ class PxPrice {
26029
26029
  elementRef;
26030
- /** The validation state of the radio button. */
26031
- set state(value) {
26032
- this.elementRef.nativeElement['state'] = value;
26033
- }
26034
- get state() {
26035
- return this.elementRef.nativeElement['state'];
26036
- }
26037
- /** The visual variant of the radio button. */
26038
26030
  set variant(value) {
26039
26031
  this.elementRef.nativeElement['variant'] = value;
26040
26032
  }
26041
26033
  get variant() {
26042
26034
  return this.elementRef.nativeElement['variant'];
26043
26035
  }
26044
- /** Whether to use inverted (dark background) styling. */
26036
+ set size(value) {
26037
+ this.elementRef.nativeElement['size'] = value;
26038
+ }
26039
+ get size() {
26040
+ return this.elementRef.nativeElement['size'];
26041
+ }
26045
26042
  set inverted(value) {
26046
26043
  this.elementRef.nativeElement['inverted'] = value;
26047
26044
  }
26048
26045
  get inverted() {
26049
26046
  return this.elementRef.nativeElement['inverted'];
26050
26047
  }
26051
- /** Whether the radio button is checked. */
26052
- set checked(value) {
26053
- this.elementRef.nativeElement['checked'] = value;
26054
- }
26055
- get checked() {
26056
- return this.elementRef.nativeElement['checked'];
26057
- }
26058
- /** Whether the radio button is disabled. */
26059
- set disabled(value) {
26060
- this.elementRef.nativeElement['disabled'] = value;
26061
- }
26062
- get disabled() {
26063
- return this.elementRef.nativeElement['disabled'];
26064
- }
26065
- /** Whether to apply hover styling. */
26066
- set hover(value) {
26067
- this.elementRef.nativeElement['hover'] = value;
26068
- }
26069
- get hover() {
26070
- return this.elementRef.nativeElement['hover'];
26071
- }
26072
- /** The name of the radio button, used for form submission. */
26073
- set name(value) {
26074
- this.elementRef.nativeElement['name'] = value;
26075
- }
26076
- get name() {
26077
- return this.elementRef.nativeElement['name'];
26078
- }
26079
- /** The value of the radio button, used for form submission. */
26080
- set value(value) {
26081
- this.elementRef.nativeElement['value'] = value;
26082
- }
26083
- get value() {
26084
- return this.elementRef.nativeElement['value'];
26085
- }
26086
26048
  set grow(value) {
26087
26049
  this.elementRef.nativeElement['grow'] = value;
26088
26050
  }
@@ -26365,38 +26327,23 @@ class PxRadio {
26365
26327
  get stickyBottom() {
26366
26328
  return this.elementRef.nativeElement['stickyBottom'];
26367
26329
  }
26368
- /** Fired when the radio button becomes checked. */
26369
- change = new EventEmitter();
26370
26330
  constructor(elementRef) {
26371
26331
  this.elementRef = elementRef;
26372
- this.elementRef.nativeElement.addEventListener('change', (e) => {
26373
- this.change.emit(e.detail);
26374
- });
26375
26332
  }
26376
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
26377
- 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 });
26333
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
26334
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxPrice, selector: "px-price", inputs: { variant: "variant", size: "size", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, ngImport: i0 });
26378
26335
  }
26379
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, decorators: [{
26336
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, decorators: [{
26380
26337
  type: Directive,
26381
26338
  args: [{
26382
- selector: 'px-radio',
26339
+ selector: 'px-price',
26383
26340
  }]
26384
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
26341
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
26385
26342
  type: Input
26386
- }], variant: [{
26343
+ }], size: [{
26387
26344
  type: Input
26388
26345
  }], inverted: [{
26389
26346
  type: Input
26390
- }], checked: [{
26391
- type: Input
26392
- }], disabled: [{
26393
- type: Input
26394
- }], hover: [{
26395
- type: Input
26396
- }], name: [{
26397
- type: Input
26398
- }], value: [{
26399
- type: Input
26400
26347
  }], grow: [{
26401
26348
  type: Input
26402
26349
  }], growMobile: [{
@@ -26533,26 +26480,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
26533
26480
  }], stickyBottom: [{
26534
26481
  type: Input,
26535
26482
  args: ['sticky-bottom']
26536
- }], change: [{
26537
- type: Output
26538
26483
  }] } });
26539
26484
  /**
26540
- * @description Type-only wrapper for <px-radio-base>
26485
+ * @description Type-only wrapper for <px-radio>
26541
26486
  */
26542
- class PxRadioBase {
26487
+ class PxRadio {
26543
26488
  elementRef;
26544
- set hover(value) {
26545
- this.elementRef.nativeElement['hover'] = value;
26489
+ /** The validation state of the radio button. */
26490
+ set state(value) {
26491
+ this.elementRef.nativeElement['state'] = value;
26546
26492
  }
26547
- get hover() {
26548
- return this.elementRef.nativeElement['hover'];
26493
+ get state() {
26494
+ return this.elementRef.nativeElement['state'];
26495
+ }
26496
+ /** The visual variant of the radio button. */
26497
+ set variant(value) {
26498
+ this.elementRef.nativeElement['variant'] = value;
26549
26499
  }
26500
+ get variant() {
26501
+ return this.elementRef.nativeElement['variant'];
26502
+ }
26503
+ /** Whether to use inverted (dark background) styling. */
26550
26504
  set inverted(value) {
26551
26505
  this.elementRef.nativeElement['inverted'] = value;
26552
26506
  }
26553
26507
  get inverted() {
26554
26508
  return this.elementRef.nativeElement['inverted'];
26555
26509
  }
26510
+ /** Whether the radio button is checked. */
26511
+ set checked(value) {
26512
+ this.elementRef.nativeElement['checked'] = value;
26513
+ }
26514
+ get checked() {
26515
+ return this.elementRef.nativeElement['checked'];
26516
+ }
26517
+ /** Whether the radio button is disabled. */
26518
+ set disabled(value) {
26519
+ this.elementRef.nativeElement['disabled'] = value;
26520
+ }
26521
+ get disabled() {
26522
+ return this.elementRef.nativeElement['disabled'];
26523
+ }
26524
+ /** Whether to apply hover styling. */
26525
+ set hover(value) {
26526
+ this.elementRef.nativeElement['hover'] = value;
26527
+ }
26528
+ get hover() {
26529
+ return this.elementRef.nativeElement['hover'];
26530
+ }
26531
+ /** The name of the radio button, used for form submission. */
26532
+ set name(value) {
26533
+ this.elementRef.nativeElement['name'] = value;
26534
+ }
26535
+ get name() {
26536
+ return this.elementRef.nativeElement['name'];
26537
+ }
26538
+ /** The value of the radio button, used for form submission. */
26539
+ set value(value) {
26540
+ this.elementRef.nativeElement['value'] = value;
26541
+ }
26542
+ get value() {
26543
+ return this.elementRef.nativeElement['value'];
26544
+ }
26556
26545
  set grow(value) {
26557
26546
  this.elementRef.nativeElement['grow'] = value;
26558
26547
  }
@@ -26835,21 +26824,38 @@ class PxRadioBase {
26835
26824
  get stickyBottom() {
26836
26825
  return this.elementRef.nativeElement['stickyBottom'];
26837
26826
  }
26827
+ /** Fired when the radio button becomes checked. */
26828
+ change = new EventEmitter();
26838
26829
  constructor(elementRef) {
26839
26830
  this.elementRef = elementRef;
26831
+ this.elementRef.nativeElement.addEventListener('change', (e) => {
26832
+ this.change.emit(e.detail);
26833
+ });
26840
26834
  }
26841
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
26842
- 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 });
26835
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
26836
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxRadio, selector: "px-radio", inputs: { state: "state", variant: "variant", inverted: "inverted", checked: "checked", disabled: "disabled", hover: "hover", name: "name", value: "value", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, outputs: { change: "change" }, ngImport: i0 });
26843
26837
  }
26844
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, decorators: [{
26838
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, decorators: [{
26845
26839
  type: Directive,
26846
26840
  args: [{
26847
- selector: 'px-radio-base',
26841
+ selector: 'px-radio',
26848
26842
  }]
26849
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { hover: [{
26843
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
26844
+ type: Input
26845
+ }], variant: [{
26850
26846
  type: Input
26851
26847
  }], inverted: [{
26852
26848
  type: Input
26849
+ }], checked: [{
26850
+ type: Input
26851
+ }], disabled: [{
26852
+ type: Input
26853
+ }], hover: [{
26854
+ type: Input
26855
+ }], name: [{
26856
+ type: Input
26857
+ }], value: [{
26858
+ type: Input
26853
26859
  }], grow: [{
26854
26860
  type: Input
26855
26861
  }], growMobile: [{
@@ -26986,47 +26992,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
26986
26992
  }], stickyBottom: [{
26987
26993
  type: Input,
26988
26994
  args: ['sticky-bottom']
26995
+ }], change: [{
26996
+ type: Output
26989
26997
  }] } });
26990
26998
  /**
26991
- * @description Type-only wrapper for <px-radio-group>
26999
+ * @description Type-only wrapper for <px-radio-base>
26992
27000
  */
26993
- class PxRadioGroup {
27001
+ class PxRadioBase {
26994
27002
  elementRef;
26995
- set name(value) {
26996
- this.elementRef.nativeElement['name'] = value;
26997
- }
26998
- get name() {
26999
- return this.elementRef.nativeElement['name'];
27000
- }
27001
- set gap(value) {
27002
- this.elementRef.nativeElement['gap'] = value;
27003
- }
27004
- get gap() {
27005
- return this.elementRef.nativeElement['gap'];
27006
- }
27007
- set variant(value) {
27008
- this.elementRef.nativeElement['variant'] = value;
27009
- }
27010
- get variant() {
27011
- return this.elementRef.nativeElement['variant'];
27012
- }
27013
- set required(value) {
27014
- this.elementRef.nativeElement['required'] = value;
27015
- }
27016
- get required() {
27017
- return this.elementRef.nativeElement['required'];
27018
- }
27019
- set disabled(value) {
27020
- this.elementRef.nativeElement['disabled'] = value;
27021
- }
27022
- get disabled() {
27023
- return this.elementRef.nativeElement['disabled'];
27024
- }
27025
- set state(value) {
27026
- this.elementRef.nativeElement['state'] = value;
27003
+ set hover(value) {
27004
+ this.elementRef.nativeElement['hover'] = value;
27027
27005
  }
27028
- get state() {
27029
- return this.elementRef.nativeElement['state'];
27006
+ get hover() {
27007
+ return this.elementRef.nativeElement['hover'];
27030
27008
  }
27031
27009
  set inverted(value) {
27032
27010
  this.elementRef.nativeElement['inverted'] = value;
@@ -27319,25 +27297,15 @@ class PxRadioGroup {
27319
27297
  constructor(elementRef) {
27320
27298
  this.elementRef = elementRef;
27321
27299
  }
27322
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
27323
- 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 });
27300
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
27301
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxRadioBase, selector: "px-radio-base", inputs: { hover: "hover", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, ngImport: i0 });
27324
27302
  }
27325
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, decorators: [{
27303
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioBase, decorators: [{
27326
27304
  type: Directive,
27327
27305
  args: [{
27328
- selector: 'px-radio-group',
27306
+ selector: 'px-radio-base',
27329
27307
  }]
27330
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
27331
- type: Input
27332
- }], gap: [{
27333
- type: Input
27334
- }], variant: [{
27335
- type: Input
27336
- }], required: [{
27337
- type: Input
27338
- }], disabled: [{
27339
- type: Input
27340
- }], state: [{
27308
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { hover: [{
27341
27309
  type: Input
27342
27310
  }], inverted: [{
27343
27311
  type: Input
@@ -27479,21 +27447,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
27479
27447
  args: ['sticky-bottom']
27480
27448
  }] } });
27481
27449
  /**
27482
- * @description Type-only wrapper for <px-price>
27450
+ * @description Type-only wrapper for <px-radio-group>
27483
27451
  */
27484
- class PxPrice {
27452
+ class PxRadioGroup {
27485
27453
  elementRef;
27454
+ set name(value) {
27455
+ this.elementRef.nativeElement['name'] = value;
27456
+ }
27457
+ get name() {
27458
+ return this.elementRef.nativeElement['name'];
27459
+ }
27460
+ set gap(value) {
27461
+ this.elementRef.nativeElement['gap'] = value;
27462
+ }
27463
+ get gap() {
27464
+ return this.elementRef.nativeElement['gap'];
27465
+ }
27486
27466
  set variant(value) {
27487
27467
  this.elementRef.nativeElement['variant'] = value;
27488
27468
  }
27489
27469
  get variant() {
27490
27470
  return this.elementRef.nativeElement['variant'];
27491
27471
  }
27492
- set size(value) {
27493
- this.elementRef.nativeElement['size'] = value;
27472
+ set required(value) {
27473
+ this.elementRef.nativeElement['required'] = value;
27494
27474
  }
27495
- get size() {
27496
- return this.elementRef.nativeElement['size'];
27475
+ get required() {
27476
+ return this.elementRef.nativeElement['required'];
27477
+ }
27478
+ set disabled(value) {
27479
+ this.elementRef.nativeElement['disabled'] = value;
27480
+ }
27481
+ get disabled() {
27482
+ return this.elementRef.nativeElement['disabled'];
27483
+ }
27484
+ set state(value) {
27485
+ this.elementRef.nativeElement['state'] = value;
27486
+ }
27487
+ get state() {
27488
+ return this.elementRef.nativeElement['state'];
27497
27489
  }
27498
27490
  set inverted(value) {
27499
27491
  this.elementRef.nativeElement['inverted'] = value;
@@ -27786,17 +27778,25 @@ class PxPrice {
27786
27778
  constructor(elementRef) {
27787
27779
  this.elementRef = elementRef;
27788
27780
  }
27789
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
27790
- 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 });
27781
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
27782
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxRadioGroup, selector: "px-radio-group", inputs: { name: "name", gap: "gap", variant: "variant", required: "required", disabled: "disabled", state: "state", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, ngImport: i0 });
27791
27783
  }
27792
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxPrice, decorators: [{
27784
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroup, decorators: [{
27793
27785
  type: Directive,
27794
27786
  args: [{
27795
- selector: 'px-price',
27787
+ selector: 'px-radio-group',
27796
27788
  }]
27797
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
27789
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
27798
27790
  type: Input
27799
- }], size: [{
27791
+ }], gap: [{
27792
+ type: Input
27793
+ }], variant: [{
27794
+ type: Input
27795
+ }], required: [{
27796
+ type: Input
27797
+ }], disabled: [{
27798
+ type: Input
27799
+ }], state: [{
27800
27800
  type: Input
27801
27801
  }], inverted: [{
27802
27802
  type: Input
@@ -33125,17 +33125,17 @@ class PxTabs {
33125
33125
  get inverted() {
33126
33126
  return this.elementRef.nativeElement['inverted'];
33127
33127
  }
33128
- set ariaLabelNext(value) {
33129
- this.elementRef.nativeElement['ariaLabelNext'] = value;
33128
+ set nextAriaLabel(value) {
33129
+ this.elementRef.nativeElement['nextAriaLabel'] = value;
33130
33130
  }
33131
- get ariaLabelNext() {
33132
- return this.elementRef.nativeElement['ariaLabelNext'];
33131
+ get nextAriaLabel() {
33132
+ return this.elementRef.nativeElement['nextAriaLabel'];
33133
33133
  }
33134
- set ariaLabelPrevious(value) {
33135
- this.elementRef.nativeElement['ariaLabelPrevious'] = value;
33134
+ set previousAriaLabel(value) {
33135
+ this.elementRef.nativeElement['previousAriaLabel'] = value;
33136
33136
  }
33137
- get ariaLabelPrevious() {
33138
- return this.elementRef.nativeElement['ariaLabelPrevious'];
33137
+ get previousAriaLabel() {
33138
+ return this.elementRef.nativeElement['previousAriaLabel'];
33139
33139
  }
33140
33140
  set hideControls(value) {
33141
33141
  this.elementRef.nativeElement['hideControls'] = value;
@@ -33147,7 +33147,7 @@ class PxTabs {
33147
33147
  this.elementRef = elementRef;
33148
33148
  }
33149
33149
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabs, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
33150
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabs, selector: "px-tabs", inputs: { inverted: "inverted", ariaLabelNext: ["aria-label-next", "ariaLabelNext"], ariaLabelPrevious: ["aria-label-previous", "ariaLabelPrevious"], hideControls: ["hide-controls", "hideControls"] }, ngImport: i0 });
33150
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabs, selector: "px-tabs", inputs: { inverted: "inverted", nextAriaLabel: ["next-aria-label", "nextAriaLabel"], previousAriaLabel: ["previous-aria-label", "previousAriaLabel"], hideControls: ["hide-controls", "hideControls"] }, ngImport: i0 });
33151
33151
  }
33152
33152
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabs, decorators: [{
33153
33153
  type: Directive,
@@ -33156,12 +33156,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
33156
33156
  }]
33157
33157
  }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
33158
33158
  type: Input
33159
- }], ariaLabelNext: [{
33159
+ }], nextAriaLabel: [{
33160
33160
  type: Input,
33161
- args: ['aria-label-next']
33162
- }], ariaLabelPrevious: [{
33161
+ args: ['next-aria-label']
33162
+ }], previousAriaLabel: [{
33163
33163
  type: Input,
33164
- args: ['aria-label-previous']
33164
+ args: ['previous-aria-label']
33165
33165
  }], hideControls: [{
33166
33166
  type: Input,
33167
33167
  args: ['hide-controls']
@@ -33177,17 +33177,17 @@ class PxTab {
33177
33177
  get selected() {
33178
33178
  return this.elementRef.nativeElement['selected'];
33179
33179
  }
33180
- set for(value) {
33181
- this.elementRef.nativeElement['for'] = value;
33180
+ set target(value) {
33181
+ this.elementRef.nativeElement['target'] = value;
33182
33182
  }
33183
- get for() {
33184
- return this.elementRef.nativeElement['for'];
33183
+ get target() {
33184
+ return this.elementRef.nativeElement['target'];
33185
33185
  }
33186
- set name(value) {
33187
- this.elementRef.nativeElement['name'] = value;
33186
+ set id(value) {
33187
+ this.elementRef.nativeElement['id'] = value;
33188
33188
  }
33189
- get name() {
33190
- return this.elementRef.nativeElement['name'];
33189
+ get id() {
33190
+ return this.elementRef.nativeElement['id'];
33191
33191
  }
33192
33192
  set inverted(value) {
33193
33193
  this.elementRef.nativeElement['inverted'] = value;
@@ -33207,7 +33207,7 @@ class PxTab {
33207
33207
  });
33208
33208
  }
33209
33209
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTab, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
33210
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTab, selector: "px-tab", inputs: { selected: "selected", for: "for", name: "name", inverted: "inverted" }, outputs: { TAB_CONNECTED_EVENT: "TAB_CONNECTED_EVENT", TAB_SELECTED_EVENT: "TAB_SELECTED_EVENT" }, ngImport: i0 });
33210
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTab, selector: "px-tab", inputs: { selected: "selected", target: "target", id: "id", inverted: "inverted" }, outputs: { TAB_CONNECTED_EVENT: "TAB_CONNECTED_EVENT", TAB_SELECTED_EVENT: "TAB_SELECTED_EVENT" }, ngImport: i0 });
33211
33211
  }
33212
33212
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTab, decorators: [{
33213
33213
  type: Directive,
@@ -33216,9 +33216,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
33216
33216
  }]
33217
33217
  }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { selected: [{
33218
33218
  type: Input
33219
- }], for: [{
33219
+ }], target: [{
33220
33220
  type: Input
33221
- }], name: [{
33221
+ }], id: [{
33222
33222
  type: Input
33223
33223
  }], inverted: [{
33224
33224
  type: Input
@@ -33232,11 +33232,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
33232
33232
  */
33233
33233
  class PxTabPanel {
33234
33234
  elementRef;
33235
- set name(value) {
33236
- this.elementRef.nativeElement['name'] = value;
33235
+ set id(value) {
33236
+ this.elementRef.nativeElement['id'] = value;
33237
33237
  }
33238
- get name() {
33239
- return this.elementRef.nativeElement['name'];
33238
+ get id() {
33239
+ return this.elementRef.nativeElement['id'];
33240
33240
  }
33241
33241
  set selected(value) {
33242
33242
  this.elementRef.nativeElement['selected'] = value;
@@ -33248,14 +33248,14 @@ class PxTabPanel {
33248
33248
  this.elementRef = elementRef;
33249
33249
  }
33250
33250
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabPanel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
33251
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabPanel, selector: "px-tab-panel", inputs: { name: "name", selected: "selected" }, ngImport: i0 });
33251
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabPanel, selector: "px-tab-panel", inputs: { id: "id", selected: "selected" }, ngImport: i0 });
33252
33252
  }
33253
33253
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabPanel, decorators: [{
33254
33254
  type: Directive,
33255
33255
  args: [{
33256
33256
  selector: 'px-tab-panel',
33257
33257
  }]
33258
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
33258
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { id: [{
33259
33259
  type: Input
33260
33260
  }], selected: [{
33261
33261
  type: Input
@@ -37433,7 +37433,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
37433
37433
  }] } });
37434
37434
  class Lavender {
37435
37435
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
37436
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxRadio, PxRadioBase, PxRadioGroup, 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] });
37436
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, 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] });
37437
37437
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
37438
37438
  }
37439
37439
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
@@ -37497,10 +37497,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
37497
37497
  PxCardActions,
37498
37498
  PxCardContainer,
37499
37499
  PxCardHeading,
37500
+ PxPrice,
37500
37501
  PxRadio,
37501
37502
  PxRadioBase,
37502
37503
  PxRadioGroup,
37503
- PxPrice,
37504
37504
  PxRibbon,
37505
37505
  PxSection,
37506
37506
  PxSelectableBox,
@@ -37599,10 +37599,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
37599
37599
  PxCardActions,
37600
37600
  PxCardContainer,
37601
37601
  PxCardHeading,
37602
+ PxPrice,
37602
37603
  PxRadio,
37603
37604
  PxRadioBase,
37604
37605
  PxRadioGroup,
37605
- PxPrice,
37606
37606
  PxRibbon,
37607
37607
  PxSection,
37608
37608
  PxSelectableBox,