next-flow-interface 0.18.19 → 0.18.21
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 +175 -192
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -104,188 +104,6 @@ interface AnchorProps extends DivProps {
|
|
|
104
104
|
middle?: boolean;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
interface ContextMenuController {
|
|
108
|
-
contextMenu: ContextMenu;
|
|
109
|
-
show(): void;
|
|
110
|
-
destroy(): void;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
declare enum MenuLineType {
|
|
114
|
-
BUTTON = "BUTTON",// 单个点击用按钮
|
|
115
|
-
DIVIDER = "DIVIDER",// 分割线
|
|
116
|
-
CHECKBOX = "CHECKBOX",// 单个可选中复选框
|
|
117
|
-
SUB = "SUB",// 二级菜单
|
|
118
|
-
VIEW = "VIEW"
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
interface MenuLineCreateOptions {
|
|
122
|
-
id?: string;
|
|
123
|
-
type?: MenuLineType;
|
|
124
|
-
text?: string;
|
|
125
|
-
tip?: string;
|
|
126
|
-
icon?: FunctionComponent;
|
|
127
|
-
view?: FunctionComponent;
|
|
128
|
-
color?: string;
|
|
129
|
-
disabled?: boolean;
|
|
130
|
-
shortcut?: string;
|
|
131
|
-
onClick?: (e: MouseEvent$1) => void;
|
|
132
|
-
onMouseOver?: (e: MouseEvent$1) => void;
|
|
133
|
-
onMouseOut?: (e: MouseEvent$1) => void;
|
|
134
|
-
closeAllOnClick?: boolean;
|
|
135
|
-
checkboxDefaultValue?: boolean;
|
|
136
|
-
onCheckboxChange?: (value: boolean) => void;
|
|
137
|
-
sub?: ContextMenuCreateOptions;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
interface ContextMenuCreateOptions {
|
|
141
|
-
id?: string;
|
|
142
|
-
lines?: MenuLineCreateOptions[];
|
|
143
|
-
showIcon?: boolean;
|
|
144
|
-
x?: number;
|
|
145
|
-
y?: number;
|
|
146
|
-
closeOnOutsideClick?: boolean;
|
|
147
|
-
theme?: ThemeColor;
|
|
148
|
-
onClose?: () => void;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
declare class MenuLine {
|
|
152
|
-
options: MenuLineCreateOptions;
|
|
153
|
-
id: string;
|
|
154
|
-
type: MenuLineType;
|
|
155
|
-
text: string;
|
|
156
|
-
tip: string;
|
|
157
|
-
icon: FunctionComponent | undefined;
|
|
158
|
-
view: FunctionComponent | undefined;
|
|
159
|
-
color: string;
|
|
160
|
-
disabled: boolean;
|
|
161
|
-
shortcut: string;
|
|
162
|
-
onClick: (e: MouseEvent$1) => void;
|
|
163
|
-
onMouseOver: (e: MouseEvent$1) => void;
|
|
164
|
-
onMouseOut: (e: MouseEvent$1) => void;
|
|
165
|
-
closeAllOnClick: boolean;
|
|
166
|
-
checkboxDefaultValue: boolean;
|
|
167
|
-
onCheckboxChange: (value: boolean) => void;
|
|
168
|
-
sub: ContextMenuCreateOptions | undefined;
|
|
169
|
-
createTime: Date;
|
|
170
|
-
constructor(options: MenuLineCreateOptions, id: string, type?: MenuLineType, text?: string, tip?: string, icon?: FunctionComponent | undefined, view?: FunctionComponent | undefined, color?: string, disabled?: boolean, shortcut?: string, onClick?: (e: MouseEvent$1) => void, onMouseOver?: (e: MouseEvent$1) => void, onMouseOut?: (e: MouseEvent$1) => void, closeAllOnClick?: boolean, checkboxDefaultValue?: boolean, onCheckboxChange?: (value: boolean) => void, sub?: ContextMenuCreateOptions | undefined, // 子菜单项
|
|
171
|
-
createTime?: Date);
|
|
172
|
-
static fromOptions(id: string, options: MenuLineCreateOptions): MenuLine;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
declare class ContextMenu {
|
|
176
|
-
options: ContextMenuCreateOptions;
|
|
177
|
-
id: string;
|
|
178
|
-
lines: MenuLine[];
|
|
179
|
-
showIcon: boolean;
|
|
180
|
-
x: number;
|
|
181
|
-
y: number;
|
|
182
|
-
closeOnOutsideClick: boolean;
|
|
183
|
-
theme?: ThemeColor | undefined;
|
|
184
|
-
controller: ContextMenuController | null;
|
|
185
|
-
createTime: Date;
|
|
186
|
-
constructor(options: ContextMenuCreateOptions, id: string, lines?: MenuLine[], showIcon?: boolean, x?: number, y?: number, closeOnOutsideClick?: boolean, theme?: ThemeColor | undefined, controller?: ContextMenuController | null, createTime?: Date);
|
|
187
|
-
static fromOptions(id: string, options: ContextMenuCreateOptions, menuLines?: MenuLine[]): ContextMenu;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
interface ContextMenuProps extends DivProps {
|
|
191
|
-
contextMenus: ContextMenu;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
interface DialogCreateOptions {
|
|
195
|
-
id?: string;
|
|
196
|
-
title?: string;
|
|
197
|
-
titleIcon?: FunctionComponent | string;
|
|
198
|
-
content?: string;
|
|
199
|
-
contentAlign?: DialogContentAlign;
|
|
200
|
-
contentView?: FunctionComponent | string;
|
|
201
|
-
icon?: FunctionComponent | string;
|
|
202
|
-
view?: FunctionComponent | string;
|
|
203
|
-
theme?: ThemeColor;
|
|
204
|
-
leftMode?: boolean;
|
|
205
|
-
className?: string;
|
|
206
|
-
style?: object;
|
|
207
|
-
confirmText?: string;
|
|
208
|
-
cancelText?: string;
|
|
209
|
-
enableCloseButton?: boolean;
|
|
210
|
-
enableInput?: boolean;
|
|
211
|
-
defaultValue?: string;
|
|
212
|
-
inputPlaceholder?: string;
|
|
213
|
-
autoFocus?: boolean;
|
|
214
|
-
allowEmpty?: boolean;
|
|
215
|
-
onChange?: (value: string) => void;
|
|
216
|
-
onCheck?: (value: string) => boolean;
|
|
217
|
-
onConfirm?: (value: string) => void;
|
|
218
|
-
onCancel?: () => void;
|
|
219
|
-
onClose?: () => void;
|
|
220
|
-
onConfirmButtonClick?: () => void;
|
|
221
|
-
onCancelButtonClick?: () => void;
|
|
222
|
-
onOutsideClick?: () => void;
|
|
223
|
-
onCloseButtonClick?: () => void;
|
|
224
|
-
onRender?: () => void;
|
|
225
|
-
onEffect?: () => () => void;
|
|
226
|
-
closeOnConfirm?: boolean;
|
|
227
|
-
closeOnCancel?: boolean;
|
|
228
|
-
closeOnOutsideClick?: boolean;
|
|
229
|
-
closeOnCloseButtonClick?: boolean;
|
|
230
|
-
alignButton?: boolean;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
declare enum DialogContentAlign {
|
|
234
|
-
LEFT = "LEFT",
|
|
235
|
-
CENTER = "CENTER",
|
|
236
|
-
RIGHT = "RIGHT"
|
|
237
|
-
}
|
|
238
|
-
declare class Dialog {
|
|
239
|
-
options: DialogCreateOptions;
|
|
240
|
-
id: string;
|
|
241
|
-
title: string;
|
|
242
|
-
titleIcon: FunctionComponent | string | undefined;
|
|
243
|
-
content: string;
|
|
244
|
-
contentAlign: DialogContentAlign;
|
|
245
|
-
contentView: FunctionComponent | string | undefined;
|
|
246
|
-
icon: FunctionComponent | string | undefined;
|
|
247
|
-
view: FunctionComponent | string | undefined;
|
|
248
|
-
theme: ThemeColor;
|
|
249
|
-
leftMode: boolean;
|
|
250
|
-
className: string;
|
|
251
|
-
style: object;
|
|
252
|
-
confirmText: string;
|
|
253
|
-
cancelText: string;
|
|
254
|
-
enableInput: boolean;
|
|
255
|
-
defaultValue: string;
|
|
256
|
-
inputPlaceholder: string;
|
|
257
|
-
autoFocus: boolean;
|
|
258
|
-
allowEmpty: boolean;
|
|
259
|
-
onChange: (value: string) => void;
|
|
260
|
-
onCheck: (value: string) => boolean;
|
|
261
|
-
enableCloseButton: boolean;
|
|
262
|
-
onConfirm: (value: string) => void;
|
|
263
|
-
onCancel: () => void;
|
|
264
|
-
onClose: () => void;
|
|
265
|
-
onConfirmButtonClick: () => void;
|
|
266
|
-
onCancelButtonClick: () => void;
|
|
267
|
-
onOutsideClick: () => void;
|
|
268
|
-
onCloseButtonClick: () => void;
|
|
269
|
-
onRender: () => void;
|
|
270
|
-
onEffect: () => () => void;
|
|
271
|
-
closeOnConfirm: boolean;
|
|
272
|
-
closeOnCancel: boolean;
|
|
273
|
-
closeOnOutsideClick: boolean;
|
|
274
|
-
closeOnCloseButtonClick: boolean;
|
|
275
|
-
alignButton: boolean;
|
|
276
|
-
inputValue: string;
|
|
277
|
-
createTime: Date;
|
|
278
|
-
focusInput: () => void;
|
|
279
|
-
elements: Map<string, HTMLElement>;
|
|
280
|
-
constructor(options: DialogCreateOptions, id: string, title?: string, titleIcon?: FunctionComponent | string | undefined, content?: string, contentAlign?: DialogContentAlign, contentView?: FunctionComponent | string | undefined, icon?: FunctionComponent | string | undefined, view?: FunctionComponent | string | undefined, theme?: ThemeColor, leftMode?: boolean, className?: string, style?: object, confirmText?: string, cancelText?: string, enableInput?: boolean, defaultValue?: string, inputPlaceholder?: string, autoFocus?: boolean, allowEmpty?: boolean, onChange?: (value: string) => void, onCheck?: (value: string) => boolean, enableCloseButton?: boolean, onConfirm?: (value: string) => void, onCancel?: () => void, onClose?: () => void, onConfirmButtonClick?: () => void, onCancelButtonClick?: () => void, onOutsideClick?: () => void, onCloseButtonClick?: () => void, onRender?: () => void, onEffect?: () => () => void, closeOnConfirm?: boolean, closeOnCancel?: boolean, closeOnOutsideClick?: boolean, closeOnCloseButtonClick?: boolean, alignButton?: boolean, inputValue?: string, createTime?: Date, focusInput?: () => void, elements?: Map<string, HTMLElement>);
|
|
281
|
-
static fromOptions(id: string, options: DialogCreateOptions): Dialog;
|
|
282
|
-
setHide: (value: boolean) => void;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
interface DialogProps extends DivProps {
|
|
286
|
-
dialog: Dialog;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
107
|
interface FileProgressBarProps extends DivProps {
|
|
290
108
|
size: string;
|
|
291
109
|
value: number;
|
|
@@ -1235,14 +1053,95 @@ interface RsServiceApi {
|
|
|
1235
1053
|
scene: Scene | undefined;
|
|
1236
1054
|
engine: Engine | WebGPUEngine | undefined;
|
|
1237
1055
|
experience: WebXRDefaultExperience | null;
|
|
1238
|
-
|
|
1239
|
-
rendering: boolean;
|
|
1240
|
-
};
|
|
1056
|
+
rendering: boolean;
|
|
1241
1057
|
isSupportWebXR(): boolean;
|
|
1242
1058
|
isWebXRInitialized(): boolean;
|
|
1243
1059
|
enterVR(onInitialize: () => void): Promise<void>;
|
|
1244
1060
|
}
|
|
1245
1061
|
|
|
1062
|
+
interface ContextMenuController {
|
|
1063
|
+
contextMenu: ContextMenu;
|
|
1064
|
+
show(): void;
|
|
1065
|
+
destroy(): void;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
declare enum MenuLineType {
|
|
1069
|
+
BUTTON = "BUTTON",// 单个点击用按钮
|
|
1070
|
+
DIVIDER = "DIVIDER",// 分割线
|
|
1071
|
+
CHECKBOX = "CHECKBOX",// 单个可选中复选框
|
|
1072
|
+
SUB = "SUB",// 二级菜单
|
|
1073
|
+
VIEW = "VIEW"
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
interface MenuLineCreateOptions {
|
|
1077
|
+
id?: string;
|
|
1078
|
+
type?: MenuLineType;
|
|
1079
|
+
text?: string;
|
|
1080
|
+
tip?: string;
|
|
1081
|
+
icon?: FunctionComponent;
|
|
1082
|
+
view?: FunctionComponent;
|
|
1083
|
+
color?: string;
|
|
1084
|
+
disabled?: boolean;
|
|
1085
|
+
shortcut?: string;
|
|
1086
|
+
onClick?: (e: MouseEvent$1) => void;
|
|
1087
|
+
onMouseOver?: (e: MouseEvent$1) => void;
|
|
1088
|
+
onMouseOut?: (e: MouseEvent$1) => void;
|
|
1089
|
+
closeAllOnClick?: boolean;
|
|
1090
|
+
checkboxDefaultValue?: boolean;
|
|
1091
|
+
onCheckboxChange?: (value: boolean) => void;
|
|
1092
|
+
sub?: ContextMenuCreateOptions;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
interface ContextMenuCreateOptions {
|
|
1096
|
+
id?: string;
|
|
1097
|
+
lines?: MenuLineCreateOptions[];
|
|
1098
|
+
showIcon?: boolean;
|
|
1099
|
+
x?: number;
|
|
1100
|
+
y?: number;
|
|
1101
|
+
closeOnOutsideClick?: boolean;
|
|
1102
|
+
theme?: ThemeColor;
|
|
1103
|
+
onClose?: () => void;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
declare class MenuLine {
|
|
1107
|
+
options: MenuLineCreateOptions;
|
|
1108
|
+
id: string;
|
|
1109
|
+
type: MenuLineType;
|
|
1110
|
+
text: string;
|
|
1111
|
+
tip: string;
|
|
1112
|
+
icon: FunctionComponent | undefined;
|
|
1113
|
+
view: FunctionComponent | undefined;
|
|
1114
|
+
color: string;
|
|
1115
|
+
disabled: boolean;
|
|
1116
|
+
shortcut: string;
|
|
1117
|
+
onClick: (e: MouseEvent$1) => void;
|
|
1118
|
+
onMouseOver: (e: MouseEvent$1) => void;
|
|
1119
|
+
onMouseOut: (e: MouseEvent$1) => void;
|
|
1120
|
+
closeAllOnClick: boolean;
|
|
1121
|
+
checkboxDefaultValue: boolean;
|
|
1122
|
+
onCheckboxChange: (value: boolean) => void;
|
|
1123
|
+
sub: ContextMenuCreateOptions | undefined;
|
|
1124
|
+
createTime: Date;
|
|
1125
|
+
constructor(options: MenuLineCreateOptions, id: string, type?: MenuLineType, text?: string, tip?: string, icon?: FunctionComponent | undefined, view?: FunctionComponent | undefined, color?: string, disabled?: boolean, shortcut?: string, onClick?: (e: MouseEvent$1) => void, onMouseOver?: (e: MouseEvent$1) => void, onMouseOut?: (e: MouseEvent$1) => void, closeAllOnClick?: boolean, checkboxDefaultValue?: boolean, onCheckboxChange?: (value: boolean) => void, sub?: ContextMenuCreateOptions | undefined, // 子菜单项
|
|
1126
|
+
createTime?: Date);
|
|
1127
|
+
static fromOptions(id: string, options: MenuLineCreateOptions): MenuLine;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
declare class ContextMenu {
|
|
1131
|
+
options: ContextMenuCreateOptions;
|
|
1132
|
+
id: string;
|
|
1133
|
+
lines: MenuLine[];
|
|
1134
|
+
showIcon: boolean;
|
|
1135
|
+
x: number;
|
|
1136
|
+
y: number;
|
|
1137
|
+
closeOnOutsideClick: boolean;
|
|
1138
|
+
theme?: ThemeColor | undefined;
|
|
1139
|
+
controller: ContextMenuController | null;
|
|
1140
|
+
createTime: Date;
|
|
1141
|
+
constructor(options: ContextMenuCreateOptions, id: string, lines?: MenuLine[], showIcon?: boolean, x?: number, y?: number, closeOnOutsideClick?: boolean, theme?: ThemeColor | undefined, controller?: ContextMenuController | null, createTime?: Date);
|
|
1142
|
+
static fromOptions(id: string, options: ContextMenuCreateOptions, menuLines?: MenuLine[]): ContextMenu;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1246
1145
|
interface ContextMenuServiceApi {
|
|
1247
1146
|
/**
|
|
1248
1147
|
* 当前所有右键菜单
|
|
@@ -1276,13 +1175,99 @@ interface ContextMenuServiceApi {
|
|
|
1276
1175
|
closeAll(): Promise<number>;
|
|
1277
1176
|
}
|
|
1278
1177
|
|
|
1279
|
-
interface
|
|
1280
|
-
|
|
1281
|
-
|
|
1178
|
+
interface DialogCreateOptions {
|
|
1179
|
+
id?: string;
|
|
1180
|
+
title?: string;
|
|
1181
|
+
titleIcon?: FunctionComponent | string;
|
|
1182
|
+
content?: string;
|
|
1183
|
+
contentAlign?: DialogContentAlign;
|
|
1184
|
+
contentView?: FunctionComponent | string;
|
|
1185
|
+
icon?: FunctionComponent | string;
|
|
1186
|
+
view?: FunctionComponent | string;
|
|
1187
|
+
theme?: ThemeColor;
|
|
1188
|
+
leftMode?: boolean;
|
|
1189
|
+
className?: string;
|
|
1190
|
+
style?: object;
|
|
1191
|
+
confirmText?: string;
|
|
1192
|
+
cancelText?: string;
|
|
1193
|
+
enableCloseButton?: boolean;
|
|
1194
|
+
enableInput?: boolean;
|
|
1195
|
+
defaultValue?: string;
|
|
1196
|
+
inputPlaceholder?: string;
|
|
1197
|
+
autoFocus?: boolean;
|
|
1198
|
+
allowEmpty?: boolean;
|
|
1199
|
+
onChange?: (value: string) => void;
|
|
1200
|
+
onCheck?: (value: string) => boolean;
|
|
1201
|
+
onConfirm?: (value: string) => void;
|
|
1202
|
+
onCancel?: () => void;
|
|
1203
|
+
onClose?: () => void;
|
|
1204
|
+
onConfirmButtonClick?: () => void;
|
|
1205
|
+
onCancelButtonClick?: () => void;
|
|
1206
|
+
onOutsideClick?: () => void;
|
|
1207
|
+
onCloseButtonClick?: () => void;
|
|
1208
|
+
onRender?: () => void;
|
|
1209
|
+
onEffect?: () => () => void;
|
|
1210
|
+
closeOnConfirm?: boolean;
|
|
1211
|
+
closeOnCancel?: boolean;
|
|
1212
|
+
closeOnOutsideClick?: boolean;
|
|
1213
|
+
closeOnCloseButtonClick?: boolean;
|
|
1214
|
+
alignButton?: boolean;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
declare enum DialogContentAlign {
|
|
1218
|
+
LEFT = "LEFT",
|
|
1219
|
+
CENTER = "CENTER",
|
|
1220
|
+
RIGHT = "RIGHT"
|
|
1221
|
+
}
|
|
1222
|
+
declare class Dialog {
|
|
1223
|
+
options: DialogCreateOptions;
|
|
1224
|
+
id: string;
|
|
1225
|
+
title: string;
|
|
1226
|
+
titleIcon: FunctionComponent | string | undefined;
|
|
1227
|
+
content: string;
|
|
1228
|
+
contentAlign: DialogContentAlign;
|
|
1229
|
+
contentView: FunctionComponent | string | undefined;
|
|
1230
|
+
icon: FunctionComponent | string | undefined;
|
|
1231
|
+
view: FunctionComponent | string | undefined;
|
|
1232
|
+
theme: ThemeColor;
|
|
1233
|
+
leftMode: boolean;
|
|
1234
|
+
className: string;
|
|
1235
|
+
style: object;
|
|
1236
|
+
confirmText: string;
|
|
1237
|
+
cancelText: string;
|
|
1238
|
+
enableInput: boolean;
|
|
1239
|
+
defaultValue: string;
|
|
1240
|
+
inputPlaceholder: string;
|
|
1241
|
+
autoFocus: boolean;
|
|
1242
|
+
allowEmpty: boolean;
|
|
1243
|
+
onChange: (value: string) => void;
|
|
1244
|
+
onCheck: (value: string) => boolean;
|
|
1245
|
+
enableCloseButton: boolean;
|
|
1246
|
+
onConfirm: (value: string) => void;
|
|
1247
|
+
onCancel: () => void;
|
|
1248
|
+
onClose: () => void;
|
|
1249
|
+
onConfirmButtonClick: () => void;
|
|
1250
|
+
onCancelButtonClick: () => void;
|
|
1251
|
+
onOutsideClick: () => void;
|
|
1252
|
+
onCloseButtonClick: () => void;
|
|
1253
|
+
onRender: () => void;
|
|
1254
|
+
onEffect: () => () => void;
|
|
1255
|
+
closeOnConfirm: boolean;
|
|
1256
|
+
closeOnCancel: boolean;
|
|
1257
|
+
closeOnOutsideClick: boolean;
|
|
1258
|
+
closeOnCloseButtonClick: boolean;
|
|
1259
|
+
alignButton: boolean;
|
|
1260
|
+
inputValue: string;
|
|
1261
|
+
createTime: Date;
|
|
1262
|
+
focusInput: () => void;
|
|
1263
|
+
elements: Map<string, HTMLElement>;
|
|
1264
|
+
constructor(options: DialogCreateOptions, id: string, title?: string, titleIcon?: FunctionComponent | string | undefined, content?: string, contentAlign?: DialogContentAlign, contentView?: FunctionComponent | string | undefined, icon?: FunctionComponent | string | undefined, view?: FunctionComponent | string | undefined, theme?: ThemeColor, leftMode?: boolean, className?: string, style?: object, confirmText?: string, cancelText?: string, enableInput?: boolean, defaultValue?: string, inputPlaceholder?: string, autoFocus?: boolean, allowEmpty?: boolean, onChange?: (value: string) => void, onCheck?: (value: string) => boolean, enableCloseButton?: boolean, onConfirm?: (value: string) => void, onCancel?: () => void, onClose?: () => void, onConfirmButtonClick?: () => void, onCancelButtonClick?: () => void, onOutsideClick?: () => void, onCloseButtonClick?: () => void, onRender?: () => void, onEffect?: () => () => void, closeOnConfirm?: boolean, closeOnCancel?: boolean, closeOnOutsideClick?: boolean, closeOnCloseButtonClick?: boolean, alignButton?: boolean, inputValue?: string, createTime?: Date, focusInput?: () => void, elements?: Map<string, HTMLElement>);
|
|
1265
|
+
static fromOptions(id: string, options: DialogCreateOptions): Dialog;
|
|
1266
|
+
setHide: (value: boolean) => void;
|
|
1282
1267
|
}
|
|
1268
|
+
|
|
1283
1269
|
interface DialogServiceApi {
|
|
1284
1270
|
dialogs: Dialog[];
|
|
1285
|
-
renderer: DialogRenderer | null;
|
|
1286
1271
|
/**
|
|
1287
1272
|
* 创建对话框 最全面的对话框创建方法
|
|
1288
1273
|
*
|
|
@@ -2549,7 +2534,6 @@ interface RvMeeting {
|
|
|
2549
2534
|
}
|
|
2550
2535
|
|
|
2551
2536
|
interface RvPlugin {
|
|
2552
|
-
id: string;
|
|
2553
2537
|
version: string | VersionPoint;
|
|
2554
2538
|
enable: {
|
|
2555
2539
|
viewer: EnableLevel;
|
|
@@ -2719,7 +2703,6 @@ interface NfpApi {
|
|
|
2719
2703
|
ProgressBar: FunctionComponent<ProgressBarProps>;
|
|
2720
2704
|
UploadButtonAndList: FunctionComponent<UploadButtonAndListProps>;
|
|
2721
2705
|
ScrollBar: FunctionComponent<ScrollBarProps>;
|
|
2722
|
-
Dialog: FunctionComponent<DialogProps>;
|
|
2723
2706
|
MaterialSymbol: FunctionComponent<MaterialSymbolProps>;
|
|
2724
2707
|
ResourcePreview: FunctionComponent<ResourcePreviewProps>;
|
|
2725
2708
|
};
|
|
@@ -3164,4 +3147,4 @@ declare const VectorUtils: {
|
|
|
3164
3147
|
toArrayWithRound4: typeof toArrayWithRound4;
|
|
3165
3148
|
};
|
|
3166
3149
|
|
|
3167
|
-
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 AwarenessChanges, type AwarenessServiceApi, type BasePlugin, type BasePluginConfig, type BuiltInPluginConfig, type C3, type C4, type CameraConfigurationAnimationApi, type CameraLocationAnimationApi, ContextMenu, type ContextMenuController, type ContextMenuCreateOptions, type
|
|
3150
|
+
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 AwarenessChanges, type AwarenessServiceApi, type BasePlugin, type BasePluginConfig, type BuiltInPluginConfig, type C3, type C4, type CameraConfigurationAnimationApi, type CameraLocationAnimationApi, ContextMenu, type ContextMenuController, type ContextMenuCreateOptions, type ContextMenuServiceApi, CryptoUtils, DataUtils, Dialog, DialogContentAlign, type DialogCreateOptions, type DialogPlugin, type DialogServiceApi, type DivProps, type DivPropsSimple, DomNotFoundError, type DrawerPlugin, type EasyPropertyAnimationApi, EnableLevel, 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 MeetingServiceApi, type MeetingState, 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, NotFoundError, 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, type RvPlugin, 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, StaticClassInstantiationError, 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, VersionPoint, type ViewPlugin, sleep, throttle };
|
package/package.json
CHANGED