@principal-ade/dynamic-file-tree 0.1.71 → 0.1.72

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 (2) hide show
  1. package/dist/index.mjs +7 -7
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -2226,7 +2226,7 @@ var getDefaultDragConfig = (node) => {
2226
2226
  const canvasType = node.canvas.type === "otel" ? "OTEL Canvas" : "Canvas";
2227
2227
  const content = [
2228
2228
  `# ${canvasType}: ${node.canvas.name}`,
2229
- `# View with: ${CLI} canvas view "${node.canvas.path}"`,
2229
+ `# For more information: ${CLI}`,
2230
2230
  node.canvas.path
2231
2231
  ].join(`
2232
2232
  `);
@@ -2250,7 +2250,7 @@ var getDefaultDragConfig = (node) => {
2250
2250
  if (node.workflow) {
2251
2251
  const content = [
2252
2252
  `# Workflow: ${node.workflow.name}`,
2253
- `# Run with: ${CLI} workflow run "${node.workflow.path}"`,
2253
+ `# For more information: ${CLI}`,
2254
2254
  node.workflow.path
2255
2255
  ].join(`
2256
2256
  `);
@@ -2274,7 +2274,7 @@ var getDefaultDragConfig = (node) => {
2274
2274
  if (node.markdownPath) {
2275
2275
  const content = [
2276
2276
  `# Overview: ${node.storyboard?.name || node.name}`,
2277
- `# Documentation: ${node.markdownPath}`,
2277
+ `# For more information: ${CLI}`,
2278
2278
  node.markdownPath
2279
2279
  ].join(`
2280
2280
  `);
@@ -2298,7 +2298,7 @@ var getDefaultDragConfig = (node) => {
2298
2298
  const content = [
2299
2299
  `# Storyboard: ${node.storyboard.name}`,
2300
2300
  `# Contains ${node.storyboard.workflows.length} workflow(s)`,
2301
- `# Info: ${CLI} storyboard info "${node.storyboard.path}"`,
2301
+ `# For more information: ${CLI}`,
2302
2302
  node.storyboard.path
2303
2303
  ].join(`
2304
2304
  `);
@@ -2810,7 +2810,7 @@ var getDefaultCanvasDragConfig = (node) => {
2810
2810
  const canvasType = node.canvas.type === "otel" ? "OTEL Canvas" : "Canvas";
2811
2811
  const content = [
2812
2812
  `# ${canvasType}: ${node.canvas.name}`,
2813
- `# View with: ${CLI} canvas view "${node.canvas.path}"`,
2813
+ `# For more information: ${CLI}`,
2814
2814
  node.canvas.path
2815
2815
  ].join(`
2816
2816
  `);
@@ -2833,7 +2833,7 @@ var getDefaultCanvasDragConfig = (node) => {
2833
2833
  if (node.markdownPath) {
2834
2834
  const content = [
2835
2835
  `# Overview: ${node.canvas?.name || node.name}`,
2836
- `# Documentation: ${node.markdownPath}`,
2836
+ `# For more information: ${CLI}`,
2837
2837
  node.markdownPath
2838
2838
  ].join(`
2839
2839
  `);
@@ -2857,7 +2857,7 @@ var getDefaultCanvasDragConfig = (node) => {
2857
2857
  const folderPath = node.canvas.path.replace(/\/[^/]+$/, "");
2858
2858
  const content = [
2859
2859
  `# Canvas Folder: ${node.canvas.name}`,
2860
- `# Info: ${CLI} canvas info "${node.canvas.path}"`,
2860
+ `# For more information: ${CLI}`,
2861
2861
  folderPath
2862
2862
  ].join(`
2863
2863
  `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@principal-ade/dynamic-file-tree",
3
- "version": "0.1.71",
3
+ "version": "0.1.72",
4
4
  "description": "React component for selective directory filtering and file tree visualization",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",