@headless-tree/core 0.0.0-20250829160803 → 0.0.0-20250912160117
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/CHANGELOG.md +1 -1
- package/package.json +1 -1
- package/src/mddocs-entry.ts +13 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/mddocs-entry.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { SyncDataLoaderFeatureDef } from "./features/sync-data-loader/types";
|
|
|
10
10
|
import { TreeFeatureDef } from "./features/tree/types";
|
|
11
11
|
import { PropMemoizationFeatureDef } from "./features/prop-memoization/types";
|
|
12
12
|
import { KeyboardDragAndDropFeatureDef } from "./features/keyboard-drag-and-drop/types";
|
|
13
|
+
import type { CheckboxesFeatureDef } from "./features/checkboxes/types";
|
|
13
14
|
|
|
14
15
|
export * from ".";
|
|
15
16
|
|
|
@@ -167,3 +168,15 @@ export type TreeFeatureTreeInstance<T> = TreeFeatureDef<T>["treeInstance"];
|
|
|
167
168
|
/** @interface */
|
|
168
169
|
export type TreeFeatureItemInstance<T> = TreeFeatureDef<T>["itemInstance"];
|
|
169
170
|
export type TreeFeatureHotkeys<T> = TreeFeatureDef<T>["hotkeys"];
|
|
171
|
+
|
|
172
|
+
/** @interface */
|
|
173
|
+
export type CheckboxesFeatureConfig<T> = CheckboxesFeatureDef<T>["config"];
|
|
174
|
+
/** @interface */
|
|
175
|
+
export type CheckboxesFeatureState<T> = CheckboxesFeatureDef<T>["state"];
|
|
176
|
+
/** @interface */
|
|
177
|
+
export type CheckboxesFeatureTreeInstance<T> =
|
|
178
|
+
CheckboxesFeatureDef<T>["treeInstance"];
|
|
179
|
+
/** @interface */
|
|
180
|
+
export type CheckboxesFeatureItemInstance<T> =
|
|
181
|
+
CheckboxesFeatureDef<T>["itemInstance"];
|
|
182
|
+
export type CheckboxesFeatureHotkeys<T> = CheckboxesFeatureDef<T>["hotkeys"];
|