@skygraph/vue 0.0.0-placeholder.0 → 0.5.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/LICENSE +21 -0
- package/README.md +115 -6
- package/dist/index.cjs +23 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +7717 -0
- package/dist/index.js +16181 -0
- package/dist/index.js.map +1 -0
- package/dist/style.css +1 -0
- package/package.json +78 -18
- package/index.js +0 -3
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.sg-autofield-input{width:100%;padding:6px 12px;border:1px solid var(--sg-color-border, #d9d9d9);border-radius:var(--sg-border-radius, 6px);background:var(--sg-color-bg-container, #fff);color:var(--sg-color-text);font-size:14px;font-family:inherit;line-height:1.4;box-sizing:border-box;outline:none;transition:border-color var(--sg-transition-duration) var(--sg-transition-timing)}.sg-autofield-input:disabled{background:var(--sg-color-bg-disabled, #f5f5f5);color:var(--sg-color-text-disabled);cursor:not-allowed}.sg-autofield-input:focus,.sg-autofield-input:focus-visible{border-color:var(--sg-color-primary);box-shadow:0 0 0 2px var(--sg-color-primary-bg)}.sg-autofield-input-error{border-color:var(--sg-color-error, #ff4d4f)}.sg-autofield-input-warning{border-color:var(--sg-color-warning, #faad14)}.sg-autofield-input-textarea{min-height:80px;resize:vertical}.sg-autofield-input-color{width:48px;height:32px;padding:2px}
|
package/package.json
CHANGED
|
@@ -1,19 +1,79 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
2
|
+
"name": "@skygraph/vue",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "SkyGraph Vue 3 adapter — composables and components built on @skygraph/core",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.cjs",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"require": "./dist/index.cjs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"author": "Ruslan Sinkevich",
|
|
25
|
+
"homepage": "https://skygraph.ruslansinkevich.ru/vue/",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/RuslanSinkevich/skygraph-public.git",
|
|
29
|
+
"directory": "packages/vue"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/RuslanSinkevich/skygraph-public/issues"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"vue",
|
|
36
|
+
"vue3",
|
|
37
|
+
"composables",
|
|
38
|
+
"ui",
|
|
39
|
+
"form",
|
|
40
|
+
"table",
|
|
41
|
+
"tree",
|
|
42
|
+
"graph",
|
|
43
|
+
"design-system",
|
|
44
|
+
"skygraph"
|
|
45
|
+
],
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@skygraph/styles": "0.1.0"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@skygraph/core": ">=0.1.0",
|
|
51
|
+
"vue": "^3.4.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@microsoft/api-extractor": "^7.47.0",
|
|
55
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
56
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
57
|
+
"@vue/test-utils": "^2.4.0",
|
|
58
|
+
"@vue/compiler-sfc": "^3.4.0",
|
|
59
|
+
"jsdom": "^25.0.0",
|
|
60
|
+
"rimraf": "^5.0.0",
|
|
61
|
+
"typescript": "^5.4.0",
|
|
62
|
+
"vite": "^5.4.0",
|
|
63
|
+
"vite-plugin-dts": "^4.0.0",
|
|
64
|
+
"vitest": "^2.0.0",
|
|
65
|
+
"vue": "^3.4.0",
|
|
66
|
+
"vue-tsc": "^2.0.0",
|
|
67
|
+
"@skygraph/core": "0.4.0"
|
|
68
|
+
},
|
|
69
|
+
"scripts": {
|
|
70
|
+
"build": "vite build",
|
|
71
|
+
"test": "vitest run --passWithNoTests",
|
|
72
|
+
"test:watch": "vitest",
|
|
73
|
+
"test:coverage": "vitest run --coverage",
|
|
74
|
+
"typecheck": "vue-tsc --noEmit",
|
|
75
|
+
"api:check": "api-extractor run --verbose",
|
|
76
|
+
"api:update": "api-extractor run --local --verbose",
|
|
77
|
+
"clean": "rimraf dist"
|
|
78
|
+
}
|
|
79
|
+
}
|
package/index.js
DELETED