@cardenelabs/dragon 0.12.0 → 0.14.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.
- package/README.md +86 -58
- package/dist/index.cjs +10485 -6260
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +945 -4
- package/dist/index.d.ts +945 -4
- package/dist/index.js +10486 -6261
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/color.ts +31 -6
- package/src/compile.ts +724 -196
- package/src/input-size.ts +21 -1
- package/src/json-parser.ts +695 -2
- package/src/schemas/diagram.json +1341 -3
- package/src/types.ts +130 -1
- package/src/v05/input-table.generated.ts +136 -0
- package/src/v05/parser-types.ts +21 -0
- package/src/v05/parser.ts +1237 -26
- package/src/v05/readout-table.generated.ts +1088 -0
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NodeKind, Tone, EdgeStyle,
|
|
1
|
+
import { CdlDiagram, NodeKind, Tone, EdgeStyle, LaidDiagram } from '@cardenelabs/cdl';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* 位置を他の要素からの相対で書くための解決。
|
|
@@ -82,6 +82,50 @@ declare function orderByDependency(items: ReadonlyArray<{
|
|
|
82
82
|
* docs/cdl/text-dsl-spec.md の文法を AST に変換した中間表現
|
|
83
83
|
*/
|
|
84
84
|
|
|
85
|
+
/**
|
|
86
|
+
* 箱の中に描く図形 (#1374)。 **描画側の型をそのまま使う**。
|
|
87
|
+
*
|
|
88
|
+
* 写して持つと欄が増えた時にずれる。 指した先が変われば型検査が教える。
|
|
89
|
+
*/
|
|
90
|
+
type DslDynShape = NonNullable<CdlDiagram["nodes"][number]["shape"]>;
|
|
91
|
+
/** 値を見せる部品 (#1374)。 図形と同じ理由で描画側の型をそのまま使う */
|
|
92
|
+
type DslReadout = NonNullable<CdlDiagram["readouts"]>[number];
|
|
93
|
+
/** 読む人が動かすつまみ (#1389)。 部品と同じ理由で描画側の型をそのまま使う */
|
|
94
|
+
type DslInput = NonNullable<CdlDiagram["inputs"]>[number];
|
|
95
|
+
/** つまみの値から決まる値 (#1391)。 描画側の型に、知らせ用の記述位置だけを足す。 */
|
|
96
|
+
type DslFormula = NonNullable<CdlDiagram["formulas"]>[number] & {
|
|
97
|
+
pos?: Position;
|
|
98
|
+
};
|
|
99
|
+
/** 巻き上げに応じて進む値 (#1393)。 描画側の型をそのまま使う */
|
|
100
|
+
type DslScrollTrigger = NonNullable<CdlDiagram["scrollTriggers"]>[number];
|
|
101
|
+
/**
|
|
102
|
+
* 押下などの出来事で動く仕掛け (`events:`、 #1393)。
|
|
103
|
+
*
|
|
104
|
+
* **描画側の型をそのまま使わない**。 描画側は相手を識別子で持つ (`{ kind: "node", id }`) が、
|
|
105
|
+
* 記法は識別子を書けず名前で指す。 名前から識別子への読み替えは組み立てが行うため、
|
|
106
|
+
* 記法の段階では「何をどう指したか」 だけを持つ。
|
|
107
|
+
*/
|
|
108
|
+
type DslEventBinding = {
|
|
109
|
+
/** 出来事の種類 (`click` / `hover` など、描画側の `CdlEventKind` と同じ語) */
|
|
110
|
+
event: NonNullable<CdlDiagram["eventBindings"]>[number]["event"];
|
|
111
|
+
/** 何を指したか。 名前は記法に書かれたまま持ち、組み立てが識別子へ直す */
|
|
112
|
+
target: {
|
|
113
|
+
kind: "node";
|
|
114
|
+
name: string;
|
|
115
|
+
} | {
|
|
116
|
+
kind: "lane";
|
|
117
|
+
name: string;
|
|
118
|
+
} | {
|
|
119
|
+
kind: "edge";
|
|
120
|
+
from: string;
|
|
121
|
+
to: string;
|
|
122
|
+
} | {
|
|
123
|
+
kind: "diagram";
|
|
124
|
+
};
|
|
125
|
+
/** 呼び出す仕掛けの名前。 実体は画面側が持つ */
|
|
126
|
+
handlerId: string;
|
|
127
|
+
pos: Position;
|
|
128
|
+
};
|
|
85
129
|
type PresetType = "sequence" | "flow" | "swimlane" | "er" | "state" | "topology" | "solidity" | "gantt" | "class" | "pie" | "bar" | "line" | "funnel" | "tree" | "journey" | "quadrant" | "c4" | "mind";
|
|
86
130
|
type Position = {
|
|
87
131
|
line: number;
|
|
@@ -150,6 +194,41 @@ type DslDocument = {
|
|
|
150
194
|
viewport?: DslViewport;
|
|
151
195
|
lanes?: Record<string, DslLane>;
|
|
152
196
|
groups?: Record<string, DslGroup>;
|
|
197
|
+
/**
|
|
198
|
+
* 値を見せる部品 (`readouts:`、 #1374)。 割合の輪や数え上げを図の脇に出す。
|
|
199
|
+
*
|
|
200
|
+
* 箱ではないので縦列に載らない。 図全体に 1 つの並びとして持つ。
|
|
201
|
+
*/
|
|
202
|
+
readouts?: DslReadout[];
|
|
203
|
+
/**
|
|
204
|
+
* 読む人が動かすつまみ (`inputs:`、 #1389)。 つまみが握る値は状態と同じ名前で参照できる。
|
|
205
|
+
*
|
|
206
|
+
* 部品と同じく箱ではないので縦列に載らない。 図全体に 1 つの並びとして持つ。
|
|
207
|
+
*/
|
|
208
|
+
inputs?: DslInput[];
|
|
209
|
+
/**
|
|
210
|
+
* つまみの値から決まる値 (`formulas:`、 #1391)。
|
|
211
|
+
*
|
|
212
|
+
* **`values:` とは経路が別**。 あちらは段が動かす状態を読んで毎 frame 決まり直す
|
|
213
|
+
* (`derived`) のに対し、こちらはつまみが握る値を読む反応の網に載る (`formulas`)。
|
|
214
|
+
* 描画側がこの 2 つを別の欄として持つため、記法でも別の項目にする。
|
|
215
|
+
*
|
|
216
|
+
* 式は描画側の書き方。 名前は中括弧で囲っても囲わなくてもよい (描画側の parser が
|
|
217
|
+
* どちらも同じ名前として読む)。
|
|
218
|
+
*/
|
|
219
|
+
formulas?: DslFormula[];
|
|
220
|
+
/**
|
|
221
|
+
* 押下などの出来事で動く仕掛け (`events:`、 #1393)。
|
|
222
|
+
*
|
|
223
|
+
* 相手は名前で指す。 組み立てが識別子へ直し、指す先が無ければ知らせる。
|
|
224
|
+
*/
|
|
225
|
+
events?: DslEventBinding[];
|
|
226
|
+
/**
|
|
227
|
+
* 巻き上げに応じて進む値 (`scrolls:`、 #1393)。
|
|
228
|
+
*
|
|
229
|
+
* 画面を巻き上げた量から 0 から 1 の進み具合を作る。 描画側はこれを値として読む。
|
|
230
|
+
*/
|
|
231
|
+
scrolls?: DslScrollTrigger[];
|
|
153
232
|
/**
|
|
154
233
|
* canvas pivot (CAR-1693 Phase 1) diagram-level layout mode。 未指定は "auto" default で
|
|
155
234
|
* catalog 100+ backward compat。 "manual" は Phase 4 で drag → pos: 保存の完全 manual mode。
|
|
@@ -186,6 +265,49 @@ type DslActor = {
|
|
|
186
265
|
eyebrow?: string;
|
|
187
266
|
value?: string;
|
|
188
267
|
rows?: string[];
|
|
268
|
+
/**
|
|
269
|
+
* 箱の中に描く図形 (`shape:`、 #1374)。 水位や角度を状態で動かせる。
|
|
270
|
+
*
|
|
271
|
+
* 種類ごとに書ける欄が違う (`図形の表`)。 知らない種類と欄は読み取りが知らせる。
|
|
272
|
+
*/
|
|
273
|
+
shape?: DslDynShape;
|
|
274
|
+
/**
|
|
275
|
+
* 箱に出す題 (`title:`、 #1381)。 書かなければ名前がそのまま題になる。
|
|
276
|
+
*
|
|
277
|
+
* 名前は図の中で 1 つに決まる必要がある (`focus:` と `flow:` が名前で指すため) 一方、
|
|
278
|
+
* 題は重なってよい。 同じ題の箱を並べる図と、題を持たない箱を、名前と切り離して書ける。
|
|
279
|
+
*/
|
|
280
|
+
title?: string;
|
|
281
|
+
/**
|
|
282
|
+
* その箱を出すかどうかの条件 (`visibleIf:`、 #1381)。
|
|
283
|
+
*
|
|
284
|
+
* 状態を差し込める文字列で、描画側が真偽を判定する。 `"0"` / `"false"` / 空文字が偽で、
|
|
285
|
+
* それ以外は真。 値だけを見せる図が、場所を空けるためだけの見えない箱を置くのに使う。
|
|
286
|
+
*/
|
|
287
|
+
visibleIf?: string;
|
|
288
|
+
/**
|
|
289
|
+
* 箱の幅と高さを値に追随させる (`wBind:` / `hBind:`、 #1392)。
|
|
290
|
+
*
|
|
291
|
+
* 状態の名前を `{名前}` の形で書く。 配置計算は追随前の `posW` / `posH` を使い、
|
|
292
|
+
* 描く時だけ値に合わせて伸び縮みする (矢印の通り道が動かないようにするための分離)。
|
|
293
|
+
*/
|
|
294
|
+
wBind?: string;
|
|
295
|
+
hBind?: string;
|
|
296
|
+
/**
|
|
297
|
+
* 箱の濃さ (`opacity:`、 #1392)。 0 から 1 の数か、状態の名前を書く。
|
|
298
|
+
*
|
|
299
|
+
* 書かなければ完全に見える状態になる。 `visibleIf` が出す / 出さないの 2 値なのに対し、
|
|
300
|
+
* こちらは途中の濃さを持てる。
|
|
301
|
+
*/
|
|
302
|
+
opacity?: number | string;
|
|
303
|
+
/**
|
|
304
|
+
* 描く時だけ箱をずらす量 (`renderOffsetX:` / `renderOffsetY:`、 #1392)。
|
|
305
|
+
*
|
|
306
|
+
* 配置計算と矢印はずらす前の位置を使うため、円周上に並べて見せる等の見た目専用。
|
|
307
|
+
* 数か、状態の名前を書く。
|
|
308
|
+
*/
|
|
309
|
+
renderOffsetX?: number | string;
|
|
310
|
+
renderOffsetY?: number | string;
|
|
189
311
|
/**
|
|
190
312
|
* 工程の並び (`type: gantt`) で、その工程の担当 (#1251)。
|
|
191
313
|
*
|
|
@@ -317,6 +439,17 @@ type DslStep = {
|
|
|
317
439
|
/** v0.5+ inline option */
|
|
318
440
|
guard?: string;
|
|
319
441
|
cardinality?: string;
|
|
442
|
+
/**
|
|
443
|
+
* 矢印を値に追随させる欄 (`widthBind:` / `strokeBind:` / `dashOffsetBind:`、 #1396)。
|
|
444
|
+
*
|
|
445
|
+
* 箱の `wBind` (#1392) と同じ形で、状態やつまみの名前を `{名前}` で書く。
|
|
446
|
+
* 太さ / 色 / 破線の位置がその値に合わせて動く。 通り道そのものは動かない。
|
|
447
|
+
*/
|
|
448
|
+
widthBind?: string;
|
|
449
|
+
strokeBind?: string;
|
|
450
|
+
dashOffsetBind?: string;
|
|
451
|
+
/** 矢印がどの辺から出るか (#1385)。 書かなければ描画側が自動で選ぶ */
|
|
452
|
+
side?: "top" | "right" | "bottom" | "left";
|
|
320
453
|
labelOffsetX?: number;
|
|
321
454
|
labelOffsetY?: number;
|
|
322
455
|
/** true で説明文を矢印の線の上に重ねる。 分岐図の条件ラベル用。 */
|
|
@@ -536,7 +669,7 @@ interface CompileToCdlOpts {
|
|
|
536
669
|
}
|
|
537
670
|
/** 図は出せるが書いた通りにならなかった、 という知らせ。 */
|
|
538
671
|
type CompileNotice = {
|
|
539
|
-
kind: "relative-position-ignored" | "focus-target-missing" | "state-override-rejected" | "external-paint-dropped" | "part-not-drawn" | "scale-reserved" | "chart-value-unreadable" | "chart-edge-dropped" | "value-shadows-state" | "value-unresolved" | "value-duplicate" | "flow-actor-missing" | "value-trigger-unresolved" | "flow-self-loop" | "lane-not-honored" | "lane-declared-empty" | "eyebrow-not-honored" | "flow-endpoint-not-honored" | "draw-not-honored" | "draw-target-mismatch";
|
|
672
|
+
kind: "relative-position-ignored" | "focus-target-missing" | "state-override-rejected" | "external-paint-dropped" | "part-not-drawn" | "scale-reserved" | "chart-value-unreadable" | "chart-edge-dropped" | "value-shadows-state" | "value-unresolved" | "value-duplicate" | "flow-actor-missing" | "value-trigger-unresolved" | "flow-self-loop" | "lane-not-honored" | "lane-declared-empty" | "eyebrow-not-honored" | "flow-endpoint-not-honored" | "draw-not-honored" | "draw-target-mismatch" | "formula-unresolved" | "event-target-missing";
|
|
540
673
|
/** 対象の名前。 光らせる相手なら書かれた指定そのまま */
|
|
541
674
|
actor: string;
|
|
542
675
|
/** 書かれていた行 */
|
|
@@ -785,7 +918,7 @@ type V05ParseResult = {
|
|
|
785
918
|
* 書くと、項目を足した時に案内か一覧のどちらかが取り残される (実際に `states` / `values` が
|
|
786
919
|
* 一覧に 1 件も無い状態で放置されていた)。
|
|
787
920
|
*/
|
|
788
|
-
declare const TOP_LEVEL_KEYS: readonly ["title", "type", "actors", "flow", "states", "values", "animation", "viewport", "lanes", "groups", "eyebrow", "axes"];
|
|
921
|
+
declare const TOP_LEVEL_KEYS: readonly ["title", "type", "actors", "flow", "states", "values", "animation", "viewport", "lanes", "groups", "eyebrow", "axes", "readouts", "inputs", "formulas", "events", "scrolls"];
|
|
789
922
|
/** 受け付ける図種。 記法一覧はここを見る。 */
|
|
790
923
|
declare const PRESET_TYPES: ReadonlySet<PresetType>;
|
|
791
924
|
/**
|
|
@@ -1035,11 +1168,13 @@ type StrippedPaint = {
|
|
|
1035
1168
|
/**
|
|
1036
1169
|
* 図の中から、 色を塗る位置に入った外部参照を落とす。
|
|
1037
1170
|
*
|
|
1038
|
-
* 対象は
|
|
1171
|
+
* 対象は 3 種類ある。
|
|
1039
1172
|
*
|
|
1040
1173
|
* - 色を塗る key (`fill` / `stroke` / `bg` 等) の値
|
|
1041
1174
|
* - 状態の値 (`states[].initial` と、 phase が状態へ入れる値)。 状態は `{名前}` の形で
|
|
1042
1175
|
* `fill` に差し込まれるため、 色を塗る位置に届く
|
|
1176
|
+
* - つまみの値 (`inputs[].defaultValue` / `defaultValues` / `options`)。 これらも状態を上書きし、
|
|
1177
|
+
* 同じ形で paint に届く
|
|
1043
1178
|
*
|
|
1044
1179
|
* 説明文 (`title` / `subtitle` / `value` / `rows`) は対象外。 文字として出るだけで
|
|
1045
1180
|
* 属性にはならないため、 URL を書く正当な用途を壊さない。
|
|
@@ -1227,6 +1362,44 @@ interface DragonJson {
|
|
|
1227
1362
|
actors: (string | JsonActor)[];
|
|
1228
1363
|
/** flow step 配列 (必須): { from, to, label, ... } */
|
|
1229
1364
|
flow: JsonStep[];
|
|
1365
|
+
/**
|
|
1366
|
+
* 値を見せる部品 (optional、 #1374)。 記法の最上位 `readouts:` と同じ。
|
|
1367
|
+
*
|
|
1368
|
+
* 箱ではないので縦列に載らない。 図全体に 1 つの並びとして持つ。
|
|
1369
|
+
*/
|
|
1370
|
+
readouts?: DslReadout[];
|
|
1371
|
+
/**
|
|
1372
|
+
* 読む人が動かすつまみ (optional、 #1389)。 記法の最上位 `inputs:` と同じ。
|
|
1373
|
+
*
|
|
1374
|
+
* 部品と同じく箱ではないので縦列に載らない。 図全体に 1 つの並びとして持つ。
|
|
1375
|
+
*/
|
|
1376
|
+
inputs?: DslInput[];
|
|
1377
|
+
/**
|
|
1378
|
+
* つまみの値から決まる値 (optional、 #1391)。 記法の最上位 `formulas:` と同じ。
|
|
1379
|
+
*
|
|
1380
|
+
* 形は `{ 名前: "式" }`。 `values:` と経路が別で、式は名前を中括弧で囲わない。
|
|
1381
|
+
*/
|
|
1382
|
+
formulas?: Record<string, string>;
|
|
1383
|
+
/**
|
|
1384
|
+
* 押下などの出来事で動く仕掛け (optional、 #1393)。 記法の最上位 `events:` と同じ。
|
|
1385
|
+
*
|
|
1386
|
+
* 相手は名前で指す (`box` / `lane` / `arrow` / `diagram` のどれか 1 つ)。
|
|
1387
|
+
*/
|
|
1388
|
+
events?: {
|
|
1389
|
+
on: string;
|
|
1390
|
+
handler: string;
|
|
1391
|
+
box?: string;
|
|
1392
|
+
lane?: string;
|
|
1393
|
+
arrow?: string;
|
|
1394
|
+
diagram?: boolean;
|
|
1395
|
+
}[];
|
|
1396
|
+
/** 巻き上げに応じて進む値 (optional、 #1393)。 記法の最上位 `scrolls:` と同じ */
|
|
1397
|
+
scrolls?: Record<string, {
|
|
1398
|
+
start?: number;
|
|
1399
|
+
end?: number;
|
|
1400
|
+
scrub?: number;
|
|
1401
|
+
label?: string;
|
|
1402
|
+
}>;
|
|
1230
1403
|
/**
|
|
1231
1404
|
* 状態の初期値 (optional)。 記法の `states:` と同じ (#1181)。
|
|
1232
1405
|
*
|
|
@@ -1277,6 +1450,31 @@ interface DragonJson {
|
|
|
1277
1450
|
}
|
|
1278
1451
|
interface JsonActor {
|
|
1279
1452
|
name: string;
|
|
1453
|
+
/**
|
|
1454
|
+
* 箱の中に描く図形 (optional、 #1374)。 記法の `shape:` と同じ。
|
|
1455
|
+
*
|
|
1456
|
+
* 水位や角度を状態で動かす。 形は描画側の型が縛る。
|
|
1457
|
+
*/
|
|
1458
|
+
shape?: DslDynShape;
|
|
1459
|
+
/**
|
|
1460
|
+
* その箱を出すかどうかの条件 (optional、 #1381)。 記法の `visibleIf:` と同じ。
|
|
1461
|
+
*/
|
|
1462
|
+
visibleIf?: string;
|
|
1463
|
+
/**
|
|
1464
|
+
* 箱に出す題 (optional、 #1381)。 記法の `title:` と同じ。
|
|
1465
|
+
*/
|
|
1466
|
+
title?: string;
|
|
1467
|
+
/**
|
|
1468
|
+
* 値に追随する 5 欄 (optional、 #1392)。 記法の `wBind:` / `hBind:` / `opacity:` /
|
|
1469
|
+
* `renderOffsetX:` / `renderOffsetY:` と同じ。
|
|
1470
|
+
*
|
|
1471
|
+
* 大きさは文字列だけ (数を書いても追随のしようが無い)、濃さとずらしは数も受ける。
|
|
1472
|
+
*/
|
|
1473
|
+
wBind?: string;
|
|
1474
|
+
hBind?: string;
|
|
1475
|
+
opacity?: number | string;
|
|
1476
|
+
renderOffsetX?: number | string;
|
|
1477
|
+
renderOffsetY?: number | string;
|
|
1280
1478
|
/**
|
|
1281
1479
|
* CAR-1657 unified syntax = 既存 NodeKind (28 個) に加えて parts identifier (arc-gauge 等) を
|
|
1282
1480
|
* accept する。 未知 kind 値は parts 候補として partId に格納、 compile 側 partsCatalog で解決。
|
|
@@ -1387,6 +1585,8 @@ interface JsonStep {
|
|
|
1387
1585
|
to: string;
|
|
1388
1586
|
label: string;
|
|
1389
1587
|
sub?: string;
|
|
1588
|
+
/** 矢印がどの辺から出るか (#1385)。 記法の `side:` と同じ */
|
|
1589
|
+
side?: "top" | "right" | "bottom" | "left";
|
|
1390
1590
|
/**
|
|
1391
1591
|
* 矢印の色 (#1304)。 記法の `(成功)` と同じく別名 (`成功` / `neutral` 等) も受ける。
|
|
1392
1592
|
*
|
|
@@ -1396,6 +1596,13 @@ interface JsonStep {
|
|
|
1396
1596
|
style?: EdgeStyle;
|
|
1397
1597
|
guard?: string;
|
|
1398
1598
|
cardinality?: string;
|
|
1599
|
+
/**
|
|
1600
|
+
* 矢印を値に追随させる 3 欄 (optional、 #1396)。 記法の `widthBind:` / `strokeBind:` /
|
|
1601
|
+
* `dashOffsetBind:` と同じ。 描画側は文字列だけを取る。
|
|
1602
|
+
*/
|
|
1603
|
+
widthBind?: string;
|
|
1604
|
+
strokeBind?: string;
|
|
1605
|
+
dashOffsetBind?: string;
|
|
1399
1606
|
labelOffsetX?: number;
|
|
1400
1607
|
labelOffsetY?: number;
|
|
1401
1608
|
/** true で説明文を矢印の線の上に重ねる。 分岐図の条件ラベル用。 */
|
|
@@ -1712,6 +1919,126 @@ declare const diagramJsonSchema: {
|
|
|
1712
1919
|
};
|
|
1713
1920
|
};
|
|
1714
1921
|
};
|
|
1922
|
+
visibleIf: {
|
|
1923
|
+
type: string;
|
|
1924
|
+
description: string;
|
|
1925
|
+
};
|
|
1926
|
+
title: {
|
|
1927
|
+
type: string;
|
|
1928
|
+
description: string;
|
|
1929
|
+
};
|
|
1930
|
+
shape: {
|
|
1931
|
+
type: string;
|
|
1932
|
+
description: string;
|
|
1933
|
+
required: string[];
|
|
1934
|
+
properties: {
|
|
1935
|
+
kind: {
|
|
1936
|
+
type: string;
|
|
1937
|
+
enum: string[];
|
|
1938
|
+
};
|
|
1939
|
+
source: {
|
|
1940
|
+
type: string[];
|
|
1941
|
+
};
|
|
1942
|
+
fillMax: {
|
|
1943
|
+
type: string;
|
|
1944
|
+
};
|
|
1945
|
+
orient: {
|
|
1946
|
+
type: string;
|
|
1947
|
+
enum: string[];
|
|
1948
|
+
};
|
|
1949
|
+
radius: {
|
|
1950
|
+
type: string[];
|
|
1951
|
+
};
|
|
1952
|
+
fillProgress: {
|
|
1953
|
+
type: string[];
|
|
1954
|
+
};
|
|
1955
|
+
innerRadius: {
|
|
1956
|
+
type: string;
|
|
1957
|
+
};
|
|
1958
|
+
outerRadius: {
|
|
1959
|
+
type: string;
|
|
1960
|
+
};
|
|
1961
|
+
startAngle: {
|
|
1962
|
+
type: string;
|
|
1963
|
+
};
|
|
1964
|
+
angle: {
|
|
1965
|
+
type: string[];
|
|
1966
|
+
};
|
|
1967
|
+
sweepMax: {
|
|
1968
|
+
type: string;
|
|
1969
|
+
};
|
|
1970
|
+
level: {
|
|
1971
|
+
type: string[];
|
|
1972
|
+
};
|
|
1973
|
+
amplitude: {
|
|
1974
|
+
type: string;
|
|
1975
|
+
};
|
|
1976
|
+
frequency: {
|
|
1977
|
+
type: string;
|
|
1978
|
+
};
|
|
1979
|
+
waveHeight: {
|
|
1980
|
+
type: string;
|
|
1981
|
+
};
|
|
1982
|
+
sides: {
|
|
1983
|
+
type: string;
|
|
1984
|
+
};
|
|
1985
|
+
rotation: {
|
|
1986
|
+
type: string[];
|
|
1987
|
+
};
|
|
1988
|
+
fill: {
|
|
1989
|
+
type: string;
|
|
1990
|
+
};
|
|
1991
|
+
stroke: {
|
|
1992
|
+
type: string;
|
|
1993
|
+
};
|
|
1994
|
+
};
|
|
1995
|
+
additionalProperties: boolean;
|
|
1996
|
+
oneOf: ({
|
|
1997
|
+
properties: {
|
|
1998
|
+
kind: {
|
|
1999
|
+
enum: string[];
|
|
2000
|
+
};
|
|
2001
|
+
};
|
|
2002
|
+
required: string[];
|
|
2003
|
+
} | {
|
|
2004
|
+
properties: {
|
|
2005
|
+
kind: {
|
|
2006
|
+
enum: string[];
|
|
2007
|
+
};
|
|
2008
|
+
};
|
|
2009
|
+
required?: undefined;
|
|
2010
|
+
})[];
|
|
2011
|
+
};
|
|
2012
|
+
wBind: {
|
|
2013
|
+
type: string;
|
|
2014
|
+
minLength: number;
|
|
2015
|
+
pattern: string;
|
|
2016
|
+
description: string;
|
|
2017
|
+
};
|
|
2018
|
+
hBind: {
|
|
2019
|
+
type: string;
|
|
2020
|
+
minLength: number;
|
|
2021
|
+
pattern: string;
|
|
2022
|
+
description: string;
|
|
2023
|
+
};
|
|
2024
|
+
opacity: {
|
|
2025
|
+
type: string[];
|
|
2026
|
+
minLength: number;
|
|
2027
|
+
pattern: string;
|
|
2028
|
+
description: string;
|
|
2029
|
+
};
|
|
2030
|
+
renderOffsetX: {
|
|
2031
|
+
type: string[];
|
|
2032
|
+
minLength: number;
|
|
2033
|
+
pattern: string;
|
|
2034
|
+
description: string;
|
|
2035
|
+
};
|
|
2036
|
+
renderOffsetY: {
|
|
2037
|
+
type: string[];
|
|
2038
|
+
minLength: number;
|
|
2039
|
+
pattern: string;
|
|
2040
|
+
description: string;
|
|
2041
|
+
};
|
|
1715
2042
|
};
|
|
1716
2043
|
description?: undefined;
|
|
1717
2044
|
})[];
|
|
@@ -1759,6 +2086,11 @@ declare const diagramJsonSchema: {
|
|
|
1759
2086
|
type: string;
|
|
1760
2087
|
description: string;
|
|
1761
2088
|
};
|
|
2089
|
+
side: {
|
|
2090
|
+
type: string;
|
|
2091
|
+
enum: string[];
|
|
2092
|
+
description: string;
|
|
2093
|
+
};
|
|
1762
2094
|
labelOffsetX: {
|
|
1763
2095
|
type: string;
|
|
1764
2096
|
description: string;
|
|
@@ -1785,6 +2117,24 @@ declare const diagramJsonSchema: {
|
|
|
1785
2117
|
};
|
|
1786
2118
|
};
|
|
1787
2119
|
};
|
|
2120
|
+
widthBind: {
|
|
2121
|
+
type: string;
|
|
2122
|
+
minLength: number;
|
|
2123
|
+
pattern: string;
|
|
2124
|
+
description: string;
|
|
2125
|
+
};
|
|
2126
|
+
strokeBind: {
|
|
2127
|
+
type: string;
|
|
2128
|
+
minLength: number;
|
|
2129
|
+
pattern: string;
|
|
2130
|
+
description: string;
|
|
2131
|
+
};
|
|
2132
|
+
dashOffsetBind: {
|
|
2133
|
+
type: string;
|
|
2134
|
+
minLength: number;
|
|
2135
|
+
pattern: string;
|
|
2136
|
+
description: string;
|
|
2137
|
+
};
|
|
1788
2138
|
};
|
|
1789
2139
|
};
|
|
1790
2140
|
};
|
|
@@ -1985,6 +2335,597 @@ declare const diagramJsonSchema: {
|
|
|
1985
2335
|
};
|
|
1986
2336
|
};
|
|
1987
2337
|
};
|
|
2338
|
+
readouts: {
|
|
2339
|
+
type: string;
|
|
2340
|
+
description: string;
|
|
2341
|
+
items: {
|
|
2342
|
+
type: string;
|
|
2343
|
+
required: string[];
|
|
2344
|
+
additionalProperties: boolean;
|
|
2345
|
+
properties: {
|
|
2346
|
+
id: {
|
|
2347
|
+
type: string;
|
|
2348
|
+
minLength: number;
|
|
2349
|
+
};
|
|
2350
|
+
kind: {
|
|
2351
|
+
type: string;
|
|
2352
|
+
enum: string[];
|
|
2353
|
+
};
|
|
2354
|
+
additionsSource: {
|
|
2355
|
+
type: string;
|
|
2356
|
+
};
|
|
2357
|
+
bodySource: {
|
|
2358
|
+
type: string;
|
|
2359
|
+
};
|
|
2360
|
+
canvasH: {
|
|
2361
|
+
type: string;
|
|
2362
|
+
};
|
|
2363
|
+
canvasW: {
|
|
2364
|
+
type: string;
|
|
2365
|
+
};
|
|
2366
|
+
caption: {
|
|
2367
|
+
type: string;
|
|
2368
|
+
};
|
|
2369
|
+
cellGap: {
|
|
2370
|
+
type: string;
|
|
2371
|
+
};
|
|
2372
|
+
cellSize: {
|
|
2373
|
+
type: string;
|
|
2374
|
+
};
|
|
2375
|
+
charMs: {
|
|
2376
|
+
type: string;
|
|
2377
|
+
};
|
|
2378
|
+
color: {
|
|
2379
|
+
type: string;
|
|
2380
|
+
};
|
|
2381
|
+
colorA: {
|
|
2382
|
+
type: string;
|
|
2383
|
+
};
|
|
2384
|
+
colorAccent: {
|
|
2385
|
+
type: string;
|
|
2386
|
+
};
|
|
2387
|
+
colorActive: {
|
|
2388
|
+
type: string;
|
|
2389
|
+
};
|
|
2390
|
+
colorActual: {
|
|
2391
|
+
type: string;
|
|
2392
|
+
};
|
|
2393
|
+
colorAdd: {
|
|
2394
|
+
type: string;
|
|
2395
|
+
};
|
|
2396
|
+
colorApplied: {
|
|
2397
|
+
type: string;
|
|
2398
|
+
};
|
|
2399
|
+
colorB: {
|
|
2400
|
+
type: string;
|
|
2401
|
+
};
|
|
2402
|
+
colorBar: {
|
|
2403
|
+
type: string;
|
|
2404
|
+
};
|
|
2405
|
+
colorBottom: {
|
|
2406
|
+
type: string;
|
|
2407
|
+
};
|
|
2408
|
+
colorDel: {
|
|
2409
|
+
type: string;
|
|
2410
|
+
};
|
|
2411
|
+
colorDiscount: {
|
|
2412
|
+
type: string;
|
|
2413
|
+
};
|
|
2414
|
+
colorDown: {
|
|
2415
|
+
type: string;
|
|
2416
|
+
};
|
|
2417
|
+
colorFocus: {
|
|
2418
|
+
type: string;
|
|
2419
|
+
};
|
|
2420
|
+
colorMap: {
|
|
2421
|
+
type: string;
|
|
2422
|
+
minItems: number;
|
|
2423
|
+
items: {
|
|
2424
|
+
type: string;
|
|
2425
|
+
required: string[];
|
|
2426
|
+
additionalProperties: boolean;
|
|
2427
|
+
properties: {
|
|
2428
|
+
status: {
|
|
2429
|
+
type: string;
|
|
2430
|
+
};
|
|
2431
|
+
color: {
|
|
2432
|
+
type: string;
|
|
2433
|
+
};
|
|
2434
|
+
};
|
|
2435
|
+
};
|
|
2436
|
+
};
|
|
2437
|
+
colorNeg: {
|
|
2438
|
+
type: string;
|
|
2439
|
+
};
|
|
2440
|
+
colorNew: {
|
|
2441
|
+
type: string;
|
|
2442
|
+
};
|
|
2443
|
+
colorOld: {
|
|
2444
|
+
type: string;
|
|
2445
|
+
};
|
|
2446
|
+
colorOther: {
|
|
2447
|
+
type: string;
|
|
2448
|
+
};
|
|
2449
|
+
colorPending: {
|
|
2450
|
+
type: string;
|
|
2451
|
+
};
|
|
2452
|
+
colorPlay: {
|
|
2453
|
+
type: string;
|
|
2454
|
+
};
|
|
2455
|
+
colorPos: {
|
|
2456
|
+
type: string;
|
|
2457
|
+
};
|
|
2458
|
+
colorRead: {
|
|
2459
|
+
type: string;
|
|
2460
|
+
};
|
|
2461
|
+
colorSelf: {
|
|
2462
|
+
type: string;
|
|
2463
|
+
};
|
|
2464
|
+
colorSource: {
|
|
2465
|
+
type: string;
|
|
2466
|
+
};
|
|
2467
|
+
colorStrong: {
|
|
2468
|
+
type: string;
|
|
2469
|
+
};
|
|
2470
|
+
colorTop: {
|
|
2471
|
+
type: string;
|
|
2472
|
+
};
|
|
2473
|
+
colorTotal: {
|
|
2474
|
+
type: string;
|
|
2475
|
+
};
|
|
2476
|
+
colorUnread: {
|
|
2477
|
+
type: string;
|
|
2478
|
+
};
|
|
2479
|
+
colorUp: {
|
|
2480
|
+
type: string;
|
|
2481
|
+
};
|
|
2482
|
+
colorWeak: {
|
|
2483
|
+
type: string;
|
|
2484
|
+
};
|
|
2485
|
+
colorWinner: {
|
|
2486
|
+
type: string;
|
|
2487
|
+
};
|
|
2488
|
+
colors: {
|
|
2489
|
+
type: string;
|
|
2490
|
+
items: {
|
|
2491
|
+
type: string;
|
|
2492
|
+
};
|
|
2493
|
+
};
|
|
2494
|
+
columnWidth: {
|
|
2495
|
+
type: string;
|
|
2496
|
+
};
|
|
2497
|
+
comparisonSource: {
|
|
2498
|
+
type: string;
|
|
2499
|
+
};
|
|
2500
|
+
count: {
|
|
2501
|
+
type: string;
|
|
2502
|
+
};
|
|
2503
|
+
currency: {
|
|
2504
|
+
type: string;
|
|
2505
|
+
};
|
|
2506
|
+
currentSource: {
|
|
2507
|
+
type: string;
|
|
2508
|
+
};
|
|
2509
|
+
decimals: {
|
|
2510
|
+
type: string;
|
|
2511
|
+
};
|
|
2512
|
+
deletionsSource: {
|
|
2513
|
+
type: string;
|
|
2514
|
+
};
|
|
2515
|
+
duration: {
|
|
2516
|
+
type: string;
|
|
2517
|
+
};
|
|
2518
|
+
durationMs: {
|
|
2519
|
+
type: string;
|
|
2520
|
+
};
|
|
2521
|
+
durationSource: {
|
|
2522
|
+
type: string;
|
|
2523
|
+
};
|
|
2524
|
+
fill: {
|
|
2525
|
+
type: string;
|
|
2526
|
+
};
|
|
2527
|
+
highThreshold: {
|
|
2528
|
+
type: string;
|
|
2529
|
+
};
|
|
2530
|
+
history: {
|
|
2531
|
+
type: string;
|
|
2532
|
+
};
|
|
2533
|
+
historySource: {
|
|
2534
|
+
type: string;
|
|
2535
|
+
};
|
|
2536
|
+
innerRatio: {
|
|
2537
|
+
type: string;
|
|
2538
|
+
};
|
|
2539
|
+
itemTemplate: {
|
|
2540
|
+
type: string;
|
|
2541
|
+
};
|
|
2542
|
+
kindSource: {
|
|
2543
|
+
type: string;
|
|
2544
|
+
};
|
|
2545
|
+
label: {
|
|
2546
|
+
type: string;
|
|
2547
|
+
};
|
|
2548
|
+
labelA: {
|
|
2549
|
+
type: string;
|
|
2550
|
+
};
|
|
2551
|
+
labelB: {
|
|
2552
|
+
type: string;
|
|
2553
|
+
};
|
|
2554
|
+
labelSource: {
|
|
2555
|
+
type: string;
|
|
2556
|
+
};
|
|
2557
|
+
lowThreshold: {
|
|
2558
|
+
type: string;
|
|
2559
|
+
};
|
|
2560
|
+
map: {
|
|
2561
|
+
type: string;
|
|
2562
|
+
minItems: number;
|
|
2563
|
+
items: {
|
|
2564
|
+
type: string;
|
|
2565
|
+
required: string[];
|
|
2566
|
+
additionalProperties: boolean;
|
|
2567
|
+
properties: {
|
|
2568
|
+
value: {
|
|
2569
|
+
type: string;
|
|
2570
|
+
};
|
|
2571
|
+
color: {
|
|
2572
|
+
type: string;
|
|
2573
|
+
};
|
|
2574
|
+
label: {
|
|
2575
|
+
type: string;
|
|
2576
|
+
};
|
|
2577
|
+
};
|
|
2578
|
+
};
|
|
2579
|
+
};
|
|
2580
|
+
max: {
|
|
2581
|
+
type: string;
|
|
2582
|
+
};
|
|
2583
|
+
maxSize: {
|
|
2584
|
+
type: string;
|
|
2585
|
+
};
|
|
2586
|
+
membersSource: {
|
|
2587
|
+
type: string;
|
|
2588
|
+
};
|
|
2589
|
+
min: {
|
|
2590
|
+
type: string;
|
|
2591
|
+
};
|
|
2592
|
+
minSize: {
|
|
2593
|
+
type: string;
|
|
2594
|
+
};
|
|
2595
|
+
monthName: {
|
|
2596
|
+
type: string;
|
|
2597
|
+
};
|
|
2598
|
+
newSource: {
|
|
2599
|
+
type: string;
|
|
2600
|
+
};
|
|
2601
|
+
oldSource: {
|
|
2602
|
+
type: string;
|
|
2603
|
+
};
|
|
2604
|
+
pathD: {
|
|
2605
|
+
type: string;
|
|
2606
|
+
};
|
|
2607
|
+
playingSource: {
|
|
2608
|
+
type: string;
|
|
2609
|
+
};
|
|
2610
|
+
prefix: {
|
|
2611
|
+
type: string;
|
|
2612
|
+
};
|
|
2613
|
+
prevSource: {
|
|
2614
|
+
type: string;
|
|
2615
|
+
};
|
|
2616
|
+
progressSource: {
|
|
2617
|
+
type: string;
|
|
2618
|
+
};
|
|
2619
|
+
rMax: {
|
|
2620
|
+
type: string;
|
|
2621
|
+
};
|
|
2622
|
+
rMin: {
|
|
2623
|
+
type: string;
|
|
2624
|
+
};
|
|
2625
|
+
rangeAvg: {
|
|
2626
|
+
type: string;
|
|
2627
|
+
};
|
|
2628
|
+
rangeBad: {
|
|
2629
|
+
type: string;
|
|
2630
|
+
};
|
|
2631
|
+
runningSource: {
|
|
2632
|
+
type: string;
|
|
2633
|
+
};
|
|
2634
|
+
segments: {
|
|
2635
|
+
type: string;
|
|
2636
|
+
};
|
|
2637
|
+
showValue: {
|
|
2638
|
+
type: string;
|
|
2639
|
+
};
|
|
2640
|
+
size: {
|
|
2641
|
+
type: string;
|
|
2642
|
+
};
|
|
2643
|
+
source: {
|
|
2644
|
+
type: string;
|
|
2645
|
+
};
|
|
2646
|
+
sourceA: {
|
|
2647
|
+
type: string;
|
|
2648
|
+
};
|
|
2649
|
+
sourceB: {
|
|
2650
|
+
type: string;
|
|
2651
|
+
};
|
|
2652
|
+
stepsSource: {
|
|
2653
|
+
type: string;
|
|
2654
|
+
};
|
|
2655
|
+
strokeWidth: {
|
|
2656
|
+
type: string;
|
|
2657
|
+
};
|
|
2658
|
+
suffix: {
|
|
2659
|
+
type: string;
|
|
2660
|
+
};
|
|
2661
|
+
targetSource: {
|
|
2662
|
+
type: string;
|
|
2663
|
+
};
|
|
2664
|
+
textSource: {
|
|
2665
|
+
type: string;
|
|
2666
|
+
};
|
|
2667
|
+
titleSource: {
|
|
2668
|
+
type: string;
|
|
2669
|
+
};
|
|
2670
|
+
unit: {
|
|
2671
|
+
type: string;
|
|
2672
|
+
};
|
|
2673
|
+
viewH: {
|
|
2674
|
+
type: string;
|
|
2675
|
+
};
|
|
2676
|
+
viewW: {
|
|
2677
|
+
type: string;
|
|
2678
|
+
};
|
|
2679
|
+
xMax: {
|
|
2680
|
+
type: string;
|
|
2681
|
+
};
|
|
2682
|
+
xMin: {
|
|
2683
|
+
type: string;
|
|
2684
|
+
};
|
|
2685
|
+
yMax: {
|
|
2686
|
+
type: string;
|
|
2687
|
+
};
|
|
2688
|
+
yMin: {
|
|
2689
|
+
type: string;
|
|
2690
|
+
};
|
|
2691
|
+
};
|
|
2692
|
+
oneOf: ({
|
|
2693
|
+
properties: {
|
|
2694
|
+
kind: {
|
|
2695
|
+
enum: string[];
|
|
2696
|
+
};
|
|
2697
|
+
map?: undefined;
|
|
2698
|
+
};
|
|
2699
|
+
required: string[];
|
|
2700
|
+
} | {
|
|
2701
|
+
properties: {
|
|
2702
|
+
kind: {
|
|
2703
|
+
enum: string[];
|
|
2704
|
+
};
|
|
2705
|
+
map: {
|
|
2706
|
+
type: string;
|
|
2707
|
+
minItems: number;
|
|
2708
|
+
items: {
|
|
2709
|
+
type: string;
|
|
2710
|
+
required: string[];
|
|
2711
|
+
additionalProperties: boolean;
|
|
2712
|
+
properties: {
|
|
2713
|
+
value: {
|
|
2714
|
+
type: string;
|
|
2715
|
+
};
|
|
2716
|
+
color: {
|
|
2717
|
+
type: string;
|
|
2718
|
+
};
|
|
2719
|
+
};
|
|
2720
|
+
};
|
|
2721
|
+
};
|
|
2722
|
+
};
|
|
2723
|
+
required: string[];
|
|
2724
|
+
})[];
|
|
2725
|
+
};
|
|
2726
|
+
};
|
|
2727
|
+
inputs: {
|
|
2728
|
+
type: string;
|
|
2729
|
+
description: string;
|
|
2730
|
+
items: {
|
|
2731
|
+
type: string;
|
|
2732
|
+
required: string[];
|
|
2733
|
+
additionalProperties: boolean;
|
|
2734
|
+
properties: {
|
|
2735
|
+
id: {
|
|
2736
|
+
type: string;
|
|
2737
|
+
minLength: number;
|
|
2738
|
+
};
|
|
2739
|
+
kind: {
|
|
2740
|
+
type: string;
|
|
2741
|
+
enum: string[];
|
|
2742
|
+
};
|
|
2743
|
+
autoplay: {
|
|
2744
|
+
type: string;
|
|
2745
|
+
};
|
|
2746
|
+
defaultHi: {
|
|
2747
|
+
type: string;
|
|
2748
|
+
};
|
|
2749
|
+
defaultLo: {
|
|
2750
|
+
type: string;
|
|
2751
|
+
};
|
|
2752
|
+
defaultSpeedIdx: {
|
|
2753
|
+
type: string;
|
|
2754
|
+
};
|
|
2755
|
+
defaultValue: {
|
|
2756
|
+
type: string[];
|
|
2757
|
+
};
|
|
2758
|
+
defaultValues: {
|
|
2759
|
+
type: string;
|
|
2760
|
+
items: {
|
|
2761
|
+
type: string;
|
|
2762
|
+
};
|
|
2763
|
+
};
|
|
2764
|
+
defaultX: {
|
|
2765
|
+
type: string;
|
|
2766
|
+
};
|
|
2767
|
+
defaultY: {
|
|
2768
|
+
type: string;
|
|
2769
|
+
};
|
|
2770
|
+
duration: {
|
|
2771
|
+
type: string;
|
|
2772
|
+
};
|
|
2773
|
+
label: {
|
|
2774
|
+
type: string;
|
|
2775
|
+
};
|
|
2776
|
+
loop: {
|
|
2777
|
+
type: string;
|
|
2778
|
+
};
|
|
2779
|
+
max: {
|
|
2780
|
+
type: string;
|
|
2781
|
+
};
|
|
2782
|
+
maxLength: {
|
|
2783
|
+
type: string;
|
|
2784
|
+
};
|
|
2785
|
+
min: {
|
|
2786
|
+
type: string;
|
|
2787
|
+
};
|
|
2788
|
+
options: {
|
|
2789
|
+
type: string;
|
|
2790
|
+
items: {
|
|
2791
|
+
type: string;
|
|
2792
|
+
};
|
|
2793
|
+
};
|
|
2794
|
+
placeholder: {
|
|
2795
|
+
type: string;
|
|
2796
|
+
};
|
|
2797
|
+
speeds: {
|
|
2798
|
+
type: string;
|
|
2799
|
+
items: {
|
|
2800
|
+
type: string;
|
|
2801
|
+
};
|
|
2802
|
+
};
|
|
2803
|
+
step: {
|
|
2804
|
+
type: string;
|
|
2805
|
+
};
|
|
2806
|
+
xMax: {
|
|
2807
|
+
type: string;
|
|
2808
|
+
};
|
|
2809
|
+
xMin: {
|
|
2810
|
+
type: string;
|
|
2811
|
+
};
|
|
2812
|
+
yMax: {
|
|
2813
|
+
type: string;
|
|
2814
|
+
};
|
|
2815
|
+
yMin: {
|
|
2816
|
+
type: string;
|
|
2817
|
+
};
|
|
2818
|
+
};
|
|
2819
|
+
oneOf: ({
|
|
2820
|
+
properties: {
|
|
2821
|
+
kind: {
|
|
2822
|
+
enum: string[];
|
|
2823
|
+
};
|
|
2824
|
+
defaultValue: {
|
|
2825
|
+
type: string;
|
|
2826
|
+
};
|
|
2827
|
+
};
|
|
2828
|
+
required: string[];
|
|
2829
|
+
} | {
|
|
2830
|
+
properties: {
|
|
2831
|
+
kind: {
|
|
2832
|
+
enum: string[];
|
|
2833
|
+
};
|
|
2834
|
+
defaultValue?: undefined;
|
|
2835
|
+
};
|
|
2836
|
+
required: string[];
|
|
2837
|
+
})[];
|
|
2838
|
+
};
|
|
2839
|
+
};
|
|
2840
|
+
formulas: {
|
|
2841
|
+
type: string;
|
|
2842
|
+
description: string;
|
|
2843
|
+
additionalProperties: {
|
|
2844
|
+
type: string;
|
|
2845
|
+
minLength: number;
|
|
2846
|
+
pattern: string;
|
|
2847
|
+
};
|
|
2848
|
+
propertyNames: {
|
|
2849
|
+
pattern: string;
|
|
2850
|
+
};
|
|
2851
|
+
};
|
|
2852
|
+
events: {
|
|
2853
|
+
type: string;
|
|
2854
|
+
description: string;
|
|
2855
|
+
items: {
|
|
2856
|
+
type: string;
|
|
2857
|
+
required: string[];
|
|
2858
|
+
additionalProperties: boolean;
|
|
2859
|
+
properties: {
|
|
2860
|
+
on: {
|
|
2861
|
+
type: string;
|
|
2862
|
+
enum: string[];
|
|
2863
|
+
};
|
|
2864
|
+
handler: {
|
|
2865
|
+
type: string;
|
|
2866
|
+
minLength: number;
|
|
2867
|
+
pattern: string;
|
|
2868
|
+
};
|
|
2869
|
+
box: {
|
|
2870
|
+
type: string;
|
|
2871
|
+
minLength: number;
|
|
2872
|
+
description: string;
|
|
2873
|
+
};
|
|
2874
|
+
lane: {
|
|
2875
|
+
type: string;
|
|
2876
|
+
minLength: number;
|
|
2877
|
+
description: string;
|
|
2878
|
+
};
|
|
2879
|
+
arrow: {
|
|
2880
|
+
type: string;
|
|
2881
|
+
minLength: number;
|
|
2882
|
+
pattern: string;
|
|
2883
|
+
description: string;
|
|
2884
|
+
};
|
|
2885
|
+
diagram: {
|
|
2886
|
+
const: boolean;
|
|
2887
|
+
description: string;
|
|
2888
|
+
};
|
|
2889
|
+
};
|
|
2890
|
+
oneOf: {
|
|
2891
|
+
required: string[];
|
|
2892
|
+
}[];
|
|
2893
|
+
};
|
|
2894
|
+
};
|
|
2895
|
+
scrolls: {
|
|
2896
|
+
type: string;
|
|
2897
|
+
description: string;
|
|
2898
|
+
propertyNames: {
|
|
2899
|
+
pattern: string;
|
|
2900
|
+
};
|
|
2901
|
+
additionalProperties: {
|
|
2902
|
+
type: string;
|
|
2903
|
+
additionalProperties: boolean;
|
|
2904
|
+
properties: {
|
|
2905
|
+
start: {
|
|
2906
|
+
type: string;
|
|
2907
|
+
minimum: number;
|
|
2908
|
+
maximum: number;
|
|
2909
|
+
description: string;
|
|
2910
|
+
};
|
|
2911
|
+
end: {
|
|
2912
|
+
type: string;
|
|
2913
|
+
minimum: number;
|
|
2914
|
+
maximum: number;
|
|
2915
|
+
description: string;
|
|
2916
|
+
};
|
|
2917
|
+
scrub: {
|
|
2918
|
+
type: string;
|
|
2919
|
+
minimum: number;
|
|
2920
|
+
maximum: number;
|
|
2921
|
+
description: string;
|
|
2922
|
+
};
|
|
2923
|
+
label: {
|
|
2924
|
+
type: string;
|
|
2925
|
+
};
|
|
2926
|
+
};
|
|
2927
|
+
};
|
|
2928
|
+
};
|
|
1988
2929
|
};
|
|
1989
2930
|
};
|
|
1990
2931
|
|