matcha-components 20.208.0 → 20.211.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.
@@ -2954,7 +2954,7 @@ class MatchaButtonComponent {
2954
2954
  this.sizeLg = null;
2955
2955
  this.sizeXl = null;
2956
2956
  this.gap = null;
2957
- this.color = 'basic';
2957
+ this.color = null;
2958
2958
  this._basic = false;
2959
2959
  this._outline = false;
2960
2960
  this._alpha = false;
@@ -7916,6 +7916,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
7916
7916
  }]
7917
7917
  }] });
7918
7918
 
7919
+ class MatchaMsgBoxComponent {
7920
+ constructor() {
7921
+ this._color = 'info';
7922
+ this._icon = 'info-out';
7923
+ }
7924
+ get color() { return this._color; }
7925
+ set color(v) { this._color = v || 'info'; }
7926
+ get colorAttr() {
7927
+ return this.color;
7928
+ }
7929
+ get icon() { return this._icon; }
7930
+ set icon(v) { this._icon = v || 'info-out'; }
7931
+ get hostClasses() {
7932
+ return 'matcha-msg-box';
7933
+ }
7934
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaMsgBoxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7935
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: MatchaMsgBoxComponent, isStandalone: false, selector: "matcha-msg-box", inputs: { color: "color", icon: "icon" }, host: { properties: { "attr.color": "this.colorAttr", "class": "this.hostClasses" } }, ngImport: i0, template: "<matcha-card [color]=\"color\" [blockquoteColor]=\"color\" blockquote=\"left\" alpha=\"true\" class=\"p-16\">\n <div class=\"d-flex flex-align-center gap-16 w-100-p\">\n <matcha-icon [name]=\"icon\" size=\"lg\" [color]=\"color\"></matcha-icon>\n <div class=\"d-flex flex-column flex-sm-row flex-align-center flex-space-between flex-1 w-100-p gap-16\">\n <div class=\"w-100-p\">\n <ng-content></ng-content>\n </div>\n <ng-content select=\"matcha-msg-box-actions\"></ng-content>\n </div>\n </div>\n</matcha-card>", styles: [""], dependencies: [{ kind: "component", type: MatchaIconComponent, selector: "matcha-icon", inputs: ["name", "size", "color", "class", "loading"] }, { kind: "component", type: MatchaCardComponent, selector: "matcha-card", inputs: ["color", "blockquote", "blockquoteColor", "class", "alpha", "tint", "loading"] }], encapsulation: i0.ViewEncapsulation.None }); }
7936
+ }
7937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaMsgBoxComponent, decorators: [{
7938
+ type: Component,
7939
+ args: [{ selector: 'matcha-msg-box', standalone: false, encapsulation: ViewEncapsulation.None, template: "<matcha-card [color]=\"color\" [blockquoteColor]=\"color\" blockquote=\"left\" alpha=\"true\" class=\"p-16\">\n <div class=\"d-flex flex-align-center gap-16 w-100-p\">\n <matcha-icon [name]=\"icon\" size=\"lg\" [color]=\"color\"></matcha-icon>\n <div class=\"d-flex flex-column flex-sm-row flex-align-center flex-space-between flex-1 w-100-p gap-16\">\n <div class=\"w-100-p\">\n <ng-content></ng-content>\n </div>\n <ng-content select=\"matcha-msg-box-actions\"></ng-content>\n </div>\n </div>\n</matcha-card>" }]
7940
+ }], propDecorators: { color: [{
7941
+ type: Input
7942
+ }], colorAttr: [{
7943
+ type: HostBinding,
7944
+ args: ['attr.color']
7945
+ }], icon: [{
7946
+ type: Input
7947
+ }], hostClasses: [{
7948
+ type: HostBinding,
7949
+ args: ['class']
7950
+ }] } });
7951
+
7952
+ class MatchaMsgBoxActionsComponent {
7953
+ get hostClasses() {
7954
+ return 'matcha-msg-box-actions';
7955
+ }
7956
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaMsgBoxActionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7957
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: MatchaMsgBoxActionsComponent, isStandalone: false, selector: "matcha-msg-box-actions", host: { properties: { "class": "this.hostClasses" } }, ngImport: i0, template: "<div class=\"d-flex flex-align-center gap-16\">\n <ng-content></ng-content>\n</div>", styles: [""], encapsulation: i0.ViewEncapsulation.None }); }
7958
+ }
7959
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaMsgBoxActionsComponent, decorators: [{
7960
+ type: Component,
7961
+ args: [{ selector: 'matcha-msg-box-actions', standalone: false, encapsulation: ViewEncapsulation.None, template: "<div class=\"d-flex flex-align-center gap-16\">\n <ng-content></ng-content>\n</div>" }]
7962
+ }], propDecorators: { hostClasses: [{
7963
+ type: HostBinding,
7964
+ args: ['class']
7965
+ }] } });
7966
+
7967
+ class MatchaMsgBoxModule {
7968
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaMsgBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
7969
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.0", ngImport: i0, type: MatchaMsgBoxModule, declarations: [MatchaMsgBoxComponent, MatchaMsgBoxActionsComponent], imports: [CommonModule,
7970
+ MatchaIconModule,
7971
+ MatchaCardModule], exports: [MatchaMsgBoxComponent, MatchaMsgBoxActionsComponent] }); }
7972
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaMsgBoxModule, imports: [CommonModule,
7973
+ MatchaIconModule,
7974
+ MatchaCardModule] }); }
7975
+ }
7976
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaMsgBoxModule, decorators: [{
7977
+ type: NgModule,
7978
+ args: [{
7979
+ declarations: [MatchaMsgBoxComponent, MatchaMsgBoxActionsComponent],
7980
+ imports: [
7981
+ CommonModule,
7982
+ MatchaIconModule,
7983
+ MatchaCardModule
7984
+ ],
7985
+ exports: [MatchaMsgBoxComponent, MatchaMsgBoxActionsComponent]
7986
+ }]
7987
+ }] });
7988
+
7919
7989
  class MatchaSpinComponent {
7920
7990
  set progress(value) {
7921
7991
  this._progress = Number(value);
@@ -9172,11 +9242,11 @@ class MatchaTimeRangeComponent {
9172
9242
  }
9173
9243
  }
9174
9244
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaTimeRangeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9175
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: MatchaTimeRangeComponent, isStandalone: false, selector: "matcha-time-range", inputs: { startDateControlName: "startDateControlName", endDateControlName: "endDateControlName", allowCrossDays: "allowCrossDays" }, queries: [{ propertyName: "controls", predicate: NgControl, descendants: true }], ngImport: i0, template: "<div class=\"d-flex gap-16\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
9245
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: MatchaTimeRangeComponent, isStandalone: false, selector: "matcha-time-range", inputs: { startDateControlName: "startDateControlName", endDateControlName: "endDateControlName", allowCrossDays: "allowCrossDays" }, queries: [{ propertyName: "controls", predicate: NgControl, descendants: true }], ngImport: i0, template: "<div class=\"matcha-time-range-container\">\n <ng-content></ng-content>\n</div>\n", styles: [""] }); }
9176
9246
  }
9177
9247
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaTimeRangeComponent, decorators: [{
9178
9248
  type: Component,
9179
- args: [{ selector: 'matcha-time-range', standalone: false, template: "<div class=\"d-flex gap-16\">\n <ng-content></ng-content>\n</div>\n" }]
9249
+ args: [{ selector: 'matcha-time-range', standalone: false, template: "<div class=\"matcha-time-range-container\">\n <ng-content></ng-content>\n</div>\n" }]
9180
9250
  }], propDecorators: { controls: [{
9181
9251
  type: ContentChildren,
9182
9252
  args: [NgControl, { descendants: true }]
@@ -14501,6 +14571,7 @@ class MatchaComponentsModule {
14501
14571
  MatchaPaginatorModule,
14502
14572
  MatchaRippleModule,
14503
14573
  MatchaSlideToggleModule,
14574
+ MatchaMsgBoxModule,
14504
14575
  MatchaSliderModule,
14505
14576
  MatchaSpinModule,
14506
14577
  MatchaSpinnerModule,
@@ -14543,6 +14614,7 @@ class MatchaComponentsModule {
14543
14614
  MatchaPaginatorModule,
14544
14615
  MatchaRippleModule,
14545
14616
  MatchaSlideToggleModule,
14617
+ MatchaMsgBoxModule,
14546
14618
  MatchaSliderModule,
14547
14619
  MatchaSpinModule,
14548
14620
  MatchaSpinnerModule,
@@ -14590,6 +14662,7 @@ class MatchaComponentsModule {
14590
14662
  MatchaPaginatorModule,
14591
14663
  MatchaRippleModule,
14592
14664
  MatchaSlideToggleModule,
14665
+ MatchaMsgBoxModule,
14593
14666
  MatchaSliderModule,
14594
14667
  MatchaSpinModule,
14595
14668
  MatchaSpinnerModule,
@@ -14632,6 +14705,7 @@ class MatchaComponentsModule {
14632
14705
  MatchaPaginatorModule,
14633
14706
  MatchaRippleModule,
14634
14707
  MatchaSlideToggleModule,
14708
+ MatchaMsgBoxModule,
14635
14709
  MatchaSliderModule,
14636
14710
  MatchaSpinModule,
14637
14711
  MatchaSpinnerModule,
@@ -14685,6 +14759,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
14685
14759
  MatchaPaginatorModule,
14686
14760
  MatchaRippleModule,
14687
14761
  MatchaSlideToggleModule,
14762
+ MatchaMsgBoxModule,
14688
14763
  MatchaSliderModule,
14689
14764
  MatchaSpinModule,
14690
14765
  MatchaSpinnerModule,
@@ -14729,6 +14804,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
14729
14804
  MatchaPaginatorModule,
14730
14805
  MatchaRippleModule,
14731
14806
  MatchaSlideToggleModule,
14807
+ MatchaMsgBoxModule,
14732
14808
  MatchaSliderModule,
14733
14809
  MatchaSpinModule,
14734
14810
  MatchaSpinnerModule,
@@ -15363,5 +15439,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
15363
15439
  * Generated bundle index. Do not edit.
15364
15440
  */
15365
15441
 
15366
- export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBreakpointObservableModule, MatchaBreakpointObserver, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipComponent, MatchaChipListComponent, MatchaChipModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDateRangeComponent, MatchaDateRangeModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHighlightComponent, MatchaHighlightModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaListComponent, MatchaListItemComponent, MatchaListModule, MatchaMaskApplierService, MatchaMaskCompatibleDirective, MatchaMaskModule, MatchaMaskPipe, MatchaMaskService, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuItemDirective, MatchaMenuModule, MatchaMenuTriggerDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorComponent, MatchaPaginatorIntl, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarComponent, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioGroupComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectComponent, MatchaSelectModule, MatchaSelectTriggerDirective, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderComponent, MatchaSliderModule, MatchaSnackBarComponent, MatchaSnackBarModule, MatchaSnackBarService, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaSubmenuTriggerDirective, MatchaTabItemComponent, MatchaTableComponent, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTimeRangeComponent, MatchaTimeRangeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, compatibleOptions, initialConfig, timeMasks, withoutValidation };
15442
+ export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBreakpointObservableModule, MatchaBreakpointObserver, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipComponent, MatchaChipListComponent, MatchaChipModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDateRangeComponent, MatchaDateRangeModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHighlightComponent, MatchaHighlightModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaListComponent, MatchaListItemComponent, MatchaListModule, MatchaMaskApplierService, MatchaMaskCompatibleDirective, MatchaMaskModule, MatchaMaskPipe, MatchaMaskService, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuItemDirective, MatchaMenuModule, MatchaMenuTriggerDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaMsgBoxActionsComponent, MatchaMsgBoxComponent, MatchaMsgBoxModule, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorComponent, MatchaPaginatorIntl, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarComponent, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioGroupComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectComponent, MatchaSelectModule, MatchaSelectTriggerDirective, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderComponent, MatchaSliderModule, MatchaSnackBarComponent, MatchaSnackBarModule, MatchaSnackBarService, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaSubmenuTriggerDirective, MatchaTabItemComponent, MatchaTableComponent, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTimeRangeComponent, MatchaTimeRangeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, compatibleOptions, initialConfig, timeMasks, withoutValidation };
15367
15443
  //# sourceMappingURL=matcha-components.mjs.map