@tailor-platform/sdk 1.56.1 → 1.57.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.
@@ -0,0 +1,73 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>TailorDB ERD</title>
7
+ <link rel="stylesheet" href="./styles.css" />
8
+ </head>
9
+ <body>
10
+ <div id="app" class="app">
11
+ <header class="toolbar">
12
+ <div class="brand">
13
+ <span class="brand-mark">T</span>
14
+ <div>
15
+ <h1 id="namespace">TailorDB ERD</h1>
16
+ <p id="revision">Loading schema</p>
17
+ </div>
18
+ </div>
19
+ <div class="toolbar-search">
20
+ <input id="search" type="search" autocomplete="off" placeholder="Search" />
21
+ </div>
22
+ <div class="toolbar-actions">
23
+ <button id="copy-link" class="primary-action" type="button">Copy Link</button>
24
+ </div>
25
+ </header>
26
+ <main class="main">
27
+ <aside class="table-nav">
28
+ <div class="nav-head">
29
+ <div class="nav-title">
30
+ <h2>Tables</h2>
31
+ <span id="table-count-summary"></span>
32
+ </div>
33
+ <button
34
+ id="toggle-all-tables"
35
+ class="table-visibility-toggle"
36
+ type="button"
37
+ aria-label="Hide all tables"
38
+ title="Hide all tables"
39
+ ></button>
40
+ </div>
41
+ <div id="table-list" class="table-list"></div>
42
+ </aside>
43
+ <section id="canvas" class="canvas" aria-label="ERD canvas">
44
+ <div id="world" class="world">
45
+ <svg id="edges" class="edges" aria-hidden="true"></svg>
46
+ <div id="nodes" class="nodes"></div>
47
+ </div>
48
+ <div id="empty-state" class="empty-state" hidden>No TailorDB types found.</div>
49
+ <div id="status" class="status" hidden></div>
50
+ <div class="canvas-toolbar" aria-label="Canvas controls">
51
+ <button id="zoom-out" type="button" title="Zoom out">-</button>
52
+ <span id="zoom-label">100%</span>
53
+ <button id="zoom-in" type="button" title="Zoom in">+</button>
54
+ <span class="toolbar-divider"></span>
55
+ <button id="fit-view" type="button">Fit</button>
56
+ <div class="show-mode-control">
57
+ <button
58
+ id="show-mode"
59
+ class="show-mode-button"
60
+ type="button"
61
+ aria-haspopup="menu"
62
+ aria-expanded="false"
63
+ ></button>
64
+ <div id="show-mode-menu" class="show-mode-menu" role="menu" hidden></div>
65
+ </div>
66
+ </div>
67
+ </section>
68
+ <aside id="details" class="details"></aside>
69
+ </main>
70
+ </div>
71
+ <script src="./app.js" type="module"></script>
72
+ </body>
73
+ </html>
@@ -0,0 +1,13 @@
1
+ {
2
+ "headers": [
3
+ {
4
+ "source": "**/*.@(html|json)",
5
+ "headers": [
6
+ {
7
+ "key": "Cache-Control",
8
+ "value": "no-cache"
9
+ }
10
+ ]
11
+ }
12
+ ]
13
+ }