matcha-components 20.263.0 → 20.265.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 +620 -510
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +91 -51
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -683,11 +683,15 @@ declare class MatchaCardModule {
|
|
|
683
683
|
declare class MatchaCheckboxComponent implements ControlValueAccessor {
|
|
684
684
|
private cdr;
|
|
685
685
|
inputElement: ElementRef<HTMLInputElement>;
|
|
686
|
-
|
|
686
|
+
private _color;
|
|
687
|
+
get colorAttr(): string;
|
|
688
|
+
get color(): string;
|
|
689
|
+
set color(value: string);
|
|
687
690
|
private _indeterminate;
|
|
688
691
|
get indeterminate(): boolean;
|
|
689
692
|
set indeterminate(value: boolean);
|
|
690
693
|
private _disabled;
|
|
694
|
+
get disabledAttr(): string | null;
|
|
691
695
|
get disabled(): boolean;
|
|
692
696
|
set disabled(value: boolean | string);
|
|
693
697
|
private _checked;
|
|
@@ -2117,11 +2121,40 @@ declare class MatchaTimeRangeModule {
|
|
|
2117
2121
|
}
|
|
2118
2122
|
|
|
2119
2123
|
declare class MatchaDropListService {
|
|
2124
|
+
private ngZone;
|
|
2120
2125
|
private dropZones;
|
|
2126
|
+
private namedDropZones;
|
|
2127
|
+
readonly currentDragData: i0.WritableSignal<any>;
|
|
2128
|
+
readonly currentDragType: i0.WritableSignal<string>;
|
|
2129
|
+
private activeDrag;
|
|
2130
|
+
private ghostElement;
|
|
2131
|
+
private dragOffsetX;
|
|
2132
|
+
private dragOffsetY;
|
|
2133
|
+
private lastTargetContainer;
|
|
2134
|
+
private globalListeners;
|
|
2135
|
+
private hoverTimer;
|
|
2136
|
+
private lastHoveredItemIndex;
|
|
2137
|
+
private hasMoved;
|
|
2138
|
+
private startX;
|
|
2139
|
+
private startY;
|
|
2140
|
+
constructor(ngZone: NgZone);
|
|
2121
2141
|
registerDropZone(element: HTMLElement, component: any): void;
|
|
2122
2142
|
unregisterDropZone(element: HTMLElement): void;
|
|
2123
2143
|
findDropZone(element: Element | null): any;
|
|
2124
2144
|
getAllDropZones(): any[];
|
|
2145
|
+
registerNamedDropZone(id: string | number, directive: any): void;
|
|
2146
|
+
unregisterNamedDropZone(id: string | number): void;
|
|
2147
|
+
beginDrag(dragDirective: any, nativeEl: HTMLElement, event: MouseEvent | TouchEvent, groupEl?: HTMLElement): void;
|
|
2148
|
+
private createGhost;
|
|
2149
|
+
private setupGlobalListeners;
|
|
2150
|
+
private onPointerMove;
|
|
2151
|
+
private onPointerUp;
|
|
2152
|
+
private findContainerFromElements;
|
|
2153
|
+
private findNamedDropZoneAt;
|
|
2154
|
+
private handleHoverExpand;
|
|
2155
|
+
private cleanup;
|
|
2156
|
+
private getClientX;
|
|
2157
|
+
private getClientY;
|
|
2125
2158
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropListService, never>;
|
|
2126
2159
|
static ɵprov: i0.ɵɵInjectableDeclaration<MatchaDropListService>;
|
|
2127
2160
|
}
|
|
@@ -2133,46 +2166,23 @@ declare class MatchaDragDirective implements OnInit, OnDestroy {
|
|
|
2133
2166
|
private dropListService;
|
|
2134
2167
|
matchaDragData: any;
|
|
2135
2168
|
matchaDragDisabled: boolean;
|
|
2169
|
+
matchaDragGroupEl: HTMLElement | null;
|
|
2170
|
+
matchaDragType: string;
|
|
2171
|
+
matchaDragStarted: EventEmitter<void>;
|
|
2136
2172
|
get dragItemClass(): boolean;
|
|
2137
2173
|
get dragDisabledClass(): boolean;
|
|
2138
2174
|
private listeners;
|
|
2139
|
-
private isDragging;
|
|
2140
2175
|
private dragHandle?;
|
|
2141
2176
|
private dropList?;
|
|
2142
|
-
private touchStartPosition;
|
|
2143
|
-
private touchCurrentPosition;
|
|
2144
|
-
private touchDragThreshold;
|
|
2145
|
-
private isTouchDragging;
|
|
2146
|
-
private dragPreview?;
|
|
2147
|
-
private touchIdentifier?;
|
|
2148
2177
|
constructor(elementRef: ElementRef<HTMLElement>, renderer: Renderer2, ngZone: NgZone, dropListService: MatchaDropListService);
|
|
2149
2178
|
ngOnInit(): void;
|
|
2150
2179
|
ngOnDestroy(): void;
|
|
2151
2180
|
setDropList(dropList: any): void;
|
|
2152
2181
|
setDragHandle(handle: HTMLElement): void;
|
|
2153
|
-
private
|
|
2154
|
-
private onDragStart;
|
|
2155
|
-
private onDragEnd;
|
|
2156
|
-
private onTouchStart;
|
|
2157
|
-
private onTouchMove;
|
|
2158
|
-
private onTouchEnd;
|
|
2159
|
-
private onTouchCancel;
|
|
2160
|
-
private startTouchDrag;
|
|
2161
|
-
private updateTouchDrag;
|
|
2162
|
-
private endTouchDrag;
|
|
2163
|
-
private cancelTouchDrag;
|
|
2164
|
-
private createTouchDragPreview;
|
|
2165
|
-
private checkDropZones;
|
|
2166
|
-
private findDropZone;
|
|
2167
|
-
private findAngularComponent;
|
|
2168
|
-
private createFakeDragEvent;
|
|
2169
|
-
private findTouch;
|
|
2170
|
-
private resetTouchState;
|
|
2171
|
-
private cleanupTouchDrag;
|
|
2172
|
-
private createDragImage;
|
|
2182
|
+
private setupPointerEvents;
|
|
2173
2183
|
private cleanupListeners;
|
|
2174
2184
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDragDirective, never>;
|
|
2175
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDragDirective, "[matchaDrag]", never, { "matchaDragData": { "alias": "matchaDragData"; "required": false; }; "matchaDragDisabled": { "alias": "matchaDragDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
2185
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDragDirective, "[matchaDrag]", never, { "matchaDragData": { "alias": "matchaDragData"; "required": false; }; "matchaDragDisabled": { "alias": "matchaDragDisabled"; "required": false; }; "matchaDragGroupEl": { "alias": "matchaDragGroupEl"; "required": false; }; "matchaDragType": { "alias": "matchaDragType"; "required": false; }; }, { "matchaDragStarted": "matchaDragStarted"; }, never, never, false, never>;
|
|
2176
2186
|
}
|
|
2177
2187
|
|
|
2178
2188
|
interface MatchaDropListDroppedEvent<T = any> {
|
|
@@ -2190,7 +2200,7 @@ interface MatchaDropListConnectedToEvent<T = any> {
|
|
|
2190
2200
|
previousIndex: number;
|
|
2191
2201
|
currentIndex: number;
|
|
2192
2202
|
}
|
|
2193
|
-
declare class MatchaDropListComponent<T = any> implements OnInit, OnDestroy
|
|
2203
|
+
declare class MatchaDropListComponent<T = any> implements OnInit, OnDestroy {
|
|
2194
2204
|
elementRef: ElementRef<HTMLElement>;
|
|
2195
2205
|
private renderer;
|
|
2196
2206
|
private dropListService;
|
|
@@ -2199,36 +2209,46 @@ declare class MatchaDropListComponent<T = any> implements OnInit, OnDestroy, Aft
|
|
|
2199
2209
|
matchaDropListConnectedTo: MatchaDropListComponent[];
|
|
2200
2210
|
matchaDropListSortingDisabled: boolean;
|
|
2201
2211
|
matchaDropListAcceptPredicate?: (item: any, sourceContainer: MatchaDropListComponent, targetContainer: MatchaDropListComponent) => boolean;
|
|
2212
|
+
matchaDropListAcceptTypes: string[];
|
|
2213
|
+
matchaDropListTreeMode: boolean;
|
|
2214
|
+
matchaDropListHoverExpandDelay: number;
|
|
2202
2215
|
matchaDropListDropped: EventEmitter<MatchaDropListDroppedEvent<T>>;
|
|
2203
|
-
|
|
2216
|
+
matchaDropListHoverExpand: EventEmitter<any>;
|
|
2217
|
+
private _directDragItems;
|
|
2218
|
+
get directDragItems(): MatchaDragDirective[];
|
|
2204
2219
|
get dropListClass(): boolean;
|
|
2205
|
-
private currentDragItem?;
|
|
2206
|
-
private dragStartIndex;
|
|
2207
|
-
private sourceContainer?;
|
|
2208
2220
|
isReceivingDrag: boolean;
|
|
2209
2221
|
showDropIndicator: boolean;
|
|
2210
2222
|
dropIndicatorPosition: number;
|
|
2211
2223
|
canAcceptDrop: boolean;
|
|
2212
2224
|
private calculatedDropIndex;
|
|
2225
|
+
private currentDragItem?;
|
|
2226
|
+
private dragStartIndex;
|
|
2227
|
+
private sourceContainer?;
|
|
2213
2228
|
constructor(elementRef: ElementRef<HTMLElement>, renderer: Renderer2, dropListService: MatchaDropListService);
|
|
2214
2229
|
ngOnInit(): void;
|
|
2215
|
-
|
|
2230
|
+
registerDragItem(item: MatchaDragDirective): void;
|
|
2231
|
+
unregisterDragItem(item: MatchaDragDirective): void;
|
|
2216
2232
|
ngOnDestroy(): void;
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
private
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2233
|
+
onPointerDragStart(dragItem: MatchaDragDirective): void;
|
|
2234
|
+
onPointerDragEnd(): void;
|
|
2235
|
+
updatePlaceholder(clientX: number, clientY: number, dragDirective: MatchaDragDirective, sourceContainer?: MatchaDropListComponent): void;
|
|
2236
|
+
clearPlaceholder(): void;
|
|
2237
|
+
private getInnerContainer;
|
|
2238
|
+
finalizeDrop(dragDirective: MatchaDragDirective, sourceContainer: MatchaDropListComponent): void;
|
|
2239
|
+
getItemIndexAt(clientX: number, clientY: number): number;
|
|
2240
|
+
emitHoverExpand(itemIndex: number): void;
|
|
2225
2241
|
notifyDragStart(dragItem: MatchaDragDirective, sourceContainer: MatchaDropListComponent): void;
|
|
2226
2242
|
notifyDragEnd(): void;
|
|
2227
|
-
private
|
|
2228
|
-
|
|
2229
|
-
|
|
2243
|
+
private reorderItems;
|
|
2244
|
+
private transferItem;
|
|
2245
|
+
getDragItemIndex(dragItem: MatchaDragDirective): number;
|
|
2246
|
+
onDragStart(dragItem: MatchaDragDirective, _event: any): void;
|
|
2247
|
+
onDragEnd(): void;
|
|
2248
|
+
handleTouchDragOver(_event: any): void;
|
|
2249
|
+
handleTouchDrop(_event: any, _dragItem: any): void;
|
|
2230
2250
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropListComponent<any>, never>;
|
|
2231
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDropListComponent<any>, "matcha-drop-list", never, { "matchaDropListData": { "alias": "matchaDropListData"; "required": false; }; "matchaDropListDisabled": { "alias": "matchaDropListDisabled"; "required": false; }; "matchaDropListConnectedTo": { "alias": "matchaDropListConnectedTo"; "required": false; }; "matchaDropListSortingDisabled": { "alias": "matchaDropListSortingDisabled"; "required": false; }; "matchaDropListAcceptPredicate": { "alias": "matchaDropListAcceptPredicate"; "required": false; }; }, { "matchaDropListDropped": "matchaDropListDropped";
|
|
2251
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDropListComponent<any>, "matcha-drop-list", never, { "matchaDropListData": { "alias": "matchaDropListData"; "required": false; }; "matchaDropListDisabled": { "alias": "matchaDropListDisabled"; "required": false; }; "matchaDropListConnectedTo": { "alias": "matchaDropListConnectedTo"; "required": false; }; "matchaDropListSortingDisabled": { "alias": "matchaDropListSortingDisabled"; "required": false; }; "matchaDropListAcceptPredicate": { "alias": "matchaDropListAcceptPredicate"; "required": false; }; "matchaDropListAcceptTypes": { "alias": "matchaDropListAcceptTypes"; "required": false; }; "matchaDropListTreeMode": { "alias": "matchaDropListTreeMode"; "required": false; }; "matchaDropListHoverExpandDelay": { "alias": "matchaDropListHoverExpandDelay"; "required": false; }; }, { "matchaDropListDropped": "matchaDropListDropped"; "matchaDropListHoverExpand": "matchaDropListHoverExpand"; }, never, ["*"], false, never>;
|
|
2232
2252
|
}
|
|
2233
2253
|
|
|
2234
2254
|
declare class MatchaDragHandleDirective implements OnInit {
|
|
@@ -2241,9 +2261,29 @@ declare class MatchaDragHandleDirective implements OnInit {
|
|
|
2241
2261
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDragHandleDirective, "[matchaDragHandle]", never, {}, {}, never, never, false, never>;
|
|
2242
2262
|
}
|
|
2243
2263
|
|
|
2264
|
+
interface MatchaDropZoneDroppedEvent<T = any> {
|
|
2265
|
+
item: T;
|
|
2266
|
+
clientX: number;
|
|
2267
|
+
clientY: number;
|
|
2268
|
+
}
|
|
2269
|
+
declare class MatchaDropZoneDirective implements OnInit, OnDestroy {
|
|
2270
|
+
elementRef: ElementRef<HTMLElement>;
|
|
2271
|
+
private dropListService;
|
|
2272
|
+
matchaDropZoneId: string | number;
|
|
2273
|
+
matchaDropZoneAcceptTypes: string[];
|
|
2274
|
+
matchaDropZoneDropped: EventEmitter<MatchaDropZoneDroppedEvent<any>>;
|
|
2275
|
+
get isDropRejected(): boolean;
|
|
2276
|
+
constructor(elementRef: ElementRef<HTMLElement>, dropListService: MatchaDropListService);
|
|
2277
|
+
ngOnInit(): void;
|
|
2278
|
+
ngOnDestroy(): void;
|
|
2279
|
+
handleDrop(item: any, clientX: number, clientY: number): void;
|
|
2280
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropZoneDirective, never>;
|
|
2281
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDropZoneDirective, "[matchaDropZone]", never, { "matchaDropZoneId": { "alias": "matchaDropZoneId"; "required": true; }; "matchaDropZoneAcceptTypes": { "alias": "matchaDropZoneAcceptTypes"; "required": false; }; }, { "matchaDropZoneDropped": "matchaDropZoneDropped"; }, never, never, false, never>;
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2244
2284
|
declare class MatchaDropListModule {
|
|
2245
2285
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropListModule, never>;
|
|
2246
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDropListModule, [typeof MatchaDropListComponent, typeof MatchaDragDirective, typeof MatchaDragHandleDirective], [typeof i2.CommonModule], [typeof MatchaDropListComponent, typeof MatchaDragDirective, typeof MatchaDragHandleDirective]>;
|
|
2286
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDropListModule, [typeof MatchaDropListComponent, typeof MatchaDragDirective, typeof MatchaDragHandleDirective, typeof MatchaDropZoneDirective], [typeof i2.CommonModule], [typeof MatchaDropListComponent, typeof MatchaDragDirective, typeof MatchaDragHandleDirective, typeof MatchaDropZoneDirective]>;
|
|
2247
2287
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaDropListModule>;
|
|
2248
2288
|
}
|
|
2249
2289
|
|
|
@@ -2725,7 +2765,7 @@ declare class MatchaSnackBarComponent implements OnInit, OnDestroy {
|
|
|
2725
2765
|
duration: number;
|
|
2726
2766
|
visible: boolean;
|
|
2727
2767
|
private timeoutId;
|
|
2728
|
-
get colorAttr(): "error" | "
|
|
2768
|
+
get colorAttr(): "error" | "info" | "warning" | "success";
|
|
2729
2769
|
get positionAttr(): "top" | "bottom";
|
|
2730
2770
|
get classes(): string;
|
|
2731
2771
|
constructor(snackBarService: MatchaSnackBarService);
|
|
@@ -3221,5 +3261,5 @@ declare class MatchaToolbarModule {
|
|
|
3221
3261
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaToolbarModule>;
|
|
3222
3262
|
}
|
|
3223
3263
|
|
|
3224
|
-
export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MaskExpression, 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, MatchaTextEditorComponent, MatchaTextEditorModule, MatchaTimeComponent, MatchaTimeModule, MatchaTimeRangeComponent, MatchaTimeRangeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, buildSunEditorConfig, compatibleOptions, initialConfig, timeMasks, withoutValidation };
|
|
3225
|
-
export type { BreakpointState, DrawerMode, DrawerPosition, ILevelClasses, InputTransformFn, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaMaskConfig, MatchaMaskOptions, MatchaOptionParent, MatchaSnackBarConfig, MatchaTextEditorOptions, ModalComponent, OutputTransformFn, PageEvent, PanelPlacement, PanelPosition, SliderOptions, TabChangeEvent };
|
|
3264
|
+
export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MaskExpression, 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, MatchaDropListService, MatchaDropZoneDirective, 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, MatchaTextEditorComponent, MatchaTextEditorModule, MatchaTimeComponent, MatchaTimeModule, MatchaTimeRangeComponent, MatchaTimeRangeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, buildSunEditorConfig, compatibleOptions, initialConfig, timeMasks, withoutValidation };
|
|
3265
|
+
export type { BreakpointState, DrawerMode, DrawerPosition, ILevelClasses, InputTransformFn, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaDropZoneDroppedEvent, MatchaMaskConfig, MatchaMaskOptions, MatchaOptionParent, MatchaSnackBarConfig, MatchaTextEditorOptions, ModalComponent, OutputTransformFn, PageEvent, PanelPlacement, PanelPosition, SliderOptions, TabChangeEvent };
|