feat:blendProps for Cooridinate changes

This commit is contained in:
pengfei.zhou
2020-03-11 11:30:49 +08:00
committed by osborn
parent 1f5fd7de30
commit 348a6f3e56
7 changed files with 29 additions and 37 deletions

2
doric-js/index.d.ts vendored
View File

@@ -929,7 +929,7 @@ declare module 'doric/lib/src/native/coordinator' {
};
target: View | "NavBar";
changing: {
name: "width" | "height" | "x" | "y" | "backgroundColor";
name: "width" | "height" | "x" | "y" | "backgroundColor" | "alpha";
start: number | Color;
end: number | Color;
};

View File

@@ -13,7 +13,7 @@ export declare function coordinator(context: BridgeContext): {
};
target: View | "NavBar";
changing: {
name: "width" | "height" | "x" | "y" | "backgroundColor";
name: "width" | "height" | "x" | "y" | "backgroundColor" | "alpha";
start: number | Color;
end: number | Color;
};

View File

@@ -42,7 +42,7 @@ export function coordinator(context: BridgeContext) {
},
target: View | "NavBar",
changing: {
name: "backgroundColor" | "width" | "height" | "x" | "y",
name: "backgroundColor" | "width" | "height" | "x" | "y" | "alpha",
start: number | Color
end: number | Color
},