@stonecrop/stonecrop 0.4.30 → 0.4.32

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stonecrop/stonecrop",
3
- "version": "0.4.30",
3
+ "version": "0.4.32",
4
4
  "description": "schema helper",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -23,6 +23,10 @@
23
23
  "default": "./dist/stonecrop.js"
24
24
  },
25
25
  "require": "./dist/stonecrop.umd.cjs"
26
+ },
27
+ "./types": {
28
+ "import": "./dist/src/types/index.d.ts",
29
+ "require": "./dist/src/types/index.d.ts"
26
30
  }
27
31
  },
28
32
  "typings": "./dist/src/index.d.ts",
@@ -32,20 +36,19 @@
32
36
  ],
33
37
  "dependencies": {
34
38
  "immutable": "^5.1.3",
35
- "pinia": "^3.0.3",
36
39
  "pinia-shared-state": "^1.0.1",
37
40
  "pinia-xstate": "^3.0.0",
38
- "vue": "^3.5.17",
41
+ "pinia": "^3.0.3",
39
42
  "vue-router": "^4.5.1",
43
+ "vue": "^3.5.18",
40
44
  "xstate": "^5.20.1"
41
45
  },
42
46
  "devDependencies": {
43
- "@microsoft/api-documenter": "^7.26.29",
44
- "@rushstack/heft": "^0.74.0",
45
- "@rushstack/heft-typescript-plugin": "^0.9.8",
47
+ "@microsoft/api-documenter": "^7.26.31",
48
+ "@rushstack/heft": "^0.74.2",
46
49
  "@typescript-eslint/eslint-plugin": "^7.18.0",
47
50
  "@typescript-eslint/parser": "^7.18.0",
48
- "@vitejs/plugin-vue": "^5.2.4",
51
+ "@vitejs/plugin-vue": "^6.0.1",
49
52
  "@vitest/coverage-istanbul": "^3.2.4",
50
53
  "@vue/test-utils": "^2.4.6",
51
54
  "eslint": "^8.57.1",
@@ -53,10 +56,10 @@
53
56
  "eslint-plugin-vue": "^9.33.0",
54
57
  "jsdom": "^26.1.0",
55
58
  "typescript": "^5.8.3",
56
- "vite": "^6.3.5",
59
+ "vite": "^7.0.6",
57
60
  "vitest": "^3.2.4",
58
- "@stonecrop/atable": "0.4.30",
59
- "@stonecrop/aform": "0.4.30",
61
+ "@stonecrop/aform": "0.4.32",
62
+ "@stonecrop/atable": "0.4.32",
60
63
  "stonecrop-rig": "0.2.22"
61
64
  },
62
65
  "publishConfig": {
package/src/index.ts CHANGED
@@ -1,22 +1,11 @@
1
- export type { BaseSchema, FieldsetSchema, FormSchema, SchemaTypes, TableSchema } from '@stonecrop/aform'
2
- export type {
3
- CellContext,
4
- ConnectionEvent,
5
- ConnectionHandle,
6
- ConnectionPath,
7
- GanttBarInfo,
8
- GanttDragEvent,
9
- GanttOptions,
10
- TableColumn,
11
- TableConfig,
12
- TableRow,
13
- } from '@stonecrop/atable'
1
+ export type * from '@stonecrop/aform/types'
2
+ export type * from '@stonecrop/atable/types'
14
3
 
15
4
  import { type StonecropReturn, useStonecrop } from './composable'
16
5
  import DoctypeMeta from './doctype'
17
6
  import Registry from './registry'
18
7
  import Stonecrop from './plugins'
19
8
  import { Stonecrop as StonecropClass } from './stonecrop'
20
- export type { ImmutableDoctype, MutableDoctype, Schema, InstallOptions } from './types'
9
+ export type * from './types'
21
10
 
22
11
  export { DoctypeMeta, Registry, Stonecrop, StonecropClass, StonecropReturn, useStonecrop }