@bonsae/nrg 0.25.1 → 0.26.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/package.json +6 -4
- package/server/index.cjs +1413 -2
- package/server/resources/nrg-client.js +10 -0
- package/test/client/component/config.js +9 -9
- package/test/client/component/index.js +230 -42
- package/test/client/component/nrg.css +1 -0
- package/test/client/component/schemas.js +37 -0
- package/test/client/component/setup.js +1473 -198
- package/test/client/e2e/index.js +33 -35
- package/test/client/unit/index.js +17 -2
- package/test/server/integration/index.js +1222 -11
- package/test/server/unit/index.js +184 -2
- package/types/client.d.ts +1 -1
- package/types/server.d.ts +8 -2
- package/types/shims/components.d.ts +8 -8
- package/types/shims/{client → core/client}/types.d.ts +2 -2
- package/types/shims/core/schema-options.d.ts +24 -0
- package/types/shims/schema-options.d.ts +17 -17
- package/types/test-client-component-schemas.d.ts +73 -0
- package/types/test-client-component.d.ts +153 -7
- package/types/test-client-unit.d.ts +105 -4
- package/types/test-server-integration.d.ts +64 -63
- package/types/test-server-unit.d.ts +2 -1
- package/vite/index.js +33 -35
- /package/types/shims/{client → core/client}/form/components/node-red-config-input.vue.d.ts +0 -0
- /package/types/shims/{client → core/client}/form/components/node-red-editor-input.vue.d.ts +0 -0
- /package/types/shims/{client → core/client}/form/components/node-red-input-label.vue.d.ts +0 -0
- /package/types/shims/{client → core/client}/form/components/node-red-input.vue.d.ts +0 -0
- /package/types/shims/{client → core/client}/form/components/node-red-json-schema-form.vue.d.ts +0 -0
- /package/types/shims/{client → core/client}/form/components/node-red-select-input.vue.d.ts +0 -0
- /package/types/shims/{client → core/client}/form/components/node-red-toggle.vue.d.ts +0 -0
- /package/types/shims/{client → core/client}/form/components/node-red-typed-input.vue.d.ts +0 -0
- /package/types/shims/{constants.d.ts → core/constants.d.ts} +0 -0
- /package/types/shims/{brands.d.ts → core/types.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bonsae/nrg",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
4
4
|
"description": "NRG framework — build Node-RED nodes with Vue 3, TypeScript, and JSON Schema",
|
|
5
5
|
"author": "Allan Oricil <allanoricil@duck.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,8 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"repository": {
|
|
13
13
|
"url": "git+https://github.com/bonsaedev/nrg.git",
|
|
14
|
-
"type": "git"
|
|
15
|
-
"directory": "packages/toolkit"
|
|
14
|
+
"type": "git"
|
|
16
15
|
},
|
|
17
16
|
"publishConfig": {
|
|
18
17
|
"access": "public"
|
|
@@ -66,6 +65,10 @@
|
|
|
66
65
|
"default": "./test/client/component/index.js"
|
|
67
66
|
},
|
|
68
67
|
"./test/client/component/config": "./test/client/component/config.js",
|
|
68
|
+
"./test/client/component/schemas": {
|
|
69
|
+
"types": "./types/test-client-component-schemas.d.ts",
|
|
70
|
+
"default": "./test/client/component/schemas.js"
|
|
71
|
+
},
|
|
69
72
|
"./test/client/component/setup": "./test/client/component/setup.js",
|
|
70
73
|
"./test/client/unit": {
|
|
71
74
|
"types": "./types/test-client-unit.d.ts",
|
|
@@ -119,7 +122,6 @@
|
|
|
119
122
|
}
|
|
120
123
|
},
|
|
121
124
|
"dependencies": {
|
|
122
|
-
"@bonsae/nrg-runtime": "0.25.1",
|
|
123
125
|
"@clack/prompts": "^1.0.1",
|
|
124
126
|
"@sinclair/typebox": "^0.34.33",
|
|
125
127
|
"@vitejs/plugin-vue": "^5.2.3",
|