@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/react.js CHANGED
@@ -1962,35 +1962,35 @@ var TOKENS = {
1962
1962
  contain_pad: 28,
1963
1963
  // node sizes (kind ごと、 unified row h は engine が max() で算出)
1964
1964
  node: {
1965
- actor: { w: 340, h: 200 },
1966
- function: { w: 380, h: 170 },
1965
+ actor: { w: 340, h: 165 },
1966
+ function: { w: 380, h: 151 },
1967
1967
  storage: { w: 400, h: 240 },
1968
- event: { w: 360, h: 200 },
1968
+ event: { w: 360, h: 156 },
1969
1969
  card: { w: 320, h: 150 },
1970
1970
  // 人系
1971
- person: { w: 280, h: 180 },
1972
- "user-group": { w: 320, h: 180 },
1973
- admin: { w: 280, h: 180 },
1974
- developer: { w: 280, h: 180 },
1975
- "external-user": { w: 300, h: 180 },
1971
+ person: { w: 280, h: 116 },
1972
+ "user-group": { w: 320, h: 116 },
1973
+ admin: { w: 280, h: 116 },
1974
+ developer: { w: 280, h: 116 },
1975
+ "external-user": { w: 300, h: 116 },
1976
1976
  // インフラ
1977
- database: { w: 320, h: 200 },
1978
- cache: { w: 280, h: 160 },
1979
- queue: { w: 340, h: 140 },
1980
- "message-bus": { w: 380, h: 140 },
1977
+ database: { w: 320, h: 172 },
1978
+ cache: { w: 280, h: 116 },
1979
+ queue: { w: 340, h: 116 },
1980
+ "message-bus": { w: 380, h: 116 },
1981
1981
  cloud: { w: 320, h: 180 },
1982
- cdn: { w: 320, h: 160 },
1982
+ cdn: { w: 320, h: 116 },
1983
1983
  // アプリ系
1984
- service: { w: 320, h: 180 },
1985
- api: { w: 320, h: 160 },
1986
- frontend: { w: 320, h: 180 },
1987
- backend: { w: 320, h: 180 },
1988
- webhook: { w: 320, h: 160 },
1989
- microservice: { w: 320, h: 180 },
1984
+ service: { w: 320, h: 116 },
1985
+ api: { w: 320, h: 116 },
1986
+ frontend: { w: 320, h: 116 },
1987
+ backend: { w: 320, h: 116 },
1988
+ webhook: { w: 320, h: 116 },
1989
+ microservice: { w: 320, h: 116 },
1990
1990
  // データ / 判定
1991
- signer: { w: 300, h: 180 },
1992
- oracle: { w: 320, h: 180 },
1993
- "merkle-tree": { w: 340, h: 220 },
1991
+ signer: { w: 300, h: 116 },
1992
+ oracle: { w: 320, h: 116 },
1993
+ "merkle-tree": { w: 340, h: 116 },
1994
1994
  decision: { w: 300, h: 180 },
1995
1995
  // Chart 系 (CAR-994 Phase A) ... 1 node に datum 配列を持ち、 kind 内で SVG geometry 描画。
1996
1996
  // 実際の w/h は preset chart() が w/h override で指定 (default fallback は preset 未指定時のみ)。
@@ -3750,7 +3750,7 @@ function autoStorageHeight(n, defaultH) {
3750
3750
  if (n.h != null) return n.h;
3751
3751
  const \u5370\u3042\u308A = n.rowMarks !== void 0;
3752
3752
  const \u547C\u3073\u540D\u306E\u5206 = \u5370\u3042\u308A && n.subtitle ? SUBTITLE_ROW_SHIFT : 0;
3753
- if (!n.rows || n.rows.length === 0) return 150 + \u547C\u3073\u540D\u306E\u5206;
3753
+ if (!n.rows || n.rows.length === 0) return 115 + \u547C\u3073\u540D\u306E\u5206;
3754
3754
  const \u5FC5\u8981 = requiredRowsHeight("storage", n.rows.length) ?? defaultH;
3755
3755
  if (\u5370\u3042\u308A) return \u5FC5\u8981 + \u547C\u3073\u540D\u306E\u5206;
3756
3756
  return Math.max(defaultH, \u5FC5\u8981);