@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.
- package/dist/consts.d.ts +0 -1
- package/dist/consts.js +0 -1
- package/dist/descriptor.d.ts +4 -4
- package/dist/descriptor.js +3 -4
- package/dist/effects.d.ts +0 -1
- package/dist/effects.js +0 -1
- package/dist/element-renderer.d.ts +1 -2
- package/dist/element-renderer.js +0 -1
- package/dist/element-view.d.ts +0 -1
- package/dist/element-view.js +0 -1
- package/dist/gradient.d.ts +0 -1
- package/dist/gradient.js +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/label-layout.d.ts +0 -1
- package/dist/label-layout.js +0 -1
- package/dist/legend.d.ts +0 -1
- package/dist/legend.js +0 -1
- package/dist/node/consts.d.ts +0 -1
- package/dist/node/consts.js +0 -1
- package/dist/node/node-renderer.d.ts +1 -2
- package/dist/node/node-renderer.js +0 -1
- package/dist/node/node-view.d.ts +0 -1
- package/dist/node/node-view.js +0 -1
- package/dist/templates/index.d.ts +0 -1
- package/dist/templates/index.js +0 -1
- package/dist/templates/maps.d.ts +0 -1
- package/dist/templates/maps.js +0 -1
- package/dist/toolbar/config.d.ts +0 -1
- package/dist/toolbar/config.js +101 -102
- package/dist/toolbar/icons.d.ts +0 -1
- package/dist/toolbar/icons.js +0 -1
- package/dist/toolbar/node-config.d.ts +0 -1
- package/dist/toolbar/node-config.js +0 -1
- package/dist/toolbar/senior-tool.d.ts +0 -1
- package/dist/toolbar/senior-tool.js +2 -3
- package/dist/toolbar/wardley-menu.d.ts +1 -2
- package/dist/toolbar/wardley-menu.js +106 -107
- package/dist/toolbar/wardley-senior-button.d.ts +1 -2
- package/dist/toolbar/wardley-senior-button.js +56 -57
- package/dist/view.d.ts +0 -1
- package/dist/view.js +0 -1
- package/package.json +2 -2
- package/dist/node/label-editor.d.ts +0 -28
- package/dist/node/label-editor.js +0 -216
- package/dist/toolbar/wardley-tool-button.d.ts +0 -10
- package/dist/toolbar/wardley-tool-button.js +0 -123
package/dist/consts.d.ts
CHANGED
package/dist/consts.js
CHANGED
package/dist/descriptor.d.ts
CHANGED
|
@@ -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
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
readonly flag: "wardley";
|
|
5
|
+
readonly telemetry: "wardley";
|
|
6
|
+
readonly viewExtension: typeof WardleyViewExtension;
|
|
7
7
|
};
|
package/dist/descriptor.js
CHANGED
|
@@ -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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
flag: 'wardley',
|
|
5
|
+
telemetry: 'wardley',
|
|
6
|
+
viewExtension: WardleyViewExtension,
|
|
8
7
|
};
|
package/dist/effects.d.ts
CHANGED
package/dist/effects.js
CHANGED
|
@@ -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
|
package/dist/element-renderer.js
CHANGED
package/dist/element-view.d.ts
CHANGED
|
@@ -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
|
package/dist/element-view.js
CHANGED
package/dist/gradient.d.ts
CHANGED
|
@@ -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
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/label-layout.d.ts
CHANGED
|
@@ -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
|
package/dist/label-layout.js
CHANGED
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
package/dist/node/consts.d.ts
CHANGED
package/dist/node/consts.js
CHANGED
|
@@ -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
|
package/dist/node/node-view.d.ts
CHANGED
package/dist/node/node-view.js
CHANGED
package/dist/templates/index.js
CHANGED
|
@@ -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
|
package/dist/templates/maps.d.ts
CHANGED
package/dist/templates/maps.js
CHANGED
|
@@ -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
|
package/dist/toolbar/config.d.ts
CHANGED
package/dist/toolbar/config.js
CHANGED
|
@@ -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
|
package/dist/toolbar/icons.d.ts
CHANGED
|
@@ -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
|
package/dist/toolbar/icons.js
CHANGED
|
@@ -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
|
|
@@ -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/
|
|
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
|