@principal-ade/dynamic-file-tree 0.2.39 → 0.2.40
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/index.mjs +12 -12
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -565,8 +565,8 @@ var DynamicFileTree = ({
|
|
|
565
565
|
initialData: treeData,
|
|
566
566
|
onSelect: handleSelect,
|
|
567
567
|
openByDefault: defaultOpen,
|
|
568
|
-
|
|
569
|
-
|
|
568
|
+
initialOpenState,
|
|
569
|
+
selection: selectedFile,
|
|
570
570
|
width: "100%",
|
|
571
571
|
height: containerHeight,
|
|
572
572
|
rowHeight: 28,
|
|
@@ -1424,8 +1424,8 @@ var GitStatusFileTree = ({
|
|
|
1424
1424
|
}, isContainerReady && /* @__PURE__ */ React7.createElement(Tree2, {
|
|
1425
1425
|
data: treeData,
|
|
1426
1426
|
onSelect: handleSelect,
|
|
1427
|
-
|
|
1428
|
-
|
|
1427
|
+
selection: selectedFile,
|
|
1428
|
+
openByDefault,
|
|
1429
1429
|
width: "100%",
|
|
1430
1430
|
height: containerHeight,
|
|
1431
1431
|
rowHeight,
|
|
@@ -3131,8 +3131,8 @@ var WorkflowScenarioTreeCore = ({
|
|
|
3131
3131
|
data: treeData,
|
|
3132
3132
|
onSelect: handleSelect,
|
|
3133
3133
|
openByDefault: defaultOpen,
|
|
3134
|
-
|
|
3135
|
-
|
|
3134
|
+
initialOpenState,
|
|
3135
|
+
selection: selectedNodeId,
|
|
3136
3136
|
width: "100%",
|
|
3137
3137
|
height: containerHeight,
|
|
3138
3138
|
rowHeight,
|
|
@@ -3531,9 +3531,9 @@ var CanvasListTreeCore = ({
|
|
|
3531
3531
|
initialData: treeData,
|
|
3532
3532
|
onSelect: handleSelect,
|
|
3533
3533
|
openByDefault: defaultOpen,
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3534
|
+
initialOpenState: effectiveInitialOpenState,
|
|
3535
|
+
selection: selectedNodeId,
|
|
3536
|
+
onToggle: onToggle ? handleToggle : undefined,
|
|
3537
3537
|
width: "100%",
|
|
3538
3538
|
height: containerHeight,
|
|
3539
3539
|
rowHeight,
|
|
@@ -3726,8 +3726,8 @@ var RepositoryTreeCore = ({
|
|
|
3726
3726
|
data: treeData,
|
|
3727
3727
|
onSelect: handleSelect,
|
|
3728
3728
|
openByDefault: defaultOpen,
|
|
3729
|
-
|
|
3730
|
-
|
|
3729
|
+
initialOpenState,
|
|
3730
|
+
selection,
|
|
3731
3731
|
width: "100%",
|
|
3732
3732
|
height: containerHeight,
|
|
3733
3733
|
rowHeight,
|
|
@@ -4021,7 +4021,7 @@ var TelemetryCoverageFileTree = ({
|
|
|
4021
4021
|
}, isContainerReady && /* @__PURE__ */ React17.createElement(Tree7, {
|
|
4022
4022
|
data: treeData,
|
|
4023
4023
|
onSelect: handleSelect,
|
|
4024
|
-
|
|
4024
|
+
selection: selectedFile,
|
|
4025
4025
|
openByDefault,
|
|
4026
4026
|
width: "100%",
|
|
4027
4027
|
height: containerHeight,
|
package/package.json
CHANGED