@realsee/dnalogel 3.41.6 → 3.41.7
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/CHANGELOG.md +3 -0
- package/dist/base/BasePlugin.d.ts +1 -0
- package/dist/index.cjs.js +22 -22
- package/dist/index.js +7 -4
- package/dist/index.umd.js +25 -25
- package/libs/PanoTagPlugin/controller/TagRender.js +8 -8
- package/libs/base/BasePlugin.d.ts +1 -0
- package/libs/base/BasePlugin.js +7 -4
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -80,6 +80,7 @@ declare abstract class Controller<PluginState extends State = State, PluginEvent
|
|
|
80
80
|
*/
|
|
81
81
|
abstract state: PluginState;
|
|
82
82
|
constructor(five: Five, config?: Config);
|
|
83
|
+
updateFive(five: Five): void;
|
|
83
84
|
/**
|
|
84
85
|
* 获取当前的插件状态,如果当初插件内存在需要通过动画变更的 state 值,则通过此方法可以得到中间状态
|
|
85
86
|
*/
|