@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.
Files changed (71) hide show
  1. package/fesm2022/limble-limble-tree.mjs +43 -43
  2. package/fesm2022/limble-limble-tree.mjs.map +1 -1
  3. package/index.d.ts +823 -3
  4. package/package.json +3 -3
  5. package/lib/components/branch/branch.component.d.ts +0 -26
  6. package/lib/components/branch/index.d.ts +0 -1
  7. package/lib/components/dragover-no-change-detect.d.ts +0 -18
  8. package/lib/components/dropzone/dropzone.component.d.ts +0 -13
  9. package/lib/components/dropzone/index.d.ts +0 -1
  10. package/lib/components/host-component.interface.d.ts +0 -6
  11. package/lib/components/index.d.ts +0 -6
  12. package/lib/components/node-component.interface.d.ts +0 -5
  13. package/lib/components/root/index.d.ts +0 -1
  14. package/lib/components/root/root.component.d.ts +0 -14
  15. package/lib/core/branch-options.interface.d.ts +0 -14
  16. package/lib/core/branchable.interface.d.ts +0 -8
  17. package/lib/core/component-container.interface.d.ts +0 -8
  18. package/lib/core/configuration/configuration.d.ts +0 -11
  19. package/lib/core/configuration/index.d.ts +0 -2
  20. package/lib/core/configuration/tree-options.interface.d.ts +0 -54
  21. package/lib/core/index.d.ts +0 -10
  22. package/lib/core/tree-branch/branch-controller.d.ts +0 -25
  23. package/lib/core/tree-branch/graftable.interface.d.ts +0 -7
  24. package/lib/core/tree-branch/index.d.ts +0 -3
  25. package/lib/core/tree-branch/tree-branch.d.ts +0 -223
  26. package/lib/core/tree-node-base.d.ts +0 -26
  27. package/lib/core/tree-node.interface.d.ts +0 -16
  28. package/lib/core/tree-plot.interface.d.ts +0 -1
  29. package/lib/core/tree-root/index.d.ts +0 -2
  30. package/lib/core/tree-root/root-controller.d.ts +0 -19
  31. package/lib/core/tree-root/tree-root.d.ts +0 -125
  32. package/lib/core/tree-service/index.d.ts +0 -1
  33. package/lib/core/tree-service/tree.service.d.ts +0 -15
  34. package/lib/errors/index.d.ts +0 -1
  35. package/lib/errors/tree-error.d.ts +0 -2
  36. package/lib/events/drag/drag-end-event.d.ts +0 -25
  37. package/lib/events/drag/drag-start-event.d.ts +0 -8
  38. package/lib/events/drag/drop-event.d.ts +0 -12
  39. package/lib/events/drag/index.d.ts +0 -3
  40. package/lib/events/general/destruction-event.d.ts +0 -8
  41. package/lib/events/general/index.d.ts +0 -1
  42. package/lib/events/index.d.ts +0 -4
  43. package/lib/events/relational/graft-event.d.ts +0 -15
  44. package/lib/events/relational/index.d.ts +0 -4
  45. package/lib/events/relational/prune-event.d.ts +0 -15
  46. package/lib/events/relational/relational-tree-event.interface.d.ts +0 -11
  47. package/lib/events/relational/tree-relationship.interface.d.ts +0 -6
  48. package/lib/events/tree-event.interface.d.ts +0 -5
  49. package/lib/extras/collapse/collapse.d.ts +0 -11
  50. package/lib/extras/collapse/collapse.module.d.ts +0 -7
  51. package/lib/extras/collapse/collapse.service.d.ts +0 -34
  52. package/lib/extras/collapse/index.d.ts +0 -3
  53. package/lib/extras/drag-and-drop/drag-and-drop.d.ts +0 -14
  54. package/lib/extras/drag-and-drop/drag-and-drop.module.d.ts +0 -11
  55. package/lib/extras/drag-and-drop/drag-and-drop.service.d.ts +0 -35
  56. package/lib/extras/drag-and-drop/drag-state.d.ts +0 -23
  57. package/lib/extras/drag-and-drop/draggable.directive.d.ts +0 -11
  58. package/lib/extras/drag-and-drop/dropzone-renderer.d.ts +0 -27
  59. package/lib/extras/drag-and-drop/index.d.ts +0 -6
  60. package/lib/legacy/index.d.ts +0 -6
  61. package/lib/legacy/legacy-component-obj.interface.d.ts +0 -13
  62. package/lib/legacy/legacy-tree-data.interface.d.ts +0 -18
  63. package/lib/legacy/legacy-tree-options.interface.d.ts +0 -34
  64. package/lib/legacy/legacy-tree.d.ts +0 -14
  65. package/lib/legacy/limble-tree-legacy.module.d.ts +0 -8
  66. package/lib/legacy/limble-tree-root/limble-tree-root.component.d.ts +0 -28
  67. package/lib/limble-tree.module.d.ts +0 -13
  68. package/public-api.d.ts +0 -8
  69. package/shared/assert.d.ts +0 -1
  70. package/shared/has-property.d.ts +0 -3
  71. 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";
@@ -1 +0,0 @@
1
- export declare function assert(condition: unknown): asserts condition;
@@ -1,3 +0,0 @@
1
- export declare function hasProperty<T extends string>(input: unknown, prop: T): input is {
2
- [Key in T]: unknown;
3
- };
package/shared/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from "./assert";
2
- export * from "./has-property";