matcha-components 20.2.0 → 20.4.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 +519 -449
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +34 -16
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -496,6 +496,32 @@ declare class MatchaCheckboxComponent implements ControlValueAccessor {
|
|
|
496
496
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaCheckboxComponent, "matcha-checkbox", never, { "color": { "alias": "color"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "checkedChange": "checkedChange"; "change": "change"; }, never, ["*"], false, never>;
|
|
497
497
|
}
|
|
498
498
|
|
|
499
|
+
declare class MatchaRadioComponent implements ControlValueAccessor {
|
|
500
|
+
color: string;
|
|
501
|
+
value: any;
|
|
502
|
+
name: string;
|
|
503
|
+
private _disabled;
|
|
504
|
+
set disabled(value: boolean | string);
|
|
505
|
+
get disabled(): boolean;
|
|
506
|
+
get checked(): boolean;
|
|
507
|
+
set checked(value: boolean);
|
|
508
|
+
private _checked;
|
|
509
|
+
private _modelValue;
|
|
510
|
+
checkedChange: EventEmitter<{
|
|
511
|
+
checked: boolean;
|
|
512
|
+
}>;
|
|
513
|
+
change: EventEmitter<Event>;
|
|
514
|
+
onChange: any;
|
|
515
|
+
onTouched: any;
|
|
516
|
+
writeValue(value: any): void;
|
|
517
|
+
registerOnChange(fn: any): void;
|
|
518
|
+
registerOnTouched(fn: any): void;
|
|
519
|
+
setDisabledState(isDisabled: boolean): void;
|
|
520
|
+
onInputChange(event: Event): void;
|
|
521
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioComponent, never>;
|
|
522
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaRadioComponent, "matcha-radio", never, { "color": { "alias": "color"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "checkedChange": "checkedChange"; "change": "change"; }, never, ["*"], false, never>;
|
|
523
|
+
}
|
|
524
|
+
|
|
499
525
|
declare class MatchaSpinComponent {
|
|
500
526
|
private _elementRef;
|
|
501
527
|
private _renderer;
|
|
@@ -1118,6 +1144,12 @@ declare class MatchaCheckboxModule {
|
|
|
1118
1144
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaCheckboxModule>;
|
|
1119
1145
|
}
|
|
1120
1146
|
|
|
1147
|
+
declare class MatchaRadioModule {
|
|
1148
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioModule, never>;
|
|
1149
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaRadioModule, [typeof MatchaRadioComponent], [typeof i2.CommonModule, typeof MatchaRippleModule], [typeof MatchaRadioComponent]>;
|
|
1150
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaRadioModule>;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1121
1153
|
declare class MatchaChipsDirective {
|
|
1122
1154
|
private _elementRef;
|
|
1123
1155
|
private _renderer;
|
|
@@ -1212,20 +1244,6 @@ declare class MatchaProgressBarModule {
|
|
|
1212
1244
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaProgressBarModule>;
|
|
1213
1245
|
}
|
|
1214
1246
|
|
|
1215
|
-
declare class MatchaRadioButtonDirective {
|
|
1216
|
-
private _elementRef;
|
|
1217
|
-
private _renderer;
|
|
1218
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1219
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioButtonDirective, never>;
|
|
1220
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaRadioButtonDirective, "[matchaRadioButton]", never, {}, {}, never, never, false, never>;
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
declare class MatchaRadioButtonModule {
|
|
1224
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioButtonModule, never>;
|
|
1225
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaRadioButtonModule, [typeof MatchaRadioButtonDirective], [typeof i2.CommonModule], [typeof MatchaRadioButtonDirective]>;
|
|
1226
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaRadioButtonModule>;
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
1247
|
declare class MatchaSelectDirective {
|
|
1230
1248
|
private _elementRef;
|
|
1231
1249
|
private _renderer;
|
|
@@ -1392,7 +1410,7 @@ declare class MatchaPageLayoutModule {
|
|
|
1392
1410
|
|
|
1393
1411
|
declare class MatchaComponentsModule {
|
|
1394
1412
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaComponentsModule, never>;
|
|
1395
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaComponentsModule, [typeof MatchaOverflowDraggableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof MatchaAccordionModule, typeof MatchaOptionModule, typeof MatchaAutocompleteModule, typeof MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaChipsModule, typeof MatchaDatepickerModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, typeof MatchaMasonryModule, typeof MatchaMenuModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaProgressBarModule, typeof
|
|
1413
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaComponentsModule, [typeof MatchaOverflowDraggableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof MatchaAccordionModule, typeof MatchaOptionModule, typeof MatchaAutocompleteModule, typeof MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaChipsModule, typeof MatchaDatepickerModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, typeof MatchaMasonryModule, typeof MatchaMenuModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaProgressBarModule, typeof MatchaRippleModule, typeof MatchaSelectModule, typeof MatchaSidenavModule, typeof MatchaSlideToggleModule, typeof MatchaSliderModule, typeof MatchaSnackBarModule, typeof MatchaSortHeaderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaStepperModule, typeof MatchaTableModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule], [typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaChipsModule, typeof MatchaDatepickerModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, typeof MatchaMasonryModule, typeof MatchaMenuModule, typeof MatchaModalModule, typeof MatchaOptionModule, typeof MatchaPaginatorModule, typeof MatchaProgressBarModule, typeof MatchaRippleModule, typeof MatchaSelectModule, typeof MatchaSidenavModule, typeof MatchaSlideToggleModule, typeof MatchaSliderModule, typeof MatchaSnackBarModule, typeof MatchaSortHeaderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaStepperModule, typeof MatchaTableModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule]>;
|
|
1396
1414
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaComponentsModule>;
|
|
1397
1415
|
}
|
|
1398
1416
|
|
|
@@ -1509,5 +1527,5 @@ declare class StepContentDirective {
|
|
|
1509
1527
|
static ɵdir: i0.ɵɵDirectiveDeclaration<StepContentDirective, "[step]", never, { "step": { "alias": "step"; "required": false; }; }, {}, never, never, true, never>;
|
|
1510
1528
|
}
|
|
1511
1529
|
|
|
1512
|
-
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOptionService, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule,
|
|
1530
|
+
export { MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteDirective, MatchaAutocompleteModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDatepickerDirective, MatchaDatepickerModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOptionService, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectDirective, MatchaSelectModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective };
|
|
1513
1531
|
export type { ILevelClasses, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, ModalComponent };
|