@cardenelabs/cdl 0.18.1 → 0.19.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/dist/index.js CHANGED
@@ -13298,35 +13298,35 @@ var TOKENS = {
13298
13298
  contain_pad: 28,
13299
13299
  // node sizes (kind ごと、 unified row h は engine が max() で算出)
13300
13300
  node: {
13301
- actor: { w: 340, h: 200 },
13302
- function: { w: 380, h: 170 },
13301
+ actor: { w: 340, h: 165 },
13302
+ function: { w: 380, h: 151 },
13303
13303
  storage: { w: 400, h: 240 },
13304
- event: { w: 360, h: 200 },
13304
+ event: { w: 360, h: 156 },
13305
13305
  card: { w: 320, h: 150 },
13306
13306
  // 人系
13307
- person: { w: 280, h: 180 },
13308
- "user-group": { w: 320, h: 180 },
13309
- admin: { w: 280, h: 180 },
13310
- developer: { w: 280, h: 180 },
13311
- "external-user": { w: 300, h: 180 },
13307
+ person: { w: 280, h: 116 },
13308
+ "user-group": { w: 320, h: 116 },
13309
+ admin: { w: 280, h: 116 },
13310
+ developer: { w: 280, h: 116 },
13311
+ "external-user": { w: 300, h: 116 },
13312
13312
  // インフラ
13313
- database: { w: 320, h: 200 },
13314
- cache: { w: 280, h: 160 },
13315
- queue: { w: 340, h: 140 },
13316
- "message-bus": { w: 380, h: 140 },
13313
+ database: { w: 320, h: 172 },
13314
+ cache: { w: 280, h: 116 },
13315
+ queue: { w: 340, h: 116 },
13316
+ "message-bus": { w: 380, h: 116 },
13317
13317
  cloud: { w: 320, h: 180 },
13318
- cdn: { w: 320, h: 160 },
13318
+ cdn: { w: 320, h: 116 },
13319
13319
  // アプリ系
13320
- service: { w: 320, h: 180 },
13321
- api: { w: 320, h: 160 },
13322
- frontend: { w: 320, h: 180 },
13323
- backend: { w: 320, h: 180 },
13324
- webhook: { w: 320, h: 160 },
13325
- microservice: { w: 320, h: 180 },
13320
+ service: { w: 320, h: 116 },
13321
+ api: { w: 320, h: 116 },
13322
+ frontend: { w: 320, h: 116 },
13323
+ backend: { w: 320, h: 116 },
13324
+ webhook: { w: 320, h: 116 },
13325
+ microservice: { w: 320, h: 116 },
13326
13326
  // データ / 判定
13327
- signer: { w: 300, h: 180 },
13328
- oracle: { w: 320, h: 180 },
13329
- "merkle-tree": { w: 340, h: 220 },
13327
+ signer: { w: 300, h: 116 },
13328
+ oracle: { w: 320, h: 116 },
13329
+ "merkle-tree": { w: 340, h: 116 },
13330
13330
  decision: { w: 300, h: 180 },
13331
13331
  // Chart 系 (CAR-994 Phase A) ... 1 node に datum 配列を持ち、 kind 内で SVG geometry 描画。
13332
13332
  // 実際の w/h は preset chart() が w/h override で指定 (default fallback は preset 未指定時のみ)。
@@ -15086,7 +15086,7 @@ function autoStorageHeight(n, defaultH) {
15086
15086
  if (n.h != null) return n.h;
15087
15087
  const \u5370\u3042\u308A = n.rowMarks !== void 0;
15088
15088
  const \u547C\u3073\u540D\u306E\u5206 = \u5370\u3042\u308A && n.subtitle ? SUBTITLE_ROW_SHIFT : 0;
15089
- if (!n.rows || n.rows.length === 0) return 150 + \u547C\u3073\u540D\u306E\u5206;
15089
+ if (!n.rows || n.rows.length === 0) return 115 + \u547C\u3073\u540D\u306E\u5206;
15090
15090
  const \u5FC5\u8981 = requiredRowsHeight("storage", n.rows.length) ?? defaultH;
15091
15091
  if (\u5370\u3042\u308A) return \u5FC5\u8981 + \u547C\u3073\u540D\u306E\u5206;
15092
15092
  return Math.max(defaultH, \u5FC5\u8981);