@vsleem-realsee-viewer/realsee-plugin 2.0.26 → 2.0.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.
- package/README.internal.md +1 -0
- package/dist/components/Realsee.vue.d.ts +2 -2
- package/dist/enums/error.d.ts +3 -1
- package/dist/hooks/useStore.d.ts +2 -4
- package/dist/index.mjs +6463 -6057
- package/dist/index.umd.js +170 -166
- package/dist/types/realsee.d.ts +2 -1
- package/dist/types/store.d.ts +15 -2
- package/package.json +3 -3
package/README.internal.md
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
| --------------- | --------------------------------- | ------------------------ | ------------------------------------------------------ |
|
|
32
32
|
| `baseUrl?` | `string` | `https://vsleem.com/api` | 用于配置应用后端服务的根路径 |
|
|
33
33
|
| `authorizeCode` | `string` | - | 用于API身份验证和授权的凭证 |
|
|
34
|
+
| `locale?` | `string` | `LocaleType.zh_CN` | 当前语言 |
|
|
34
35
|
| `obsPrefix?` | `string` | - | 用于在对象存储中组织文件的目录路径(不可用) |
|
|
35
36
|
| `obsType?` | `string` | hs | 指定使用的对象存储服务提供商 huawei \| aliyun \| hs 等 |
|
|
36
37
|
| `obsTiles?` | `{ cols: number; rows: number } ` | - | 对象存储瓦片数量(需与obsType同时使用) |
|
|
@@ -122,8 +122,8 @@ declare const __VLS_component: import('vue').DefineComponent<RealseeProps, {
|
|
|
122
122
|
setState: (options?: import('../types').UpdatableRealseeProps) => void;
|
|
123
123
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
124
124
|
ready: (...args: any[]) => void;
|
|
125
|
-
reload: (...args: any[]) => void;
|
|
126
125
|
destroy: (...args: any[]) => void;
|
|
126
|
+
reload: (...args: any[]) => void;
|
|
127
127
|
"change-model": (...args: any[]) => void;
|
|
128
128
|
"change-record": (...args: any[]) => void;
|
|
129
129
|
"change-point": (...args: any[]) => void;
|
|
@@ -154,8 +154,8 @@ declare const __VLS_component: import('vue').DefineComponent<RealseeProps, {
|
|
|
154
154
|
"viewer-select-marker": (...args: any[]) => void;
|
|
155
155
|
}, string, import('vue').PublicProps, Readonly<RealseeProps> & Readonly<{
|
|
156
156
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
157
|
-
onReload?: ((...args: any[]) => any) | undefined;
|
|
158
157
|
onDestroy?: ((...args: any[]) => any) | undefined;
|
|
158
|
+
onReload?: ((...args: any[]) => any) | undefined;
|
|
159
159
|
"onChange-model"?: ((...args: any[]) => any) | undefined;
|
|
160
160
|
"onChange-record"?: ((...args: any[]) => any) | undefined;
|
|
161
161
|
"onChange-point"?: ((...args: any[]) => any) | undefined;
|
package/dist/enums/error.d.ts
CHANGED
package/dist/hooks/useStore.d.ts
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { ComputedRef } from 'vue';
|
|
2
|
-
import { RealseeProps, RealseeStore } from '../types';
|
|
3
|
-
|
|
4
|
-
export declare function useStore(config: ComputedRef<RealseeProps>, { setReferPoint }: ActionType): {
|
|
2
|
+
import { RealseeProps, RealseeStore, RealseeStoreAction } from '../types';
|
|
3
|
+
export declare function useStore(config: ComputedRef<RealseeProps>, action: RealseeStoreAction): {
|
|
5
4
|
storeRef: ComputedRef<RealseeStore>;
|
|
6
5
|
getStore: () => RealseeStore;
|
|
7
6
|
setReady: (value?: boolean) => void;
|
|
8
7
|
};
|
|
9
|
-
export {};
|