matcha-components 19.64.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 +63 -14
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-card/card/card.component.d.ts +14 -5
- 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
|
@@ -843,14 +843,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
843
843
|
|
|
844
844
|
class MatchaCardComponent {
|
|
845
845
|
constructor() {
|
|
846
|
+
this._color = 'surface';
|
|
846
847
|
this.blockquote = 'none';
|
|
847
|
-
this.color = 'surface';
|
|
848
848
|
this.blockquoteColor = null;
|
|
849
849
|
this.class = '';
|
|
850
|
-
this.
|
|
851
|
-
this.
|
|
852
|
-
this.
|
|
850
|
+
this._alpha = false;
|
|
851
|
+
this._tint = false;
|
|
852
|
+
this._loading = false;
|
|
853
|
+
}
|
|
854
|
+
get color() { return this._color; }
|
|
855
|
+
set color(v) { this._color = v || 'surface'; }
|
|
856
|
+
get colorAttr() {
|
|
857
|
+
return this.color;
|
|
853
858
|
}
|
|
859
|
+
get alpha() { return this._alpha; }
|
|
860
|
+
set alpha(v) { this._alpha = v === 'false' ? false : !!v; }
|
|
861
|
+
get tint() { return this._tint; }
|
|
862
|
+
set tint(v) { this._tint = v === 'false' ? false : !!v; }
|
|
863
|
+
get loading() { return this._loading; }
|
|
864
|
+
set loading(v) { this._loading = v === 'false' ? false : !!v; }
|
|
854
865
|
get classes() {
|
|
855
866
|
let backgroundColor = '';
|
|
856
867
|
let blockquoteColor = '';
|
|
@@ -882,14 +893,17 @@ class MatchaCardComponent {
|
|
|
882
893
|
return this.blockquote === 'left' || this.blockquote === 'right';
|
|
883
894
|
}
|
|
884
895
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
885
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaCardComponent, isStandalone: false, selector: "matcha-card", inputs: {
|
|
896
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: MatchaCardComponent, isStandalone: false, selector: "matcha-card", inputs: { color: "color", blockquote: "blockquote", blockquoteColor: "blockquoteColor", class: "class", alpha: "alpha", tint: "tint", loading: "loading" }, host: { properties: { "attr.color": "this.colorAttr", "class": "this.classes" } }, ngImport: i0, template: "<ng-content></ng-content>\n", styles: [""] }); }
|
|
886
897
|
}
|
|
887
898
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaCardComponent, decorators: [{
|
|
888
899
|
type: Component,
|
|
889
900
|
args: [{ selector: 'matcha-card', standalone: false, template: "<ng-content></ng-content>\n" }]
|
|
890
|
-
}], propDecorators: {
|
|
901
|
+
}], propDecorators: { color: [{
|
|
891
902
|
type: Input
|
|
892
|
-
}],
|
|
903
|
+
}], colorAttr: [{
|
|
904
|
+
type: HostBinding,
|
|
905
|
+
args: ['attr.color']
|
|
906
|
+
}], blockquote: [{
|
|
893
907
|
type: Input
|
|
894
908
|
}], blockquoteColor: [{
|
|
895
909
|
type: Input
|
|
@@ -2069,6 +2083,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
2069
2083
|
args: [MatchaTabItemComponent]
|
|
2070
2084
|
}] } });
|
|
2071
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
|
+
|
|
2072
2095
|
class MatchaTooltipDirective {
|
|
2073
2096
|
constructor(el, renderer) {
|
|
2074
2097
|
this.el = el;
|
|
@@ -3564,6 +3587,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3564
3587
|
}]
|
|
3565
3588
|
}] });
|
|
3566
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
|
+
|
|
3567
3610
|
class MatchaComponentsModule {
|
|
3568
3611
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3569
3612
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, declarations: [MatchaOverflowDraggableComponent], imports: [CommonModule,
|
|
@@ -3603,7 +3646,8 @@ class MatchaComponentsModule {
|
|
|
3603
3646
|
MatchaTabsModule,
|
|
3604
3647
|
MatchaTitleModule,
|
|
3605
3648
|
MatchaTooltipModule,
|
|
3606
|
-
MatchaTreeModule
|
|
3649
|
+
MatchaTreeModule,
|
|
3650
|
+
MatchaTipTextModule], exports: [MatchaAccordionModule,
|
|
3607
3651
|
MatchaAutocompleteModule,
|
|
3608
3652
|
MatchaBadgeModule,
|
|
3609
3653
|
MatchaButtonModule,
|
|
@@ -3637,7 +3681,8 @@ class MatchaComponentsModule {
|
|
|
3637
3681
|
MatchaTabsModule,
|
|
3638
3682
|
MatchaTitleModule,
|
|
3639
3683
|
MatchaTooltipModule,
|
|
3640
|
-
MatchaTreeModule
|
|
3684
|
+
MatchaTreeModule,
|
|
3685
|
+
MatchaTipTextModule] }); }
|
|
3641
3686
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, imports: [CommonModule,
|
|
3642
3687
|
FormsModule,
|
|
3643
3688
|
ReactiveFormsModule,
|
|
@@ -3675,7 +3720,8 @@ class MatchaComponentsModule {
|
|
|
3675
3720
|
MatchaTabsModule,
|
|
3676
3721
|
MatchaTitleModule,
|
|
3677
3722
|
MatchaTooltipModule,
|
|
3678
|
-
MatchaTreeModule,
|
|
3723
|
+
MatchaTreeModule,
|
|
3724
|
+
MatchaTipTextModule, MatchaAccordionModule,
|
|
3679
3725
|
MatchaAutocompleteModule,
|
|
3680
3726
|
MatchaBadgeModule,
|
|
3681
3727
|
MatchaButtonModule,
|
|
@@ -3709,7 +3755,8 @@ class MatchaComponentsModule {
|
|
|
3709
3755
|
MatchaTabsModule,
|
|
3710
3756
|
MatchaTitleModule,
|
|
3711
3757
|
MatchaTooltipModule,
|
|
3712
|
-
MatchaTreeModule
|
|
3758
|
+
MatchaTreeModule,
|
|
3759
|
+
MatchaTipTextModule] }); }
|
|
3713
3760
|
}
|
|
3714
3761
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: MatchaComponentsModule, decorators: [{
|
|
3715
3762
|
type: NgModule,
|
|
@@ -3755,7 +3802,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3755
3802
|
MatchaTabsModule,
|
|
3756
3803
|
MatchaTitleModule,
|
|
3757
3804
|
MatchaTooltipModule,
|
|
3758
|
-
MatchaTreeModule
|
|
3805
|
+
MatchaTreeModule,
|
|
3806
|
+
MatchaTipTextModule
|
|
3759
3807
|
],
|
|
3760
3808
|
exports: [
|
|
3761
3809
|
MatchaAccordionModule,
|
|
@@ -3792,7 +3840,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3792
3840
|
MatchaTabsModule,
|
|
3793
3841
|
MatchaTitleModule,
|
|
3794
3842
|
MatchaTooltipModule,
|
|
3795
|
-
MatchaTreeModule
|
|
3843
|
+
MatchaTreeModule,
|
|
3844
|
+
MatchaTipTextModule
|
|
3796
3845
|
]
|
|
3797
3846
|
}]
|
|
3798
3847
|
}] });
|
|
@@ -3816,5 +3865,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3816
3865
|
* Generated bundle index. Do not edit.
|
|
3817
3866
|
*/
|
|
3818
3867
|
|
|
3819
|
-
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 };
|
|
3820
3869
|
//# sourceMappingURL=matcha-components.mjs.map
|