matcha-components 20.269.0 → 20.270.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/index.d.ts
CHANGED
|
@@ -2212,6 +2212,7 @@ declare class MatchaDropListComponent<T = any> implements OnInit, OnDestroy {
|
|
|
2212
2212
|
matchaDropListAcceptTypes: string[];
|
|
2213
2213
|
matchaDropListTreeMode: boolean;
|
|
2214
2214
|
matchaDropListHoverExpandDelay: number;
|
|
2215
|
+
matchaDropListMaxDepth?: number;
|
|
2215
2216
|
matchaDropListDropped: EventEmitter<MatchaDropListDroppedEvent<T>>;
|
|
2216
2217
|
matchaDropListHoverExpand: EventEmitter<any>;
|
|
2217
2218
|
private _directDragItems;
|
|
@@ -2243,12 +2244,14 @@ declare class MatchaDropListComponent<T = any> implements OnInit, OnDestroy {
|
|
|
2243
2244
|
private reorderItems;
|
|
2244
2245
|
private transferItem;
|
|
2245
2246
|
getDragItemIndex(dragItem: MatchaDragDirective): number;
|
|
2247
|
+
private isDepthAllowed;
|
|
2248
|
+
private getGroupSubtreeHeight;
|
|
2246
2249
|
onDragStart(dragItem: MatchaDragDirective, _event: any): void;
|
|
2247
2250
|
onDragEnd(): void;
|
|
2248
2251
|
handleTouchDragOver(_event: any): void;
|
|
2249
2252
|
handleTouchDrop(_event: any, _dragItem: any): void;
|
|
2250
2253
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropListComponent<any>, never>;
|
|
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>;
|
|
2254
|
+
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; }; "matchaDropListMaxDepth": { "alias": "matchaDropListMaxDepth"; "required": false; }; }, { "matchaDropListDropped": "matchaDropListDropped"; "matchaDropListHoverExpand": "matchaDropListHoverExpand"; }, never, ["*"], false, never>;
|
|
2252
2255
|
}
|
|
2253
2256
|
|
|
2254
2257
|
declare class MatchaDragHandleDirective implements OnInit {
|