matcha-components 19.65.0 → 19.66.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 +42 -7
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-components.module.d.ts +2 -1
- package/lib/matcha-tip-text/matcha-tip-text.component.d.ts +5 -0
- package/lib/matcha-tip-text/matcha-tip-text.module.d.ts +8 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -2083,6 +2083,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
2083
2083
|
args: [MatchaTabItemComponent]
|
|
2084
2084
|
}] } });
|
|
2085
2085
|
|
|
2086
|
+
class MatchaTipTextComponent {
|
|
2087
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTipTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2088
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaTipTextComponent, isStandalone: false, selector: "matcha-tip-text", ngImport: i0, template: "<p class=\"blue\">matcha-tip-text works!</p>\n", styles: [""] }); }
|
|
2089
|
+
}
|
|
2090
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTipTextComponent, decorators: [{
|
|
2091
|
+
type: Component,
|
|
2092
|
+
args: [{ selector: 'matcha-tip-text', standalone: false, template: "<p class=\"blue\">matcha-tip-text works!</p>\n" }]
|
|
2093
|
+
}] });
|
|
2094
|
+
|
|
2086
2095
|
class MatchaTooltipDirective {
|
|
2087
2096
|
constructor(el, renderer) {
|
|
2088
2097
|
this.el = el;
|
|
@@ -3578,6 +3587,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3578
3587
|
}]
|
|
3579
3588
|
}] });
|
|
3580
3589
|
|
|
3590
|
+
class MatchaTipTextModule {
|
|
3591
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTipTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3592
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaTipTextModule, declarations: [MatchaTipTextComponent], imports: [CommonModule], exports: [MatchaTipTextComponent] }); }
|
|
3593
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTipTextModule, imports: [CommonModule] }); }
|
|
3594
|
+
}
|
|
3595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaTipTextModule, decorators: [{
|
|
3596
|
+
type: NgModule,
|
|
3597
|
+
args: [{
|
|
3598
|
+
declarations: [
|
|
3599
|
+
MatchaTipTextComponent
|
|
3600
|
+
],
|
|
3601
|
+
imports: [
|
|
3602
|
+
CommonModule
|
|
3603
|
+
],
|
|
3604
|
+
exports: [
|
|
3605
|
+
MatchaTipTextComponent
|
|
3606
|
+
]
|
|
3607
|
+
}]
|
|
3608
|
+
}] });
|
|
3609
|
+
|
|
3581
3610
|
class MatchaComponentsModule {
|
|
3582
3611
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3583
3612
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule,
|
|
@@ -3617,7 +3646,8 @@ class MatchaComponentsModule {
|
|
|
3617
3646
|
MatchaTabsModule,
|
|
3618
3647
|
MatchaTitleModule,
|
|
3619
3648
|
MatchaTooltipModule,
|
|
3620
|
-
MatchaTreeModule
|
|
3649
|
+
MatchaTreeModule,
|
|
3650
|
+
MatchaTipTextModule], exports: [MatchaAccordionModule,
|
|
3621
3651
|
MatchaAutocompleteModule,
|
|
3622
3652
|
MatchaBadgeModule,
|
|
3623
3653
|
MatchaButtonModule,
|
|
@@ -3651,7 +3681,8 @@ class MatchaComponentsModule {
|
|
|
3651
3681
|
MatchaTabsModule,
|
|
3652
3682
|
MatchaTitleModule,
|
|
3653
3683
|
MatchaTooltipModule,
|
|
3654
|
-
MatchaTreeModule
|
|
3684
|
+
MatchaTreeModule,
|
|
3685
|
+
MatchaTipTextModule] }); }
|
|
3655
3686
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule,
|
|
3656
3687
|
FormsModule,
|
|
3657
3688
|
ReactiveFormsModule,
|
|
@@ -3689,7 +3720,8 @@ class MatchaComponentsModule {
|
|
|
3689
3720
|
MatchaTabsModule,
|
|
3690
3721
|
MatchaTitleModule,
|
|
3691
3722
|
MatchaTooltipModule,
|
|
3692
|
-
MatchaTreeModule,
|
|
3723
|
+
MatchaTreeModule,
|
|
3724
|
+
MatchaTipTextModule, MatchaAccordionModule,
|
|
3693
3725
|
MatchaAutocompleteModule,
|
|
3694
3726
|
MatchaBadgeModule,
|
|
3695
3727
|
MatchaButtonModule,
|
|
@@ -3723,7 +3755,8 @@ class MatchaComponentsModule {
|
|
|
3723
3755
|
MatchaTabsModule,
|
|
3724
3756
|
MatchaTitleModule,
|
|
3725
3757
|
MatchaTooltipModule,
|
|
3726
|
-
MatchaTreeModule
|
|
3758
|
+
MatchaTreeModule,
|
|
3759
|
+
MatchaTipTextModule] }); }
|
|
3727
3760
|
}
|
|
3728
3761
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, decorators: [{
|
|
3729
3762
|
type: NgModule,
|
|
@@ -3769,7 +3802,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3769
3802
|
MatchaTabsModule,
|
|
3770
3803
|
MatchaTitleModule,
|
|
3771
3804
|
MatchaTooltipModule,
|
|
3772
|
-
MatchaTreeModule
|
|
3805
|
+
MatchaTreeModule,
|
|
3806
|
+
MatchaTipTextModule
|
|
3773
3807
|
],
|
|
3774
3808
|
exports: [
|
|
3775
3809
|
MatchaAccordionModule,
|
|
@@ -3806,7 +3840,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3806
3840
|
MatchaTabsModule,
|
|
3807
3841
|
MatchaTitleModule,
|
|
3808
3842
|
MatchaTooltipModule,
|
|
3809
|
-
MatchaTreeModule
|
|
3843
|
+
MatchaTreeModule,
|
|
3844
|
+
MatchaTipTextModule
|
|
3810
3845
|
]
|
|
3811
3846
|
}]
|
|
3812
3847
|
}] });
|
|
@@ -3830,5 +3865,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3830
3865
|
* Generated bundle index. Do not edit.
|
|
3831
3866
|
*/
|
|
3832
3867
|
|
|
3833
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, 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, MatchaLabelComponent, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
|
|
3868
|
+
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaAutocompleteOverviewDirective, 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, MatchaLabelComponent, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioButtonDirective, MatchaRadioButtonModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSlideToggleDirective, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTipTextComponent, MatchaTipTextModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, MatchaTreeDirective, MatchaTreeModule };
|
|
3834
3869
|
//# sourceMappingURL=matcha-components.mjs.map
|