@jnrs/lingshu-smart 2.2.24 → 2.2.27

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.
@@ -26,16 +26,25 @@ type __VLS_Props = {
26
26
  /**
27
27
  * 案例 uuid
28
28
  */
29
- caseUuid?: string;
29
+ caseUuid: string;
30
+ /**
31
+ * APP 是否可交互
32
+ */
33
+ appHittable?: boolean;
30
34
  /**
31
35
  * 容器背景色
32
36
  */
33
37
  appFill?: string;
38
+ /**
39
+ * 隐藏场景元素(如背景、网格等)
40
+ */
41
+ hideSceneFill?: boolean;
34
42
  };
35
43
  declare const _default: import('vue').DefineComponent<__VLS_Props, {
36
44
  currentCase: import('vue').Ref<ICase | null | undefined, ICase | null | undefined>;
37
45
  operating: (data: ILayerOperating) => void;
38
46
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
39
47
  actions: PreviewActions;
48
+ appHittable: boolean;
40
49
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
41
50
  export default _default;
@@ -7,6 +7,8 @@ export declare class AppController {
7
7
  private businessMap;
8
8
  private appEditable;
9
9
  private actions;
10
+ private hideSceneFill;
11
+ private shadowsEnabled;
10
12
  constructor(options?: IContainer);
11
13
  start(): void;
12
14
  destroy(): void;
@@ -20,4 +22,7 @@ export declare class AppController {
20
22
  addModel(modelConfig: ILayer): void;
21
23
  rerenderModel(modelConfig: ILayer): void;
22
24
  operating(data: ILayerOperating): void;
25
+ toggleShadows(enabled?: boolean): void;
26
+ private toggleShadowRecursive;
27
+ getShadowsEnabled(): boolean;
23
28
  }