@vvfx/sdk 0.1.19-alpha.28 → 0.1.19-alpha.29
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.cjs +1 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.global.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3417,6 +3417,7 @@ type SDKConfig = {
|
|
|
3417
3417
|
*/
|
|
3418
3418
|
gestureHandlerConfig: {
|
|
3419
3419
|
enabled: boolean;
|
|
3420
|
+
loadingGizmoConfig: LoadingGizmoConfig;
|
|
3420
3421
|
adsorptionGizmoEnabled: boolean;
|
|
3421
3422
|
adsorptionGizmoConfig: AdsorptionGizmoConfig;
|
|
3422
3423
|
controlGizmoEnabled: boolean;
|
|
@@ -4029,6 +4030,15 @@ type MaskGizmoConfig = {
|
|
|
4029
4030
|
*/
|
|
4030
4031
|
boxLineAlpha: number;
|
|
4031
4032
|
};
|
|
4033
|
+
/**
|
|
4034
|
+
* @description Loading 参数
|
|
4035
|
+
*/
|
|
4036
|
+
type LoadingGizmoConfig = {
|
|
4037
|
+
/**
|
|
4038
|
+
* @description 加载中 effect fragment
|
|
4039
|
+
*/
|
|
4040
|
+
loadingFragment?: string;
|
|
4041
|
+
};
|
|
4032
4042
|
/**
|
|
4033
4043
|
* @description 精准改字编辑参数
|
|
4034
4044
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -3417,6 +3417,7 @@ type SDKConfig = {
|
|
|
3417
3417
|
*/
|
|
3418
3418
|
gestureHandlerConfig: {
|
|
3419
3419
|
enabled: boolean;
|
|
3420
|
+
loadingGizmoConfig: LoadingGizmoConfig;
|
|
3420
3421
|
adsorptionGizmoEnabled: boolean;
|
|
3421
3422
|
adsorptionGizmoConfig: AdsorptionGizmoConfig;
|
|
3422
3423
|
controlGizmoEnabled: boolean;
|
|
@@ -4029,6 +4030,15 @@ type MaskGizmoConfig = {
|
|
|
4029
4030
|
*/
|
|
4030
4031
|
boxLineAlpha: number;
|
|
4031
4032
|
};
|
|
4033
|
+
/**
|
|
4034
|
+
* @description Loading 参数
|
|
4035
|
+
*/
|
|
4036
|
+
type LoadingGizmoConfig = {
|
|
4037
|
+
/**
|
|
4038
|
+
* @description 加载中 effect fragment
|
|
4039
|
+
*/
|
|
4040
|
+
loadingFragment?: string;
|
|
4041
|
+
};
|
|
4032
4042
|
/**
|
|
4033
4043
|
* @description 精准改字编辑参数
|
|
4034
4044
|
*/
|