matcha-components 19.102.0 → 19.104.0
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.
- package/fesm2022/matcha-components.mjs +237 -4
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-components.module.d.ts +7 -6
- package/lib/matcha-stepper/next-step.diretive.d.ts +9 -0
- package/lib/matcha-stepper/prev-step.diretive.d.ts +9 -0
- package/lib/matcha-stepper/step/step.component.d.ts +8 -0
- package/lib/matcha-stepper/step-content.diretive.d.ts +9 -0
- package/lib/matcha-stepper/stepper/stepper.component.d.ts +5 -0
- package/lib/matcha-stepper/stepper-content/stepper-content.component.d.ts +16 -0
- package/lib/matcha-stepper/stepper-controller/stepper-controller.component.d.ts +14 -0
- package/lib/matcha-stepper/stepper.module.d.ts +13 -0
- package/lib/matcha-stepper/stepper.service.d.ts +12 -0
- package/package.json +1 -1
- package/public-api.d.ts +8 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, Output, Input, Component, ContentChildren, ElementRef, Renderer2, HostBinding, Inject, HostListener, ContentChild, Directive, forwardRef, ChangeDetectionStrategy, InjectionToken, inject, Injectable, input, output, signal, ViewChild, NgModule, createComponent, Pipe } from '@angular/core';
|
|
2
|
+
import { EventEmitter, Output, Input, Component, ContentChildren, ElementRef, Renderer2, HostBinding, Inject, HostListener, ContentChild, Directive, forwardRef, ChangeDetectionStrategy, InjectionToken, inject, Injectable, input, output, signal, ViewChild, TemplateRef, NgModule, createComponent, Pipe } from '@angular/core';
|
|
3
3
|
import { animation, style, animate, trigger, transition, useAnimation, state, query, stagger, animateChild, sequence, group } from '@angular/animations';
|
|
4
|
-
import { Subscription, Subject } from 'rxjs';
|
|
4
|
+
import { Subscription, Subject, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { debounceTime } from 'rxjs/operators';
|
|
6
6
|
import * as i1 from '@angular/common';
|
|
7
7
|
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
@@ -6176,6 +6176,134 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImpor
|
|
|
6176
6176
|
type: Output
|
|
6177
6177
|
}] } });
|
|
6178
6178
|
|
|
6179
|
+
class StepComponent {
|
|
6180
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: StepComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6181
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.8", type: StepComponent, isStandalone: false, selector: "step", inputs: { step: "step" }, viewQueries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true, static: true }], ngImport: i0, template: `<ng-template><ng-content></ng-content></ng-template>`, isInline: true }); }
|
|
6182
|
+
}
|
|
6183
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: StepComponent, decorators: [{
|
|
6184
|
+
type: Component,
|
|
6185
|
+
args: [{
|
|
6186
|
+
selector: 'step',
|
|
6187
|
+
template: `<ng-template><ng-content></ng-content></ng-template>`,
|
|
6188
|
+
standalone: false
|
|
6189
|
+
}]
|
|
6190
|
+
}], propDecorators: { step: [{
|
|
6191
|
+
type: Input
|
|
6192
|
+
}], template: [{
|
|
6193
|
+
type: ViewChild,
|
|
6194
|
+
args: [TemplateRef, { static: true }]
|
|
6195
|
+
}] } });
|
|
6196
|
+
|
|
6197
|
+
class MatchaStepperStateService {
|
|
6198
|
+
constructor() {
|
|
6199
|
+
this.steps$ = new BehaviorSubject([]);
|
|
6200
|
+
this.activeStep$ = new BehaviorSubject(0);
|
|
6201
|
+
}
|
|
6202
|
+
setSteps(steps) {
|
|
6203
|
+
this.steps$.next(steps);
|
|
6204
|
+
}
|
|
6205
|
+
setActiveStep(index) {
|
|
6206
|
+
this.activeStep$.next(index);
|
|
6207
|
+
}
|
|
6208
|
+
nextStep() {
|
|
6209
|
+
const steps = this.steps$.value;
|
|
6210
|
+
const current = this.activeStep$.value;
|
|
6211
|
+
if (current < steps.length - 1) {
|
|
6212
|
+
this.activeStep$.next(current + 1);
|
|
6213
|
+
}
|
|
6214
|
+
}
|
|
6215
|
+
prevStep() {
|
|
6216
|
+
const current = this.activeStep$.value;
|
|
6217
|
+
if (current > 0) {
|
|
6218
|
+
this.activeStep$.next(current - 1);
|
|
6219
|
+
}
|
|
6220
|
+
}
|
|
6221
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
6222
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperStateService }); }
|
|
6223
|
+
}
|
|
6224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperStateService, decorators: [{
|
|
6225
|
+
type: Injectable
|
|
6226
|
+
}] });
|
|
6227
|
+
|
|
6228
|
+
class MatchaStepperComponent {
|
|
6229
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6230
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.8", type: MatchaStepperComponent, isStandalone: false, selector: "matcha-stepper", providers: [MatchaStepperStateService], ngImport: i0, template: `<ng-content></ng-content>`, isInline: true }); }
|
|
6231
|
+
}
|
|
6232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperComponent, decorators: [{
|
|
6233
|
+
type: Component,
|
|
6234
|
+
args: [{
|
|
6235
|
+
selector: 'matcha-stepper',
|
|
6236
|
+
template: `<ng-content></ng-content>`,
|
|
6237
|
+
providers: [MatchaStepperStateService],
|
|
6238
|
+
standalone: false
|
|
6239
|
+
}]
|
|
6240
|
+
}] });
|
|
6241
|
+
|
|
6242
|
+
class MatchaStepperContentComponent {
|
|
6243
|
+
constructor(stepperState) {
|
|
6244
|
+
this.stepperState = stepperState;
|
|
6245
|
+
this.stepsArray = [];
|
|
6246
|
+
this.activeStep = 0;
|
|
6247
|
+
}
|
|
6248
|
+
ngAfterContentInit() {
|
|
6249
|
+
this.stepsArray = this.steps.toArray().sort((a, b) => Number(a.step) - Number(b.step));
|
|
6250
|
+
this.stepperState.setSteps(this.stepsArray.map(s => s.step));
|
|
6251
|
+
this.stepperState.activeStep$.subscribe(step => this.activeStep = step);
|
|
6252
|
+
}
|
|
6253
|
+
nextStep() {
|
|
6254
|
+
this.stepperState.nextStep();
|
|
6255
|
+
}
|
|
6256
|
+
prevStep() {
|
|
6257
|
+
this.stepperState.prevStep();
|
|
6258
|
+
}
|
|
6259
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperContentComponent, deps: [{ token: MatchaStepperStateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6260
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.8", type: MatchaStepperContentComponent, isStandalone: false, selector: "matcha-stepper-content", queries: [{ propertyName: "steps", predicate: StepComponent }], ngImport: i0, template: `
|
|
6261
|
+
<ng-container *ngIf="stepsArray.length">
|
|
6262
|
+
<ng-container *ngTemplateOutlet="stepsArray[activeStep]?.template || null"></ng-container>
|
|
6263
|
+
</ng-container>
|
|
6264
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
6265
|
+
}
|
|
6266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperContentComponent, decorators: [{
|
|
6267
|
+
type: Component,
|
|
6268
|
+
args: [{
|
|
6269
|
+
selector: 'matcha-stepper-content',
|
|
6270
|
+
template: `
|
|
6271
|
+
<ng-container *ngIf="stepsArray.length">
|
|
6272
|
+
<ng-container *ngTemplateOutlet="stepsArray[activeStep]?.template || null"></ng-container>
|
|
6273
|
+
</ng-container>
|
|
6274
|
+
`,
|
|
6275
|
+
standalone: false
|
|
6276
|
+
}]
|
|
6277
|
+
}], ctorParameters: () => [{ type: MatchaStepperStateService }], propDecorators: { steps: [{
|
|
6278
|
+
type: ContentChildren,
|
|
6279
|
+
args: [StepComponent]
|
|
6280
|
+
}] } });
|
|
6281
|
+
|
|
6282
|
+
class MatchaStepperControllerComponent {
|
|
6283
|
+
constructor(stepperState) {
|
|
6284
|
+
this.stepperState = stepperState;
|
|
6285
|
+
this.steps = [];
|
|
6286
|
+
this.activeStep = 0;
|
|
6287
|
+
}
|
|
6288
|
+
ngOnInit() {
|
|
6289
|
+
this.stepperState.steps$.subscribe(steps => this.steps = steps);
|
|
6290
|
+
this.stepperState.activeStep$.subscribe(step => this.activeStep = step);
|
|
6291
|
+
}
|
|
6292
|
+
goToStep(index) {
|
|
6293
|
+
if (this.disableNext && this.activeStep < index)
|
|
6294
|
+
return;
|
|
6295
|
+
this.stepperState.setActiveStep(index);
|
|
6296
|
+
}
|
|
6297
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperControllerComponent, deps: [{ token: MatchaStepperStateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6298
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.8", type: MatchaStepperControllerComponent, isStandalone: false, selector: "matcha-stepper-controller", inputs: { disableNext: "disableNext" }, providers: [], ngImport: i0, template: "<div class=\"flex-column flex-align-end gap-16\">\n <span class=\"fw-900 fs-12 lh-12\">{{steps[activeStep]}}</span>\n <div class=\"d-flex align-center gap-8\">\n <ng-container *ngFor=\"let step of steps; let i = index\">\n <div (click)=\"goToStep(i)\" class=\"cursor-pointer w-32 h-8 radius-8\" [class.background-accent]=\"i <= activeStep\" [class.background-disabled]=\"i > activeStep\"></div> \n </ng-container>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] }); }
|
|
6299
|
+
}
|
|
6300
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperControllerComponent, decorators: [{
|
|
6301
|
+
type: Component,
|
|
6302
|
+
args: [{ selector: 'matcha-stepper-controller', providers: [], standalone: false, template: "<div class=\"flex-column flex-align-end gap-16\">\n <span class=\"fw-900 fs-12 lh-12\">{{steps[activeStep]}}</span>\n <div class=\"d-flex align-center gap-8\">\n <ng-container *ngFor=\"let step of steps; let i = index\">\n <div (click)=\"goToStep(i)\" class=\"cursor-pointer w-32 h-8 radius-8\" [class.background-accent]=\"i <= activeStep\" [class.background-disabled]=\"i > activeStep\"></div> \n </ng-container>\n </div>\n</div>\n" }]
|
|
6303
|
+
}], ctorParameters: () => [{ type: MatchaStepperStateService }], propDecorators: { disableNext: [{
|
|
6304
|
+
type: Input
|
|
6305
|
+
}] } });
|
|
6306
|
+
|
|
6179
6307
|
class MatchaTooltipDirective {
|
|
6180
6308
|
constructor(el, renderer) {
|
|
6181
6309
|
this.el = el;
|
|
@@ -7607,6 +7735,89 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImpor
|
|
|
7607
7735
|
}]
|
|
7608
7736
|
}] });
|
|
7609
7737
|
|
|
7738
|
+
class PrevStepDirective {
|
|
7739
|
+
constructor(stepper) {
|
|
7740
|
+
this.stepper = stepper;
|
|
7741
|
+
}
|
|
7742
|
+
onClick() {
|
|
7743
|
+
this.stepper?.prevStep();
|
|
7744
|
+
}
|
|
7745
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: PrevStepDirective, deps: [{ token: MatchaStepperContentComponent }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
7746
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.8", type: PrevStepDirective, isStandalone: true, selector: "[prevStep]", host: { listeners: { "click": "onClick()" } }, ngImport: i0 }); }
|
|
7747
|
+
}
|
|
7748
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: PrevStepDirective, decorators: [{
|
|
7749
|
+
type: Directive,
|
|
7750
|
+
args: [{
|
|
7751
|
+
selector: '[prevStep]',
|
|
7752
|
+
standalone: true
|
|
7753
|
+
}]
|
|
7754
|
+
}], ctorParameters: () => [{ type: MatchaStepperContentComponent }], propDecorators: { onClick: [{
|
|
7755
|
+
type: HostListener,
|
|
7756
|
+
args: ['click']
|
|
7757
|
+
}] } });
|
|
7758
|
+
|
|
7759
|
+
class NextStepDirective {
|
|
7760
|
+
constructor(stepper) {
|
|
7761
|
+
this.stepper = stepper;
|
|
7762
|
+
}
|
|
7763
|
+
onClick() {
|
|
7764
|
+
this.stepper?.nextStep();
|
|
7765
|
+
}
|
|
7766
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: NextStepDirective, deps: [{ token: MatchaStepperContentComponent }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
7767
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.8", type: NextStepDirective, isStandalone: true, selector: "[nextStep]", host: { listeners: { "click": "onClick()" } }, ngImport: i0 }); }
|
|
7768
|
+
}
|
|
7769
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: NextStepDirective, decorators: [{
|
|
7770
|
+
type: Directive,
|
|
7771
|
+
args: [{
|
|
7772
|
+
selector: '[nextStep]',
|
|
7773
|
+
standalone: true
|
|
7774
|
+
}]
|
|
7775
|
+
}], ctorParameters: () => [{ type: MatchaStepperContentComponent }], propDecorators: { onClick: [{
|
|
7776
|
+
type: HostListener,
|
|
7777
|
+
args: ['click']
|
|
7778
|
+
}] } });
|
|
7779
|
+
|
|
7780
|
+
class MatchaStepperModule {
|
|
7781
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7782
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperModule, declarations: [MatchaStepperControllerComponent,
|
|
7783
|
+
MatchaStepperComponent,
|
|
7784
|
+
MatchaStepperContentComponent,
|
|
7785
|
+
StepComponent], imports: [CommonModule,
|
|
7786
|
+
PrevStepDirective,
|
|
7787
|
+
NextStepDirective], exports: [MatchaStepperControllerComponent,
|
|
7788
|
+
MatchaStepperComponent,
|
|
7789
|
+
MatchaStepperContentComponent,
|
|
7790
|
+
StepComponent,
|
|
7791
|
+
PrevStepDirective,
|
|
7792
|
+
NextStepDirective] }); }
|
|
7793
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperModule, imports: [CommonModule] }); }
|
|
7794
|
+
}
|
|
7795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: MatchaStepperModule, decorators: [{
|
|
7796
|
+
type: NgModule,
|
|
7797
|
+
args: [{
|
|
7798
|
+
declarations: [
|
|
7799
|
+
MatchaStepperControllerComponent,
|
|
7800
|
+
MatchaStepperComponent,
|
|
7801
|
+
MatchaStepperContentComponent,
|
|
7802
|
+
StepComponent
|
|
7803
|
+
],
|
|
7804
|
+
imports: [
|
|
7805
|
+
CommonModule,
|
|
7806
|
+
PrevStepDirective,
|
|
7807
|
+
NextStepDirective
|
|
7808
|
+
],
|
|
7809
|
+
exports: [
|
|
7810
|
+
MatchaStepperControllerComponent,
|
|
7811
|
+
MatchaStepperComponent,
|
|
7812
|
+
MatchaStepperContentComponent,
|
|
7813
|
+
StepComponent,
|
|
7814
|
+
PrevStepDirective,
|
|
7815
|
+
NextStepDirective
|
|
7816
|
+
],
|
|
7817
|
+
providers: []
|
|
7818
|
+
}]
|
|
7819
|
+
}] });
|
|
7820
|
+
|
|
7610
7821
|
class NgxMaskPipe {
|
|
7611
7822
|
constructor() {
|
|
7612
7823
|
this.defaultOptions = inject(NGX_MASK_CONFIG);
|
|
@@ -7828,6 +8039,7 @@ class MatchaComponentsModule {
|
|
|
7828
8039
|
MatchaSnackBarModule,
|
|
7829
8040
|
MatchaSortHeaderModule,
|
|
7830
8041
|
MatchaSpinModule,
|
|
8042
|
+
MatchaStepperModule,
|
|
7831
8043
|
MatchaTableModule,
|
|
7832
8044
|
MatchaTabsModule,
|
|
7833
8045
|
MatchaTitleModule,
|
|
@@ -7864,6 +8076,7 @@ class MatchaComponentsModule {
|
|
|
7864
8076
|
MatchaSnackBarModule,
|
|
7865
8077
|
MatchaSortHeaderModule,
|
|
7866
8078
|
MatchaSpinModule,
|
|
8079
|
+
MatchaStepperModule,
|
|
7867
8080
|
MatchaTableModule,
|
|
7868
8081
|
MatchaTabsModule,
|
|
7869
8082
|
MatchaTitleModule,
|
|
@@ -7904,6 +8117,7 @@ class MatchaComponentsModule {
|
|
|
7904
8117
|
MatchaSnackBarModule,
|
|
7905
8118
|
MatchaSortHeaderModule,
|
|
7906
8119
|
MatchaSpinModule,
|
|
8120
|
+
MatchaStepperModule,
|
|
7907
8121
|
MatchaTableModule,
|
|
7908
8122
|
MatchaTabsModule,
|
|
7909
8123
|
MatchaTitleModule,
|
|
@@ -7940,6 +8154,7 @@ class MatchaComponentsModule {
|
|
|
7940
8154
|
MatchaSnackBarModule,
|
|
7941
8155
|
MatchaSortHeaderModule,
|
|
7942
8156
|
MatchaSpinModule,
|
|
8157
|
+
MatchaStepperModule,
|
|
7943
8158
|
MatchaTableModule,
|
|
7944
8159
|
MatchaTabsModule,
|
|
7945
8160
|
MatchaTitleModule,
|
|
@@ -7986,6 +8201,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImpor
|
|
|
7986
8201
|
MatchaSnackBarModule,
|
|
7987
8202
|
MatchaSortHeaderModule,
|
|
7988
8203
|
MatchaSpinModule,
|
|
8204
|
+
MatchaStepperModule,
|
|
7989
8205
|
MatchaTableModule,
|
|
7990
8206
|
MatchaTabsModule,
|
|
7991
8207
|
MatchaTitleModule,
|
|
@@ -8024,6 +8240,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImpor
|
|
|
8024
8240
|
MatchaSnackBarModule,
|
|
8025
8241
|
MatchaSortHeaderModule,
|
|
8026
8242
|
MatchaSpinModule,
|
|
8243
|
+
MatchaStepperModule,
|
|
8027
8244
|
MatchaTableModule,
|
|
8028
8245
|
MatchaTabsModule,
|
|
8029
8246
|
MatchaTitleModule,
|
|
@@ -8032,6 +8249,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImpor
|
|
|
8032
8249
|
}]
|
|
8033
8250
|
}] });
|
|
8034
8251
|
|
|
8252
|
+
class StepContentDirective {
|
|
8253
|
+
constructor(template) {
|
|
8254
|
+
this.template = template;
|
|
8255
|
+
}
|
|
8256
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: StepContentDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
8257
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.8", type: StepContentDirective, isStandalone: true, selector: "[step]", inputs: { step: "step" }, ngImport: i0 }); }
|
|
8258
|
+
}
|
|
8259
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImport: i0, type: StepContentDirective, decorators: [{
|
|
8260
|
+
type: Directive,
|
|
8261
|
+
args: [{
|
|
8262
|
+
selector: '[step]'
|
|
8263
|
+
}]
|
|
8264
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef }], propDecorators: { step: [{
|
|
8265
|
+
type: Input,
|
|
8266
|
+
args: ['step']
|
|
8267
|
+
}] } });
|
|
8268
|
+
|
|
8035
8269
|
/*
|
|
8036
8270
|
* Public API Surface of matcha-components
|
|
8037
8271
|
*/
|
|
@@ -8046,11 +8280,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.8", ngImpor
|
|
|
8046
8280
|
// -----------------------------------------------------------
|
|
8047
8281
|
// COMPONENTS
|
|
8048
8282
|
// -----------------------------------------------------------
|
|
8049
|
-
//export * from './lib/matcha-autocomplete/matcha-autocomplete.directive';
|
|
8050
8283
|
|
|
8051
8284
|
/**
|
|
8052
8285
|
* Generated bundle index. Do not edit.
|
|
8053
8286
|
*/
|
|
8054
8287
|
|
|
8055
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOverlayService, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
|
|
8288
|
+
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOverlayService, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective };
|
|
8056
8289
|
//# sourceMappingURL=matcha-components.mjs.map
|