@proximus/lavender-angular 1.4.6-alpha.8 → 1.4.6-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30665,11 +30665,17 @@ class PxTabs {
30665
30665
  get ariaLabelPrevious() {
30666
30666
  return this.elementRef.nativeElement['ariaLabelPrevious'];
30667
30667
  }
30668
+ set hideControls(value) {
30669
+ this.elementRef.nativeElement['hideControls'] = value;
30670
+ }
30671
+ get hideControls() {
30672
+ return this.elementRef.nativeElement['hideControls'];
30673
+ }
30668
30674
  constructor(elementRef) {
30669
30675
  this.elementRef = elementRef;
30670
30676
  }
30671
30677
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabs, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
30672
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabs, selector: "px-tabs", inputs: { label: "label", inverted: "inverted", ariaLabelNext: ["aria-label-next", "ariaLabelNext"], ariaLabelPrevious: ["aria-label-previous", "ariaLabelPrevious"] }, ngImport: i0 });
30678
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabs, selector: "px-tabs", inputs: { label: "label", inverted: "inverted", ariaLabelNext: ["aria-label-next", "ariaLabelNext"], ariaLabelPrevious: ["aria-label-previous", "ariaLabelPrevious"], hideControls: ["hide-controls", "hideControls"] }, ngImport: i0 });
30673
30679
  }
30674
30680
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabs, decorators: [{
30675
30681
  type: Directive,
@@ -30686,6 +30692,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
30686
30692
  }], ariaLabelPrevious: [{
30687
30693
  type: Input,
30688
30694
  args: ['aria-label-previous']
30695
+ }], hideControls: [{
30696
+ type: Input,
30697
+ args: ['hide-controls']
30689
30698
  }] } });
30690
30699
  /**
30691
30700
  * @description Type-only wrapper for <px-tab>
@@ -30710,15 +30719,25 @@ class PxTab {
30710
30719
  get name() {
30711
30720
  return this.elementRef.nativeElement['name'];
30712
30721
  }
30713
- pxTabConnected = new EventEmitter();
30722
+ set inverted(value) {
30723
+ this.elementRef.nativeElement['inverted'] = value;
30724
+ }
30725
+ get inverted() {
30726
+ return this.elementRef.nativeElement['inverted'];
30727
+ }
30728
+ TAB_CONNECTED_EVENT = new EventEmitter();
30729
+ TAB_SELECTED_EVENT = new EventEmitter();
30714
30730
  constructor(elementRef) {
30715
30731
  this.elementRef = elementRef;
30716
- this.elementRef.nativeElement.addEventListener('px-tab-connected', (e) => {
30717
- this.pxTabConnected.emit(e.detail);
30732
+ this.elementRef.nativeElement.addEventListener('TAB_CONNECTED_EVENT', (e) => {
30733
+ this.TAB_CONNECTED_EVENT.emit(e.detail);
30734
+ });
30735
+ this.elementRef.nativeElement.addEventListener('TAB_SELECTED_EVENT', (e) => {
30736
+ this.TAB_SELECTED_EVENT.emit(e.detail);
30718
30737
  });
30719
30738
  }
30720
30739
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTab, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
30721
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTab, selector: "px-tab", inputs: { selected: "selected", for: "for", name: "name" }, outputs: { pxTabConnected: "px-tab-connected" }, ngImport: i0 });
30740
+ 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 });
30722
30741
  }
30723
30742
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTab, decorators: [{
30724
30743
  type: Directive,
@@ -30731,9 +30750,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
30731
30750
  type: Input
30732
30751
  }], name: [{
30733
30752
  type: Input
30734
- }], pxTabConnected: [{
30735
- type: Output,
30736
- args: ['px-tab-connected']
30753
+ }], inverted: [{
30754
+ type: Input
30755
+ }], TAB_CONNECTED_EVENT: [{
30756
+ type: Output
30757
+ }], TAB_SELECTED_EVENT: [{
30758
+ type: Output
30737
30759
  }] } });
30738
30760
  /**
30739
30761
  * @description Type-only wrapper for <px-tab-panel>
@@ -30746,11 +30768,17 @@ class PxTabPanel {
30746
30768
  get name() {
30747
30769
  return this.elementRef.nativeElement['name'];
30748
30770
  }
30771
+ set selected(value) {
30772
+ this.elementRef.nativeElement['selected'] = value;
30773
+ }
30774
+ get selected() {
30775
+ return this.elementRef.nativeElement['selected'];
30776
+ }
30749
30777
  constructor(elementRef) {
30750
30778
  this.elementRef = elementRef;
30751
30779
  }
30752
30780
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabPanel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
30753
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabPanel, selector: "px-tab-panel", inputs: { name: "name" }, ngImport: i0 });
30781
+ 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 });
30754
30782
  }
30755
30783
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabPanel, decorators: [{
30756
30784
  type: Directive,
@@ -30759,6 +30787,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
30759
30787
  }]
30760
30788
  }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
30761
30789
  type: Input
30790
+ }], selected: [{
30791
+ type: Input
30762
30792
  }] } });
30763
30793
  /**
30764
30794
  * @description Type-only wrapper for <px-tag>