@magicvr/schema-ui-renderer 0.3.1 → 0.3.3

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,13 +1,13 @@
1
1
  {
2
2
  "name": "@magicvr/schema-ui-renderer",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "type": "module",
5
5
  "description": "schema-ui-core 包面(renderer)",
6
6
  "main": "index.js",
7
- "types": "./renderer/index.d.ts",
7
+ "types": "./index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "types": "./renderer/index.d.ts",
10
+ "types": "./index.d.ts",
11
11
  "import": "./index.js"
12
12
  },
13
13
  "./*": "./*"
@@ -18,13 +18,6 @@
18
18
  "components"
19
19
  ],
20
20
  "license": "UNLICENSED",
21
- "peerDependencies": {
22
- "react": "^19.0.0",
23
- "react-dom": "^19.0.0",
24
- "@magicvr/schema-ui-protocol": "^0.2.1",
25
- "@magicvr/schema-ui-lib": "^0.1.1",
26
- "@magicvr/schema-ui-ui": "^0.1.1"
27
- },
28
21
  "publishConfig": {
29
22
  "access": "public"
30
23
  }
@@ -5,9 +5,9 @@
5
5
  * + 扩展接缝(registerCustomComponent)+ 核心类型。
6
6
  * 内部 bundle 面(components/i18n/lib/protocol)不导出为包级 API。
7
7
  */
8
- export { RenderPage, useSchemaCrud, SchemaCrudContext, type RendererComponentProps, type SchemaCrudFeedback, type SchemaCrudConfirm, type TableSelection, type ActionResult, type SchemaCrudValue, type RunRequestOptions, } from "./render.tsx";
9
- export { registerCustomComponent } from "./custom-components";
10
- export type * from "./render.types";
8
+ export { RenderPage, useSchemaCrud, SchemaCrudContext, type RendererComponentProps, type SchemaCrudFeedback, type SchemaCrudConfirm, type TableSelection, type ActionResult, type SchemaCrudValue, type RunRequestOptions, } from "./render.tsx.js";
9
+ export { registerCustomComponent } from "./custom-components.js";
10
+ export type * from "./render.types.js";
11
11
  export { I18nProvider, useI18n, getActiveLocale, setActiveLocale, applyLocaleToDocument, type I18nProviderProps, type I18nState, } from "@schema-ui/lib/i18n/runtime";
12
12
  export { resolveTextProp, type MessageParams } from "@schema-ui/lib/i18n/catalog";
13
13
  export type { Locale, LocalePreference } from "@schema-ui/lib/i18n/locale";