matcha-components 18.3.7 → 18.3.9

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.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { ElementRef, Renderer2, Component, Inject, Input, EventEmitter, Output, HostListener, Injectable, ContentChildren, Directive, NgModule } from '@angular/core';
2
+ import { ElementRef, Renderer2, Component, Inject, Input, EventEmitter, Output, HostListener, Directive, NgModule } from '@angular/core';
3
3
  import * as i1 from '@angular/common';
4
4
  import { CommonModule } from '@angular/common';
5
5
 
@@ -736,127 +736,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
736
736
  args: ['mouseleave', ['$event']]
737
737
  }] } });
738
738
 
739
- // matcha-step.component.ts
740
- class MatchaStepComponent {
741
- constructor() {
742
- this.active = false; // Define se o step está ativo
743
- }
744
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
745
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaStepComponent, selector: "matcha-step", inputs: { title: "title" }, ngImport: i0, template: "<ng-container *ngIf=\"active\">\n <ng-content></ng-content>\n</ng-container>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
746
- }
747
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepComponent, decorators: [{
748
- type: Component,
749
- args: [{ selector: 'matcha-step', template: "<ng-container *ngIf=\"active\">\n <ng-content></ng-content>\n</ng-container>\n" }]
750
- }], propDecorators: { title: [{
751
- type: Input
752
- }] } });
753
-
754
- // matcha-stepper.service.ts
755
- class MatchaStepperService {
756
- constructor() {
757
- // Estado atual e steps armazenados
758
- this.currentStep = 0;
759
- this.steps = [];
760
- // Evento para notificar alterações no step atual
761
- this.stepChanged = new EventEmitter();
762
- }
763
- setSteps(steps) {
764
- this.steps = steps;
765
- }
766
- setCurrentStep(index) {
767
- if (index >= 0 && index < this.steps.length) {
768
- // Marca o step como visitado
769
- this.steps[index].visited = true;
770
- this.currentStep = index;
771
- // Emite o novo índice para quem estiver escutando
772
- this.stepChanged.emit(index);
773
- }
774
- }
775
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
776
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperService, providedIn: 'root' }); }
777
- }
778
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperService, decorators: [{
779
- type: Injectable,
780
- args: [{
781
- providedIn: 'root'
782
- }]
783
- }] });
784
-
785
- // matcha-stepper.component.ts
786
- class MatchaStepperComponent {
787
- constructor(stepperService) {
788
- this.stepperService = stepperService;
789
- this.currentStepIndex = 0;
790
- }
791
- ngAfterContentInit() {
792
- // Cria os dados dos steps com a flag visited definida como false
793
- const stepsData = this.steps.map(step => ({
794
- title: step.title,
795
- visited: false
796
- }));
797
- this.stepperService.setSteps(stepsData);
798
- this.activateStep(0);
799
- }
800
- next() {
801
- if (this.currentStepIndex < this.steps.length - 1) {
802
- this.activateStep(this.currentStepIndex + 1);
803
- }
804
- }
805
- previous() {
806
- if (this.currentStepIndex > 0) {
807
- this.activateStep(this.currentStepIndex - 1);
808
- }
809
- }
810
- activateStep(index) {
811
- // Atualiza a visibilidade dos steps
812
- this.steps.forEach((step, i) => step.active = i === index);
813
- this.currentStepIndex = index;
814
- // Atualiza o serviço com o novo step atual
815
- this.stepperService.setCurrentStep(index);
816
- }
817
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperComponent, deps: [{ token: MatchaStepperService }], target: i0.ɵɵFactoryTarget.Component }); }
818
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaStepperComponent, selector: "matcha-stepper", queries: [{ propertyName: "steps", predicate: MatchaStepComponent }], ngImport: i0, template: "<div class=\"matcha-stepper-header\">\n <ng-content select=\"[matcha-stepper-header]\"></ng-content>\n</div>\n\n<div class=\"matcha-stepper-content\">\n <ng-content></ng-content> <!-- Renderiza os steps -->\n</div>\n\n<div class=\"matcha-stepper-footer\">\n <button (click)=\"previous()\" [disabled]=\"currentStepIndex === 0\">Voltar</button>\n <button (click)=\"next()\" [disabled]=\"currentStepIndex === steps.length - 1\">Avan\u00E7ar</button>\n <ng-content select=\"[matcha-stepper-footer]\"></ng-content>\n</div>\n", styles: [""] }); }
819
- }
820
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperComponent, decorators: [{
821
- type: Component,
822
- args: [{ selector: 'matcha-stepper', template: "<div class=\"matcha-stepper-header\">\n <ng-content select=\"[matcha-stepper-header]\"></ng-content>\n</div>\n\n<div class=\"matcha-stepper-content\">\n <ng-content></ng-content> <!-- Renderiza os steps -->\n</div>\n\n<div class=\"matcha-stepper-footer\">\n <button (click)=\"previous()\" [disabled]=\"currentStepIndex === 0\">Voltar</button>\n <button (click)=\"next()\" [disabled]=\"currentStepIndex === steps.length - 1\">Avan\u00E7ar</button>\n <ng-content select=\"[matcha-stepper-footer]\"></ng-content>\n</div>\n" }]
823
- }], ctorParameters: () => [{ type: MatchaStepperService }], propDecorators: { steps: [{
824
- type: ContentChildren,
825
- args: [MatchaStepComponent]
826
- }] } });
827
-
828
- class MatchaStepperPaginationComponent {
829
- constructor(stepperService) {
830
- this.stepperService = stepperService;
831
- this.steps = [];
832
- this.currentStep = 0;
833
- }
834
- ngOnInit() {
835
- // Inicializa os steps a partir do serviço
836
- this.steps = this.stepperService.steps;
837
- this.currentStep = this.stepperService.currentStep;
838
- // Inscreve-se para receber notificações quando o step mudar
839
- this.subscription = this.stepperService.stepChanged.subscribe(index => {
840
- this.currentStep = index;
841
- });
842
- }
843
- goToStep(index) {
844
- this.stepperService.setCurrentStep(index);
845
- }
846
- ngOnDestroy() {
847
- // Limpa a inscrição ao destruir o componente
848
- if (this.subscription) {
849
- this.subscription.unsubscribe();
850
- }
851
- }
852
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperPaginationComponent, deps: [{ token: MatchaStepperService }], target: i0.ɵɵFactoryTarget.Component }); }
853
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaStepperPaginationComponent, selector: "matcha-stepper-pagination", ngImport: i0, template: "<div class=\"pagination\">\n <div class=\"step-item\" *ngFor=\"let step of steps; let i = index\" [class.active]=\"i === currentStep\"\n [class.visited]=\"step.visited && i !== currentStep\" (click)=\"goToStep(i)\">\n <div class=\"square p-8 blue\"></div>\n <div class=\"title\" *ngIf=\"i === currentStep\">{{ step.title }}</div>\n </div>\n</div>\n", styles: [".pagination{display:flex;align-items:center;gap:12px;padding:12px}.step-item{cursor:pointer;display:flex;flex-direction:column;align-items:center;transition:transform .2s ease-in-out}.step-item:hover{transform:scale(1.1)}.step-item .square{width:16px;height:16px;background-color:#ccc;border:1px solid #aaa;transition:background-color .3s}.step-item .title{margin-top:4px;font-size:12px;color:#333;text-align:center}.step-item.active .square{background-color:#6200ea}.step-item.visited:not(.active) .square{background-color:#8e24aa}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
854
- }
855
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperPaginationComponent, decorators: [{
856
- type: Component,
857
- args: [{ selector: 'matcha-stepper-pagination', template: "<div class=\"pagination\">\n <div class=\"step-item\" *ngFor=\"let step of steps; let i = index\" [class.active]=\"i === currentStep\"\n [class.visited]=\"step.visited && i !== currentStep\" (click)=\"goToStep(i)\">\n <div class=\"square p-8 blue\"></div>\n <div class=\"title\" *ngIf=\"i === currentStep\">{{ step.title }}</div>\n </div>\n</div>\n", styles: [".pagination{display:flex;align-items:center;gap:12px;padding:12px}.step-item{cursor:pointer;display:flex;flex-direction:column;align-items:center;transition:transform .2s ease-in-out}.step-item:hover{transform:scale(1.1)}.step-item .square{width:16px;height:16px;background-color:#ccc;border:1px solid #aaa;transition:background-color .3s}.step-item .title{margin-top:4px;font-size:12px;color:#333;text-align:center}.step-item.active .square{background-color:#6200ea}.step-item.visited:not(.active) .square{background-color:#8e24aa}\n"] }]
858
- }], ctorParameters: () => [{ type: MatchaStepperService }] });
859
-
860
739
  class MatchaToolbarComponent {
861
740
  constructor() {
862
741
  this.isMobileScreen = false;
@@ -1030,34 +909,34 @@ class MatchaTooltipDirective {
1030
909
  }
1031
910
  }
1032
911
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
1033
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaTooltipDirective, selector: "[matcha-tooltip], [matchaTooltip]", inputs: { tooltipText: ["matcha-tooltip-text", "tooltipText"], tooltipDisabled: ["matcha-tooltip-disabled", "tooltipDisabled"], preferAbove: ["matcha-tooltip-above", "preferAbove"], preferBelow: ["matcha-tooltip-below", "preferBelow"], preferLeft: ["matcha-tooltip-left", "preferLeft"], preferRight: ["matcha-tooltip-right", "preferRight"], tooltipEnableClose: ["tooltip-enable-close", "tooltipEnableClose"] }, host: { listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()", "click": "onClick($event)" } }, ngImport: i0 }); }
912
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaTooltipDirective, selector: "[matchaTooltip]", inputs: { tooltipText: ["matchaTooltipText", "tooltipText"], tooltipDisabled: ["matchaTooltipDisabled", "tooltipDisabled"], preferAbove: ["matchaTooltipAbove", "preferAbove"], preferBelow: ["matchaTooltipBelow", "preferBelow"], preferLeft: ["matchaTooltipLeft", "preferLeft"], preferRight: ["matchaTooltipRight", "preferRight"], tooltipEnableClose: ["matchaTooltipEnableClose", "tooltipEnableClose"] }, host: { listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()", "click": "onClick($event)" } }, ngImport: i0 }); }
1034
913
  }
1035
914
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipDirective, decorators: [{
1036
915
  type: Directive,
1037
916
  args: [{
1038
- selector: '[matcha-tooltip], [matchaTooltip]',
917
+ selector: '[matchaTooltip]',
1039
918
  }]
1040
919
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { tooltipText: [{
1041
920
  type: Input,
1042
- args: ['matcha-tooltip-text']
921
+ args: ['matchaTooltipText']
1043
922
  }], tooltipDisabled: [{
1044
923
  type: Input,
1045
- args: ['matcha-tooltip-disabled']
924
+ args: ['matchaTooltipDisabled']
1046
925
  }], preferAbove: [{
1047
926
  type: Input,
1048
- args: ['matcha-tooltip-above']
927
+ args: ['matchaTooltipAbove']
1049
928
  }], preferBelow: [{
1050
929
  type: Input,
1051
- args: ['matcha-tooltip-below']
930
+ args: ['matchaTooltipBelow']
1052
931
  }], preferLeft: [{
1053
932
  type: Input,
1054
- args: ['matcha-tooltip-left']
933
+ args: ['matchaTooltipLeft']
1055
934
  }], preferRight: [{
1056
935
  type: Input,
1057
- args: ['matcha-tooltip-right']
936
+ args: ['matchaTooltipRight']
1058
937
  }], tooltipEnableClose: [{
1059
938
  type: Input,
1060
- args: ['tooltip-enable-close']
939
+ args: ['matchaTooltipEnableClose']
1061
940
  }], onMouseEnter: [{
1062
941
  type: HostListener,
1063
942
  args: ['mouseenter']
@@ -1083,11 +962,11 @@ class MatchaToolbarButtonComponent {
1083
962
  this.buttonClick.emit();
1084
963
  }
1085
964
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1086
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaToolbarButtonComponent, selector: "matcha-toolbar-button", inputs: { icon: "icon", toolbarButtonTooltip: ["toolbar-button-tooltip", "toolbarButtonTooltip"] }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"placeholder\" icon=\"true\" class=\"mt-16 mt-md-0\"\n matcha-tooltip [matcha-tooltip-text]=\"toolbarButtonTooltip\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "pill", "icon", "link"] }, { kind: "directive", type: MatchaTooltipDirective, selector: "[matcha-tooltip], [matchaTooltip]", inputs: ["matcha-tooltip-text", "matcha-tooltip-disabled", "matcha-tooltip-above", "matcha-tooltip-below", "matcha-tooltip-left", "matcha-tooltip-right", "tooltip-enable-close"] }] }); }
965
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MatchaToolbarButtonComponent, selector: "matcha-toolbar-button", inputs: { icon: "icon", toolbarButtonTooltip: ["toolbar-button-tooltip", "toolbarButtonTooltip"] }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"placeholder\" icon=\"true\" class=\"mt-16 mt-md-0\"\n matchaTooltip [matchaTooltipText]=\"toolbarButtonTooltip\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: MatchaButtonComponent, selector: "[matcha-button]", inputs: ["size", "size-xs", "size-sm", "size-md", "size-lg", "size-xl", "color", "basic", "outline", "pill", "icon", "link"] }, { kind: "directive", type: MatchaTooltipDirective, selector: "[matchaTooltip]", inputs: ["matchaTooltipText", "matchaTooltipDisabled", "matchaTooltipAbove", "matchaTooltipBelow", "matchaTooltipLeft", "matchaTooltipRight", "matchaTooltipEnableClose"] }] }); }
1087
966
  }
1088
967
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarButtonComponent, decorators: [{
1089
968
  type: Component,
1090
- args: [{ selector: 'matcha-toolbar-button', template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"placeholder\" icon=\"true\" class=\"mt-16 mt-md-0\"\n matcha-tooltip [matcha-tooltip-text]=\"toolbarButtonTooltip\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n" }]
969
+ args: [{ selector: 'matcha-toolbar-button', template: "<!-- HOW TO USE:\n<matcha-toolbar-button (buttonClick)=\"FUN\u00C7\u00C3O-AO-CLICAR-AQUI\" toolbar-button-tooltip=\"TOOLTIP-AQUI\">\n TEXTO DO BOT\u00C3O AQUI\n</matcha-toolbar-button>\n-->\n<button matcha-button outline=\"true\" size=\"small\" color=\"placeholder\" icon=\"true\" class=\"mt-16 mt-md-0\"\n matchaTooltip [matchaTooltipText]=\"toolbarButtonTooltip\" (click)=\"emitButtonClick()\">\n <span [class]=\"classes\"></span>\n</button>\n" }]
1091
970
  }], propDecorators: { icon: [{
1092
971
  type: Input,
1093
972
  args: ['icon']
@@ -1170,6 +1049,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1170
1049
  }]
1171
1050
  }] });
1172
1051
 
1052
+ class MatchaTooltipModule {
1053
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1054
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, declarations: [MatchaTooltipDirective], imports: [CommonModule], exports: [MatchaTooltipDirective] }); }
1055
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, imports: [CommonModule] }); }
1056
+ }
1057
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, decorators: [{
1058
+ type: NgModule,
1059
+ args: [{
1060
+ declarations: [MatchaTooltipDirective],
1061
+ imports: [CommonModule],
1062
+ exports: [MatchaTooltipDirective],
1063
+ }]
1064
+ }] });
1065
+
1173
1066
  class MatchaModalModule {
1174
1067
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1175
1068
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalModule, declarations: [MatchaModalHeaderComponent,
@@ -1179,7 +1072,8 @@ class MatchaModalModule {
1179
1072
  MatchaModalComponent], imports: [CommonModule,
1180
1073
  MatchaIconModule,
1181
1074
  MatchaTitleModule,
1182
- MatchaDividerModule], exports: [MatchaModalHeaderComponent,
1075
+ MatchaDividerModule,
1076
+ MatchaTooltipModule], exports: [MatchaModalHeaderComponent,
1183
1077
  MatchaModalContentComponent,
1184
1078
  MatchaModalFooterComponent,
1185
1079
  MatchaModalOptionsComponent,
@@ -1187,7 +1081,8 @@ class MatchaModalModule {
1187
1081
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalModule, imports: [CommonModule,
1188
1082
  MatchaIconModule,
1189
1083
  MatchaTitleModule,
1190
- MatchaDividerModule] }); }
1084
+ MatchaDividerModule,
1085
+ MatchaTooltipModule] }); }
1191
1086
  }
1192
1087
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaModalModule, decorators: [{
1193
1088
  type: NgModule,
@@ -1203,7 +1098,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1203
1098
  CommonModule,
1204
1099
  MatchaIconModule,
1205
1100
  MatchaTitleModule,
1206
- MatchaDividerModule
1101
+ MatchaDividerModule,
1102
+ MatchaTooltipModule
1207
1103
  ],
1208
1104
  exports: [
1209
1105
  MatchaModalHeaderComponent,
@@ -1257,20 +1153,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1257
1153
  }]
1258
1154
  }] });
1259
1155
 
1260
- class MatchaTooltipModule {
1261
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1262
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, declarations: [MatchaTooltipDirective], imports: [CommonModule], exports: [MatchaTooltipDirective] }); }
1263
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, imports: [CommonModule] }); }
1264
- }
1265
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaTooltipModule, decorators: [{
1266
- type: NgModule,
1267
- args: [{
1268
- declarations: [MatchaTooltipDirective],
1269
- imports: [CommonModule],
1270
- exports: [MatchaTooltipDirective],
1271
- }]
1272
- }] });
1273
-
1274
1156
  class MatchaToolbarModule {
1275
1157
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1276
1158
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaToolbarModule, declarations: [MatchaToolbarComponent,
@@ -2169,34 +2051,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2169
2051
  }]
2170
2052
  }] });
2171
2053
 
2172
- class MatchaStepperModule {
2173
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2174
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperModule, declarations: [MatchaStepComponent,
2175
- MatchaStepperComponent,
2176
- MatchaStepperPaginationComponent], imports: [CommonModule], exports: [MatchaStepComponent,
2177
- MatchaStepperComponent,
2178
- MatchaStepperPaginationComponent] }); }
2179
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperModule, imports: [CommonModule] }); }
2180
- }
2181
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperModule, decorators: [{
2182
- type: NgModule,
2183
- args: [{
2184
- declarations: [
2185
- MatchaStepComponent,
2186
- MatchaStepperComponent,
2187
- MatchaStepperPaginationComponent
2188
- ],
2189
- imports: [
2190
- CommonModule
2191
- ],
2192
- exports: [
2193
- MatchaStepComponent,
2194
- MatchaStepperComponent,
2195
- MatchaStepperPaginationComponent
2196
- ]
2197
- }]
2198
- }] });
2199
-
2200
2054
  class MatchaTableDirective {
2201
2055
  constructor(_elementRef, _renderer) {
2202
2056
  this._elementRef = _elementRef;
@@ -2344,7 +2198,6 @@ class MatchaComponentsModule {
2344
2198
  MatchaSliderModule,
2345
2199
  MatchaSnackBarModule,
2346
2200
  MatchaSortHeaderModule,
2347
- MatchaStepperModule,
2348
2201
  MatchaTableModule,
2349
2202
  MatchaTabsModule,
2350
2203
  MatchaTooltipModule,
@@ -2379,7 +2232,6 @@ class MatchaComponentsModule {
2379
2232
  MatchaSliderModule,
2380
2233
  MatchaSnackBarModule,
2381
2234
  MatchaSortHeaderModule,
2382
- MatchaStepperModule,
2383
2235
  MatchaTableModule,
2384
2236
  MatchaTabsModule,
2385
2237
  MatchaTooltipModule,
@@ -2415,7 +2267,6 @@ class MatchaComponentsModule {
2415
2267
  MatchaSliderModule,
2416
2268
  MatchaSnackBarModule,
2417
2269
  MatchaSortHeaderModule,
2418
- MatchaStepperModule,
2419
2270
  MatchaTableModule,
2420
2271
  MatchaTabsModule,
2421
2272
  MatchaTooltipModule,
@@ -2450,7 +2301,6 @@ class MatchaComponentsModule {
2450
2301
  MatchaSliderModule,
2451
2302
  MatchaSnackBarModule,
2452
2303
  MatchaSortHeaderModule,
2453
- MatchaStepperModule,
2454
2304
  MatchaTableModule,
2455
2305
  MatchaTabsModule,
2456
2306
  MatchaTooltipModule,
@@ -2494,7 +2344,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2494
2344
  MatchaSliderModule,
2495
2345
  MatchaSnackBarModule,
2496
2346
  MatchaSortHeaderModule,
2497
- MatchaStepperModule,
2498
2347
  MatchaTableModule,
2499
2348
  MatchaTabsModule,
2500
2349
  MatchaTooltipModule,
@@ -2532,7 +2381,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2532
2381
  MatchaSliderModule,
2533
2382
  MatchaSnackBarModule,
2534
2383
  MatchaSortHeaderModule,
2535
- MatchaStepperModule,
2536
2384
  MatchaTableModule,
2537
2385
  MatchaTabsModule,
2538
2386
  MatchaTooltipModule,
@@ -2541,23 +2389,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2541
2389
  }]
2542
2390
  }] });
2543
2391
 
2544
- class MatchaStepperDirective {
2545
- constructor(_elementRef, _renderer) {
2546
- this._elementRef = _elementRef;
2547
- this._renderer = _renderer;
2548
- //this._elementRef.nativeElement.style.backgroundColor = 'grey';
2549
- this._renderer.addClass(this._elementRef.nativeElement, 'matcha-stepper');
2550
- }
2551
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
2552
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: MatchaStepperDirective, selector: "[matchaStepper]", ngImport: i0 }); }
2553
- }
2554
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MatchaStepperDirective, decorators: [{
2555
- type: Directive,
2556
- args: [{
2557
- selector: '[matchaStepper]'
2558
- }]
2559
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
2560
-
2561
2392
  /*
2562
2393
  * Public API Surface of matcha-components
2563
2394
  */
@@ -2577,5 +2408,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2577
2408
  * Generated bundle index. Do not edit.
2578
2409
  */
2579
2410
 
2580
- export { MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxDirective, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaExpansionDirective, MatchaExpansionModule, MatchaFormFieldDirective, MatchaFormsModule, MatchaGridComponent, MatchaGridModule, MatchaIconComponent, MatchaIconModule, MatchaInputDirective, MatchaInputModule, MatchaListDirective, MatchaListModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaProgressSpinnerDirective, MatchaProgressSpinnerModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaStepComponent, MatchaStepperComponent, MatchaStepperDirective, MatchaStepperModule, MatchaStepperPaginationComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsDirective, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
2411
+ export { MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, MatchaBadgeDirective, MatchaBadgeModule, MatchaBottomSheetDirective, MatchaBottomSheetModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleDirective, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxDirective, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaExpansionDirective, MatchaExpansionModule, MatchaFormFieldDirective, MatchaFormsModule, MatchaGridComponent, MatchaGridModule, MatchaIconComponent, MatchaIconModule, MatchaInputDirective, MatchaInputModule, MatchaListDirective, MatchaListModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaProgressSpinnerDirective, MatchaProgressSpinnerModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaTableDirective, MatchaTableModule, MatchaTabsDirective, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
2581
2412
  //# sourceMappingURL=matcha-components.mjs.map