@synthigy/tooling 0.1.1 → 0.1.6

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 CHANGED
@@ -17,8 +17,8 @@ irm https://raw.githubusercontent.com/synthigy/tooling/main/install.ps1 | iex
17
17
  **Web components**, straight from a CDN:
18
18
 
19
19
  ```html
20
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@synthigy/tooling@0.1.1/dist/tooling.css">
21
- <script src="https://cdn.jsdelivr.net/npm/@synthigy/tooling@0.1.1/dist/modeling.js"></script>
20
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@synthigy/tooling@0.1.6/dist/tooling.css">
21
+ <script src="https://cdn.jsdelivr.net/npm/@synthigy/tooling@0.1.6/dist/tooling.js"></script>
22
22
 
23
23
  <synthigy-data-modeling endpoint="https://api.example.com" open></synthigy-data-modeling>
24
24
  ```
@@ -31,7 +31,7 @@ npm install @synthigy/tooling
31
31
 
32
32
  ## What's here
33
33
 
34
- - `dist/modeling.js` registers `<synthigy-data-modeling>`, `<synthigy-data-console>`
34
+ - `dist/tooling.js` registers `<synthigy-data-modeling>`, `<synthigy-data-console>`
35
35
  and `<synthigy-log-cockpit>`.
36
36
  - `dist/tooling.css` is optional — the Inter font the components style
37
37
  themselves with. Every color token carries a fallback, so the elements
@@ -42,14 +42,14 @@ npm install @synthigy/tooling
42
42
  ## Web components
43
43
 
44
44
  ```html
45
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@synthigy/tooling@0.1.1/dist/tooling.css">
46
- <script src="https://cdn.jsdelivr.net/npm/@synthigy/tooling@0.1.1/dist/modeling.js"></script>
45
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@synthigy/tooling@0.1.6/dist/tooling.css">
46
+ <script src="https://cdn.jsdelivr.net/npm/@synthigy/tooling@0.1.6/dist/tooling.js"></script>
47
47
 
48
48
  <synthigy-data-modeling endpoint="https://api.example.com" open></synthigy-data-modeling>
49
49
  ```
50
50
 
51
51
  The same files are served straight from this repository's tags:
52
- `https://cdn.jsdelivr.net/gh/synthigy/tooling@v0.1.1/dist/modeling.js`.
52
+ `https://cdn.jsdelivr.net/gh/synthigy/tooling@v0.1.6/dist/tooling.js`.
53
53
 
54
54
  Attributes: `endpoint`, `open`. Properties: `tokenResolver`, `onClose`
55
55
  (`<synthigy-data-console>` also takes `entities`, `schema`). Events: `close`,
@@ -62,7 +62,7 @@ The installers above put a `synthigy` binary on your PATH (`~/.synthigy/bin`,
62
62
  override with `SYNTHIGY_INSTALL_DIR`). Pin a version:
63
63
 
64
64
  ```sh
65
- curl -fsSL https://raw.githubusercontent.com/synthigy/tooling/main/install.sh | sh -s -- v0.1.1
65
+ curl -fsSL https://raw.githubusercontent.com/synthigy/tooling/main/install.sh | sh -s -- v0.1.6
66
66
  ```
67
67
 
68
68
  Binaries and `sha256sums-portal.txt` are attached to each release here.
package/dist/tooling.css CHANGED
@@ -1,7 +1,13 @@
1
- /* Optional. The web components are fully self-contained — every color
2
- token carries a fallback (`var(--sy-text-primary, #1f2937)` etc.) and
3
- <synthigy-data-modeling> ships its own theme block on its shadow root
4
- (see synthigy.modeling.theme / erd.css). Load this file only for the
5
- Inter typeface the host CSS specifies; without it the components fall
6
- back to the platform sans-serif. */
1
+ /* Optional. The web components are fully self-contained — each one adopts
2
+ the full --sy-* / --modeling-* palette into its own shadow root, in both
3
+ themes (synthigy.ui.tokens / tokens.css), and stamps the stored theme onto
4
+ its own host element (synthigy.ui.theme). Load this file only for the Inter
5
+ typeface the host CSS specifies; without it the components fall back to the
6
+ platform sans-serif.
7
+
8
+ The palette used to live in erd.css alone, i.e. inside
9
+ <synthigy-data-modeling> only. Inline var() fallbacks carried most of the
10
+ chrome elsewhere, but the CodeMirror HighlightStyle writes
11
+ var(--sy-syntax-*) with no fallback, so a console mounted on its own
12
+ rendered its XSQL buffer in one flat colour. */
7
13
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');