@mastergo/plugin-typings 1.3.1 → 1.4.0
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 +188 -160
- package/package.json +1 -2
- package/CHANGELOG.md +0 -532
package/dist/index.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ declare global {
|
|
|
55
55
|
hyperlink: Hyperlink
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
type PluginEventType = 'selectionchange' | 'currentpagechange' | 'close' | 'themechange'
|
|
58
|
+
type PluginEventType = 'selectionchange' | 'currentpagechange' | 'close' | 'themechange' | 'drop'
|
|
59
59
|
type ThemeColor = 'dark' | 'light'
|
|
60
60
|
|
|
61
61
|
interface PluginAPI {
|
|
@@ -595,7 +595,7 @@ declare global {
|
|
|
595
595
|
paddingLeft: number
|
|
596
596
|
}
|
|
597
597
|
|
|
598
|
-
|
|
598
|
+
interface RowsColsLayoutGrid {
|
|
599
599
|
readonly gridType: "ROWS" | "COLUMNS"
|
|
600
600
|
|
|
601
601
|
readonly alignment: "LEFT" | "RIGHT" | "STRETCH" | "CENTER"
|
|
@@ -610,7 +610,7 @@ declare global {
|
|
|
610
610
|
readonly name?: string
|
|
611
611
|
}
|
|
612
612
|
|
|
613
|
-
|
|
613
|
+
interface GridLayoutGrid {
|
|
614
614
|
readonly gridType: "GRID"
|
|
615
615
|
|
|
616
616
|
readonly sectionSize: number
|
|
@@ -622,7 +622,7 @@ declare global {
|
|
|
622
622
|
}
|
|
623
623
|
|
|
624
624
|
|
|
625
|
-
|
|
625
|
+
type LayoutGrid = RowsColsLayoutGrid | GridLayoutGrid
|
|
626
626
|
|
|
627
627
|
interface FrameContainerMixin extends AutoLayout {
|
|
628
628
|
clipsContent: boolean
|
|
@@ -933,6 +933,96 @@ declare global {
|
|
|
933
933
|
setRangeTextCase(start: number, end: number, textCase: TextCase): void
|
|
934
934
|
}
|
|
935
935
|
|
|
936
|
+
|
|
937
|
+
interface CreateStyleConfig {
|
|
938
|
+
name: string;
|
|
939
|
+
/**
|
|
940
|
+
* layerId
|
|
941
|
+
*/
|
|
942
|
+
id: string;
|
|
943
|
+
description?: string;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
interface FlowStartingPoint {
|
|
947
|
+
name: string
|
|
948
|
+
id: string
|
|
949
|
+
flowId: string
|
|
950
|
+
description: string
|
|
951
|
+
}
|
|
952
|
+
interface Reaction {
|
|
953
|
+
readonly trigger: Trigger;
|
|
954
|
+
readonly action?: Action;
|
|
955
|
+
}
|
|
956
|
+
interface Action {
|
|
957
|
+
readonly type: ActionType;
|
|
958
|
+
readonly destinationId: string;
|
|
959
|
+
readonly navigation: Navigation;
|
|
960
|
+
readonly transition: Transition;
|
|
961
|
+
readonly url: string;
|
|
962
|
+
readonly scrollToXOffset?: number;
|
|
963
|
+
readonly scrollToYOffset?: number;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
type ActionType = 'BACK' | 'NODE'| 'URL'| 'CLOSE'| 'NONE';
|
|
967
|
+
|
|
968
|
+
type Navigation = 'NAVIGATE' | 'OVERLAY' | 'SWAP_OVERLAY' | 'SCROLL_TO';
|
|
969
|
+
|
|
970
|
+
interface Transition {
|
|
971
|
+
readonly type: TransitionType;
|
|
972
|
+
readonly duration: number;
|
|
973
|
+
readonly direction: TransitionDirection;
|
|
974
|
+
readonly easing: Easing;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
type TransitionType = 'TANS_NONE' | 'INSTANT' | 'DISSOLVE' | 'SMART_ANIMATE' | 'MOVE_IN' | 'MOVE_OUT' | 'PUSH' | 'SLIDE_IN' | 'SLIDE_OUT' | 'DISPLACE'
|
|
978
|
+
|
|
979
|
+
type TransitionDirection = 'LEFT' | 'RIGHT' | 'TOP' | 'BOTTOM'
|
|
980
|
+
interface Easing{
|
|
981
|
+
readonly type: EasingType;
|
|
982
|
+
readonly easingFunctionCubicBezier: {
|
|
983
|
+
x1: number;
|
|
984
|
+
x2: number;
|
|
985
|
+
y1: number;
|
|
986
|
+
y2: number;
|
|
987
|
+
};
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
type EasingType = 'LINEAR' | 'EASE_IN' | 'EASE_OUT' | 'EASE_IN_AND_OUT' | 'EASE_IN_BACK' | 'EASE_OUT_BACK' | 'EASE_IN_AND_OUT_BACK' | 'CUSTOM_CUBIC_BEZIER'
|
|
991
|
+
interface Trigger{
|
|
992
|
+
readonly type: TriggerType;
|
|
993
|
+
readonly delay: number;
|
|
994
|
+
}
|
|
995
|
+
type TriggerType = 'ON_CLICK' | 'ON_DRAG' | 'ON_HOVER' | 'ON_PRESS' | 'MOUSE_ENTER' | 'MOUSE_LEAVE' | 'MOUSE_DOWN' | 'MOUSE_UP' | 'AFTER_DELAY'
|
|
996
|
+
|
|
997
|
+
interface ArcData {
|
|
998
|
+
/**
|
|
999
|
+
* 起点弧度
|
|
1000
|
+
*/
|
|
1001
|
+
startingAngle: number
|
|
1002
|
+
/**
|
|
1003
|
+
* 终点弧度
|
|
1004
|
+
*/
|
|
1005
|
+
endingAngle?: number
|
|
1006
|
+
/**
|
|
1007
|
+
* 内径
|
|
1008
|
+
*/
|
|
1009
|
+
innerRadius: number
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
interface PluginDrop {
|
|
1013
|
+
clientX: number
|
|
1014
|
+
clientY: number
|
|
1015
|
+
dropMetadata?: any
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
interface DropEvent {
|
|
1019
|
+
x: number
|
|
1020
|
+
y: number
|
|
1021
|
+
absoluteX: number
|
|
1022
|
+
absoluteY: number
|
|
1023
|
+
dropMetadata?: any
|
|
1024
|
+
}
|
|
1025
|
+
|
|
936
1026
|
type BaseNode = DocumentNode | PageNode | SceneNode
|
|
937
1027
|
|
|
938
1028
|
/**
|
|
@@ -975,83 +1065,6 @@ declare global {
|
|
|
975
1065
|
| 'CONNECTOR'
|
|
976
1066
|
}
|
|
977
1067
|
|
|
978
|
-
interface CreateStyleConfig {
|
|
979
|
-
name: string;
|
|
980
|
-
/**
|
|
981
|
-
* layerId
|
|
982
|
-
*/
|
|
983
|
-
id: string;
|
|
984
|
-
description?: string;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
interface FlowStartingPoint {
|
|
988
|
-
name: string
|
|
989
|
-
id: string
|
|
990
|
-
flowId: string
|
|
991
|
-
description: string
|
|
992
|
-
}
|
|
993
|
-
interface Reaction {
|
|
994
|
-
readonly trigger: Trigger;
|
|
995
|
-
readonly action?: Action;
|
|
996
|
-
}
|
|
997
|
-
interface Action {
|
|
998
|
-
readonly type: ActionType;
|
|
999
|
-
readonly destinationId: string;
|
|
1000
|
-
readonly navigation: Navigation;
|
|
1001
|
-
readonly transition: Transition;
|
|
1002
|
-
readonly url: string;
|
|
1003
|
-
readonly scrollToXOffset?: number;
|
|
1004
|
-
readonly scrollToYOffset?: number;
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
|
-
type ActionType = 'BACK' | 'NODE'| 'URL'| 'CLOSE'| 'NONE';
|
|
1008
|
-
|
|
1009
|
-
type Navigation = 'NAVIGATE' | 'OVERLAY' | 'SWAP_OVERLAY' | 'SCROLL_TO';
|
|
1010
|
-
|
|
1011
|
-
interface Transition {
|
|
1012
|
-
readonly type: TransitionType;
|
|
1013
|
-
readonly duration: number;
|
|
1014
|
-
readonly direction: TransitionDirection;
|
|
1015
|
-
readonly easing: Easing;
|
|
1016
|
-
}
|
|
1017
|
-
|
|
1018
|
-
type TransitionType = 'TANS_NONE' | 'INSTANT' | 'DISSOLVE' | 'SMART_ANIMATE' | 'MOVE_IN' | 'MOVE_OUT' | 'PUSH' | 'SLIDE_IN' | 'SLIDE_OUT' | 'DISPLACE'
|
|
1019
|
-
|
|
1020
|
-
type TransitionDirection = 'LEFT' | 'RIGHT' | 'TOP' | 'BOTTOM'
|
|
1021
|
-
interface Easing{
|
|
1022
|
-
readonly type: EasingType;
|
|
1023
|
-
readonly easingFunctionCubicBezier: {
|
|
1024
|
-
x1: number;
|
|
1025
|
-
x2: number;
|
|
1026
|
-
y1: number;
|
|
1027
|
-
y2: number;
|
|
1028
|
-
};
|
|
1029
|
-
}
|
|
1030
|
-
|
|
1031
|
-
type EasingType = 'LINEAR' | 'EASE_IN' | 'EASE_OUT' | 'EASE_IN_AND_OUT' | 'EASE_IN_BACK' | 'EASE_OUT_BACK' | 'EASE_IN_AND_OUT_BACK' | 'CUSTOM_CUBIC_BEZIER'
|
|
1032
|
-
interface Trigger{
|
|
1033
|
-
readonly type: TriggerType;
|
|
1034
|
-
readonly delay: number;
|
|
1035
|
-
}
|
|
1036
|
-
type TriggerType = 'ON_CLICK' | 'ON_DRAG' | 'ON_HOVER' | 'ON_PRESS' | 'MOUSE_ENTER' | 'MOUSE_LEAVE' | 'MOUSE_DOWN' | 'MOUSE_UP' | 'AFTER_DELAY'
|
|
1037
|
-
|
|
1038
|
-
interface ArcData {
|
|
1039
|
-
/**
|
|
1040
|
-
* 起点弧度
|
|
1041
|
-
*/
|
|
1042
|
-
startingAngle: number
|
|
1043
|
-
/**
|
|
1044
|
-
* 终点弧度
|
|
1045
|
-
*/
|
|
1046
|
-
endingAngle?: number
|
|
1047
|
-
/**
|
|
1048
|
-
* 内径
|
|
1049
|
-
*/
|
|
1050
|
-
innerRadius: number
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
export { CreateStyleConfig };
|
|
1054
|
-
|
|
1055
1068
|
declare global {
|
|
1056
1069
|
const mastergo: PluginAPI
|
|
1057
1070
|
const mg: PluginAPI
|
|
@@ -1109,7 +1122,7 @@ declare global {
|
|
|
1109
1122
|
hyperlink: Hyperlink
|
|
1110
1123
|
}
|
|
1111
1124
|
|
|
1112
|
-
type PluginEventType = 'selectionchange' | 'currentpagechange' | 'close' | 'themechange'
|
|
1125
|
+
type PluginEventType = 'selectionchange' | 'currentpagechange' | 'close' | 'themechange' | 'drop'
|
|
1113
1126
|
type ThemeColor = 'dark' | 'light'
|
|
1114
1127
|
|
|
1115
1128
|
interface PluginAPI {
|
|
@@ -1649,7 +1662,7 @@ declare global {
|
|
|
1649
1662
|
paddingLeft: number
|
|
1650
1663
|
}
|
|
1651
1664
|
|
|
1652
|
-
|
|
1665
|
+
interface RowsColsLayoutGrid {
|
|
1653
1666
|
readonly gridType: "ROWS" | "COLUMNS"
|
|
1654
1667
|
|
|
1655
1668
|
readonly alignment: "LEFT" | "RIGHT" | "STRETCH" | "CENTER"
|
|
@@ -1664,7 +1677,7 @@ declare global {
|
|
|
1664
1677
|
readonly name?: string
|
|
1665
1678
|
}
|
|
1666
1679
|
|
|
1667
|
-
|
|
1680
|
+
interface GridLayoutGrid {
|
|
1668
1681
|
readonly gridType: "GRID"
|
|
1669
1682
|
|
|
1670
1683
|
readonly sectionSize: number
|
|
@@ -1676,7 +1689,7 @@ declare global {
|
|
|
1676
1689
|
}
|
|
1677
1690
|
|
|
1678
1691
|
|
|
1679
|
-
|
|
1692
|
+
type LayoutGrid = RowsColsLayoutGrid | GridLayoutGrid
|
|
1680
1693
|
|
|
1681
1694
|
interface FrameContainerMixin extends AutoLayout {
|
|
1682
1695
|
clipsContent: boolean
|
|
@@ -1987,6 +2000,96 @@ declare global {
|
|
|
1987
2000
|
setRangeTextCase(start: number, end: number, textCase: TextCase): void
|
|
1988
2001
|
}
|
|
1989
2002
|
|
|
2003
|
+
|
|
2004
|
+
interface CreateStyleConfig {
|
|
2005
|
+
name: string;
|
|
2006
|
+
/**
|
|
2007
|
+
* layerId
|
|
2008
|
+
*/
|
|
2009
|
+
id: string;
|
|
2010
|
+
description?: string;
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
interface FlowStartingPoint {
|
|
2014
|
+
name: string
|
|
2015
|
+
id: string
|
|
2016
|
+
flowId: string
|
|
2017
|
+
description: string
|
|
2018
|
+
}
|
|
2019
|
+
interface Reaction {
|
|
2020
|
+
readonly trigger: Trigger;
|
|
2021
|
+
readonly action?: Action;
|
|
2022
|
+
}
|
|
2023
|
+
interface Action {
|
|
2024
|
+
readonly type: ActionType;
|
|
2025
|
+
readonly destinationId: string;
|
|
2026
|
+
readonly navigation: Navigation;
|
|
2027
|
+
readonly transition: Transition;
|
|
2028
|
+
readonly url: string;
|
|
2029
|
+
readonly scrollToXOffset?: number;
|
|
2030
|
+
readonly scrollToYOffset?: number;
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
type ActionType = 'BACK' | 'NODE'| 'URL'| 'CLOSE'| 'NONE';
|
|
2034
|
+
|
|
2035
|
+
type Navigation = 'NAVIGATE' | 'OVERLAY' | 'SWAP_OVERLAY' | 'SCROLL_TO';
|
|
2036
|
+
|
|
2037
|
+
interface Transition {
|
|
2038
|
+
readonly type: TransitionType;
|
|
2039
|
+
readonly duration: number;
|
|
2040
|
+
readonly direction: TransitionDirection;
|
|
2041
|
+
readonly easing: Easing;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
type TransitionType = 'TANS_NONE' | 'INSTANT' | 'DISSOLVE' | 'SMART_ANIMATE' | 'MOVE_IN' | 'MOVE_OUT' | 'PUSH' | 'SLIDE_IN' | 'SLIDE_OUT' | 'DISPLACE'
|
|
2045
|
+
|
|
2046
|
+
type TransitionDirection = 'LEFT' | 'RIGHT' | 'TOP' | 'BOTTOM'
|
|
2047
|
+
interface Easing{
|
|
2048
|
+
readonly type: EasingType;
|
|
2049
|
+
readonly easingFunctionCubicBezier: {
|
|
2050
|
+
x1: number;
|
|
2051
|
+
x2: number;
|
|
2052
|
+
y1: number;
|
|
2053
|
+
y2: number;
|
|
2054
|
+
};
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
type EasingType = 'LINEAR' | 'EASE_IN' | 'EASE_OUT' | 'EASE_IN_AND_OUT' | 'EASE_IN_BACK' | 'EASE_OUT_BACK' | 'EASE_IN_AND_OUT_BACK' | 'CUSTOM_CUBIC_BEZIER'
|
|
2058
|
+
interface Trigger{
|
|
2059
|
+
readonly type: TriggerType;
|
|
2060
|
+
readonly delay: number;
|
|
2061
|
+
}
|
|
2062
|
+
type TriggerType = 'ON_CLICK' | 'ON_DRAG' | 'ON_HOVER' | 'ON_PRESS' | 'MOUSE_ENTER' | 'MOUSE_LEAVE' | 'MOUSE_DOWN' | 'MOUSE_UP' | 'AFTER_DELAY'
|
|
2063
|
+
|
|
2064
|
+
interface ArcData {
|
|
2065
|
+
/**
|
|
2066
|
+
* 起点弧度
|
|
2067
|
+
*/
|
|
2068
|
+
startingAngle: number
|
|
2069
|
+
/**
|
|
2070
|
+
* 终点弧度
|
|
2071
|
+
*/
|
|
2072
|
+
endingAngle?: number
|
|
2073
|
+
/**
|
|
2074
|
+
* 内径
|
|
2075
|
+
*/
|
|
2076
|
+
innerRadius: number
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2079
|
+
interface PluginDrop {
|
|
2080
|
+
clientX: number
|
|
2081
|
+
clientY: number
|
|
2082
|
+
dropMetadata?: any
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
interface DropEvent {
|
|
2086
|
+
x: number
|
|
2087
|
+
y: number
|
|
2088
|
+
absoluteX: number
|
|
2089
|
+
absoluteY: number
|
|
2090
|
+
dropMetadata?: any
|
|
2091
|
+
}
|
|
2092
|
+
|
|
1990
2093
|
type BaseNode = DocumentNode | PageNode | SceneNode
|
|
1991
2094
|
|
|
1992
2095
|
/**
|
|
@@ -2029,79 +2132,4 @@ declare global {
|
|
|
2029
2132
|
| 'CONNECTOR'
|
|
2030
2133
|
}
|
|
2031
2134
|
|
|
2032
|
-
export interface CreateStyleConfig {
|
|
2033
|
-
name: string;
|
|
2034
|
-
/**
|
|
2035
|
-
* layerId
|
|
2036
|
-
*/
|
|
2037
|
-
id: string;
|
|
2038
|
-
description?: string;
|
|
2039
|
-
}
|
|
2040
|
-
|
|
2041
|
-
interface FlowStartingPoint {
|
|
2042
|
-
name: string
|
|
2043
|
-
id: string
|
|
2044
|
-
flowId: string
|
|
2045
|
-
description: string
|
|
2046
|
-
}
|
|
2047
|
-
interface Reaction {
|
|
2048
|
-
readonly trigger: Trigger;
|
|
2049
|
-
readonly action?: Action;
|
|
2050
|
-
}
|
|
2051
|
-
interface Action {
|
|
2052
|
-
readonly type: ActionType;
|
|
2053
|
-
readonly destinationId: string;
|
|
2054
|
-
readonly navigation: Navigation;
|
|
2055
|
-
readonly transition: Transition;
|
|
2056
|
-
readonly url: string;
|
|
2057
|
-
readonly scrollToXOffset?: number;
|
|
2058
|
-
readonly scrollToYOffset?: number;
|
|
2059
|
-
}
|
|
2060
|
-
|
|
2061
|
-
type ActionType = 'BACK' | 'NODE'| 'URL'| 'CLOSE'| 'NONE';
|
|
2062
|
-
|
|
2063
|
-
type Navigation = 'NAVIGATE' | 'OVERLAY' | 'SWAP_OVERLAY' | 'SCROLL_TO';
|
|
2064
|
-
|
|
2065
|
-
interface Transition {
|
|
2066
|
-
readonly type: TransitionType;
|
|
2067
|
-
readonly duration: number;
|
|
2068
|
-
readonly direction: TransitionDirection;
|
|
2069
|
-
readonly easing: Easing;
|
|
2070
|
-
}
|
|
2071
|
-
|
|
2072
|
-
type TransitionType = 'TANS_NONE' | 'INSTANT' | 'DISSOLVE' | 'SMART_ANIMATE' | 'MOVE_IN' | 'MOVE_OUT' | 'PUSH' | 'SLIDE_IN' | 'SLIDE_OUT' | 'DISPLACE'
|
|
2073
|
-
|
|
2074
|
-
type TransitionDirection = 'LEFT' | 'RIGHT' | 'TOP' | 'BOTTOM'
|
|
2075
|
-
interface Easing{
|
|
2076
|
-
readonly type: EasingType;
|
|
2077
|
-
readonly easingFunctionCubicBezier: {
|
|
2078
|
-
x1: number;
|
|
2079
|
-
x2: number;
|
|
2080
|
-
y1: number;
|
|
2081
|
-
y2: number;
|
|
2082
|
-
};
|
|
2083
|
-
}
|
|
2084
|
-
|
|
2085
|
-
type EasingType = 'LINEAR' | 'EASE_IN' | 'EASE_OUT' | 'EASE_IN_AND_OUT' | 'EASE_IN_BACK' | 'EASE_OUT_BACK' | 'EASE_IN_AND_OUT_BACK' | 'CUSTOM_CUBIC_BEZIER'
|
|
2086
|
-
interface Trigger{
|
|
2087
|
-
readonly type: TriggerType;
|
|
2088
|
-
readonly delay: number;
|
|
2089
|
-
}
|
|
2090
|
-
type TriggerType = 'ON_CLICK' | 'ON_DRAG' | 'ON_HOVER' | 'ON_PRESS' | 'MOUSE_ENTER' | 'MOUSE_LEAVE' | 'MOUSE_DOWN' | 'MOUSE_UP' | 'AFTER_DELAY'
|
|
2091
|
-
|
|
2092
|
-
interface ArcData {
|
|
2093
|
-
/**
|
|
2094
|
-
* 起点弧度
|
|
2095
|
-
*/
|
|
2096
|
-
startingAngle: number
|
|
2097
|
-
/**
|
|
2098
|
-
* 终点弧度
|
|
2099
|
-
*/
|
|
2100
|
-
endingAngle?: number
|
|
2101
|
-
/**
|
|
2102
|
-
* 内径
|
|
2103
|
-
*/
|
|
2104
|
-
innerRadius: number
|
|
2105
|
-
}
|
|
2106
|
-
|
|
2107
2135
|
export { }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastergo/plugin-typings",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "MasterGo插件API声明文件",
|
|
5
5
|
"main": "",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"lib": "lib"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@mastergo/plugin-utils": "^0.3.0",
|
|
32
31
|
"@rollup/plugin-commonjs": "^20.0.0",
|
|
33
32
|
"@rollup/plugin-json": "^4.1.0",
|
|
34
33
|
"@rollup/plugin-node-resolve": "^13.0.4",
|
package/CHANGELOG.md
DELETED
|
@@ -1,532 +0,0 @@
|
|
|
1
|
-
## [1.3.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.35.0...v1.3.1) (2022-10-08)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Features
|
|
5
|
-
|
|
6
|
-
* 调试流水线 ([bd41734](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/bd4173429650c2e525f5160392aed7760c0e86f4))
|
|
7
|
-
* 调整changelog ([8af8768](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/8af876856e6ec1729c70cf84180ad7afd6504340))
|
|
8
|
-
* 放开publish ([34efcd8](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/34efcd8db8e8d842ebf73c591716b015497c1d0c))
|
|
9
|
-
* 连接线增加bound ([034c933](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/034c933eb4a9fe36daed102051e44de9cd171797))
|
|
10
|
-
* 配置流水线yml和打包脚本 ([a8b8690](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/a8b8690d3fe9e2b2b3a88fd756c877bf89573647))
|
|
11
|
-
* 删除密码 ([39ca320](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/39ca320f21a06b17c4b8c241e8d64bfed61999bf))
|
|
12
|
-
* 限定master ([954c82f](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/954c82feb286d5da749b8b4e5516fd939c39978f))
|
|
13
|
-
* 修复loadFontAsync的返回类型错误问题 ([6cf2e61](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/6cf2e61ed46cfe49a9cc6e0e305f74c8cd7fc7e7))
|
|
14
|
-
* 移除test ([8c809e5](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/8c809e503f4d586cb15326ed5f7fd968cb0307f9))
|
|
15
|
-
* 增加锁定比例字段 ([722beee](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/722beee358cc912dbee60317986e6dbf49fd042c))
|
|
16
|
-
* 增加自动布局相关定义 ([03395ba](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/03395bad21c96da46632fdc213f1163e7d4d6181))
|
|
17
|
-
* 增加ignore ([5ae6f1a](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/5ae6f1a0dbd60e6af08ec03d34541ca007175ca0))
|
|
18
|
-
* 指定node版本 ([2ef59c2](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/2ef59c2b41fc26079c5a02e5c8f0a15c6f6a3549))
|
|
19
|
-
* 指定node版本 ([07d627d](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/07d627d578f1318083554467b44037cf806e99cf))
|
|
20
|
-
* 指定node版本 ([fb84aba](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/fb84aba7a0e0f2a824530ef2394449059226b37f))
|
|
21
|
-
* 指定node版本 ([e779846](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/e779846c00b6b903e6a0264114048590e4ed9684))
|
|
22
|
-
* 指定node版本 ([fd20e10](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/fd20e10535ad2efc4b79916babf6ecc9ac3c982f))
|
|
23
|
-
* yml升级 ([5823c94](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/5823c944d67afa2fa8d27c0333c47c4d53b3792b))
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
# [1.3.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.35.0...v1.3.0) (2022-09-30)
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
### Features
|
|
31
|
-
|
|
32
|
-
* 连接线增加bound ([034c933](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/034c933eb4a9fe36daed102051e44de9cd171797))
|
|
33
|
-
* 修复loadFontAsync的返回类型错误问题 ([6cf2e61](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/6cf2e61ed46cfe49a9cc6e0e305f74c8cd7fc7e7))
|
|
34
|
-
* 增加锁定比例字段 ([722beee](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/722beee358cc912dbee60317986e6dbf49fd042c))
|
|
35
|
-
* 增加自动布局相关定义 ([03395ba](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/03395bad21c96da46632fdc213f1163e7d4d6181))
|
|
36
|
-
|
|
37
|
-
# [1.2.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.35.0...v1.2.0) (2022-09-25)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
# [1.1.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.33.1...v1.1.0) (2022-09-16)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
### Bug Fixes
|
|
45
|
-
|
|
46
|
-
* 限制连接线的strokeAlign为center ([10a8b74](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/10a8b74dcecd42434c818a9c689c0cd30a6336bb))
|
|
47
|
-
* 修复connector的strokeAlign可写的bug ([94f5446](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/94f5446dd71cf3b99c68ecd4ed725b80c712743b))
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
### Features
|
|
51
|
-
|
|
52
|
-
* 添加textcase类型 ([7ca6a6d](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/7ca6a6d413ea19155b1375e9493afa34213afcb9))
|
|
53
|
-
* 完善连接点类型 ([a9933cb](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/a9933cba72167c2b5cdac8e7451961e9b9d72bd2))
|
|
54
|
-
* 移除超链接,等待接入新版 ([f8ad6c8](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/f8ad6c81d92b380ba099d1ac0263f5e60da81079))
|
|
55
|
-
* 移除createText参数 ([8d94515](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/8d9451549d6e1d939a088cca8dd5db9a92bf8d37))
|
|
56
|
-
* 增加connector类型typings ([78492b7](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/78492b7b7ad15f5363f4a33e8424a20009c944ab))
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
# [1.0.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.33.0...v1.0.0) (2022-09-02)
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
### Bug Fixes
|
|
64
|
-
|
|
65
|
-
* 修复strokeStyle type错误问题 ([a2bc901](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/a2bc9014da31e0ad6ec55966b646b3ba3dec66a7))
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
### Features
|
|
69
|
-
|
|
70
|
-
* 补充lineNode strokeCap ([dedf49f](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/dedf49fe10e8d6efdfdd2bfe1350997cec58df3a))
|
|
71
|
-
* 补充scaleMode ([1678a53](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/1678a53e5901caf95ffa3113b90a032c5475c5bf))
|
|
72
|
-
* 更新package设置及readme ([e99c60a](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/e99c60aa8f5fdc7c49b60e9967217e4034db6ffd))
|
|
73
|
-
* 整理npm包,移除工具函数 ([0ca34b8](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/0ca34b85e1ff38c3d15d235fdf2bc175c36e00ef))
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
# [1.0.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.33.0...v1.0.0) (2022-09-02)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
### Bug Fixes
|
|
81
|
-
|
|
82
|
-
* 修复strokeStyle type错误问题 ([a2bc901](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/a2bc9014da31e0ad6ec55966b646b3ba3dec66a7))
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
### Features
|
|
86
|
-
|
|
87
|
-
* 补充lineNode strokeCap ([dedf49f](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/dedf49fe10e8d6efdfdd2bfe1350997cec58df3a))
|
|
88
|
-
* 补充scaleMode ([1678a53](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/1678a53e5901caf95ffa3113b90a032c5475c5bf))
|
|
89
|
-
* 更新package设置及readme ([e99c60a](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/e99c60aa8f5fdc7c49b60e9967217e4034db6ffd))
|
|
90
|
-
* 整理npm包,移除工具函数 ([0ca34b8](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/0ca34b85e1ff38c3d15d235fdf2bc175c36e00ef))
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
# [1.0.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.33.0...v1.0.0) (2022-09-02)
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
### Bug Fixes
|
|
98
|
-
|
|
99
|
-
* 修复strokeStyle type错误问题 ([a2bc901](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/a2bc9014da31e0ad6ec55966b646b3ba3dec66a7))
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
### Features
|
|
103
|
-
|
|
104
|
-
* 补充lineNode strokeCap ([dedf49f](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/dedf49fe10e8d6efdfdd2bfe1350997cec58df3a))
|
|
105
|
-
* 补充scaleMode ([1678a53](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/1678a53e5901caf95ffa3113b90a032c5475c5bf))
|
|
106
|
-
* 更新package设置及readme ([e99c60a](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/e99c60aa8f5fdc7c49b60e9967217e4034db6ffd))
|
|
107
|
-
* 整理npm包,移除工具函数 ([0ca34b8](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/0ca34b85e1ff38c3d15d235fdf2bc175c36e00ef))
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
# [1.1.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.33.0...v1.1.0) (2022-09-02)
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
### Bug Fixes
|
|
115
|
-
|
|
116
|
-
* 修复strokeStyle type错误问题 ([a2bc901](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/a2bc9014da31e0ad6ec55966b646b3ba3dec66a7))
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
### Features
|
|
120
|
-
|
|
121
|
-
* 补充lineNode strokeCap ([dedf49f](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/dedf49fe10e8d6efdfdd2bfe1350997cec58df3a))
|
|
122
|
-
* 补充scaleMode ([1678a53](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/1678a53e5901caf95ffa3113b90a032c5475c5bf))
|
|
123
|
-
* 更新package设置及readme ([e99c60a](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/e99c60aa8f5fdc7c49b60e9967217e4034db6ffd))
|
|
124
|
-
* 整理npm包,移除工具函数 ([0ca34b8](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/0ca34b85e1ff38c3d15d235fdf2bc175c36e00ef))
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
# [0.4.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.29.0...v0.4.0) (2022-07-22)
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
### Bug Fixes
|
|
132
|
-
|
|
133
|
-
* 修复booleanoperation的type错误 ([c44b0b9](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/c44b0b9018e59b12ba80ecf6a801c0b0cedbcbb3))
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
### Features
|
|
137
|
-
|
|
138
|
-
* 添加单边描边类型 ([cf13950](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/cf13950c2250e830dc7aa07f6bbd2cc239888514))
|
|
139
|
-
* 增加获取自定义样式列表接口 ([a2cb279](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/a2cb27961a9cc6ddf903eaaf784b70c6e7236c01))
|
|
140
|
-
* 增加document name 属性 ([3bdbc53](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/3bdbc53b45aaf6d85d4ebccafb42f920facdf329))
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
## [0.3.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.29.0...v0.3.1) (2022-07-08)
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
# [0.3.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.29.0...v0.3.0) (2022-07-08)
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
# [0.3.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.29.0...v0.3.0) (2022-07-08)
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
# [0.2.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.28.0...v0.2.0) (2022-07-01)
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
# [0.27.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.26.1...v0.27.0) (2022-01-25)
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
### Features
|
|
164
|
-
|
|
165
|
-
* new mg api ([34d673b](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/34d673b0880a1c09c2c871c120a2ab59130e02f2))
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
## [0.26.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.26.0...v0.26.1) (2021-12-23)
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
# [0.26.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.25.1...v0.26.0) (2021-12-23)
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
### Features
|
|
177
|
-
|
|
178
|
-
* 添加颜色转换函数 ([337b772](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/337b772059fda076afc8236c88be65fedcf0c1fd))
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
## [0.25.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.25.0...v0.25.1) (2021-12-23)
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
# [0.25.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.24.0...v0.25.0) (2021-12-22)
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
### Features
|
|
190
|
-
|
|
191
|
-
* 添加 paint 工具函数 ([49ffaa7](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/49ffaa70a001710634997d9b930e57873a92cead))
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
# [0.24.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.23.1...v0.24.0) (2021-12-21)
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
### Features
|
|
199
|
-
|
|
200
|
-
* add useAbsoluteBounds for ExportSettings ([5d76ba1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/5d76ba1e3881a7c1c18c8b10c986b6bb501fdcdb))
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
## [0.23.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.23.0...v0.23.1) (2021-12-21)
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
### Features
|
|
208
|
-
|
|
209
|
-
* add visible option for ShowUIOptions ([23d7bec](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/23d7bec716fd559bc4cd13db629b1f780a2c5e10))
|
|
210
|
-
* update ([f007c52](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/f007c52db9b2138d2e6f7853a917e1e777246ca6))
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
# [0.23.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.22.1...v0.23.0) (2021-12-21)
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
### Features
|
|
218
|
-
|
|
219
|
-
* add relativeTransform ([315c9fe](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/315c9fe49230f4433f3f1e3caea4375f6cb5d7a6))
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
## [0.22.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.11.1...v0.22.1) (2021-12-20)
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
# [0.22.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.21.0...v0.22.0) (2021-11-30)
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
### Bug Fixes
|
|
231
|
-
|
|
232
|
-
* change showUI interface ([68508f3](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/68508f34c9f1ba9beffe3dd85d0a703da279a728))
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
# [0.21.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.20.0...v0.21.0) (2021-11-17)
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
### Features
|
|
240
|
-
|
|
241
|
-
* add text superlink interfacee ([4ad64db](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/4ad64db3a472daeb8dd10ecbb281aa8c8e677c0d))
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
# [0.20.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.19.0...v0.20.0) (2021-11-17)
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
### Bug Fixes
|
|
249
|
-
|
|
250
|
-
* fix notify ([cba2945](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/cba29456843fd38bece7bc19249986c65fe9dcd2))
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
# [0.19.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.18.0...v0.19.0) (2021-11-17)
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
### Bug Fixes
|
|
258
|
-
|
|
259
|
-
* fix notify interface ([46c9d6e](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/46c9d6e905685d2128a13dc662f09584ca49ef4f))
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
# [0.18.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.17.0...v0.18.0) (2021-11-17)
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
### Bug Fixes
|
|
267
|
-
|
|
268
|
-
* remove useless imagePaint properties ([601cc04](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/601cc04383d719fea946f3029fb236b08cf38d7b))
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
# [0.17.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.16.0...v0.17.0) (2021-11-17)
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
### Features
|
|
276
|
-
|
|
277
|
-
* add image interface and createImage ([7a46f2c](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/7a46f2c3ef3927be4dab146db80212922d0c9d05))
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
# [0.16.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.15.0...v0.16.0) (2021-11-09)
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
### Bug Fixes
|
|
285
|
-
|
|
286
|
-
* setRangeTextDecoration ([bb462cc](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/bb462ccf75875de650d1c9fc455f55443c03a2a1))
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
# [0.15.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.14.0...v0.15.0) (2021-11-09)
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
### Bug Fixes
|
|
294
|
-
|
|
295
|
-
* setRangeLineHeight ([49fb33e](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/49fb33e2eff36e0c97ae8060903310bfde4caa78))
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
# [0.14.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.13.0...v0.14.0) (2021-11-09)
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
### Bug Fixes
|
|
303
|
-
|
|
304
|
-
* lineheight ([173e438](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/173e438e7c872926c72c8c631e3a71883165fbcd))
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
# [0.13.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.12.0...v0.13.0) (2021-11-09)
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
### Bug Fixes
|
|
312
|
-
|
|
313
|
-
* range letterspacing ([176d0ab](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/176d0abb067604e1c2163bea1d28425fca50d315))
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
# [0.12.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.10.0...v0.12.0) (2021-11-09)
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
### Bug Fixes
|
|
321
|
-
|
|
322
|
-
* text setRangeFont ([bc3308c](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/bc3308c4fc7b037dfa4f53675d89893c6ffcbb22))
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
### Features
|
|
326
|
-
|
|
327
|
-
* add removed ([61c06ce](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/61c06ce0d2c7f1921d8ba5f1c0b2156f952a5674))
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
# [0.22.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.21.0...v0.22.0) (2021-11-30)
|
|
332
|
-
|
|
333
|
-
### Bug Fixes
|
|
334
|
-
|
|
335
|
-
- change showUI interface ([68508f3](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/68508f34c9f1ba9beffe3dd85d0a703da279a728))
|
|
336
|
-
|
|
337
|
-
# [0.21.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.20.0...v0.21.0) (2021-11-17)
|
|
338
|
-
|
|
339
|
-
### Features
|
|
340
|
-
|
|
341
|
-
- add text superlink interfacee ([4ad64db](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/4ad64db3a472daeb8dd10ecbb281aa8c8e677c0d))
|
|
342
|
-
|
|
343
|
-
# [0.20.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.19.0...v0.20.0) (2021-11-17)
|
|
344
|
-
|
|
345
|
-
### Bug Fixes
|
|
346
|
-
|
|
347
|
-
- fix notify ([cba2945](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/cba29456843fd38bece7bc19249986c65fe9dcd2))
|
|
348
|
-
|
|
349
|
-
# [0.19.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.18.0...v0.19.0) (2021-11-17)
|
|
350
|
-
|
|
351
|
-
### Bug Fixes
|
|
352
|
-
|
|
353
|
-
- fix notify interface ([46c9d6e](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/46c9d6e905685d2128a13dc662f09584ca49ef4f))
|
|
354
|
-
|
|
355
|
-
# [0.18.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.17.0...v0.18.0) (2021-11-17)
|
|
356
|
-
|
|
357
|
-
### Bug Fixes
|
|
358
|
-
|
|
359
|
-
- remove useless imagePaint properties ([601cc04](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/601cc04383d719fea946f3029fb236b08cf38d7b))
|
|
360
|
-
|
|
361
|
-
# [0.17.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.16.0...v0.17.0) (2021-11-17)
|
|
362
|
-
|
|
363
|
-
### Features
|
|
364
|
-
|
|
365
|
-
- add image interface and createImage ([7a46f2c](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/7a46f2c3ef3927be4dab146db80212922d0c9d05))
|
|
366
|
-
|
|
367
|
-
# [0.16.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.15.0...v0.16.0) (2021-11-09)
|
|
368
|
-
|
|
369
|
-
### Bug Fixes
|
|
370
|
-
|
|
371
|
-
- setRangeTextDecoration ([bb462cc](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/bb462ccf75875de650d1c9fc455f55443c03a2a1))
|
|
372
|
-
|
|
373
|
-
# [0.15.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.14.0...v0.15.0) (2021-11-09)
|
|
374
|
-
|
|
375
|
-
### Bug Fixes
|
|
376
|
-
|
|
377
|
-
- setRangeLineHeight ([49fb33e](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/49fb33e2eff36e0c97ae8060903310bfde4caa78))
|
|
378
|
-
|
|
379
|
-
# [0.14.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.13.0...v0.14.0) (2021-11-09)
|
|
380
|
-
|
|
381
|
-
### Bug Fixes
|
|
382
|
-
|
|
383
|
-
- lineheight ([173e438](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/173e438e7c872926c72c8c631e3a71883165fbcd))
|
|
384
|
-
|
|
385
|
-
# [0.13.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.12.0...v0.13.0) (2021-11-09)
|
|
386
|
-
|
|
387
|
-
### Bug Fixes
|
|
388
|
-
|
|
389
|
-
- range letterspacing ([176d0ab](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/176d0abb067604e1c2163bea1d28425fca50d315))
|
|
390
|
-
|
|
391
|
-
# [0.12.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.11.0...v0.12.0) (2021-11-09)
|
|
392
|
-
|
|
393
|
-
### Bug Fixes
|
|
394
|
-
|
|
395
|
-
- text setRangeFont ([bc3308c](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/bc3308c4fc7b037dfa4f53675d89893c6ffcbb22))
|
|
396
|
-
|
|
397
|
-
# [0.11.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.10.0...v0.11.0) (2021-11-04)
|
|
398
|
-
|
|
399
|
-
### Features
|
|
400
|
-
|
|
401
|
-
- add removed ([61c06ce](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/61c06ce0d2c7f1921d8ba5f1c0b2156f952a5674))
|
|
402
|
-
|
|
403
|
-
# [0.10.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.9.1...v0.10.0) (2021-11-02)
|
|
404
|
-
|
|
405
|
-
## [0.9.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.9.0...v0.9.1) (2021-10-28)
|
|
406
|
-
|
|
407
|
-
### Features
|
|
408
|
-
|
|
409
|
-
- 补充组件与实例相关接口 ([0fb1957](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/0fb195794e27acd9d1dfa35de74b0aff1de57a60))
|
|
410
|
-
|
|
411
|
-
# [0.9.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.8.1...v0.9.0) (2021-10-28)
|
|
412
|
-
|
|
413
|
-
### Features
|
|
414
|
-
|
|
415
|
-
- 文本节点相关接口类型 ([0a917da](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/0a917dac5d8831929efe25b659ce27eb1d9ac2e8))
|
|
416
|
-
|
|
417
|
-
## [0.8.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.8.0...v0.8.1) (2021-10-27)
|
|
418
|
-
|
|
419
|
-
### Features
|
|
420
|
-
|
|
421
|
-
- 字体加载 api ([11f2243](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/11f224357d673e87d3745b575fde0afad364bc18))
|
|
422
|
-
|
|
423
|
-
# [0.8.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.7.1...v0.8.0) (2021-10-27)
|
|
424
|
-
|
|
425
|
-
### Features
|
|
426
|
-
|
|
427
|
-
- 添加 clone() 类型 ([64a2a28](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/64a2a287e231ab3a32ad12ae9a7c11d5864041f6))
|
|
428
|
-
|
|
429
|
-
## [0.7.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.7.0...v0.7.1) (2021-10-26)
|
|
430
|
-
|
|
431
|
-
### Bug Fixes
|
|
432
|
-
|
|
433
|
-
- BlurEffect 增加 blendMode ([c1b7704](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/c1b770467eda18cb958fe81f71dc89bed02749ad))
|
|
434
|
-
|
|
435
|
-
# [0.7.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.6.1...v0.7.0) (2021-10-26)
|
|
436
|
-
|
|
437
|
-
### Features
|
|
438
|
-
|
|
439
|
-
- 补充样式相关的 api ([6c605e5](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/6c605e5763553403601d313155c3a258526f4526))
|
|
440
|
-
|
|
441
|
-
## [0.6.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.6.0...v0.6.1) (2021-10-18)
|
|
442
|
-
|
|
443
|
-
### Features
|
|
444
|
-
|
|
445
|
-
- 支持 flexGrow 和 alignSelf ([677f7dd](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/677f7dd4c72ebe27f23bf3848ddd64375a86c5a5))
|
|
446
|
-
|
|
447
|
-
# [0.6.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.5.0...v0.6.0) (2021-10-11)
|
|
448
|
-
|
|
449
|
-
### Features
|
|
450
|
-
|
|
451
|
-
- support ui.notify() & mastergo.saveVersionHistoryAsync ([6daf854](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/6daf8542ded688308cc0bc1d3aeba04ab5607af8))
|
|
452
|
-
|
|
453
|
-
# [0.5.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.4.9...v0.5.0) (2021-10-09)
|
|
454
|
-
|
|
455
|
-
### Features
|
|
456
|
-
|
|
457
|
-
- auto layout ([d1689c1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/d1689c1d05fb36e610746e7905446e740c9e8401))
|
|
458
|
-
|
|
459
|
-
## [0.4.9](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.4.8...v0.4.9) (2021-09-28)
|
|
460
|
-
|
|
461
|
-
### Bug Fixes
|
|
462
|
-
|
|
463
|
-
- some tweak ([35f0469](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/35f0469a5e7d42ab3a3d2bc9d20682bbb58bf49e))
|
|
464
|
-
|
|
465
|
-
## [0.4.8](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.4.7...v0.4.8) (2021-09-26)
|
|
466
|
-
|
|
467
|
-
### Bug Fixes
|
|
468
|
-
|
|
469
|
-
- export typings ([7f5438d](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/7f5438d2dcda00f27a6fdf484c4a391766938ad8))
|
|
470
|
-
|
|
471
|
-
## [0.4.7](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.4.6...v0.4.7) (2021-09-24)
|
|
472
|
-
|
|
473
|
-
### Bug Fixes
|
|
474
|
-
|
|
475
|
-
- rename bound to bounds ([4e7ce3f](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/4e7ce3fe80a9d5a754f8b4b3b89aa01c4725a33e))
|
|
476
|
-
|
|
477
|
-
## [0.4.6](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.4.5...v0.4.6) (2021-09-24)
|
|
478
|
-
|
|
479
|
-
### Bug Fixes
|
|
480
|
-
|
|
481
|
-
- the type of ui.onmessage ([c870021](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/c8700216a0c75592ce1fdebe339e83f1471231e2))
|
|
482
|
-
|
|
483
|
-
## [0.4.5](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.4.4...v0.4.5) (2021-09-24)
|
|
484
|
-
|
|
485
|
-
### Bug Fixes
|
|
486
|
-
|
|
487
|
-
- tweak the type of ui.postMessage ([9c2e9a6](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/9c2e9a6b1045e0a559d76a4cc41d451e7d983743))
|
|
488
|
-
|
|
489
|
-
## [0.4.4](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.4.3...v0.4.4) (2021-09-23)
|
|
490
|
-
|
|
491
|
-
### Bug Fixes
|
|
492
|
-
|
|
493
|
-
- the off type ([77973a2](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/77973a2f0016bcf595783440eb3c5a490ad2eb86))
|
|
494
|
-
- types ([6fe3389](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/6fe3389f4b823261deb670e9568ccc29ddb16472))
|
|
495
|
-
|
|
496
|
-
## [0.4.3](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.4.2...v0.4.3) (2021-09-23)
|
|
497
|
-
|
|
498
|
-
### Bug Fixes
|
|
499
|
-
|
|
500
|
-
- PageNode's children should be SceneNode ([c0f2381](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/c0f23811bb81b56849dff4957c052f196207af66))
|
|
501
|
-
|
|
502
|
-
## [0.4.2](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.4.1...v0.4.2) (2021-09-23)
|
|
503
|
-
|
|
504
|
-
### Bug Fixes
|
|
505
|
-
|
|
506
|
-
- tweak typings ([51678a8](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/51678a874b5712630538e2a6a1307076bcb5029c))
|
|
507
|
-
|
|
508
|
-
## [0.4.1](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.4.0...v0.4.1) (2021-09-22)
|
|
509
|
-
|
|
510
|
-
### Bug Fixes
|
|
511
|
-
|
|
512
|
-
- upgrade layout mixin ([08f1ee7](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/08f1ee7fb1c3300b3ebd618d57e5713ab929d338))
|
|
513
|
-
|
|
514
|
-
# [0.4.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.3.0...v0.4.0) (2021-09-22)
|
|
515
|
-
|
|
516
|
-
### Features
|
|
517
|
-
|
|
518
|
-
- support children methods ([f52e447](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/f52e44764b1018ced4be14c06a01d318b8d4fdff))
|
|
519
|
-
|
|
520
|
-
# [0.3.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.2.0...v0.3.0) (2021-09-17)
|
|
521
|
-
|
|
522
|
-
### Features
|
|
523
|
-
|
|
524
|
-
- support some methods ([fc9fe0a](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/fc9fe0aaebc858dc6d1bd7b4819ab44f750b37dd))
|
|
525
|
-
|
|
526
|
-
# [0.2.0](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/compare/v0.1.0...v0.2.0) (2021-09-17)
|
|
527
|
-
|
|
528
|
-
### Bug Fixes
|
|
529
|
-
|
|
530
|
-
- concat dts ([25d3643](https://gitlab.lanhuapp.com/master/frontend/master-plugin-utils/commit/25d3643669f59891bb6a8b301b04d59b3f55cfd9))
|
|
531
|
-
|
|
532
|
-
# 0.1.0 (2021-09-17)
|