@formicoidea/labre-framework-ddd-core-domain 0.31.0 → 0.33.0

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.
@@ -1,32 +0,0 @@
1
- /**
2
- * Visual constants for the Core Domain Chart background (DDD Crew). Authored in
3
- * a fixed reference space (900 × 820) and scaled uniformly to the element bounds
4
- * by the renderer. Reproduces the supplied template: two axes (Complexity ×
5
- * Business differentiation), Low/High ticks and the translucent Generic /
6
- * Supporting / Core zone bands. The "Notation" legend is a separate prefab group.
7
- */
8
- export declare const REF_W = 900;
9
- export declare const REF_H = 820;
10
- export declare const COLORS: {
11
- readonly axis: "#000000";
12
- readonly zoneLabel: "#ffffff";
13
- readonly tick: "#777777";
14
- readonly title: "#000000";
15
- };
16
- /** Translucent zone bands (drawn at 0.6 alpha), back-to-front. */
17
- export declare const ZONES: ReadonlyArray<{
18
- x: number;
19
- y: number;
20
- w: number;
21
- h: number;
22
- fill: string;
23
- }>;
24
- /** Zone names (centred): [text, x, y, fontSize]. */
25
- export declare const ZONE_LABELS: ReadonlyArray<readonly [string, number, number, number]>;
26
- /** Axis frame: origin (ox, oy) bottom-left, up to `top`, right to `right`. */
27
- export declare const AXIS: {
28
- readonly ox: 60;
29
- readonly oy: 770;
30
- readonly top: 24;
31
- readonly right: 846;
32
- };
@@ -1,30 +0,0 @@
1
- /**
2
- * Visual constants for the Core Domain Chart background (DDD Crew). Authored in
3
- * a fixed reference space (900 × 820) and scaled uniformly to the element bounds
4
- * by the renderer. Reproduces the supplied template: two axes (Complexity ×
5
- * Business differentiation), Low/High ticks and the translucent Generic /
6
- * Supporting / Core zone bands. The "Notation" legend is a separate prefab group.
7
- */
8
- export const REF_W = 900;
9
- export const REF_H = 820;
10
- export const COLORS = {
11
- axis: '#000000',
12
- zoneLabel: '#ffffff',
13
- tick: '#777777',
14
- title: '#000000',
15
- };
16
- /** Translucent zone bands (drawn at 0.6 alpha), back-to-front. */
17
- export const ZONES = [
18
- { x: 70, y: 30, w: 150, h: 720, fill: '#b3b3b3' },
19
- { x: 220, y: 30, w: 220, h: 720, fill: '#9933ff' },
20
- { x: 440, y: 30, w: 400, h: 360, fill: '#4d9900' },
21
- { x: 440, y: 390, w: 400, h: 360, fill: '#9933ff' },
22
- ];
23
- /** Zone names (centred): [text, x, y, fontSize]. */
24
- export const ZONE_LABELS = [
25
- ['Core', 640, 214, 26],
26
- ['Supporting', 340, 474, 20],
27
- ['Generic', 150, 474, 20],
28
- ];
29
- /** Axis frame: origin (ox, oy) bottom-left, up to `top`, right to `right`. */
30
- export const AXIS = { ox: 60, oy: 770, top: 24, right: 846 };