@jnrs/lingshu-smart 2.2.24 → 2.2.25
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/AGENTIC.md +16 -11
- package/dist/components/index.js +103 -99
- package/dist/components/preview/index.vue.d.ts +10 -1
- package/dist/controller/AppController.d.ts +1 -0
- package/dist/{index-2zNqeRBi.js → index-32uj9JyT.js} +21 -10
- package/dist/index.js +1 -1
- package/dist/playground/ViewPageDemo.vue.d.ts +8 -2
- package/dist/types/app.types.d.ts +2 -0
- package/package.json +1 -1
package/AGENTIC.md
CHANGED
|
@@ -180,12 +180,15 @@ type InteractiveUi = ILayer | IStationSlotConfig | IResourceConfig
|
|
|
180
180
|
|
|
181
181
|
容器配置
|
|
182
182
|
|
|
183
|
-
| 属性名
|
|
184
|
-
|
|
|
185
|
-
| appDomId
|
|
186
|
-
| autoStart
|
|
187
|
-
|
|
|
188
|
-
|
|
|
183
|
+
| 属性名 | 类型 | 默认值 | 说明 |
|
|
184
|
+
| ------------- | ----------------------- | --------- | ---------------------- |
|
|
185
|
+
| appDomId | `string \| HTMLElement` | — | APP 容器 DOM ID 或元素 |
|
|
186
|
+
| autoStart | `boolean` | `true` | 是否自动启动引擎 |
|
|
187
|
+
| appHittable | `boolean` | `true` | APP 是否可交互 |
|
|
188
|
+
| appEditable | `boolean` | `false` | APP 是否可编辑状态 |
|
|
189
|
+
| appFill | `string` | `#424242` | APP 背景填充颜色 |
|
|
190
|
+
| hideSceneFill | `boolean` | `false` | 隐藏场景背景填充 |
|
|
191
|
+
| actions | `IEventHandler` | — | 事件处理配置 |
|
|
189
192
|
|
|
190
193
|
##### 工具函数 (Utils)
|
|
191
194
|
|
|
@@ -388,11 +391,13 @@ const editorActions = {
|
|
|
388
391
|
|
|
389
392
|
**Props:**
|
|
390
393
|
|
|
391
|
-
| 属性名
|
|
392
|
-
|
|
|
393
|
-
|
|
|
394
|
-
|
|
|
395
|
-
|
|
|
394
|
+
| 属性名 | 类型 | 默认值 | 说明 |
|
|
395
|
+
| ------------- | ---------------- | --------- | --------------------- |
|
|
396
|
+
| caseUuid | `string` | — | 案例 UUID(Required) |
|
|
397
|
+
| actions | `PreviewActions` | `{}` | 事件处理配置 |
|
|
398
|
+
| appHittable | `boolean` | `true` | app 是否可交互 |
|
|
399
|
+
| appFill | `string` | `#424242` | app 容器填充色 |
|
|
400
|
+
| hideSceneFill | `boolean` | `false` | 隐藏场景填充色 |
|
|
396
401
|
|
|
397
402
|
**PreviewActions 接口:**
|
|
398
403
|
|