next-flow-interface 0.17.12 → 0.17.13
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 +1 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2886,9 +2886,8 @@ interface RvMeetingServiceApi {
|
|
|
2886
2886
|
}
|
|
2887
2887
|
|
|
2888
2888
|
interface ViewPlugin extends BasePlugin {
|
|
2889
|
-
view:
|
|
2889
|
+
view: MixView<PluginViewProps>;
|
|
2890
2890
|
onRender?: () => void;
|
|
2891
|
-
onEffect?: () => () => void;
|
|
2892
2891
|
}
|
|
2893
2892
|
|
|
2894
2893
|
interface DrawerPlugin extends IconPlugin {
|
|
@@ -2897,7 +2896,6 @@ interface DrawerPlugin extends IconPlugin {
|
|
|
2897
2896
|
weight: number;
|
|
2898
2897
|
drawer: MixView<PluginViewProps>;
|
|
2899
2898
|
onRender?: () => void;
|
|
2900
|
-
onEffect?: () => () => void;
|
|
2901
2899
|
onTitleClick?: () => void;
|
|
2902
2900
|
onTitleContextMenu?: () => void;
|
|
2903
2901
|
}
|
|
@@ -2910,7 +2908,6 @@ interface DialogPlugin extends IconPlugin {
|
|
|
2910
2908
|
options: DialogCreateOptions;
|
|
2911
2909
|
view: MixView<PluginViewProps>;
|
|
2912
2910
|
onRender?: () => void;
|
|
2913
|
-
onEffect?: () => () => void;
|
|
2914
2911
|
}
|
|
2915
2912
|
|
|
2916
2913
|
interface C3 {
|
package/package.json
CHANGED