@labelbee/lb-annotation 1.14.0-alpha.2 → 1.14.0-alpha.3
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/_virtual/MathUtilsWorker.js +8 -1
- package/dist/_virtual/_rollup-plugin-web-worker-loader__helper__browser__createBase64WorkerFactory.js +35 -2
- package/dist/_virtual/filterBoxWorker.js +8 -1
- package/dist/_virtual/highlightWorker.js +8 -1
- package/dist/assets/attributeIcon/icon_canvasEdit0.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_canvasEdit1.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_canvasEdit2.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_canvasEdit3.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_canvasEdit4.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_canvasEdit5.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_canvasEdit6.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_canvasEdit7.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_canvasEdit8.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_canvasEdit_miss.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_cuboidFAB.svg.js +5 -5
- package/dist/assets/attributeIcon/icon_cuboidLeft.svg.js +5 -7
- package/dist/assets/attributeIcon/icon_cuboidMore.svg.js +5 -5
- package/dist/assets/attributeIcon/icon_cuboidRight.svg.js +5 -5
- package/dist/assets/attributeIcon/icon_cuboidTop.svg.js +5 -12
- package/dist/assets/attributeIcon/icon_editFEN.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_editHUANG.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_editLAN.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_editLV.svg.js +5 -1
- package/dist/assets/attributeIcon/icon_editQING.svg.js +5 -1
- package/dist/constant/annotation.js +127 -1
- package/dist/constant/annotationTask.js +30 -1
- package/dist/constant/defaultConfig.js +266 -1
- package/dist/constant/keyCode.js +38 -1
- package/dist/constant/style.js +98 -1
- package/dist/constant/tool.js +236 -1
- package/dist/core/index.js +150 -1
- package/dist/core/pointCloud/OrbitControls.js +665 -1
- package/dist/core/pointCloud/PCDLoader.js +260 -2
- package/dist/core/pointCloud/annotation.js +215 -1
- package/dist/core/pointCloud/cache.js +53 -1
- package/dist/core/pointCloud/index.js +991 -5
- package/dist/core/pointCloud/matrix.js +138 -1
- package/dist/core/pointCloud/segmentation.js +144 -0
- package/dist/core/pointCloud/selector/Sse3dLassoSelector.js +26 -0
- package/dist/core/pointCloud/selector/Sse3dSelector.js +16 -0
- package/dist/core/scheduler.js +233 -1
- package/dist/core/toolOperation/LineToolOperation.js +1434 -1
- package/dist/core/toolOperation/ScribbleTool.js +292 -1
- package/dist/core/toolOperation/TextToolOperation.js +131 -1
- package/dist/core/toolOperation/ViewOperation.js +556 -1
- package/dist/core/toolOperation/basicToolOperation.js +881 -1
- package/dist/core/toolOperation/checkOperation.js +208 -1
- package/dist/core/toolOperation/cuboidOperation.js +754 -1
- package/dist/core/toolOperation/cuboidToggleButtonClass.js +152 -7
- package/dist/core/toolOperation/eventListener.js +37 -1
- package/dist/core/toolOperation/measureOperation.js +41 -1
- package/dist/core/toolOperation/pointCloud2dOperation.js +365 -1
- package/dist/core/toolOperation/pointOperation.js +696 -1
- package/dist/core/toolOperation/polygonOperation.js +1251 -1
- package/dist/core/toolOperation/rectOperation.js +1233 -1
- package/dist/core/toolOperation/segmentByRect.js +174 -1
- package/dist/core/toolOperation/tagOperation.js +201 -3
- package/dist/core/toolOperation/textAttributeClass.js +182 -16
- package/dist/index.js +185 -1
- package/dist/locales/constants.js +24 -1
- package/dist/locales/en_US/message.js +25 -1
- package/dist/locales/index.js +19 -1
- package/dist/locales/zh_CN/message.js +25 -1
- package/dist/newCore/CanvasScheduler.js +35 -1
- package/dist/types/core/pointCloud/segmentation.d.ts +0 -0
- package/dist/types/core/pointCloud/selector/Sse3dLassoSelector.d.ts +0 -0
- package/dist/types/core/pointCloud/selector/Sse3dSelector.d.ts +0 -0
- package/dist/utils/ActionsHistory.js +84 -1
- package/dist/utils/ImgUtils.js +23 -1
- package/dist/utils/MathUtils.js +385 -2
- package/dist/utils/VectorUtils.js +25 -1
- package/dist/utils/tool/AttributeUtils.js +218 -1
- package/dist/utils/tool/AxisUtils.js +340 -1
- package/dist/utils/tool/CanvasUtils.js +62 -1
- package/dist/utils/tool/CommonToolUtils.js +174 -1
- package/dist/utils/tool/CuboidUtils.js +704 -1
- package/dist/utils/tool/DblClickEventListener.js +102 -1
- package/dist/utils/tool/DrawUtils.js +492 -3
- package/dist/utils/tool/EnhanceCommonToolUtils.js +53 -1
- package/dist/utils/tool/ImgPosUtils.js +58 -1
- package/dist/utils/tool/LineToolUtils.js +261 -1
- package/dist/utils/tool/MarkerUtils.js +56 -1
- package/dist/utils/tool/PolygonUtils.js +460 -1
- package/dist/utils/tool/RectUtils.js +155 -1
- package/dist/utils/tool/RenderDomClass.js +57 -7
- package/dist/utils/tool/RenderDomUtils.js +21 -4
- package/dist/utils/tool/StyleUtils.js +31 -1
- package/dist/utils/tool/TagUtils.js +129 -1
- package/dist/utils/tool/UnitUtils.js +12 -1
- package/dist/utils/tool/ZoomUtils.js +72 -1
- package/dist/utils/tool/polygonTool.js +133 -1
- package/dist/utils/uuid.js +26 -1
- package/es/_virtual/MathUtilsWorker.js +6 -1
- package/es/_virtual/_rollup-plugin-web-worker-loader__helper__auto__createBase64WorkerFactory.js +12 -0
- package/es/_virtual/_rollup-plugin-web-worker-loader__helper__auto__isNodeJS.js +7 -0
- package/es/_virtual/_rollup-plugin-web-worker-loader__helper__browser__createBase64WorkerFactory.js +31 -2
- package/es/_virtual/_rollup-plugin-web-worker-loader__helper__node__WorkerClass.js +11 -0
- package/es/_virtual/_rollup-plugin-web-worker-loader__helper__node__createBase64WorkerFactory.js +18 -0
- package/es/_virtual/filterBoxWorker.js +6 -1
- package/es/_virtual/highlightWorker.js +6 -1
- package/es/assets/attributeIcon/icon_canvasEdit0.svg.js +3 -1
- package/es/assets/attributeIcon/icon_canvasEdit1.svg.js +3 -1
- package/es/assets/attributeIcon/icon_canvasEdit2.svg.js +3 -1
- package/es/assets/attributeIcon/icon_canvasEdit3.svg.js +3 -1
- package/es/assets/attributeIcon/icon_canvasEdit4.svg.js +3 -1
- package/es/assets/attributeIcon/icon_canvasEdit5.svg.js +3 -1
- package/es/assets/attributeIcon/icon_canvasEdit6.svg.js +3 -1
- package/es/assets/attributeIcon/icon_canvasEdit7.svg.js +3 -1
- package/es/assets/attributeIcon/icon_canvasEdit8.svg.js +3 -1
- package/es/assets/attributeIcon/icon_canvasEdit_miss.svg.js +3 -1
- package/es/assets/attributeIcon/icon_cuboidFAB.svg.js +3 -5
- package/es/assets/attributeIcon/icon_cuboidLeft.svg.js +3 -7
- package/es/assets/attributeIcon/icon_cuboidMore.svg.js +3 -5
- package/es/assets/attributeIcon/icon_cuboidRight.svg.js +3 -5
- package/es/assets/attributeIcon/icon_cuboidTop.svg.js +3 -12
- package/es/assets/attributeIcon/icon_editFEN.svg.js +3 -1
- package/es/assets/attributeIcon/icon_editHUANG.svg.js +3 -1
- package/es/assets/attributeIcon/icon_editLAN.svg.js +3 -1
- package/es/assets/attributeIcon/icon_editLV.svg.js +3 -1
- package/es/assets/attributeIcon/icon_editQING.svg.js +3 -1
- package/es/constant/annotation.js +113 -1
- package/es/constant/annotationTask.js +25 -1
- package/es/constant/defaultConfig.js +260 -1
- package/es/constant/keyCode.js +36 -1
- package/es/constant/style.js +74 -1
- package/es/constant/tool.js +220 -1
- package/es/core/index.js +148 -1
- package/es/core/pointCloud/OrbitControls.js +661 -1
- package/es/core/pointCloud/PCDLoader.js +256 -2
- package/es/core/pointCloud/annotation.js +211 -1
- package/es/core/pointCloud/cache.js +49 -1
- package/es/core/pointCloud/index.js +962 -5
- package/es/core/pointCloud/matrix.js +109 -1
- package/es/core/pointCloud/segmentation.js +120 -0
- package/es/core/pointCloud/selector/Sse3dLassoSelector.js +24 -0
- package/es/core/pointCloud/selector/Sse3dSelector.js +14 -0
- package/es/core/scheduler.js +228 -1
- package/es/core/toolOperation/LineToolOperation.js +1421 -1
- package/es/core/toolOperation/ScribbleTool.js +290 -1
- package/es/core/toolOperation/TextToolOperation.js +129 -1
- package/es/core/toolOperation/ViewOperation.js +549 -1
- package/es/core/toolOperation/basicToolOperation.js +877 -1
- package/es/core/toolOperation/checkOperation.js +206 -1
- package/es/core/toolOperation/cuboidOperation.js +752 -1
- package/es/core/toolOperation/cuboidToggleButtonClass.js +150 -7
- package/es/core/toolOperation/eventListener.js +35 -1
- package/es/core/toolOperation/measureOperation.js +39 -1
- package/es/core/toolOperation/pointCloud2dOperation.js +359 -1
- package/es/core/toolOperation/pointOperation.js +690 -1
- package/es/core/toolOperation/polygonOperation.js +1245 -1
- package/es/core/toolOperation/rectOperation.js +1228 -1
- package/es/core/toolOperation/scribbleTool2.js +249 -0
- package/es/core/toolOperation/segmentByRect.js +172 -1
- package/es/core/toolOperation/tagOperation.js +199 -3
- package/es/core/toolOperation/textAttributeClass.js +180 -16
- package/es/index.js +46 -1
- package/es/locales/constants.js +22 -1
- package/es/locales/en_US/message.js +23 -1
- package/es/locales/index.js +17 -1
- package/es/locales/zh_CN/message.js +23 -1
- package/es/newCore/CanvasScheduler.js +31 -1
- package/es/utils/ActionsHistory.js +78 -1
- package/es/utils/ImgUtils.js +21 -1
- package/es/utils/MathUtils.js +380 -2
- package/es/utils/VectorUtils.js +23 -1
- package/es/utils/tool/AttributeUtils.js +212 -1
- package/es/utils/tool/AxisUtils.js +335 -1
- package/es/utils/tool/CanvasUtils.js +60 -1
- package/es/utils/tool/CommonToolUtils.js +172 -1
- package/es/utils/tool/CuboidUtils.js +680 -1
- package/es/utils/tool/DblClickEventListener.js +100 -1
- package/es/utils/tool/DrawUtils.js +490 -3
- package/es/utils/tool/EnhanceCommonToolUtils.js +48 -1
- package/es/utils/tool/ImgPosUtils.js +56 -1
- package/es/utils/tool/LineToolUtils.js +255 -1
- package/es/utils/tool/MarkerUtils.js +54 -1
- package/es/utils/tool/PolygonUtils.js +458 -1
- package/es/utils/tool/RectUtils.js +153 -1
- package/es/utils/tool/RenderDomClass.js +55 -7
- package/es/utils/tool/RenderDomUtils.js +19 -4
- package/es/utils/tool/StyleUtils.js +29 -1
- package/es/utils/tool/TagUtils.js +127 -1
- package/es/utils/tool/UnitUtils.js +10 -1
- package/es/utils/tool/ZoomUtils.js +70 -1
- package/es/utils/tool/polygonTool.js +126 -1
- package/es/utils/uuid.js +24 -1
- package/package.json +7 -5
|
@@ -1 +1,260 @@
|
|
|
1
|
-
const
|
|
1
|
+
const rectToolConfig = {
|
|
2
|
+
showConfirm: false,
|
|
3
|
+
skipWhileNoDependencies: false,
|
|
4
|
+
drawOutsideTarget: false,
|
|
5
|
+
copyBackwardResult: false,
|
|
6
|
+
minWidth: 1,
|
|
7
|
+
minHeight: 1,
|
|
8
|
+
isShowOrder: false,
|
|
9
|
+
filterData: ["valid", "invalid"],
|
|
10
|
+
attributeConfigurable: true,
|
|
11
|
+
attributeList: [],
|
|
12
|
+
textConfigurable: true,
|
|
13
|
+
textCheckType: 0,
|
|
14
|
+
customFormat: ""
|
|
15
|
+
};
|
|
16
|
+
const tagToolConfig = {
|
|
17
|
+
showConfirm: false,
|
|
18
|
+
skipWhileNoDependencies: false,
|
|
19
|
+
inputList: [
|
|
20
|
+
{
|
|
21
|
+
key: "\u7C7B\u522B1",
|
|
22
|
+
value: "class1",
|
|
23
|
+
isMulti: false,
|
|
24
|
+
subSelected: [
|
|
25
|
+
{key: "\u9009\u98791", value: "option1", isDefault: false},
|
|
26
|
+
{key: "\u9009\u98792", value: "option1-2", isDefault: false}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
key: "\u7C7B\u522B2",
|
|
31
|
+
value: "class-AH",
|
|
32
|
+
isMulti: true,
|
|
33
|
+
subSelected: [
|
|
34
|
+
{key: "\u9009\u98792-1", value: "option2-1", isDefault: false},
|
|
35
|
+
{key: "\u9009\u98792-2", value: "option2-2", isDefault: false},
|
|
36
|
+
{key: "\u9009\u98792-3", value: "option2-3", isDefault: false}
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
key: "\u7C7B\u522B3",
|
|
41
|
+
value: "class-0P",
|
|
42
|
+
isMulti: false,
|
|
43
|
+
subSelected: [
|
|
44
|
+
{key: "\u9009\u98793-1", value: "option3-1", isMulti: false},
|
|
45
|
+
{key: "\u9009\u98793-2", value: "option3-2", isDefault: false},
|
|
46
|
+
{key: "\u9009\u98793-3", value: "option3-3", isDefault: false}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
};
|
|
51
|
+
const lineToolConfig = {
|
|
52
|
+
lineType: 0,
|
|
53
|
+
lineColor: 0,
|
|
54
|
+
edgeAdsorption: false,
|
|
55
|
+
outOfTarget: true,
|
|
56
|
+
copyBackwardResult: false,
|
|
57
|
+
isShowOrder: false,
|
|
58
|
+
attributeConfigurable: true,
|
|
59
|
+
attributeList: [
|
|
60
|
+
{key: "\u7C7B\u522B1", value: "\u7C7B\u522B1"},
|
|
61
|
+
{key: "\u7C7B\u522Bao", value: "class-ao"},
|
|
62
|
+
{key: "\u7C7B\u522BM1", value: "class-M1"},
|
|
63
|
+
{key: "\u7C7B\u522BCm", value: "class-Cm"},
|
|
64
|
+
{key: "\u7C7B\u522Bc3", value: "class-c3"},
|
|
65
|
+
{key: "\u7C7B\u522Ba0", value: "class-a0"},
|
|
66
|
+
{key: "\u7C7B\u522Bu7", value: "class-u7"},
|
|
67
|
+
{key: "\u7C7B\u522BZb", value: "class-Zb"},
|
|
68
|
+
{key: "\u7C7B\u522Bzi", value: "class-zi"}
|
|
69
|
+
],
|
|
70
|
+
textConfigurable: false,
|
|
71
|
+
textCheckType: 2,
|
|
72
|
+
customFormat: "",
|
|
73
|
+
showConfirm: false,
|
|
74
|
+
lowerLimitPointNum: 2,
|
|
75
|
+
upperLimitPointNum: "",
|
|
76
|
+
preReferenceStep: 0,
|
|
77
|
+
skipWhileNoDependencies: false,
|
|
78
|
+
filterData: ["valid", "invalid"]
|
|
79
|
+
};
|
|
80
|
+
const textToolConfig = {
|
|
81
|
+
showConfirm: false,
|
|
82
|
+
skipWhileNoDependencies: false,
|
|
83
|
+
enableTextRecognition: false,
|
|
84
|
+
recognitionMode: "general",
|
|
85
|
+
configList: [{label: "\u6587\u672C", key: "text", required: false, default: "", maxLength: 1e3}],
|
|
86
|
+
filterData: ["valid", "invalid"]
|
|
87
|
+
};
|
|
88
|
+
const polygonConfig = {
|
|
89
|
+
lineType: 0,
|
|
90
|
+
lineColor: 0,
|
|
91
|
+
lowerLimitPointNum: 3,
|
|
92
|
+
edgeAdsorption: false,
|
|
93
|
+
drawOutsideTarget: false,
|
|
94
|
+
copyBackwardResult: false,
|
|
95
|
+
isShowOrder: false,
|
|
96
|
+
attributeConfigurable: false,
|
|
97
|
+
attributeList: [],
|
|
98
|
+
textConfigurable: true,
|
|
99
|
+
textCheckType: 0,
|
|
100
|
+
customFormat: ""
|
|
101
|
+
};
|
|
102
|
+
const getConfig = (tool) => {
|
|
103
|
+
if (tool === "lineTool") {
|
|
104
|
+
return lineToolConfig;
|
|
105
|
+
}
|
|
106
|
+
if (tool === "rectTool") {
|
|
107
|
+
return rectToolConfig;
|
|
108
|
+
}
|
|
109
|
+
if (tool === "tagTool") {
|
|
110
|
+
return tagToolConfig;
|
|
111
|
+
}
|
|
112
|
+
if (tool === "textTool") {
|
|
113
|
+
return textToolConfig;
|
|
114
|
+
}
|
|
115
|
+
if (tool === "polygonTool") {
|
|
116
|
+
return polygonConfig;
|
|
117
|
+
}
|
|
118
|
+
return rectToolConfig;
|
|
119
|
+
};
|
|
120
|
+
const styleDefaultConfig = {
|
|
121
|
+
toolColor: {
|
|
122
|
+
1: {
|
|
123
|
+
valid: {stroke: "rgba(0,0,255,0.50)", fill: "rgba(0,0,255,0.40)"},
|
|
124
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.80)"},
|
|
125
|
+
validSelected: {stroke: "rgba(0,15,255,1.00)", fill: "rgba(0,15,255,0.80)"},
|
|
126
|
+
invalidSelected: {stroke: "rgba(255,0,0,0.60)", fill: "rgba(255,0,0,0.24)"},
|
|
127
|
+
validHover: {stroke: "rgba(0,15,255,0.80)", fill: "rgba(0,15,255,0.64)"},
|
|
128
|
+
invalidHover: {stroke: "rgba(255,0,0,0.50)", fill: "rgba(255,0,0,0.40)"}
|
|
129
|
+
},
|
|
130
|
+
3: {
|
|
131
|
+
valid: {stroke: "rgba(0,255,255,0.50)", fill: "rgba(0,255,255,0.40)"},
|
|
132
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.80)"},
|
|
133
|
+
validSelected: {stroke: "rgba(0,212,255,1.00)", fill: "rgba(0,212,255,0.80)"},
|
|
134
|
+
invalidSelected: {stroke: "rgba(255,0,0,0.60)", fill: "rgba(255,0,0,0.24)"},
|
|
135
|
+
validHover: {stroke: "rgba(0,212,255,0.80)", fill: "rgba(0,212,255,0.64)"},
|
|
136
|
+
invalidHover: {stroke: "rgba(255,0,0,0.50)", fill: "rgba(255,0,0,0.40)"}
|
|
137
|
+
},
|
|
138
|
+
5: {
|
|
139
|
+
valid: {stroke: "rgba(0,255,0,0.50)", fill: "rgba(0,255,0,0.40)"},
|
|
140
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.80)"},
|
|
141
|
+
validSelected: {stroke: "rgba(149,255,1.00)", fill: "rgba(149,255,0,0.80)"},
|
|
142
|
+
invalidSelected: {stroke: "rgba(255,0,0,0.60)", fill: "rgba(255,0,0,0.24)"},
|
|
143
|
+
validHover: {stroke: "rgba(149,255,0,0.80)", fill: "rgba(149,255,0,0.64)"},
|
|
144
|
+
invalidHover: {stroke: "rgba(255,0,0,0.50)", fill: "rgba(255,0,0,0.40)"}
|
|
145
|
+
},
|
|
146
|
+
7: {
|
|
147
|
+
valid: {stroke: "rgba(255,255,0,0.50)", fill: "rgba(255,255,0,0.40)"},
|
|
148
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.80)"},
|
|
149
|
+
validSelected: {stroke: "rgba(255,230,102,1.00)", fill: "rgba(255,213,0,0.80)"},
|
|
150
|
+
invalidSelected: {stroke: "rgba(255,0,0,0.60)", fill: "rgba(255,0,0,0.24)"},
|
|
151
|
+
validHover: {stroke: "rgba(255,230,102,0.80)", fill: "rgba(255,230,102,0.64)"},
|
|
152
|
+
invalidHover: {stroke: "rgba(255,0,0,0.50)", fill: "rgba(255,0,0,0.40)"}
|
|
153
|
+
},
|
|
154
|
+
9: {
|
|
155
|
+
valid: {stroke: "rgba(255,0,255,0.50)", fill: "rgba(255,0,255,0.40)"},
|
|
156
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.80)"},
|
|
157
|
+
validSelected: {stroke: "rgba(230,102,255,1.00)", fill: "rgba(213,0,255,0.80)"},
|
|
158
|
+
invalidSelected: {stroke: "rgba(255,0,0,0.60)", fill: "rgba(255,0,0,0.24)"},
|
|
159
|
+
validHover: {stroke: "rgba(230,102,255,0.80)", fill: "rgba(230,102,255,0.64)"},
|
|
160
|
+
invalidHover: {stroke: "rgba(255,0,0,0.50)", fill: "rgba(255,0,0,0.40)"}
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
attributeColor: [
|
|
164
|
+
{
|
|
165
|
+
valid: {stroke: "rgba(204,204,204,1.00)", fill: "rgba(204,204,204,0.40)"},
|
|
166
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.40)"},
|
|
167
|
+
validSelected: {stroke: "rgba(204,204,204,1.00)", fill: "rgba(204,204,204,0.80)"},
|
|
168
|
+
invalidSelected: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"},
|
|
169
|
+
validHover: {stroke: "rgba(204,204,204,1.00)", fill: "rgba(204,204,204,0.80)"},
|
|
170
|
+
invalidHover: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"}
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
valid: {stroke: "rgba(153,51,255,1.00)", fill: "rgba(153,51,255,0.40)"},
|
|
174
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.40)"},
|
|
175
|
+
validSelected: {stroke: "rgba(153,51,255,1.00)", fill: "rgba(153,51,255,0.80)"},
|
|
176
|
+
invalidSelected: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"},
|
|
177
|
+
validHover: {stroke: "rgba(153,51,255,1.00)", fill: "rgba(153,51,255,0.80)"},
|
|
178
|
+
invalidHover: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
valid: {stroke: "rgba(51,254,51,1.00)", fill: "rgba(51,254,51,0.40)"},
|
|
182
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.40)"},
|
|
183
|
+
validSelected: {stroke: "rgba(51,254,51,1.00)", fill: "rgba(51,254,51,0.80)"},
|
|
184
|
+
invalidSelected: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"},
|
|
185
|
+
validHover: {stroke: "rgba(51,254,51,1.00)", fill: "rgba(51,254,51,0.80)"},
|
|
186
|
+
invalidHover: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
valid: {stroke: "rgba(255,51,255,1.00)", fill: "rgba(255,51,255,0.40)"},
|
|
190
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.40)"},
|
|
191
|
+
validSelected: {stroke: "rgba(255,51,255,1.00)", fill: "rgba(255,51,255,0.80)"},
|
|
192
|
+
invalidSelected: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"},
|
|
193
|
+
validHover: {stroke: "rgba(255,51,255,1.00)", fill: "rgba(255,51,255,0.80)"},
|
|
194
|
+
invalidHover: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
valid: {stroke: "rgba(204,255,51,1.00)", fill: "rgba(204,255,51,0.40)"},
|
|
198
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.40)"},
|
|
199
|
+
validSelected: {stroke: "rgba(204,255,51,1.00)", fill: "rgba(204,255,51,0.80)"},
|
|
200
|
+
invalidSelected: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"},
|
|
201
|
+
validHover: {stroke: "rgba(204,255,51,1.00)", fill: "rgba(204,255,51,0.80)"},
|
|
202
|
+
invalidHover: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"}
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
valid: {stroke: "rgba(51,153,255,1.00)", fill: "rgba(51,153,255,0.40)"},
|
|
206
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.40)"},
|
|
207
|
+
validSelected: {stroke: "rgba(51,153,255,1.00)", fill: "rgba(51,153,255,0.80)"},
|
|
208
|
+
invalidSelected: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"},
|
|
209
|
+
validHover: {stroke: "rgba(51,153,255,1.00)", fill: "rgba(51,153,255,0.80)"},
|
|
210
|
+
invalidHover: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
valid: {stroke: "rgba(255,153,51,1.00)", fill: "rgba(255,153,51,0.40)"},
|
|
214
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.40)"},
|
|
215
|
+
validSelected: {stroke: "rgba(255,153,51,1.00)", fill: "rgba(255,153,51,0.80)"},
|
|
216
|
+
invalidSelected: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"},
|
|
217
|
+
validHover: {stroke: "rgba(255,153,51,1.00)", fill: "rgba(255,153,51,0.80)"},
|
|
218
|
+
invalidHover: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
valid: {stroke: "rgba(51,255,238,1.00)", fill: "rgba(51,255,238,0.40)"},
|
|
222
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.40)"},
|
|
223
|
+
validSelected: {stroke: "rgba(51,255,238,1.00)", fill: "rgba(51,255,238,0.80)"},
|
|
224
|
+
invalidSelected: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"},
|
|
225
|
+
validHover: {stroke: "rgba(51,255,238,1.00)", fill: "rgba(51,255,238,0.80)"},
|
|
226
|
+
invalidHover: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
valid: {stroke: "rgba(255,221,51,1.00)", fill: "rgba(255,221,51,0.40)"},
|
|
230
|
+
invalid: {stroke: "rgba(255,153,102,1.00)", fill: "rgba(255,153,102,0.40)"},
|
|
231
|
+
validSelected: {stroke: "rgba(255,221,51,1.00)", fill: "rgba(255,221,51,0.80)"},
|
|
232
|
+
invalidSelected: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"},
|
|
233
|
+
validHover: {stroke: "rgba(255,221,51,1.00)", fill: "rgba(255,221,51,0.80)"},
|
|
234
|
+
invalidHover: {stroke: "rgba(255,0,0,1.00)", fill: "rgba(255,0,0,0.80)"}
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
lineColor: {
|
|
238
|
+
1: "rgba(102, 111, 255, 1 )",
|
|
239
|
+
3: "rgba(102, 230, 255, 1)",
|
|
240
|
+
5: "rgba(191, 255, 102, 1)",
|
|
241
|
+
7: "rgba(255, 230, 102, 1)",
|
|
242
|
+
9: "rgba(230, 102, 255, 1)"
|
|
243
|
+
},
|
|
244
|
+
attributeLineColor: [
|
|
245
|
+
"rgba(204, 204, 204, 1)",
|
|
246
|
+
"rgba(153, 51, 255, 1)",
|
|
247
|
+
"rgba(51, 254, 51, 1)",
|
|
248
|
+
"rgba(255, 51, 255, 1)",
|
|
249
|
+
"rgba(204, 255, 51, 1)",
|
|
250
|
+
"rgba(51, 153, 255, 1)",
|
|
251
|
+
"rgba(255, 153, 51, 1)",
|
|
252
|
+
"rgba(51, 255, 238, 1)",
|
|
253
|
+
"rgba(255, 221, 51, 1)"
|
|
254
|
+
],
|
|
255
|
+
color: 1,
|
|
256
|
+
width: 2,
|
|
257
|
+
opacity: 9
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
export { getConfig, polygonConfig, styleDefaultConfig };
|
package/es/constant/keyCode.js
CHANGED
|
@@ -1 +1,36 @@
|
|
|
1
|
-
var
|
|
1
|
+
var EKeyCode;
|
|
2
|
+
(function(EKeyCode2) {
|
|
3
|
+
EKeyCode2[EKeyCode2["A"] = 65] = "A";
|
|
4
|
+
EKeyCode2[EKeyCode2["B"] = 66] = "B";
|
|
5
|
+
EKeyCode2[EKeyCode2["C"] = 67] = "C";
|
|
6
|
+
EKeyCode2[EKeyCode2["D"] = 68] = "D";
|
|
7
|
+
EKeyCode2[EKeyCode2["E"] = 69] = "E";
|
|
8
|
+
EKeyCode2[EKeyCode2["F"] = 70] = "F";
|
|
9
|
+
EKeyCode2[EKeyCode2["G"] = 71] = "G";
|
|
10
|
+
EKeyCode2[EKeyCode2["H"] = 72] = "H";
|
|
11
|
+
EKeyCode2[EKeyCode2["L"] = 76] = "L";
|
|
12
|
+
EKeyCode2[EKeyCode2["R"] = 82] = "R";
|
|
13
|
+
EKeyCode2[EKeyCode2["Z"] = 90] = "Z";
|
|
14
|
+
EKeyCode2[EKeyCode2["W"] = 87] = "W";
|
|
15
|
+
EKeyCode2[EKeyCode2["X"] = 88] = "X";
|
|
16
|
+
EKeyCode2[EKeyCode2["Y"] = 89] = "Y";
|
|
17
|
+
EKeyCode2[EKeyCode2["S"] = 83] = "S";
|
|
18
|
+
EKeyCode2[EKeyCode2["Q"] = 81] = "Q";
|
|
19
|
+
EKeyCode2[EKeyCode2["Delete"] = 46] = "Delete";
|
|
20
|
+
EKeyCode2[EKeyCode2["F11"] = 122] = "F11";
|
|
21
|
+
EKeyCode2[EKeyCode2["Space"] = 32] = "Space";
|
|
22
|
+
EKeyCode2[EKeyCode2["Esc"] = 27] = "Esc";
|
|
23
|
+
EKeyCode2[EKeyCode2["Left"] = 37] = "Left";
|
|
24
|
+
EKeyCode2[EKeyCode2["Up"] = 38] = "Up";
|
|
25
|
+
EKeyCode2[EKeyCode2["Right"] = 39] = "Right";
|
|
26
|
+
EKeyCode2[EKeyCode2["Down"] = 40] = "Down";
|
|
27
|
+
EKeyCode2[EKeyCode2["Enter"] = 13] = "Enter";
|
|
28
|
+
EKeyCode2[EKeyCode2["Ctrl"] = 17] = "Ctrl";
|
|
29
|
+
EKeyCode2[EKeyCode2["Alt"] = 18] = "Alt";
|
|
30
|
+
EKeyCode2[EKeyCode2["Shift"] = 16] = "Shift";
|
|
31
|
+
EKeyCode2[EKeyCode2["Tab"] = 9] = "Tab";
|
|
32
|
+
EKeyCode2[EKeyCode2["BackSpace"] = 8] = "BackSpace";
|
|
33
|
+
})(EKeyCode || (EKeyCode = {}));
|
|
34
|
+
var EKeyCode$1 = EKeyCode;
|
|
35
|
+
|
|
36
|
+
export { EKeyCode$1 as default };
|
package/es/constant/style.js
CHANGED
|
@@ -1 +1,74 @@
|
|
|
1
|
-
import
|
|
1
|
+
import canvasEdit0 from '../assets/attributeIcon/icon_canvasEdit0.svg.js';
|
|
2
|
+
import canvasEdit1 from '../assets/attributeIcon/icon_canvasEdit1.svg.js';
|
|
3
|
+
import canvasEdit2 from '../assets/attributeIcon/icon_canvasEdit2.svg.js';
|
|
4
|
+
import canvasEdit3 from '../assets/attributeIcon/icon_canvasEdit3.svg.js';
|
|
5
|
+
import canvasEdit4 from '../assets/attributeIcon/icon_canvasEdit4.svg.js';
|
|
6
|
+
import canvasEdit5 from '../assets/attributeIcon/icon_canvasEdit5.svg.js';
|
|
7
|
+
import canvasEdit6 from '../assets/attributeIcon/icon_canvasEdit6.svg.js';
|
|
8
|
+
import canvasEdit7 from '../assets/attributeIcon/icon_canvasEdit7.svg.js';
|
|
9
|
+
import canvasEdit8 from '../assets/attributeIcon/icon_canvasEdit8.svg.js';
|
|
10
|
+
import baseEditLan from '../assets/attributeIcon/icon_editLAN.svg.js';
|
|
11
|
+
import baseEditQing from '../assets/attributeIcon/icon_editQING.svg.js';
|
|
12
|
+
import baseEditLv from '../assets/attributeIcon/icon_editLV.svg.js';
|
|
13
|
+
import baseEditHuang from '../assets/attributeIcon/icon_editHUANG.svg.js';
|
|
14
|
+
import baseEditFen from '../assets/attributeIcon/icon_editFEN.svg.js';
|
|
15
|
+
import { EFilterToolOperation } from './tool.js';
|
|
16
|
+
export { default as INVALID_ICON } from '../assets/attributeIcon/icon_canvasEdit_miss.svg.js';
|
|
17
|
+
|
|
18
|
+
const NULL_ICON = canvasEdit0;
|
|
19
|
+
const HEADER_HEIGHT = 61;
|
|
20
|
+
const TAB_HEIGHT = 80;
|
|
21
|
+
const SEARCH_HEIGHT = 62;
|
|
22
|
+
const PADDING = 20;
|
|
23
|
+
const TABLE_ROW_HEIGHT = 55;
|
|
24
|
+
const PAGINATION_HEIGHT = 55;
|
|
25
|
+
const TIPS_HEIGHT = 40;
|
|
26
|
+
const FOOTER_HEIGHT = 80;
|
|
27
|
+
const SIDERBAR_WIDTH = 240;
|
|
28
|
+
const EDIT_STEP_WIDTH = 320;
|
|
29
|
+
const THEME_COLOR = "rgba(102, 111, 255, 1)";
|
|
30
|
+
const COLORS_ARRAY = [
|
|
31
|
+
"rgba(128, 12, 249, 1)",
|
|
32
|
+
"rgba(0, 255, 48, 1)",
|
|
33
|
+
"rgba(255, 136, 247, 1)",
|
|
34
|
+
"rgba(255, 226, 50, 1)",
|
|
35
|
+
"rgba(153, 66, 23, 1)",
|
|
36
|
+
"rgba(2, 130, 250, 1)",
|
|
37
|
+
"rgba(255, 35, 35, 1)",
|
|
38
|
+
"rgba(0, 255, 234, 1)"
|
|
39
|
+
];
|
|
40
|
+
const ICON_ARRAY = [
|
|
41
|
+
canvasEdit0,
|
|
42
|
+
canvasEdit6,
|
|
43
|
+
canvasEdit3,
|
|
44
|
+
canvasEdit7,
|
|
45
|
+
canvasEdit2,
|
|
46
|
+
canvasEdit8,
|
|
47
|
+
canvasEdit5,
|
|
48
|
+
canvasEdit1,
|
|
49
|
+
canvasEdit4
|
|
50
|
+
];
|
|
51
|
+
const BASE_ICON = {
|
|
52
|
+
1: baseEditLan,
|
|
53
|
+
3: baseEditQing,
|
|
54
|
+
5: baseEditLv,
|
|
55
|
+
7: baseEditHuang,
|
|
56
|
+
9: baseEditFen
|
|
57
|
+
};
|
|
58
|
+
const INVALID_COLOR = "rgba(255, 51, 51, 1)";
|
|
59
|
+
const INVALID_COLOR_RGBA = {
|
|
60
|
+
r: 255,
|
|
61
|
+
g: 51,
|
|
62
|
+
b: 51,
|
|
63
|
+
a: 1
|
|
64
|
+
};
|
|
65
|
+
const NULL_COLOR = "rgba(204, 204, 204, 1)";
|
|
66
|
+
const FILTER_TOOL_COLOR = {
|
|
67
|
+
[EFilterToolOperation.lc]: "rgba(153, 51, 255, 1)",
|
|
68
|
+
[EFilterToolOperation.rc]: "rgba(51, 153, 255, 1)",
|
|
69
|
+
[EFilterToolOperation.clc]: "rgba(46, 230, 46, 1)",
|
|
70
|
+
[EFilterToolOperation.crc]: "rgba(255, 51, 51, 1)"
|
|
71
|
+
};
|
|
72
|
+
const styleString = `{"color":1,"width":2,"borderOpacity":9,"fillOpacity":9,"toolColor":{"1":{"valid":{"stroke":"rgba(0,0,255,0.50)","fill":"rgba(0,0,255,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validSelected":{"stroke":"rgba(0,15,255,1.00)","fill":"rgba(0,15,255,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,0.80)","fill":"rgba(255,153,102,0.19)"},"validHover":{"stroke":"rgba(0,15,255,0.80)","fill":"rgba(0,15,255,0.51)"},"invalidHover":{"stroke":"rgba(255,153,102,0.50)","fill":"rgba(255,153,102,0.32)"}},"3":{"valid":{"stroke":"rgba(0,255,255,0.50)","fill":"rgba(0,255,255,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validSelected":{"stroke":"rgba(0,212,255,1.00)","fill":"rgba(0,212,255,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,0.80)","fill":"rgba(255,153,102,0.19)"},"validHover":{"stroke":"rgba(0,212,255,0.80)","fill":"rgba(0,212,255,0.51)"},"invalidHover":{"stroke":"rgba(255,153,102,0.50)","fill":"rgba(255,153,102,0.32)"}},"5":{"valid":{"stroke":"rgba(0,255,0,0.50)","fill":"rgba(0,255,0,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validSelected":{"stroke":"rgba(149,255,1.00)","fill":"rgba(149,255,0,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,0.80)","fill":"rgba(255,153,102,0.19)"},"validHover":{"stroke":"rgba(149,255,0,0.80)","fill":"rgba(149,255,0,0.51)"},"invalidHover":{"stroke":"rgba(255,153,102,0.50)","fill":"rgba(255,153,102,0.32)"}},"7":{"valid":{"stroke":"rgba(255,255,0,0.50)","fill":"rgba(255,255,0,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validSelected":{"stroke":"rgba(255,230,102,1.00)","fill":"rgba(255,213,0,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,0.80)","fill":"rgba(255,153,102,0.19)"},"validHover":{"stroke":"rgba(255,230,102,0.80)","fill":"rgba(255,230,102,0.51)"},"invalidHover":{"stroke":"rgba(255,153,102,0.50)","fill":"rgba(255,153,102,0.32)"}},"9":{"valid":{"stroke":"rgba(255,0,255,0.50)","fill":"rgba(255,0,255,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validSelected":{"stroke":"rgba(230,102,255,1.00)","fill":"rgba(213,0,255,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,0.80)","fill":"rgba(255,153,102,0.19)"},"validHover":{"stroke":"rgba(230,102,255,0.80)","fill":"rgba(230,102,255,0.51)"},"invalidHover":{"stroke":"rgba(255,153,102,0.50)","fill":"rgba(255,153,102,0.32)"}}},"attributeColor":[{"valid":{"stroke":"rgba(204,204,204,1.00)","fill":"rgba(204,204,204,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.32)"},"validSelected":{"stroke":"rgba(204,204,204,1.00)","fill":"rgba(204,204,204,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validHover":{"stroke":"rgba(204,204,204,1.00)","fill":"rgba(204,204,204,0.64)"},"invalidHover":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"}},{"valid":{"stroke":"rgba(128,12,249,1.00)","fill":"rgba(128,12,249,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.32)"},"validSelected":{"stroke":"rgba(128,12,249,1.00)","fill":"rgba(128,12,249,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validHover":{"stroke":"rgba(128,12,249,1.00)","fill":"rgba(128,12,249,0.64)"},"invalidHover":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"}},{"valid":{"stroke":"rgba(0,255,48,1.00)","fill":"rgba(0,255,48,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.32)"},"validSelected":{"stroke":"rgba(0,255,48,1.00)","fill":"rgba(0,255,48,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validHover":{"stroke":"rgba(0,255,48,1.00)","fill":"rgba(0,255,48,0.64)"},"invalidHover":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"}},{"valid":{"stroke":"rgba(255,136,247,1.00)","fill":"rgba(255,136,247,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.32)"},"validSelected":{"stroke":"rgba(255,136,247,1.00)","fill":"rgba(255,136,247,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validHover":{"stroke":"rgba(255,136,247,1.00)","fill":"rgba(255,136,247,0.64)"},"invalidHover":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"}},{"valid":{"stroke":"rgba(255,226,50,1.00)","fill":"rgba(255,226,50,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.32)"},"validSelected":{"stroke":"rgba(255,226,50,1.00)","fill":"rgba(255,226,50,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validHover":{"stroke":"rgba(255,226,50,1.00)","fill":"rgba(255,226,50,0.64)"},"invalidHover":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"}},{"valid":{"stroke":"rgba(153,66,23,1.00)","fill":"rgba(153,66,23,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.32)"},"validSelected":{"stroke":"rgba(153,66,23,1.00)","fill":"rgba(153,66,23,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validHover":{"stroke":"rgba(153,66,23,1.00)","fill":"rgba(153,66,23,0.64)"},"invalidHover":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"}},{"valid":{"stroke":"rgba(2,130,250,1.00)","fill":"rgba(2,130,250,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.32)"},"validSelected":{"stroke":"rgba(2,130,250,1.00)","fill":"rgba(2,130,250,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validHover":{"stroke":"rgba(2,130,250,1.00)","fill":"rgba(2,130,250,0.64)"},"invalidHover":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"}},{"valid":{"stroke":"rgba(255,35,35,1.00)","fill":"rgba(255,35,35,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.32)"},"validSelected":{"stroke":"rgba(255,35,35,1.00)","fill":"rgba(255,35,35,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validHover":{"stroke":"rgba(255,35,35,1.00)","fill":"rgba(255,35,35,0.64)"},"invalidHover":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"}},{"valid":{"stroke":"rgba(0,255,234,1.00)","fill":"rgba(0,255,234,0.32)"},"invalid":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.32)"},"validSelected":{"stroke":"rgba(0,255,234,1.00)","fill":"rgba(0,255,234,0.64)"},"invalidSelected":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"},"validHover":{"stroke":"rgba(0,255,234,1.00)","fill":"rgba(0,255,234,0.64)"},"invalidHover":{"stroke":"rgba(255,153,102,1.00)","fill":"rgba(255,153,102,0.64)"}}],"lineColor":{"1":"rgba(102, 111, 255, 1 )","3":"rgba(102, 230, 255, 1)","5":"rgba(191, 255, 102, 1)","7":"rgba(255, 230, 102, 1)","9":"rgba(230, 102, 255, 1)"},"attributeLineColor":["rgba(204, 204, 204, 1)","rgba(128, 12, 249, 1)","rgba(0, 255, 48, 1)","rgba(255, 136, 247, 1)","rgba(255, 226, 50, 1)","rgba(153, 66, 23, 1)","rgba(2, 130, 250, 1)","rgba(255, 35, 35, 1)","rgba(0, 255, 234, 1)"]}`;
|
|
73
|
+
|
|
74
|
+
export { BASE_ICON, COLORS_ARRAY, EDIT_STEP_WIDTH, FILTER_TOOL_COLOR, FOOTER_HEIGHT, HEADER_HEIGHT, ICON_ARRAY, INVALID_COLOR, INVALID_COLOR_RGBA, NULL_COLOR, NULL_ICON, PADDING, PAGINATION_HEIGHT, SEARCH_HEIGHT, SIDERBAR_WIDTH, TABLE_ROW_HEIGHT, TAB_HEIGHT, THEME_COLOR, TIPS_HEIGHT, styleString };
|