next-flow-interface 0.17.18 → 0.17.20
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/dist/index.d.ts +7 -23
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1241,7 +1241,6 @@ interface RsServiceApi {
|
|
|
1241
1241
|
rendering: boolean;
|
|
1242
1242
|
};
|
|
1243
1243
|
}
|
|
1244
|
-
type SceneFunction = () => Scene;
|
|
1245
1244
|
|
|
1246
1245
|
interface ContextMenuServiceApi {
|
|
1247
1246
|
/**
|
|
@@ -1544,6 +1543,11 @@ interface NativeEventServiceApi {
|
|
|
1544
1543
|
unsubscribeResize(subscriber: NativeAnyEventSubscriber): void;
|
|
1545
1544
|
}
|
|
1546
1545
|
|
|
1546
|
+
declare enum Locale {
|
|
1547
|
+
ZH = "ZH",
|
|
1548
|
+
EN = "EN"
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1547
1551
|
declare enum PluginType {
|
|
1548
1552
|
BUTTON = "BUTTON",
|
|
1549
1553
|
SWITCH = "SWITCH",
|
|
@@ -1563,6 +1567,7 @@ interface BasePlugin {
|
|
|
1563
1567
|
theme: ThemeColor;
|
|
1564
1568
|
loadApi?: () => void;
|
|
1565
1569
|
data?: Record<string, unknown>;
|
|
1570
|
+
messages?: Record<Locale, Record<string, any>> | string;
|
|
1566
1571
|
onInstall?: () => Promise<void>;
|
|
1567
1572
|
onEnable?: () => Promise<void>;
|
|
1568
1573
|
onDisable?: () => Promise<void>;
|
|
@@ -1996,11 +2001,6 @@ interface LocalDataServiceApi {
|
|
|
1996
2001
|
isLoaded(fid: string): boolean | undefined;
|
|
1997
2002
|
}
|
|
1998
2003
|
|
|
1999
|
-
declare enum Locale {
|
|
2000
|
-
ZH = "ZH",
|
|
2001
|
-
EN = "EN"
|
|
2002
|
-
}
|
|
2003
|
-
|
|
2004
2004
|
type Translator = (key: string) => string;
|
|
2005
2005
|
type NamespaceSubscriber = (namespaces: string[]) => void;
|
|
2006
2006
|
interface InternationalizationServiceApi {
|
|
@@ -2191,20 +2191,6 @@ interface PluginServiceApi {
|
|
|
2191
2191
|
uninstall(id: string): Promise<void>;
|
|
2192
2192
|
}
|
|
2193
2193
|
|
|
2194
|
-
interface ModulePreloaderApi {
|
|
2195
|
-
INTERVAL: number;
|
|
2196
|
-
TIMEOUT: number;
|
|
2197
|
-
EDITOR_TASKS: (() => Promise<void>)[];
|
|
2198
|
-
VIEWER_TASKS: (() => Promise<void>)[];
|
|
2199
|
-
GENERAL_TASKS: (() => Promise<void>)[];
|
|
2200
|
-
state: {
|
|
2201
|
-
showComponents: string[];
|
|
2202
|
-
};
|
|
2203
|
-
addTask(task: () => Promise<void>): void;
|
|
2204
|
-
initialized: boolean;
|
|
2205
|
-
startProcessing(): void;
|
|
2206
|
-
}
|
|
2207
|
-
|
|
2208
2194
|
interface SceneServiceApi {
|
|
2209
2195
|
dragState: {
|
|
2210
2196
|
nid: string;
|
|
@@ -2593,7 +2579,6 @@ interface NfpApi {
|
|
|
2593
2579
|
internationalizationService: InternationalizationServiceApi;
|
|
2594
2580
|
userService: UserServiceApi;
|
|
2595
2581
|
meetingService: MeetingServiceApi;
|
|
2596
|
-
modulePreloader: ModulePreloaderApi;
|
|
2597
2582
|
messageService: MessageServiceApi;
|
|
2598
2583
|
localDataService: LocalDataServiceApi;
|
|
2599
2584
|
ossUploadService: OssUploadServiceApi;
|
|
@@ -2639,7 +2624,6 @@ interface NfpApi {
|
|
|
2639
2624
|
rsSeparateService: RsSeparateServiceApi;
|
|
2640
2625
|
};
|
|
2641
2626
|
rsService: RsServiceApi;
|
|
2642
|
-
scene: SceneFunction;
|
|
2643
2627
|
};
|
|
2644
2628
|
sync: {
|
|
2645
2629
|
syncService: SyncServiceApi;
|
|
@@ -3133,4 +3117,4 @@ declare const VectorUtils: {
|
|
|
3133
3117
|
toArrayWithRound4: typeof toArrayWithRound4;
|
|
3134
3118
|
};
|
|
3135
3119
|
|
|
3136
|
-
export { acceptMime as AcceptMime, type AddLocalDataOptionInterface as AddLocalDataOption, type AnchorProps, type AntCheckboxProps, type AntColorProps, type AntEmptyProps, type AntNumberProps, type AntSelectProps, type AntSwitchProps, type AwarenessChangeSubscriber, type AwarenessServiceApi, type BasePlugin, type BasePluginConfig, type BuiltInPluginConfig, type C3, type C4, type CameraConfigurationAnimationApi, type CameraLocationAnimationApi, ContextMenu, type ContextMenuController, type ContextMenuCreateOptions, type ContextMenuProps, type ContextMenuServiceApi, CryptoUtils, DataUtils, Dialog, DialogContentAlign, type DialogController, type DialogCreateOptions, type DialogPlugin, type DialogProps, type DialogServiceApi, type DivProps, type DivPropsSimple, type DrawerPlugin, type EasyPropertyAnimationApi, type ExternalPluginConfig, type FileData, type FileProgressBarProps, FileUtils, type FirstLoadModelServiceApi, FirstLoadModelServiceEventType, FirstLoadModelServiceStatus, type FirstLoadModelServiceSubscriber, type FirstLoadServiceApi, FirstLoadServiceEventType, FirstLoadServiceStatus, type FirstLoadServiceSubscriber, type FlexGrowProps, FocusMode, type FogAnimationApi, type GroundAnimationApi, type HighLightInfo, type HistoryServiceApi, HistoryServiceEventType, type HistoryServiceStateSubscriber, type HistoryServiceSubscriber, type IconPlugin, IconPluginPosition, type IconViewProps, type InternationalizationProviderProps, type InternationalizationServiceApi, LabelInfo, LabelTheme, type LastSubscriber, type LightAnimationApi, type LocalData, type LocalDataServiceApi, LocalDataServiceEventType, type LocalDataServiceSubscriber, LocalDataStatus, LocalDataType, Locale, type MainPortalProps, type MaterialSymbolFunction, type MaterialSymbolOptions, type MaterialSymbolProps, MathUtils, type Meeting, type MeetingServiceApi, MeetingStatus, MenuLine, type MenuLineCreateOptions, MenuLineType, Message, type MessageServiceApi, type MessageState, type MessageType, type MixView, type
|
|
3120
|
+
export { acceptMime as AcceptMime, type AddLocalDataOptionInterface as AddLocalDataOption, type AnchorProps, type AntCheckboxProps, type AntColorProps, type AntEmptyProps, type AntNumberProps, type AntSelectProps, type AntSwitchProps, type AwarenessChangeSubscriber, type AwarenessServiceApi, type BasePlugin, type BasePluginConfig, type BuiltInPluginConfig, type C3, type C4, type CameraConfigurationAnimationApi, type CameraLocationAnimationApi, ContextMenu, type ContextMenuController, type ContextMenuCreateOptions, type ContextMenuProps, type ContextMenuServiceApi, CryptoUtils, DataUtils, Dialog, DialogContentAlign, type DialogController, type DialogCreateOptions, type DialogPlugin, type DialogProps, type DialogServiceApi, type DivProps, type DivPropsSimple, type DrawerPlugin, type EasyPropertyAnimationApi, type ExternalPluginConfig, type FileData, type FileProgressBarProps, FileUtils, type FirstLoadModelServiceApi, FirstLoadModelServiceEventType, FirstLoadModelServiceStatus, type FirstLoadModelServiceSubscriber, type FirstLoadServiceApi, FirstLoadServiceEventType, FirstLoadServiceStatus, type FirstLoadServiceSubscriber, type FlexGrowProps, FocusMode, type FogAnimationApi, type GroundAnimationApi, type HighLightInfo, type HistoryServiceApi, HistoryServiceEventType, type HistoryServiceStateSubscriber, type HistoryServiceSubscriber, type IconPlugin, IconPluginPosition, type IconViewProps, type InternationalizationProviderProps, type InternationalizationServiceApi, LabelInfo, LabelTheme, type LastSubscriber, type LightAnimationApi, type LocalData, type LocalDataServiceApi, LocalDataServiceEventType, type LocalDataServiceSubscriber, LocalDataStatus, LocalDataType, Locale, type MainPortalProps, type MaterialSymbolFunction, type MaterialSymbolOptions, type MaterialSymbolProps, MathUtils, type Meeting, type MeetingServiceApi, MeetingStatus, MenuLine, type MenuLineCreateOptions, MenuLineType, Message, type MessageServiceApi, type MessageState, type MessageType, type MixView, type NamespaceSubscriber, type NativeAnyEventSubscriber, type NativeDragEventSubscriber, type NativeEventServiceApi, NativeEventUtils, type NativeFocusEventSubscriber, type NativeKeyboardEventSubscriber, type NativeMouseEventSubscriber, type NativePointerEventSubscriber, type NativeUIEventSubscriber, type NativeWheelEventSubscriber, NetworkUtils, type NfpApi, type NodeMaterialChangeListener, type NodeMaterialInfo, type NodePair, NumberUtils, type OssUploadInstance, OssUploadInstanceStatus, type OssUploadServiceApi, OssUploadServiceEventType, type OssUploadServiceSubscriber, type Page, PageMode, PageType, PageUtils, type PluginConfig, type PluginConnectorApi, type PluginContainerServiceApi, PluginEventType, PluginFrom, type PluginInformation, type PluginServiceApi, type PluginServiceSubscriber, type PluginState, PluginType, type PluginViewProps, type ProgressBarProps, type ResourcePreviewProps, type ResourceServiceApi, type RsAudioServiceApi, type RsClickApi, type RsEnvironmentApi, type RsEnvironmentServiceApi, type RsLabelServiceApi, type RsLoopAnimationManagerApi, type RsMaterialServiceApi, type RsModel, type RsModelServiceApi, RsModelServiceEventType, type RsModelServiceSubscriber, RsModelStatus, type RsNodeMaterialManagerApi, type RsNodeServiceApi, type RsSelectionApi, type RsSelectionMaterialInfo, type RsSelectionNodeInfo, type RsSelectionServiceApi, type RsSelectionState, type RsSeparateServiceApi, type RsServiceApi, type RsTextureServiceApi, type RsTransformGroundApi, type RsdButtonProps, type RsdCheckableButtonProps, type RsdCheckboxProps, type RsdColorProps, type RsdFileSelectProps, type RsdInputProps, type RsdMentionsProps, type RsdNoneProps, type RsdNumberListProps, type RsdNumberProps, type RsdSelectProps, type RsdSwitchProps, type RsdTitleProps, RvAttachType, type RvAttributes, type RvAttributesServiceApi, type RvAudio, type RvAwareness, type RvAwarenessClick, type RvAwarenessDevice, type RvAwarenessUser, type RvAwarenessWindow, type RvBase, type RvBasicConfig, RvBasicType, type RvCamera, type RvCameraLocation, type RvCode, type RvCodeAttributeApi, type RvConfiguration, type RvEnvironment, type RvFile, type RvFileServiceApi, RvFileServiceEventType, type RvFileServiceSubscriber, RvFileType, type RvGlobal, type RvGlobalServiceApi, type RvHistory, type RvLabel, type RvLabelAttributeApi, type RvLocation, type RvLocationAttributeApi, type RvLoop, type RvLoopAttributeApi, type RvMaterial, type RvMaterialAttributeApi, type RvMaterialGeneral, type RvMaterialNode, type RvMaterialNodeInput, type RvMaterialPBR, type RvMaterialTexture, RvMaterialType, type RvMeeting, type RvMeetingCurrent, type RvMeetingServiceApi, type RvMeetingStatistic, type RvModel, RvModelOrigin, type RvModelServiceApi, type RvNative, type RvNativeAttributeApi, type RvNode, type RvNodeMaterialAnalyzerApi, RvPresetType, type RvResource, type RvResourceServiceApi, RvResourceServiceEventType, type RvResourceServiceSubscriber, RvResourceType, type RvSceneNode, type RvSeparate, type RvStep, type RvStepServiceApi, RvUtils, type RvVersion, type SceneServiceApi, type Screen, ScreenSize, type ScrollBarProps, type SelectedSubscriber, type ShadowAnimationApi, ShareMode, type SkyboxAnimationApi, type SpaceServiceApi, type SpanProps, type SpanPropsSimple, type Status, type StatusChangeSubscriber, type StatusServiceApi, type StepChangeSubscriber, type StepOptions, type SupportAnimationTarget, type SyncServiceApi, type TAttributesServiceApi, type TAttributesSubscriber, TChangeType, type TStepServiceApi, type TSubscriber, type TextureInfo, ThemeBackground, ThemeColor, type ThemeProviderProps, type ThemeServiceApi, ThemeShape, type ThemeState, TimeUtils, type Translator, type UploadButtonAndListProps, UrlUtils, type UseBase, type UseStepOptions, type UseTAttributes, type UseTStep, type UseTranslations, type UserAuth, type UserInfo, type UserServiceApi, type V2, type V3, type V4, VectorUtils, type ViewPlugin, sleep, throttle };
|
package/package.json
CHANGED