kfb-view 2.2.5 → 2.2.8
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/.idea/workspace.xml +14 -2
- package/example/index.js +1 -1
- package/lib/kfb-view.js +1 -1
- package/package.json +1 -1
- package/src/components/board/index.js +13 -1
- package/src/plugin/openseadragon/openseadragon.js +1 -0
- package/src/tool/Brush.js +1 -1
- package/src/tool/Image.js +13 -8
package/.idea/workspace.xml
CHANGED
|
@@ -36,7 +36,13 @@
|
|
|
36
36
|
</select>
|
|
37
37
|
</component>
|
|
38
38
|
<component name="ChangeListManager">
|
|
39
|
-
<list default="true" id="55024232-8108-4dc9-9bd3-0fd2aa2f34f8" name="Default Changelist" comment=""
|
|
39
|
+
<list default="true" id="55024232-8108-4dc9-9bd3-0fd2aa2f34f8" name="Default Changelist" comment="">
|
|
40
|
+
<change beforePath="$PROJECT_DIR$/example/index.js" beforeDir="false" afterPath="$PROJECT_DIR$/example/index.js" afterDir="false" />
|
|
41
|
+
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
|
42
|
+
<change beforePath="$PROJECT_DIR$/src/components/board/index.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/components/board/index.js" afterDir="false" />
|
|
43
|
+
<change beforePath="$PROJECT_DIR$/src/plugin/openseadragon/openseadragon.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/plugin/openseadragon/openseadragon.js" afterDir="false" />
|
|
44
|
+
<change beforePath="$PROJECT_DIR$/src/tool/Brush.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/tool/Brush.js" afterDir="false" />
|
|
45
|
+
</list>
|
|
40
46
|
<option name="SHOW_DIALOG" value="false" />
|
|
41
47
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
42
48
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
@@ -76,7 +82,7 @@
|
|
|
76
82
|
"DefaultHtmlFileTemplate": "HTML File",
|
|
77
83
|
"WebServerToolWindowFactoryState": "false",
|
|
78
84
|
"dart.analysis.tool.window.visible": "false",
|
|
79
|
-
"last_opened_file_path": "/home/fanqifeng/WebstormProjects/kfb-view
|
|
85
|
+
"last_opened_file_path": "/home/fanqifeng/WebstormProjects/kfb-view",
|
|
80
86
|
"node.js.detected.package.eslint": "true",
|
|
81
87
|
"node.js.selected.package.eslint": "(autodetect)",
|
|
82
88
|
"nodejs_interpreter_path": "/home/fanqifeng/.nvm/versions/node/v10.15.1/bin/node",
|
|
@@ -312,6 +318,12 @@
|
|
|
312
318
|
<workItem from="1659582596490" duration="598000" />
|
|
313
319
|
<workItem from="1659683032926" duration="599000" />
|
|
314
320
|
<workItem from="1659952433819" duration="4309000" />
|
|
321
|
+
<workItem from="1660003953397" duration="1603000" />
|
|
322
|
+
<workItem from="1660273781421" duration="1360000" />
|
|
323
|
+
<workItem from="1660291265906" duration="622000" />
|
|
324
|
+
<workItem from="1660354678944" duration="1028000" />
|
|
325
|
+
<workItem from="1660372146258" duration="2000" />
|
|
326
|
+
<workItem from="1660524325887" duration="4805000" />
|
|
315
327
|
</task>
|
|
316
328
|
<task id="LOCAL-00045" summary="刻度线显示异常">
|
|
317
329
|
<created>1634437932304</created>
|
package/example/index.js
CHANGED
|
@@ -204,7 +204,7 @@ instance.get(`/slide/info?file=${fileName}`).then(({data}) => {
|
|
|
204
204
|
kv.viewer.addHandler('zoom', (res) => {
|
|
205
205
|
const zoom = kv.viewer.viewport.viewportToImageZoom(res.zoom) *
|
|
206
206
|
kv.$options.scale;
|
|
207
|
-
console.log(zoom.toFixed(2) / 1);
|
|
207
|
+
// console.log(zoom.toFixed(2) / 1);
|
|
208
208
|
});
|
|
209
209
|
console.log(kv);
|
|
210
210
|
let list = [];
|