@limble/limble-tree 6.1.1 → 7.0.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/limble-limble-tree.mjs +43 -43
- package/fesm2022/limble-limble-tree.mjs.map +1 -1
- package/index.d.ts +823 -3
- package/package.json +3 -3
- package/lib/components/branch/branch.component.d.ts +0 -26
- package/lib/components/branch/index.d.ts +0 -1
- package/lib/components/dragover-no-change-detect.d.ts +0 -18
- package/lib/components/dropzone/dropzone.component.d.ts +0 -13
- package/lib/components/dropzone/index.d.ts +0 -1
- package/lib/components/host-component.interface.d.ts +0 -6
- package/lib/components/index.d.ts +0 -6
- package/lib/components/node-component.interface.d.ts +0 -5
- package/lib/components/root/index.d.ts +0 -1
- package/lib/components/root/root.component.d.ts +0 -14
- package/lib/core/branch-options.interface.d.ts +0 -14
- package/lib/core/branchable.interface.d.ts +0 -8
- package/lib/core/component-container.interface.d.ts +0 -8
- package/lib/core/configuration/configuration.d.ts +0 -11
- package/lib/core/configuration/index.d.ts +0 -2
- package/lib/core/configuration/tree-options.interface.d.ts +0 -54
- package/lib/core/index.d.ts +0 -10
- package/lib/core/tree-branch/branch-controller.d.ts +0 -25
- package/lib/core/tree-branch/graftable.interface.d.ts +0 -7
- package/lib/core/tree-branch/index.d.ts +0 -3
- package/lib/core/tree-branch/tree-branch.d.ts +0 -223
- package/lib/core/tree-node-base.d.ts +0 -26
- package/lib/core/tree-node.interface.d.ts +0 -16
- package/lib/core/tree-plot.interface.d.ts +0 -1
- package/lib/core/tree-root/index.d.ts +0 -2
- package/lib/core/tree-root/root-controller.d.ts +0 -19
- package/lib/core/tree-root/tree-root.d.ts +0 -125
- package/lib/core/tree-service/index.d.ts +0 -1
- package/lib/core/tree-service/tree.service.d.ts +0 -15
- package/lib/errors/index.d.ts +0 -1
- package/lib/errors/tree-error.d.ts +0 -2
- package/lib/events/drag/drag-end-event.d.ts +0 -25
- package/lib/events/drag/drag-start-event.d.ts +0 -8
- package/lib/events/drag/drop-event.d.ts +0 -12
- package/lib/events/drag/index.d.ts +0 -3
- package/lib/events/general/destruction-event.d.ts +0 -8
- package/lib/events/general/index.d.ts +0 -1
- package/lib/events/index.d.ts +0 -4
- package/lib/events/relational/graft-event.d.ts +0 -15
- package/lib/events/relational/index.d.ts +0 -4
- package/lib/events/relational/prune-event.d.ts +0 -15
- package/lib/events/relational/relational-tree-event.interface.d.ts +0 -11
- package/lib/events/relational/tree-relationship.interface.d.ts +0 -6
- package/lib/events/tree-event.interface.d.ts +0 -5
- package/lib/extras/collapse/collapse.d.ts +0 -11
- package/lib/extras/collapse/collapse.module.d.ts +0 -7
- package/lib/extras/collapse/collapse.service.d.ts +0 -34
- package/lib/extras/collapse/index.d.ts +0 -3
- package/lib/extras/drag-and-drop/drag-and-drop.d.ts +0 -14
- package/lib/extras/drag-and-drop/drag-and-drop.module.d.ts +0 -11
- package/lib/extras/drag-and-drop/drag-and-drop.service.d.ts +0 -35
- package/lib/extras/drag-and-drop/drag-state.d.ts +0 -23
- package/lib/extras/drag-and-drop/draggable.directive.d.ts +0 -11
- package/lib/extras/drag-and-drop/dropzone-renderer.d.ts +0 -27
- package/lib/extras/drag-and-drop/index.d.ts +0 -6
- package/lib/legacy/index.d.ts +0 -6
- package/lib/legacy/legacy-component-obj.interface.d.ts +0 -13
- package/lib/legacy/legacy-tree-data.interface.d.ts +0 -18
- package/lib/legacy/legacy-tree-options.interface.d.ts +0 -34
- package/lib/legacy/legacy-tree.d.ts +0 -14
- package/lib/legacy/limble-tree-legacy.module.d.ts +0 -8
- package/lib/legacy/limble-tree-root/limble-tree-root.component.d.ts +0 -28
- package/lib/limble-tree.module.d.ts +0 -13
- package/public-api.d.ts +0 -8
- package/shared/assert.d.ts +0 -1
- package/shared/has-property.d.ts +0 -3
- package/shared/index.d.ts +0 -2
package/public-api.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export { LimbleTreeModule } from "./lib/limble-tree.module";
|
|
2
|
-
export { TreeService, TreeRoot, TreeBranch, type TreeOptions, type TreeNode, type TreePlot } from "./lib/core";
|
|
3
|
-
export { TreeError } from "./lib/errors";
|
|
4
|
-
export { type TreeEvent, GraftEvent, PruneEvent, DragStartEvent, DragEndEvent, DropEvent, DestructionEvent } from "./lib/events";
|
|
5
|
-
export { TreeCollapseModule, TreeCollapseService } from "./lib/extras/collapse";
|
|
6
|
-
export { TreeDragAndDropModule, TreeDragAndDropService, DraggableDirective } from "./lib/extras/drag-and-drop";
|
|
7
|
-
export { type ComponentObj, type LimbleTreeNode, type LimbleTreeData, type LimbleTreeOptions, LimbleTreeRootComponent, LimbleTreeLegacyModule } from "./lib/legacy";
|
|
8
|
-
export { DragoverNoChangeDetectDirective, BranchComponent, RootComponent, type HostComponent, type NodeComponent } from "./lib/components";
|
package/shared/assert.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function assert(condition: unknown): asserts condition;
|
package/shared/has-property.d.ts
DELETED
package/shared/index.d.ts
DELETED