@formicoidea/labre-framework-wardley 0.23.1 → 0.23.3

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 (47) hide show
  1. package/dist/consts.d.ts +0 -1
  2. package/dist/consts.js +0 -1
  3. package/dist/descriptor.d.ts +4 -4
  4. package/dist/descriptor.js +3 -4
  5. package/dist/effects.d.ts +0 -1
  6. package/dist/effects.js +0 -1
  7. package/dist/element-renderer.d.ts +1 -2
  8. package/dist/element-renderer.js +0 -1
  9. package/dist/element-view.d.ts +0 -1
  10. package/dist/element-view.js +0 -1
  11. package/dist/gradient.d.ts +0 -1
  12. package/dist/gradient.js +0 -1
  13. package/dist/index.d.ts +0 -1
  14. package/dist/index.js +0 -1
  15. package/dist/label-layout.d.ts +0 -1
  16. package/dist/label-layout.js +0 -1
  17. package/dist/legend.d.ts +0 -1
  18. package/dist/legend.js +0 -1
  19. package/dist/node/consts.d.ts +0 -1
  20. package/dist/node/consts.js +0 -1
  21. package/dist/node/node-renderer.d.ts +1 -2
  22. package/dist/node/node-renderer.js +0 -1
  23. package/dist/node/node-view.d.ts +0 -1
  24. package/dist/node/node-view.js +0 -1
  25. package/dist/templates/index.d.ts +0 -1
  26. package/dist/templates/index.js +0 -1
  27. package/dist/templates/maps.d.ts +0 -1
  28. package/dist/templates/maps.js +0 -1
  29. package/dist/toolbar/config.d.ts +0 -1
  30. package/dist/toolbar/config.js +101 -102
  31. package/dist/toolbar/icons.d.ts +0 -1
  32. package/dist/toolbar/icons.js +0 -1
  33. package/dist/toolbar/node-config.d.ts +0 -1
  34. package/dist/toolbar/node-config.js +0 -1
  35. package/dist/toolbar/senior-tool.d.ts +0 -1
  36. package/dist/toolbar/senior-tool.js +2 -3
  37. package/dist/toolbar/wardley-menu.d.ts +1 -2
  38. package/dist/toolbar/wardley-menu.js +106 -107
  39. package/dist/toolbar/wardley-senior-button.d.ts +1 -2
  40. package/dist/toolbar/wardley-senior-button.js +56 -57
  41. package/dist/view.d.ts +0 -1
  42. package/dist/view.js +0 -1
  43. package/package.json +2 -2
  44. package/dist/node/label-editor.d.ts +0 -28
  45. package/dist/node/label-editor.js +0 -216
  46. package/dist/toolbar/wardley-tool-button.d.ts +0 -10
  47. package/dist/toolbar/wardley-tool-button.js +0 -123
package/dist/consts.d.ts CHANGED
@@ -69,4 +69,3 @@ export declare const COLORS: {
69
69
  band: readonly ["#f7faff", "#eef4fb", "#e6eef8", "#dde8f4"];
70
70
  };
71
71
  export declare const FONT_FAMILY = "Inter, sans-serif";
72
- //# sourceMappingURL=consts.d.ts.map
package/dist/consts.js CHANGED
@@ -60,4 +60,3 @@ export const COLORS = {
60
60
  band: ['#f7faff', '#eef4fb', '#e6eef8', '#dde8f4'],
61
61
  };
62
62
  export const FONT_FAMILY = 'Inter, sans-serif';
63
- //# sourceMappingURL=consts.js.map
@@ -1,7 +1,7 @@
1
1
  import { WardleyViewExtension } from './view.js';
2
-
2
+ /** Host wiring for the wardley framework. */
3
3
  export declare const wardleyFramework: {
4
- readonly flag: 'wardley';
5
- readonly telemetry: 'wardley';
6
- readonly viewExtension: typeof WardleyViewExtension;
4
+ readonly flag: "wardley";
5
+ readonly telemetry: "wardley";
6
+ readonly viewExtension: typeof WardleyViewExtension;
7
7
  };
@@ -1,8 +1,7 @@
1
1
  import { WardleyViewExtension } from './view.js';
2
-
3
2
  /** Host wiring for the wardley framework. */
4
3
  export const wardleyFramework = {
5
- flag: 'wardley',
6
- telemetry: 'wardley',
7
- viewExtension: WardleyViewExtension,
4
+ flag: 'wardley',
5
+ telemetry: 'wardley',
6
+ viewExtension: WardleyViewExtension,
8
7
  };
package/dist/effects.d.ts CHANGED
@@ -7,4 +7,3 @@ declare global {
7
7
  'edgeless-wardley-senior-button': EdgelessWardleySeniorButton;
8
8
  }
9
9
  }
10
- //# sourceMappingURL=effects.d.ts.map
package/dist/effects.js CHANGED
@@ -4,4 +4,3 @@ export function effects() {
4
4
  customElements.define('edgeless-wardley-menu', EdgelessWardleyMenu);
5
5
  customElements.define('edgeless-wardley-senior-button', EdgelessWardleySeniorButton);
6
6
  }
7
- //# sourceMappingURL=effects.js.map
@@ -10,6 +10,5 @@ import type { WardleyBackgroundElementModel } from '@formicoidea/labre-core/mode
10
10
  */
11
11
  export declare const wardley: ElementRenderer<WardleyBackgroundElementModel>;
12
12
  export declare const WardleyElementRendererExtension: import("@formicoidea/labre-core/store").ExtensionType & {
13
- identifier: import("@formicoidea/labre-core/global/di").ServiceIdentifier<ElementRenderer<WardleyBackgroundElementModel>>;
13
+ identifier: import("@formicoidea/labre-core/_pkgs/global/di").ServiceIdentifier<ElementRenderer<WardleyBackgroundElementModel>>;
14
14
  };
15
- //# sourceMappingURL=element-renderer.d.ts.map
@@ -157,4 +157,3 @@ export const wardley = (model, ctx, matrix) => {
157
157
  }
158
158
  };
159
159
  export const WardleyElementRendererExtension = ElementRendererExtension('wardley', wardley);
160
- //# sourceMappingURL=element-renderer.js.map
@@ -18,4 +18,3 @@ export declare class WardleyView extends GfxElementModelView<WardleyBackgroundEl
18
18
  * handles reactively. Moving/selecting stays available throughout.
19
19
  */
20
20
  export declare const WardleyInteraction: import("@formicoidea/labre-core/store").ExtensionType;
21
- //# sourceMappingURL=element-view.d.ts.map
@@ -119,4 +119,3 @@ export const WardleyInteraction = GfxViewInteractionExtension(WardleyView.type,
119
119
  };
120
120
  },
121
121
  });
122
- //# sourceMappingURL=element-view.js.map
@@ -15,4 +15,3 @@ export declare const BENEFIT_ZERO_FRAC = 0.3;
15
15
  * in element-local coordinates. `classic` paints nothing.
16
16
  */
17
17
  export declare function paintGradientBackground(ctx: CanvasRenderingContext2D, variant: 'opportunity' | 'benefit' | 'evolution-gradient', px0: number, px1: number, py0: number, py1: number): void;
18
- //# sourceMappingURL=gradient.d.ts.map
package/dist/gradient.js CHANGED
@@ -109,4 +109,3 @@ export function paintGradientBackground(ctx, variant, px0, px1, py0, py1) {
109
109
  ctx.fillStyle = red;
110
110
  ctx.fillRect(px0, py0, w, h);
111
111
  }
112
- //# sourceMappingURL=gradient.js.map
package/dist/index.d.ts CHANGED
@@ -1,2 +1 @@
1
1
  export {};
2
- //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -1,2 +1 @@
1
1
  export {};
2
- //# sourceMappingURL=index.js.map
@@ -18,4 +18,3 @@ export interface WardleyLabelHit {
18
18
  export declare function getWardleyLabelHits(model: WardleyBackgroundElementModel, w: number, h: number): WardleyLabelHit[];
19
19
  /** First label whose (padded) box contains the local point, or null. */
20
20
  export declare function hitTestWardleyLabel(hits: WardleyLabelHit[], lx: number, ly: number): WardleyLabelHit | null;
21
- //# sourceMappingURL=label-layout.d.ts.map
@@ -70,4 +70,3 @@ export function hitTestWardleyLabel(hits, lx, ly) {
70
70
  }
71
71
  return null;
72
72
  }
73
- //# sourceMappingURL=label-layout.js.map
package/dist/legend.d.ts CHANGED
@@ -9,4 +9,3 @@ import type { BlockStdScope } from '@formicoidea/labre-core/std';
9
9
  * edited and is dropped bottom-left of the background.
10
10
  */
11
11
  export declare function createWardleyLegend(std: BlockStdScope, bg: WardleyBackgroundElementModel): void;
12
- //# sourceMappingURL=legend.d.ts.map
package/dist/legend.js CHANGED
@@ -330,4 +330,3 @@ export function createWardleyLegend(std, bg) {
330
330
  editing: false,
331
331
  });
332
332
  }
333
- //# sourceMappingURL=legend.js.map
@@ -104,4 +104,3 @@ export declare const METHOD: {
104
104
  centerRatio: number;
105
105
  };
106
106
  export declare const METHOD_LABEL = "Component";
107
- //# sourceMappingURL=consts.d.ts.map
@@ -98,4 +98,3 @@ export const METHOD = {
98
98
  centerRatio: 0.5, // inner white component radius / R
99
99
  };
100
100
  export const METHOD_LABEL = 'Component';
101
- //# sourceMappingURL=consts.js.map
@@ -12,6 +12,5 @@ import { type WardleyNodeElementModel } from '@formicoidea/labre-core/model';
12
12
  */
13
13
  export declare const wardleyNode: ElementRenderer<WardleyNodeElementModel>;
14
14
  export declare const WardleyNodeRendererExtension: import("@formicoidea/labre-core/store").ExtensionType & {
15
- identifier: import("@formicoidea/labre-core/global/di").ServiceIdentifier<ElementRenderer<WardleyNodeElementModel>>;
15
+ identifier: import("@formicoidea/labre-core/_pkgs/global/di").ServiceIdentifier<ElementRenderer<WardleyNodeElementModel>>;
16
16
  };
17
- //# sourceMappingURL=node-renderer.d.ts.map
@@ -103,4 +103,3 @@ export const wardleyNode = (model, ctx, matrix, renderer, rc, bound) => {
103
103
  ctx.stroke();
104
104
  };
105
105
  export const WardleyNodeRendererExtension = ElementRendererExtension('wardleyNode', wardleyNode);
106
- //# sourceMappingURL=node-renderer.js.map
@@ -8,4 +8,3 @@ import { GfxElementModelView } from '@formicoidea/labre-core/std/gfx';
8
8
  export declare class WardleyNodeView extends GfxElementModelView<WardleyNodeElementModel> {
9
9
  static type: string;
10
10
  }
11
- //# sourceMappingURL=node-view.d.ts.map
@@ -7,4 +7,3 @@ import { GfxElementModelView } from '@formicoidea/labre-core/std/gfx';
7
7
  export class WardleyNodeView extends GfxElementModelView {
8
8
  static { this.type = 'wardleyNode'; }
9
9
  }
10
- //# sourceMappingURL=node-view.js.map
@@ -1,3 +1,2 @@
1
1
  import { type TemplateCategory } from '@formicoidea/labre-core/gfx/template';
2
2
  export declare const wardleyTemplateCategory: TemplateCategory;
3
- //# sourceMappingURL=index.d.ts.map
@@ -169,4 +169,3 @@ export const wardleyTemplateCategory = {
169
169
  tpl('Evolution arrow', `<svg ${ATTRS} fill="none"><path d="M24 40 H100" stroke="#d6455d" stroke-width="2.4" stroke-dasharray="6 4"/><path d="M98 33 L112 40 L98 47 Z" fill="#d6455d"/></svg>`, single(connect({ position: [0, 0] }, { position: [160, 0] }, { red: true }))),
170
170
  ],
171
171
  };
172
- //# sourceMappingURL=index.js.map
@@ -1,3 +1,2 @@
1
1
  import { type Template } from '@formicoidea/labre-core/gfx/template';
2
2
  export declare const wardleyMaps: Template[];
3
- //# sourceMappingURL=maps.d.ts.map
@@ -244,4 +244,3 @@ export const wardleyMaps = [
244
244
  tpl('Tea Shop', mapPreview('<circle cx="78" cy="24" r="3" fill="#fff" stroke="#1f2328"/><circle cx="50" cy="44" r="3" fill="#fff" stroke="#1f2328"/><circle cx="86" cy="40" r="3" fill="#fff" stroke="#1f2328"/><circle cx="92" cy="58" r="3" fill="#fff" stroke="#1f2328"/><path d="M78 24 L50 44 M78 24 L86 40 L92 58" stroke="#666"/><path d="M50 44 h22" stroke="#d6455d" stroke-dasharray="3 2"/>'), teaShop()),
245
245
  tpl('Kodak inertia', mapPreview('<circle cx="56" cy="22" r="3" fill="#fff" stroke="#1f2328"/><circle cx="54" cy="40" r="3" fill="#fff" stroke="#1f2328"/><circle cx="86" cy="40" r="3" fill="#fff" stroke="#d6455d"/><rect x="76" y="35" width="2.5" height="11" fill="#1f2328"/><path d="M57 40 h17" stroke="#d6455d" stroke-dasharray="3 2"/>'), kodak()),
246
246
  ];
247
- //# sourceMappingURL=maps.js.map
@@ -72,4 +72,3 @@ export declare const wardleyToolbarConfig: {
72
72
  readonly when: (ctx: ToolbarContext) => boolean;
73
73
  };
74
74
  export declare const wardleyToolbarExtension: import("@formicoidea/labre-core/store").ExtensionType;
75
- //# sourceMappingURL=config.d.ts.map
@@ -5,121 +5,121 @@ import { BlockFlavourIdentifier } from '@formicoidea/labre-core/std';
5
5
  import { html } from 'lit';
6
6
  import { createWardleyLegend } from '../legend';
7
7
  import { wardleyLegendIcon } from './icons';
8
- const ResizeIcon = html `<svg
9
- width="24"
10
- height="24"
11
- viewBox="0 0 24 24"
12
- fill="none"
13
- stroke="currentColor"
14
- stroke-width="1.6"
15
- stroke-linecap="round"
16
- stroke-linejoin="round"
17
- >
18
- <path d="M9 5H5v4M15 19h4v-4" />
19
- <path d="M5 5l6 6M19 19l-6-6" />
8
+ const ResizeIcon = html `<svg
9
+ width="24"
10
+ height="24"
11
+ viewBox="0 0 24 24"
12
+ fill="none"
13
+ stroke="currentColor"
14
+ stroke-width="1.6"
15
+ stroke-linecap="round"
16
+ stroke-linejoin="round"
17
+ >
18
+ <path d="M9 5H5v4M15 19h4v-4" />
19
+ <path d="M5 5l6 6M19 19l-6-6" />
20
20
  </svg>`;
21
21
  /** Gradient swatch — show/hide the variant gradient. */
22
- const GradientIcon = html `<svg
23
- width="24"
24
- height="24"
25
- viewBox="0 0 24 24"
26
- fill="none"
27
- xmlns="http://www.w3.org/2000/svg"
28
- >
29
- <defs>
30
- <linearGradient id="wardleyToolbarGrad" x1="0" y1="0" x2="1" y2="0">
31
- <stop offset="0" stop-color="currentColor" stop-opacity="0.85" />
32
- <stop offset="1" stop-color="currentColor" stop-opacity="0.1" />
33
- </linearGradient>
34
- </defs>
35
- <rect
36
- x="4"
37
- y="5"
38
- width="16"
39
- height="14"
40
- rx="2"
41
- fill="url(#wardleyToolbarGrad)"
42
- stroke="currentColor"
43
- stroke-width="1.4"
44
- />
22
+ const GradientIcon = html `<svg
23
+ width="24"
24
+ height="24"
25
+ viewBox="0 0 24 24"
26
+ fill="none"
27
+ xmlns="http://www.w3.org/2000/svg"
28
+ >
29
+ <defs>
30
+ <linearGradient id="wardleyToolbarGrad" x1="0" y1="0" x2="1" y2="0">
31
+ <stop offset="0" stop-color="currentColor" stop-opacity="0.85" />
32
+ <stop offset="1" stop-color="currentColor" stop-opacity="0.1" />
33
+ </linearGradient>
34
+ </defs>
35
+ <rect
36
+ x="4"
37
+ y="5"
38
+ width="16"
39
+ height="14"
40
+ rx="2"
41
+ fill="url(#wardleyToolbarGrad)"
42
+ stroke="currentColor"
43
+ stroke-width="1.4"
44
+ />
45
45
  </svg>`;
46
46
  /** Horizontal axis with a right-pointing arrow (Evolution / X). */
47
- const XAxisIcon = html `<svg
48
- width="24"
49
- height="24"
50
- viewBox="0 0 24 24"
51
- fill="none"
52
- stroke="currentColor"
53
- stroke-width="1.6"
54
- stroke-linecap="round"
55
- stroke-linejoin="round"
56
- >
57
- <path d="M3 17h15" />
58
- <path d="M15 14l3 3-3 3" />
47
+ const XAxisIcon = html `<svg
48
+ width="24"
49
+ height="24"
50
+ viewBox="0 0 24 24"
51
+ fill="none"
52
+ stroke="currentColor"
53
+ stroke-width="1.6"
54
+ stroke-linecap="round"
55
+ stroke-linejoin="round"
56
+ >
57
+ <path d="M3 17h15" />
58
+ <path d="M15 14l3 3-3 3" />
59
59
  </svg>`;
60
60
  /** Vertical axis with an up-pointing arrow (Value Chain / Y). */
61
- const YAxisIcon = html `<svg
62
- width="24"
63
- height="24"
64
- viewBox="0 0 24 24"
65
- fill="none"
66
- stroke="currentColor"
67
- stroke-width="1.6"
68
- stroke-linecap="round"
69
- stroke-linejoin="round"
70
- >
71
- <path d="M7 21V6" />
72
- <path d="M4 9l3-3 3 3" />
61
+ const YAxisIcon = html `<svg
62
+ width="24"
63
+ height="24"
64
+ viewBox="0 0 24 24"
65
+ fill="none"
66
+ stroke="currentColor"
67
+ stroke-width="1.6"
68
+ stroke-linecap="round"
69
+ stroke-linejoin="round"
70
+ >
71
+ <path d="M7 21V6" />
72
+ <path d="M4 9l3-3 3 3" />
73
73
  </svg>`;
74
74
  /** Dashed vertical column dividers. */
75
- const ColumnsIcon = html `<svg
76
- width="24"
77
- height="24"
78
- viewBox="0 0 24 24"
79
- fill="none"
80
- stroke="currentColor"
81
- stroke-width="1.6"
82
- stroke-linecap="round"
83
- stroke-dasharray="3 3"
84
- >
85
- <path d="M9 4v16M15 4v16" />
75
+ const ColumnsIcon = html `<svg
76
+ width="24"
77
+ height="24"
78
+ viewBox="0 0 24 24"
79
+ fill="none"
80
+ stroke="currentColor"
81
+ stroke-width="1.6"
82
+ stroke-linecap="round"
83
+ stroke-dasharray="3 3"
84
+ >
85
+ <path d="M9 4v16M15 4v16" />
86
86
  </svg>`;
87
87
  /** Column labels (short bars under the columns). */
88
- const ColumnLabelsIcon = html `<svg
89
- width="24"
90
- height="24"
91
- viewBox="0 0 24 24"
92
- fill="currentColor"
93
- stroke="none"
94
- >
95
- <rect x="3" y="15" width="4.5" height="3" rx="1" />
96
- <rect x="9.75" y="15" width="4.5" height="3" rx="1" />
97
- <rect x="16.5" y="15" width="4.5" height="3" rx="1" />
88
+ const ColumnLabelsIcon = html `<svg
89
+ width="24"
90
+ height="24"
91
+ viewBox="0 0 24 24"
92
+ fill="currentColor"
93
+ stroke="none"
94
+ >
95
+ <rect x="3" y="15" width="4.5" height="3" rx="1" />
96
+ <rect x="9.75" y="15" width="4.5" height="3" rx="1" />
97
+ <rect x="16.5" y="15" width="4.5" height="3" rx="1" />
98
98
  </svg>`;
99
99
  /** Corner labels (Uncharted / Industrialized, top corners). */
100
- const CornerLabelsIcon = html `<svg
101
- width="24"
102
- height="24"
103
- viewBox="0 0 24 24"
104
- fill="currentColor"
105
- stroke="none"
106
- >
107
- <rect x="3" y="5" width="6" height="3" rx="1" />
108
- <rect x="15" y="5" width="6" height="3" rx="1" />
100
+ const CornerLabelsIcon = html `<svg
101
+ width="24"
102
+ height="24"
103
+ viewBox="0 0 24 24"
104
+ fill="currentColor"
105
+ stroke="none"
106
+ >
107
+ <rect x="3" y="5" width="6" height="3" rx="1" />
108
+ <rect x="15" y="5" width="6" height="3" rx="1" />
109
109
  </svg>`;
110
110
  /** Visibility labels (Visible / Invisible) — an eye. */
111
- const VisibilityIcon = html `<svg
112
- width="24"
113
- height="24"
114
- viewBox="0 0 24 24"
115
- fill="none"
116
- stroke="currentColor"
117
- stroke-width="1.6"
118
- stroke-linecap="round"
119
- stroke-linejoin="round"
120
- >
121
- <path d="M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12z" />
122
- <circle cx="12" cy="12" r="2.4" />
111
+ const VisibilityIcon = html `<svg
112
+ width="24"
113
+ height="24"
114
+ viewBox="0 0 24 24"
115
+ fill="none"
116
+ stroke="currentColor"
117
+ stroke-width="1.6"
118
+ stroke-linecap="round"
119
+ stroke-linejoin="round"
120
+ >
121
+ <path d="M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12z" />
122
+ <circle cx="12" cy="12" r="2.4" />
123
123
  </svg>`;
124
124
  /**
125
125
  * Build a toolbar toggle that flips a boolean flag on every selected Wardley
@@ -203,4 +203,3 @@ export const wardleyToolbarExtension = ToolbarModuleExtension({
203
203
  id: BlockFlavourIdentifier('affine:surface:wardley'),
204
204
  config: wardleyToolbarConfig,
205
205
  });
206
- //# sourceMappingURL=config.js.map
@@ -28,4 +28,3 @@ export declare const wardleyOpportunityIcon: import("lit-html").TemplateResult<2
28
28
  export declare const wardleyBenefitIcon: import("lit-html").TemplateResult<2>;
29
29
  /** Evolution-gradient background (Wardley's S-curve presentation): grey at both edges fading to white center. */
30
30
  export declare const wardleyEvolutionGradientIcon: import("lit-html").TemplateResult<2>;
31
- //# sourceMappingURL=icons.d.ts.map
@@ -132,4 +132,3 @@ export const wardleyEvolutionGradientIcon = svg `<svg width="24" height="24" vie
132
132
  </defs>
133
133
  <rect x="4" y="4.5" width="16" height="15" rx="2" fill="url(#wardleyGreyU)" stroke="currentColor" stroke-width="1.2"/>
134
134
  </svg>`;
135
- //# sourceMappingURL=icons.js.map
@@ -1,2 +1 @@
1
1
  export declare const wardleyNodeToolbarExtension: import("@formicoidea/labre-core/store").ExtensionType;
2
- //# sourceMappingURL=node-config.d.ts.map
@@ -18,4 +18,3 @@ export const wardleyNodeToolbarExtension = ToolbarModuleExtension({
18
18
  id: BlockFlavourIdentifier('affine:surface:wardleyNode'),
19
19
  config: wardleyNodeToolbarConfig,
20
20
  });
21
- //# sourceMappingURL=node-config.js.map
@@ -1,2 +1 @@
1
1
  export declare const wardleySeniorTool: import("@formicoidea/labre-core/store").ExtensionType;
2
- //# sourceMappingURL=senior-tool.d.ts.map
@@ -3,9 +3,8 @@ import { html } from 'lit';
3
3
  export const wardleySeniorTool = SeniorToolExtension('wardley', ({ block }) => {
4
4
  return {
5
5
  name: 'Wardley map',
6
- content: html `<edgeless-wardley-senior-button
7
- .edgeless=${block}
6
+ content: html `<edgeless-wardley-senior-button
7
+ .edgeless=${block}
8
8
  ></edgeless-wardley-senior-button>`,
9
9
  };
10
10
  });
11
- //# sourceMappingURL=senior-tool.js.map
@@ -1,6 +1,6 @@
1
1
  import { EmptyTool } from '@formicoidea/labre-core/gfx/pointer';
2
2
  import { LitElement } from 'lit';
3
- declare const EdgelessWardleyMenu_base: typeof LitElement & import("@formicoidea/labre-core/global/utils").Constructor<import("@formicoidea/labre-core/widgets/edgeless-toolbar").EdgelessToolbarToolClass>;
3
+ declare const EdgelessWardleyMenu_base: typeof LitElement & import("@formicoidea/labre-core/_pkgs/global/utils").Constructor<import("@formicoidea/labre-core/_pkgs/affine-widget-edgeless-toolbar").EdgelessToolbarToolClass>;
4
4
  /**
5
5
  * The popover that opens above the toolbar for the Wardley toolbox. Each item
6
6
  * creates a pre-formatted Wardley object. Nodes (component / anchor) are a
@@ -50,4 +50,3 @@ export declare class EdgelessWardleyMenu extends EdgelessWardleyMenu_base {
50
50
  render(): import("lit-html").TemplateResult<1>;
51
51
  }
52
52
  export {};
53
- //# sourceMappingURL=wardley-menu.d.ts.map