@magicvr/schema-ui-renderer 0.3.0 → 0.3.1
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/index.js +17 -17
- package/package.json +6 -6
package/index.js
CHANGED
|
@@ -3,23 +3,23 @@ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { en
|
|
|
3
3
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
4
4
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
5
5
|
import { forwardRef, createElement, useRef, useEffect, useState, createContext, useContext, useMemo, useCallback, Fragment as Fragment$1 } from "react";
|
|
6
|
-
import { applyComponentFormat } from "@schema-ui
|
|
7
|
-
import { resolveAsyncDisplayState } from "@schema-ui
|
|
8
|
-
import { Card, CardContent } from "@schema-ui
|
|
9
|
-
import { Skeleton } from "@schema-ui
|
|
10
|
-
import { formatDisplayTime } from "@schema-ui
|
|
11
|
-
import { normalizeSelection, constructRequest } from "@schema-ui
|
|
12
|
-
import { uploadFilesWithFetch } from "@schema-ui
|
|
13
|
-
import { useTranslate } from "@schema-ui
|
|
14
|
-
import { I18nProvider, applyLocaleToDocument, getActiveLocale, setActiveLocale, useI18n } from "@schema-ui
|
|
15
|
-
import { Input } from "@schema-ui
|
|
16
|
-
import { Label } from "@schema-ui
|
|
17
|
-
import { Textarea } from "@schema-ui
|
|
18
|
-
import { resolveTextProp } from "@schema-ui
|
|
19
|
-
import { resolveTextProp as resolveTextProp2 } from "@schema-ui
|
|
20
|
-
import { cn } from "@schema-ui
|
|
21
|
-
import { withTimeout } from "@schema-ui
|
|
22
|
-
import { evaluateExpression, isValidExpression } from "@schema-ui
|
|
6
|
+
import { applyComponentFormat } from "@magicvr/schema-ui-protocol/conformance/component-format";
|
|
7
|
+
import { resolveAsyncDisplayState } from "@magicvr/schema-ui-ui/components/ui/async-state";
|
|
8
|
+
import { Card, CardContent } from "@magicvr/schema-ui-ui/components/ui/card";
|
|
9
|
+
import { Skeleton } from "@magicvr/schema-ui-ui/components/ui/skeleton";
|
|
10
|
+
import { formatDisplayTime } from "@magicvr/schema-ui-lib/lib/datetime";
|
|
11
|
+
import { normalizeSelection, constructRequest } from "@magicvr/schema-ui-protocol/conformance/request-construction";
|
|
12
|
+
import { uploadFilesWithFetch } from "@magicvr/schema-ui-protocol/conformance/upload-orchestration";
|
|
13
|
+
import { useTranslate } from "@magicvr/schema-ui-lib/i18n/runtime";
|
|
14
|
+
import { I18nProvider, applyLocaleToDocument, getActiveLocale, setActiveLocale, useI18n } from "@magicvr/schema-ui-lib/i18n/runtime";
|
|
15
|
+
import { Input } from "@magicvr/schema-ui-ui/components/ui/input";
|
|
16
|
+
import { Label } from "@magicvr/schema-ui-ui/components/ui/label";
|
|
17
|
+
import { Textarea } from "@magicvr/schema-ui-ui/components/ui/textarea";
|
|
18
|
+
import { resolveTextProp } from "@magicvr/schema-ui-lib/i18n/catalog";
|
|
19
|
+
import { resolveTextProp as resolveTextProp2 } from "@magicvr/schema-ui-lib/i18n/catalog";
|
|
20
|
+
import { cn } from "@magicvr/schema-ui-lib/lib/utils";
|
|
21
|
+
import { withTimeout } from "@magicvr/schema-ui-lib/lib/fetch-timeout";
|
|
22
|
+
import { evaluateExpression, isValidExpression } from "@magicvr/schema-ui-protocol/app-manifest";
|
|
23
23
|
/**
|
|
24
24
|
* @license lucide-react v0.525.0 - ISC
|
|
25
25
|
*
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magicvr/schema-ui-renderer",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "schema-ui-core 包面(renderer)",
|
|
6
6
|
"main": "index.js",
|
|
7
|
-
"types": "./
|
|
7
|
+
"types": "./renderer/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"types": "./
|
|
10
|
+
"types": "./renderer/index.d.ts",
|
|
11
11
|
"import": "./index.js"
|
|
12
12
|
},
|
|
13
13
|
"./*": "./*"
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"react": "^19.0.0",
|
|
23
23
|
"react-dom": "^19.0.0",
|
|
24
|
-
"@schema-ui
|
|
25
|
-
"@schema-ui
|
|
26
|
-
"@schema-ui
|
|
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
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|