@synthigy/tooling 0.1.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.md +39 -0
- package/dist/modeling.js +3976 -0
- package/dist/tooling.css +7 -0
- package/package.json +29 -0
package/dist/tooling.css
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
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. */
|
|
7
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@synthigy/tooling",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Synthigy web components (data modeling, data console, log cockpit) and portal binaries",
|
|
5
|
+
"author": "Robert Ger\u0161ak",
|
|
6
|
+
"homepage": "https://github.com/synthigy/synthigy",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/synthigy/tooling.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/synthigy/tooling/issues"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"sideEffects": [
|
|
21
|
+
"./dist/modeling.js"
|
|
22
|
+
],
|
|
23
|
+
"keywords": [
|
|
24
|
+
"synthigy",
|
|
25
|
+
"web-components",
|
|
26
|
+
"erd",
|
|
27
|
+
"data-console"
|
|
28
|
+
]
|
|
29
|
+
}
|