@powerhousedao/builder-tools 0.9.37-dev.2 → 0.10.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/dist/connect-studio/server.d.ts.map +1 -1
- package/dist/connect-studio/server.js +1 -9
- package/dist/connect-studio/server.js.map +1 -1
- package/dist/connect-studio/types.d.ts +2 -3
- package/dist/connect-studio/types.d.ts.map +1 -1
- package/dist/connect-studio/vite-plugins/external-packages.d.ts.map +1 -1
- package/dist/connect-studio/vite-plugins/external-packages.js +1 -1
- package/dist/connect-studio/vite-plugins/external-packages.js.map +1 -1
- package/dist/document-model-editor/components/code-editors/utils.d.ts.map +1 -1
- package/dist/document-model-editor/components/code-editors/utils.js +5 -4
- package/dist/document-model-editor/components/code-editors/utils.js.map +1 -1
- package/dist/document-model-editor/components/form.d.ts +1 -1
- package/dist/document-model-editor/components/form.d.ts.map +1 -1
- package/dist/document-model-editor/components/text-field.d.ts.map +1 -1
- package/dist/document-model-editor/components/text-field.js +5 -4
- package/dist/document-model-editor/components/text-field.js.map +1 -1
- package/dist/document-model-editor/context/schema-context.d.ts +2 -0
- package/dist/document-model-editor/context/schema-context.d.ts.map +1 -1
- package/dist/document-model-editor/context/schema-context.js +5 -5
- package/dist/document-model-editor/context/schema-context.js.map +1 -1
- package/dist/document-model-editor/document-model-editor.stories.d.ts +44 -4
- package/dist/document-model-editor/document-model-editor.stories.d.ts.map +1 -1
- package/dist/document-model-editor/document-model-editor.stories.js +2 -4
- package/dist/document-model-editor/document-model-editor.stories.js.map +1 -1
- package/dist/document-model-editor/editor.js +4 -4
- package/dist/document-model-editor/editor.js.map +1 -1
- package/dist/document-model-editor/utils/helpers.d.ts.map +1 -1
- package/dist/document-model-editor/utils/helpers.js +10 -5
- package/dist/document-model-editor/utils/helpers.js.map +1 -1
- package/dist/document-model-editor/utils/linting.d.ts.map +1 -1
- package/dist/document-model-editor/utils/linting.js +9 -9
- package/dist/document-model-editor/utils/linting.js.map +1 -1
- package/dist/editor-utils/components/styles.d.ts.map +1 -1
- package/dist/editor-utils/components/stylesVariant.d.ts.map +1 -1
- package/dist/editor-utils/hooks/useEnsInfo.d.ts.map +1 -1
- package/dist/style.css +95 -39
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerhousedao/builder-tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"publishConfig": {
|
|
@@ -79,11 +79,11 @@
|
|
|
79
79
|
"vite": "^6.2.2",
|
|
80
80
|
"vite-envs": "^4.4.5",
|
|
81
81
|
"zod": "^3.24.2",
|
|
82
|
-
"@powerhousedao/config": "1.
|
|
83
|
-
"@powerhousedao/
|
|
84
|
-
"@powerhousedao/
|
|
85
|
-
"
|
|
86
|
-
"
|
|
82
|
+
"@powerhousedao/config": "1.28.0",
|
|
83
|
+
"@powerhousedao/reactor-browser": "1.23.0",
|
|
84
|
+
"@powerhousedao/design-system": "1.40.0",
|
|
85
|
+
"@powerhousedao/scalars": "2.0.0",
|
|
86
|
+
"document-model": "3.0.0"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|
|
89
89
|
"react": "^18.0.0",
|
|
@@ -92,7 +92,6 @@
|
|
|
92
92
|
"scripts": {
|
|
93
93
|
"build:css": "npx @tailwindcss/cli -i ./style.css -o ./dist/style.css",
|
|
94
94
|
"build": "npm run build:css && tsc --build",
|
|
95
|
-
"prebuild": "npm run clean",
|
|
96
95
|
"storybook": "storybook dev -p 6006",
|
|
97
96
|
"build:tsc": "tsc --build",
|
|
98
97
|
"lint": "eslint .",
|