@dosgato/dialog 1.5.2 → 1.5.4

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.
@@ -0,0 +1,2 @@
1
+ export { default as FieldGraphQLEditor } from './FieldGraphQLEditor.svelte';
2
+ export { default as FieldTypeScriptEditor } from './FieldTypeScriptEditor.svelte';
@@ -0,0 +1,2 @@
1
+ export { default as FieldGraphQLEditor } from './FieldGraphQLEditor.svelte';
2
+ export { default as FieldTypeScriptEditor } from './FieldTypeScriptEditor.svelte';
package/dist/index.d.ts CHANGED
@@ -42,6 +42,6 @@ export * from './colorpicker/index.js';
42
42
  export * from './helpers.js';
43
43
  export * from './tree/index.js';
44
44
  export * from './cropper/index.js';
45
- export * from './code/index.js';
45
+ export { default as FieldCodeEditor } from './code/FieldCodeEditor.svelte';
46
46
  export * from './imageposition/index.js';
47
47
  export * from './tagpicker/index.js';
package/dist/index.js CHANGED
@@ -42,6 +42,6 @@ export * from './colorpicker/index.js';
42
42
  export * from './helpers.js';
43
43
  export * from './tree/index.js';
44
44
  export * from './cropper/index.js';
45
- export * from './code/index.js';
45
+ export { default as FieldCodeEditor } from './code/FieldCodeEditor.svelte';
46
46
  export * from './imageposition/index.js';
47
47
  export * from './tagpicker/index.js';
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dosgato/dialog",
3
3
  "description": "A component library for building forms that edit a JSON document.",
4
- "version": "1.5.2",
4
+ "version": "1.5.4",
5
5
  "scripts": {
6
- "prepublishOnly": "svelte-package",
6
+ "prepublishOnly": "npm run package",
7
7
  "dev": "vite dev --force",
8
- "package": "svelte-package",
8
+ "package": "svelte-package && vite build --config vite.bundle.config.js",
9
9
  "check": "svelte-check --tsconfig ./tsconfig.json",
10
10
  "check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
11
11
  "lint": "eslint ."
@@ -17,6 +17,11 @@
17
17
  "svelte": "./dist/index.js",
18
18
  "default": "./dist/index.js"
19
19
  },
20
+ "./editors": {
21
+ "types": "./dist/code/editors.d.ts",
22
+ "svelte": "./dist/code/editors.js",
23
+ "default": "./dist/code/editors.js"
24
+ },
20
25
  "./package.json": "./package.json"
21
26
  },
22
27
  "dependencies": {
@@ -28,10 +33,8 @@
28
33
  "@iconify/svelte": "^4.0.0 || ^5.0.0",
29
34
  "@txstate-mws/svelte-components": "^1.6.11",
30
35
  "@txstate-mws/svelte-forms": "^2.0.0",
31
- "@typescript/vfs": "^1.6.4",
32
- "@valtown/codemirror-ts": "^2.3.1",
33
- "cm6-graphql": "0.2.1",
34
36
  "codemirror": "^6.0.1",
37
+ "graphql": "^16.0.0",
35
38
  "txstate-utils": "^1.8.0"
36
39
  },
37
40
  "devDependencies": {
@@ -41,7 +44,11 @@
41
44
  "@sveltejs/kit": "^2.0.1",
42
45
  "@sveltejs/package": "^2.0.1",
43
46
  "@sveltejs/vite-plugin-svelte": "^6.0.0",
47
+ "@typescript/vfs": "^1.6.4",
48
+ "@valtown/codemirror-ts": "^2.3.1",
49
+ "cm6-graphql": "0.2.1",
44
50
  "eslint-config-love": "^151.0.0",
51
+ "graphql-language-service": "^5.0.0",
45
52
  "eslint-plugin-svelte": "^3.0.0",
46
53
  "svelte": "^5.0.0",
47
54
  "svelte-check": "^4.0.0",