@kudashi/kds-api 2.14.2-rc-1 → 2.14.2-rc-2
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/api.d.ts +6 -11
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -847,17 +847,6 @@ declare global {
|
|
|
847
847
|
*/
|
|
848
848
|
setCursorIcon(icon: string): boolean;
|
|
849
849
|
|
|
850
|
-
/**
|
|
851
|
-
*
|
|
852
|
-
* 设置鼠标插件高度是否填充满容器,仅在CustomTool激活时生效,将会无视设置的size.y值
|
|
853
|
-
*
|
|
854
|
-
* take effect only when CustomTool is active
|
|
855
|
-
*
|
|
856
|
-
* @param
|
|
857
|
-
*
|
|
858
|
-
*/
|
|
859
|
-
setPluginLeftPanelFullHeight(setFullHeight: boolean): void;
|
|
860
|
-
|
|
861
850
|
/**
|
|
862
851
|
*
|
|
863
852
|
* 设置footer的操作条(2d/3d,现实模式操作按钮)向右的偏移量,仅在CustomTool激活时生效, 避免插件遮挡
|
|
@@ -4644,6 +4633,12 @@ declare global {
|
|
|
4644
4633
|
* @returns
|
|
4645
4634
|
*/
|
|
4646
4635
|
postMessage(data: any, origin?: string): void
|
|
4636
|
+
|
|
4637
|
+
/**
|
|
4638
|
+
* 插件容器使用最大值 将会覆盖size.y
|
|
4639
|
+
* @param useMaxHeight
|
|
4640
|
+
*/
|
|
4641
|
+
pluginViewUseMaxHeight(useMaxHeight: boolean): void;
|
|
4647
4642
|
}
|
|
4648
4643
|
|
|
4649
4644
|
|