modscape 1.1.8 → 1.2.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.ja.md +8 -2
- package/README.md +5 -2
- package/package.json +4 -4
- package/src/templates/default-model.yaml +1 -1
- package/visualizer/package.json +1 -1
- package/visualizer-dist/assets/index-CTX8C1g5.js +63 -0
- package/visualizer-dist/assets/index-O8OLF7Nv.css +1 -0
- package/visualizer-dist/index.html +2 -2
- package/visualizer-dist/assets/index-BRGvsqv2.css +0 -1
- package/visualizer-dist/assets/index-D8jperx8.js +0 -63
package/README.ja.md
CHANGED
|
@@ -8,7 +8,13 @@
|
|
|
8
8
|
|
|
9
9
|
**Modscape** は、モダンなデータ基盤(Modern Data Stack)に特化した、YAML駆動のデータモデリング・ビジュアライザーです。物理的なスキーマとビジネスロジックのギャップを埋め、データチームがデータを通じた「ストーリー」を設計、文書化、共有することを可能にします。
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
|
|
12
|
+
🌐 **Live Demo:**
|
|
13
|
+
https://yujikawa.github.io/modscape/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+

|
|
17
|
+
|
|
12
18
|
|
|
13
19
|
## なぜ Modscape なのか?
|
|
14
20
|
|
|
@@ -26,7 +32,7 @@
|
|
|
26
32
|
- **刷新されたモデリング・ノード**: 左上に突き出した「インデックス・タブ」で種類(FACT, DIM, HUB等)を明示。長い物理名は自動省略され、プロフェッショナルな外観を維持。
|
|
27
33
|
- **インタラクティブなビジュアルキャンバス**:
|
|
28
34
|
- **ドラッグで接続**: カラム間のリレーションを直感的に作成。吸着機能で快適な操作感。
|
|
29
|
-
- **意味的なエッジバッジ**: 接続点に `( 1 )` や `[
|
|
35
|
+
- **意味的なエッジバッジ**: 接続点に `( 1 )` や `[ N ]` バッジを表示し、カーディナリティ(多重度)を視覚化。
|
|
30
36
|
- **データリネージ・モード**: データの流れをアニメーション付きの点線矢印で可視化。
|
|
31
37
|
- **ドメイン階層ナビゲーション**: テーブルをビジネスドメインごとに整理し、構造化されたサイドバーから素早くアクセス。
|
|
32
38
|
- **統合 Undo/Redo & オートセーブ**:
|
package/README.md
CHANGED
|
@@ -8,7 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
**Modscape** is a YAML-driven data modeling visualizer specialized for **Modern Data Stack** architectures. It bridges the gap between raw physical schemas and high-level business logic, empowering data teams to design, document, and share their data stories.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
🌐 **Live Demo:**
|
|
12
|
+
https://yujikawa.github.io/modscape/
|
|
13
|
+
|
|
14
|
+

|
|
12
15
|
|
|
13
16
|
## Why Modscape?
|
|
14
17
|
|
|
@@ -26,7 +29,7 @@ In modern data analysis platforms, data modeling is no longer just about drawing
|
|
|
26
29
|
- **Redesigned Modeling Nodes**: Protruding "Index Tabs" for entity types (FACT, DIM, HUB, LINK, etc.) and auto-truncating physical names for a professional look.
|
|
27
30
|
- **Interactive Visual Canvas**:
|
|
28
31
|
- **Drag-to-Connect**: Create relationships between columns intuitively with "Magnetic Snapping".
|
|
29
|
-
- **Semantic Edge Badges**: Visually identify cardinality with `( 1 )` and `[
|
|
32
|
+
- **Semantic Edge Badges**: Visually identify cardinality with `( 1 )` and `[ N ]` badges at the connection points.
|
|
30
33
|
- **Data Lineage Mode**: Visualize data flow with animated dashed arrows.
|
|
31
34
|
- **Domain-Grouped Navigation**: Organize tables into visual business domains and navigate them via a structured sidebar.
|
|
32
35
|
- **Unified Undo/Redo & Auto-save**:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "modscape",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Modscape: A YAML-driven data modeling visualizer CLI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build-ui": "cd visualizer && npm run build && rm -rf ../visualizer-dist && mv dist ../visualizer-dist",
|
|
22
22
|
"dev": "node src/index.js dev",
|
|
23
|
-
"test:e2e": "playwright test",
|
|
24
|
-
"test:all": "npm run build-ui && npm run test:e2e",
|
|
25
|
-
"test:update": "npm run build-ui && npm run test:e2e -- --update-snapshots"
|
|
23
|
+
"test:e2e": "cp tests/fixtures/test-model.yaml tests/fixtures/test-model-runtime.yaml && playwright test",
|
|
24
|
+
"test:all": "npm run build-ui && sleep 1 && npm run test:e2e",
|
|
25
|
+
"test:update": "npm run build-ui && sleep 1 && npm run test:e2e -- --update-snapshots"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@inquirer/prompts": "^8.3.0",
|
|
@@ -53,7 +53,7 @@ tables:
|
|
|
53
53
|
- [102, 2, 300.75]
|
|
54
54
|
|
|
55
55
|
relationships:
|
|
56
|
-
# Relationships: Defines Entity-Relationship connections (solid lines with 1:
|
|
56
|
+
# Relationships: Defines Entity-Relationship connections (solid lines with 1:N badges)
|
|
57
57
|
- from: { table: source_table, column: id }
|
|
58
58
|
to: { table: derived_table, column: source_id }
|
|
59
59
|
type: one-to-many
|