fds-vue-core 1.2.2 → 1.3.1
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/dist/App.vue.d.ts.map +1 -1
- package/dist/components/FdsTreeView.vue.d.ts +21 -0
- package/dist/components/FdsTreeView.vue.d.ts.map +1 -0
- package/dist/components/fds-tree-view/{FdsTreeView.vue.d.ts → TreeNode.vue.d.ts} +9 -7
- package/dist/components/fds-tree-view/TreeNode.vue.d.ts.map +1 -0
- package/dist/components/fds-tree-view/types.d.ts +24 -9
- package/dist/components/fds-tree-view/types.d.ts.map +1 -1
- package/dist/components/fds-tree-view/useLocalPopover.d.ts +15 -0
- package/dist/components/fds-tree-view/useLocalPopover.d.ts.map +1 -0
- package/dist/components/fds-tree-view/useTreeState.d.ts +29 -17
- package/dist/components/fds-tree-view/useTreeState.d.ts.map +1 -1
- package/dist/fds-vue-core.cjs.js +447 -116
- package/dist/fds-vue-core.cjs.js.map +1 -1
- package/dist/fds-vue-core.es.js +448 -117
- package/dist/fds-vue-core.es.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/components/fds-tree-view/FdsTreeView.vue.d.ts.map +0 -1
package/dist/App.vue.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"App.vue.d.ts","sourceRoot":"","sources":["../src/App.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"App.vue.d.ts","sourceRoot":"","sources":["../src/App.vue"],"names":[],"mappings":";AAwUA,wBACG"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { TreeNode as TreeNodeType, TreeViewProps } from './fds-tree-view/types';
|
|
2
|
+
type WrapperProps<T = Record<string, unknown>> = Omit<TreeViewProps<T>, 'nodes' | 'depth' | 'data' | 'nodeId' | 'title'> & {
|
|
3
|
+
data: TreeNodeType<T>;
|
|
4
|
+
};
|
|
5
|
+
type __VLS_Props = WrapperProps<Record<string, unknown>>;
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
7
|
+
expandChildrenOnParentCheck: boolean;
|
|
8
|
+
expandAllChildrenOnParentCheck: boolean;
|
|
9
|
+
showIndeterminateOnlyOnChildrenSelection: boolean;
|
|
10
|
+
searchExpandNodes: boolean;
|
|
11
|
+
indentation: number;
|
|
12
|
+
showNodeDescription: boolean;
|
|
13
|
+
showChildrenCount: boolean;
|
|
14
|
+
expandChildrenOnSelect: boolean;
|
|
15
|
+
showIndeterminate: boolean;
|
|
16
|
+
searchEnabled: boolean;
|
|
17
|
+
searchMatchParams: string[];
|
|
18
|
+
horizontalScroll: boolean;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
export default _default;
|
|
21
|
+
//# sourceMappingURL=FdsTreeView.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FdsTreeView.vue.d.ts","sourceRoot":"","sources":["../../src/components/FdsTreeView.vue"],"names":[],"mappings":"AAwFA,OAAO,KAAK,EAAE,QAAQ,IAAI,YAAY,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAA;AAEpF,KAAK,YAAY,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,IAAI,IAAI,CACnD,aAAa,CAAC,CAAC,CAAC,EAChB,OAAO,GAAG,OAAO,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,CAChD,GAAG;IACF,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC,CAAA;CACtB,CAAA;AAED,KAAK,WAAW,GAAG,YAAY,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;AAoKzD,wBAGG"}
|
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
import type { TreeViewProps } from './types
|
|
1
|
+
import type { TreeViewProps } from './types';
|
|
2
2
|
type Props<T = Record<string, unknown>> = TreeViewProps<T>;
|
|
3
3
|
type __VLS_Props = Props;
|
|
4
4
|
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
-
|
|
5
|
+
expandChildrenOnParentCheck: boolean;
|
|
6
|
+
expandAllChildrenOnParentCheck: boolean;
|
|
7
|
+
showIndeterminateOnlyOnChildrenSelection: boolean;
|
|
8
|
+
searchExpandNodes: boolean;
|
|
9
|
+
nodes: import("./types").TreeNode<Record<string, unknown>>[];
|
|
6
10
|
depth: number;
|
|
7
11
|
showNodeDescription: boolean;
|
|
8
12
|
showChildrenCount: boolean;
|
|
9
13
|
expandChildrenOnSelect: boolean;
|
|
10
14
|
showIndeterminate: boolean;
|
|
11
|
-
showIndeterminateOnlyOnChildrenSelection: boolean;
|
|
12
|
-
expandChildrenOnParentCheck: boolean;
|
|
13
|
-
expandAllChildrenOnParentCheck: boolean;
|
|
14
15
|
searchEnabled: boolean;
|
|
15
16
|
searchMatchParams: string[];
|
|
16
|
-
|
|
17
|
+
horizontalScroll: boolean;
|
|
18
|
+
searchHighlighting: boolean;
|
|
17
19
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
20
|
export default _default;
|
|
19
|
-
//# sourceMappingURL=
|
|
21
|
+
//# sourceMappingURL=TreeNode.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TreeNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/fds-tree-view/TreeNode.vue"],"names":[],"mappings":"AAkSA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAI5C,KAAK,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,IAAI,aAAa,CAAC,CAAC,CAAC,CAAA;AAE1D,KAAK,WAAW,GAAG,KAAK,CAAC;;;;;;;;;;;;;;;;;AAskBzB,wBAGG"}
|
|
@@ -45,21 +45,21 @@ export interface TreeViewProps<T = Record<string, unknown>> {
|
|
|
45
45
|
data?: T;
|
|
46
46
|
/** Display title for the node */
|
|
47
47
|
title?: string;
|
|
48
|
-
/**
|
|
48
|
+
/** Show the node description (nodeId) below the title */
|
|
49
49
|
showNodeDescription?: boolean;
|
|
50
|
-
/**
|
|
50
|
+
/** Show the count of children next to the node title */
|
|
51
51
|
showChildrenCount?: boolean;
|
|
52
|
-
/**
|
|
52
|
+
/** Expand children when a node is selected */
|
|
53
53
|
expandChildrenOnSelect?: boolean;
|
|
54
|
-
/**
|
|
54
|
+
/** Show indeterminate state for partially selected nodes */
|
|
55
55
|
showIndeterminate?: boolean;
|
|
56
|
-
/**
|
|
56
|
+
/** Only show indeterminate when parent is not selected but children are */
|
|
57
57
|
showIndeterminateOnlyOnChildrenSelection?: boolean;
|
|
58
|
-
/**
|
|
58
|
+
/** Expand children when parent is checked */
|
|
59
59
|
expandChildrenOnParentCheck?: boolean;
|
|
60
|
-
/**
|
|
60
|
+
/** Expand all children recursively when parent is checked */
|
|
61
61
|
expandAllChildrenOnParentCheck?: boolean;
|
|
62
|
-
/**
|
|
62
|
+
/** Enable search functionality */
|
|
63
63
|
searchEnabled?: boolean;
|
|
64
64
|
/** Label for the search input */
|
|
65
65
|
searchLabel?: string;
|
|
@@ -67,7 +67,22 @@ export interface TreeViewProps<T = Record<string, unknown>> {
|
|
|
67
67
|
* Defaults to ['title', 'nodeId']
|
|
68
68
|
* */
|
|
69
69
|
searchMatchParams?: string[];
|
|
70
|
-
/**
|
|
70
|
+
/** Expand nodes automatically when searching */
|
|
71
71
|
searchExpandNodes?: boolean;
|
|
72
|
+
/** Enable horizontal scroll for the tree view */
|
|
73
|
+
horizontalScroll?: boolean;
|
|
74
|
+
/** Styles for the tree view */
|
|
75
|
+
style?: TreeViewStyles;
|
|
76
|
+
/** Highlight (bold text) the search term in the node title and nodeId */
|
|
77
|
+
searchHighlighting?: boolean;
|
|
72
78
|
}
|
|
79
|
+
export interface TreeViewStyles {
|
|
80
|
+
/** Styles for the outer container */
|
|
81
|
+
container?: string;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Options for tree state configuration
|
|
85
|
+
* Picks relevant properties from TreeViewProps
|
|
86
|
+
*/
|
|
87
|
+
export type TreeStateOptions = Pick<TreeViewProps, 'expandChildrenOnParentCheck' | 'expandAllChildrenOnParentCheck' | 'showIndeterminateOnlyOnChildrenSelection' | 'searchExpandNodes'>;
|
|
73
88
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/fds-tree-view/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,MAAM,GAAG,MAAM,CAAA;AAE3B;;;GAGG;AACH,MAAM,WAAW,QAAQ,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IACnD,qCAAqC;IACrC,MAAM,EAAE,MAAM,CAAA;IACd,iCAAiC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,+BAA+B;IAC/B,QAAQ,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAA;IACxB,oDAAoD;IACpD,IAAI,CAAC,EAAE,CAAC,CAAA;CACT;AAED;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,CAAA;AAE/D;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAA;AAE5D;;;GAGG;AACH,MAAM,WAAW,aAAa,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IACxD,kEAAkE;IAClE,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAA;IACpB,4EAA4E;IAC5E,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,oDAAoD;IACpD,cAAc,EAAE,MAAM,CAAA;IACtB,mDAAmD;IACnD,gBAAgB,EAAE,MAAM,CAAA;IACxB,wDAAwD;IACxD,WAAW,EAAE,MAAM,CAAA;IACnB,6CAA6C;IAC7C,MAAM,EAAE,MAAM,CAAA;IACd,oDAAoD;IACpD,IAAI,CAAC,EAAE,CAAC,CAAA;IACR,iCAAiC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/fds-tree-view/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,MAAM,GAAG,MAAM,CAAA;AAE3B;;;GAGG;AACH,MAAM,WAAW,QAAQ,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IACnD,qCAAqC;IACrC,MAAM,EAAE,MAAM,CAAA;IACd,iCAAiC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,+BAA+B;IAC/B,QAAQ,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAA;IACxB,oDAAoD;IACpD,IAAI,CAAC,EAAE,CAAC,CAAA;CACT;AAED;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,CAAA;AAE/D;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAA;AAE5D;;;GAGG;AACH,MAAM,WAAW,aAAa,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IACxD,kEAAkE;IAClE,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAA;IACpB,4EAA4E;IAC5E,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,oDAAoD;IACpD,cAAc,EAAE,MAAM,CAAA;IACtB,mDAAmD;IACnD,gBAAgB,EAAE,MAAM,CAAA;IACxB,wDAAwD;IACxD,WAAW,EAAE,MAAM,CAAA;IACnB,6CAA6C;IAC7C,MAAM,EAAE,MAAM,CAAA;IACd,oDAAoD;IACpD,IAAI,CAAC,EAAE,CAAC,CAAA;IACR,iCAAiC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,yDAAyD;IACzD,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,wDAAwD;IACxD,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,8CAA8C;IAC9C,sBAAsB,CAAC,EAAE,OAAO,CAAA;IAChC,4DAA4D;IAC5D,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,2EAA2E;IAC3E,wCAAwC,CAAC,EAAE,OAAO,CAAA;IAClD,6CAA6C;IAC7C,2BAA2B,CAAC,EAAE,OAAO,CAAA;IACrC,6DAA6D;IAC7D,8BAA8B,CAAC,EAAE,OAAO,CAAA;IACxC,kCAAkC;IAClC,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,iCAAiC;IACjC,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB;;SAEK;IACL,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC5B,gDAAgD;IAChD,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,iDAAiD;IACjD,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,+BAA+B;IAC/B,KAAK,CAAC,EAAE,cAAc,CAAA;IACtB,yEAAyE;IACzE,kBAAkB,CAAC,EAAE,OAAO,CAAA;CAC7B;AAED,MAAM,WAAW,cAAc;IAC7B,qCAAqC;IACrC,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG,IAAI,CACjC,aAAa,EACX,6BAA6B,GAC7B,gCAAgC,GAChC,0CAA0C,GAC1C,mBAAmB,CACtB,CAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare function useLocalPopover(): {
|
|
2
|
+
isOpen: import("vue").Ref<boolean, boolean>;
|
|
3
|
+
coords: {
|
|
4
|
+
top: number;
|
|
5
|
+
left: number;
|
|
6
|
+
};
|
|
7
|
+
triggerRef: import("vue").Ref<HTMLElement, HTMLElement>;
|
|
8
|
+
panelRef: import("vue").Ref<HTMLElement, HTMLElement>;
|
|
9
|
+
computeCoords: () => void;
|
|
10
|
+
open: () => void;
|
|
11
|
+
close: () => void;
|
|
12
|
+
toggle: () => void;
|
|
13
|
+
};
|
|
14
|
+
export type UseLocalPopover = ReturnType<typeof useLocalPopover>;
|
|
15
|
+
//# sourceMappingURL=useLocalPopover.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useLocalPopover.d.ts","sourceRoot":"","sources":["../../../src/components/fds-tree-view/useLocalPopover.ts"],"names":[],"mappings":"AAEA,wBAAgB,eAAe;;;;;;;;;;;;EA2E9B;AAED,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,CAAA"}
|
|
@@ -3,33 +3,45 @@ interface TreeStateOptions {
|
|
|
3
3
|
expandChildrenOnParentCheck?: boolean;
|
|
4
4
|
expandAllChildrenOnParentCheck?: boolean;
|
|
5
5
|
showIndeterminateOnlyOnChildrenSelection?: boolean;
|
|
6
|
+
searchExpandNodes?: boolean;
|
|
7
|
+
nodes?: TreeNodeArray;
|
|
6
8
|
}
|
|
7
9
|
declare const useTreeState: (options?: TreeStateOptions) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
expandedNodes: import("vue").Reactive<Set<string>>;
|
|
11
|
-
searchTerm: import("vue").Ref<string, string>;
|
|
12
|
-
clearAllSelectedNodes: () => void;
|
|
10
|
+
autoExpandMatchingNodes: (nodes: TreeNodeArray, searchParams?: string[]) => void;
|
|
11
|
+
clearSearch: () => void;
|
|
13
12
|
collapseAllExpandedNodes: () => void;
|
|
14
|
-
isNodeSelected: (nodeId: NodeId) => boolean;
|
|
15
|
-
isNodeExpanded: (nodeId: NodeId) => boolean;
|
|
16
|
-
injectNode: (nodeObject: TreeNode) => void;
|
|
17
|
-
selectAllChildren: (node: TreeNode) => void;
|
|
18
|
-
deselectNode: (nodeId: NodeId) => void;
|
|
19
|
-
deselectAllChildren: (node: TreeNode) => void;
|
|
20
|
-
expandNode: (nodeId: NodeId) => import("vue").Reactive<Set<string>>;
|
|
21
13
|
collapseNode: (nodeId: NodeId) => boolean;
|
|
14
|
+
deselectNodeAndAllChildren: (node: TreeNode) => void;
|
|
15
|
+
deselectChildrenOnly: (nodeId: NodeId) => void;
|
|
16
|
+
deselectNode: (nodeId: NodeId) => void;
|
|
22
17
|
expandAllChildren: (node: TreeNode) => void;
|
|
18
|
+
expandedNodes: import("vue").Reactive<Set<string>>;
|
|
19
|
+
expandNode: (nodeId: NodeId) => import("vue").Reactive<Set<string>>;
|
|
20
|
+
filterNodes: (nodes: TreeNodeArray, term: string, searchParams?: string[]) => TreeNodeArray;
|
|
23
21
|
findNodeById: (nodes: TreeNodeArray, nodeId: string) => TreeNodeItem | null;
|
|
22
|
+
findNodeObjectById: (nodeId: string) => TreeNodeItem | null;
|
|
23
|
+
getNodeIcon: (nodeId: NodeId, nodes: TreeNodeArray, expandIcon: string, collapseIcon: string) => string;
|
|
24
24
|
hasChildrenNodes: (nodes: TreeNodeArray) => boolean;
|
|
25
|
+
isAnyChildSelected: (nodes: TreeNodeArray) => boolean;
|
|
26
|
+
injectNode: (nodeObject: TreeNode) => void;
|
|
27
|
+
isNodeExpanded: (nodeId: NodeId) => boolean;
|
|
25
28
|
isNodeIndeterminate: (nodes: TreeNodeArray, parentNodeId?: string) => boolean;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
+
isNodeSelected: (nodeId: NodeId) => boolean;
|
|
30
|
+
isParentOrChildrenSelected: (nodeId: NodeId) => boolean;
|
|
31
|
+
isParentAndAllChildrenSelected: (nodeId: NodeId) => boolean;
|
|
29
32
|
nodeMatchesSearch: (node: TreeNode, term: string, searchParams?: string[]) => boolean;
|
|
30
|
-
|
|
33
|
+
highlightText: (text: string | undefined, term: string | undefined) => string;
|
|
34
|
+
registerRootNodes: (nodes: TreeNodeArray, searchParams?: string[]) => void;
|
|
35
|
+
searchTerm: import("vue").Ref<string, string>;
|
|
36
|
+
selectAllChildren: (node: TreeNode) => void;
|
|
37
|
+
selectedNodeObjects: import("vue").Reactive<TreeNode<Record<string, unknown>>[]>;
|
|
38
|
+
selectedNodes: import("vue").Reactive<Set<string>>;
|
|
31
39
|
setSearchTerm: (term: string) => void;
|
|
32
|
-
|
|
40
|
+
toggleExpandNode: (nodeId: NodeId, nodes: TreeNodeArray) => void;
|
|
41
|
+
toggleSelectNode: (nodes: TreeNodeArray, nodeId: string, title?: string, data?: Record<string, unknown>) => void;
|
|
42
|
+
isParentOnlySelected: (nodeId: NodeId) => boolean;
|
|
43
|
+
selectNodeAndAllChildren: (nodeId: NodeId) => void;
|
|
44
|
+
clearAllSelectedNodes: () => void;
|
|
33
45
|
};
|
|
34
46
|
export default useTreeState;
|
|
35
47
|
//# sourceMappingURL=useTreeState.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useTreeState.d.ts","sourceRoot":"","sources":["../../../src/components/fds-tree-view/useTreeState.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAE5E,UAAU,gBAAgB;IACxB,2BAA2B,CAAC,EAAE,OAAO,CAAA;IACrC,8BAA8B,CAAC,EAAE,OAAO,CAAA;IACxC,wCAAwC,CAAC,EAAE,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"useTreeState.d.ts","sourceRoot":"","sources":["../../../src/components/fds-tree-view/useTreeState.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAE5E,UAAU,gBAAgB;IACxB,2BAA2B,CAAC,EAAE,OAAO,CAAA;IACrC,8BAA8B,CAAC,EAAE,OAAO,CAAA;IACxC,wCAAwC,CAAC,EAAE,OAAO,CAAA;IAClD,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB;AAED,QAAA,MAAM,YAAY,GAAI,UAAS,gBAAqB;qCA8aV,aAAa,iBAAiB,MAAM,EAAE;;;2BA7XhD,MAAM;uCAgFM,QAAQ;mCAaZ,MAAM;2BAzBd,MAAM;8BAjDH,QAAQ;;yBAxBb,MAAM;yBA0UzB,aAAa,QACd,MAAM,iBACG,MAAM,EAAE,KACtB,aAAa;0BA7Na,aAAa,UAAU,MAAM,KAAG,YAAY,GAAG,IAAI;iCAgB5C,MAAM,KAAG,YAAY,GAAG,IAAI;0BAuKtD,MAAM,SACP,aAAa,cACR,MAAM,gBACJ,MAAM;8BAzJW,aAAa;gCAsCX,aAAa,KAAG,OAAO;6BA5K1B,QAAQ;6BAhBR,MAAM;iCAoNF,aAAa,iBAAiB,MAAM,KAAG,OAAO;6BAzNlD,MAAM;yCAgKM,MAAM,KAAG,OAAO;6CAWZ,MAAM,KAAG,OAAO;8BAiJ/B,QAAQ,QAAQ,MAAM,iBAAiB,MAAM,EAAE,KAAG,OAAO;0BAiE7D,MAAM,GAAG,SAAS,QAAQ,MAAM,GAAG,SAAS,KAAG,MAAM;+BAqChD,aAAa,iBAAiB,MAAM,EAAE;;8BAtXvC,QAAQ;;;0BAmUZ,MAAM;+BA3ED,MAAM,SAAS,aAAa;8BApCrD,aAAa,UACZ,MAAM,UACN,MAAM,SACP,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;mCA7EM,MAAM,KAAG,OAAO;uCApHZ,MAAM;;CAiZjD,CAAA;AAED,eAAe,YAAY,CAAA"}
|