ofd-view 0.2.16 → 0.2.18
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/README.md +116 -116
- package/lib/images/annotation-check.svg +11 -11
- package/lib/images/annotation-comment.svg +16 -16
- package/lib/images/annotation-help.svg +26 -26
- package/lib/images/annotation-insert.svg +10 -10
- package/lib/images/annotation-key.svg +11 -11
- package/lib/images/annotation-newparagraph.svg +11 -11
- package/lib/images/annotation-noicon.svg +7 -7
- package/lib/images/annotation-note.svg +42 -42
- package/lib/images/annotation-paragraph.svg +16 -16
- package/lib/images/findbarButton-next.svg +3 -3
- package/lib/images/findbarButton-previous.svg +3 -3
- package/lib/images/loading-dark.svg +23 -23
- package/lib/images/secondaryToolbarButton-documentProperties.svg +14 -14
- package/lib/images/secondaryToolbarButton-rotateCw.svg +3 -3
- package/lib/images/secondaryToolbarButton-selectTool.svg +3 -3
- package/lib/images/toolbarButton-download.svg +3 -3
- package/lib/images/toolbarButton-openFile.svg +3 -3
- package/lib/images/toolbarButton-pageDown.svg +6 -6
- package/lib/images/toolbarButton-pageUp.svg +11 -11
- package/lib/images/toolbarButton-print.svg +3 -3
- package/lib/images/toolbarButton-search.svg +3 -3
- package/lib/images/toolbarButton-secondaryToolbarToggle.svg +3 -3
- package/lib/images/toolbarButton-sidebarToggle.svg +3 -3
- package/lib/images/toolbarButton-viewThumbnail.svg +3 -3
- package/lib/images/toolbarButton-zoomIn.svg +3 -3
- package/lib/images/toolbarButton-zoomOut.svg +3 -3
- package/lib/ofd-view.common.js +1 -1
- package/lib/ofd-view.common.js.map +1 -1
- package/lib/ofd-view.umd.js +1 -1
- package/lib/ofd-view.umd.js.map +1 -1
- package/lib/ofd-view.umd.min.js +1 -1
- package/lib/ofd-view.umd.min.js.map +1 -1
- package/lib/viewer.css +3284 -3284
- package/package.json +34 -34
package/README.md
CHANGED
@@ -1,116 +1,116 @@
|
|
1
|
-
[//]: # (# ofdview)
|
2
|
-
|
3
|
-
[//]: # ()
|
4
|
-
[//]: # ()
|
5
|
-
[//]: # (## vue使用)
|
6
|
-
|
7
|
-
[//]: # ()
|
8
|
-
[//]: # ()
|
9
|
-
[//]: # (### npm 安装)
|
10
|
-
|
11
|
-
[//]: # ()
|
12
|
-
[//]: # ()
|
13
|
-
[//]: # (```)
|
14
|
-
|
15
|
-
[//]: # ()
|
16
|
-
[//]: # (npm i ofd-view -S)
|
17
|
-
|
18
|
-
[//]: # ()
|
19
|
-
[//]: # (```)
|
20
|
-
|
21
|
-
[//]: # ()
|
22
|
-
[//]: # ()
|
23
|
-
[//]: # (在 main.js 中写入以下内容:)
|
24
|
-
|
25
|
-
[//]: # ()
|
26
|
-
[//]: # ()
|
27
|
-
[//]: # (```)
|
28
|
-
|
29
|
-
[//]: # ()
|
30
|
-
[//]: # (import OfdView from "ofd-view";)
|
31
|
-
|
32
|
-
[//]: # ()
|
33
|
-
[//]: # (import 'ofd-view/lib/viewer.css')
|
34
|
-
|
35
|
-
[//]: # ()
|
36
|
-
[//]: # ()
|
37
|
-
[//]: # (Vue.use(OfdView);)
|
38
|
-
|
39
|
-
[//]: # ()
|
40
|
-
[//]: # (```)
|
41
|
-
|
42
|
-
[//]: # ()
|
43
|
-
[//]: # ()
|
44
|
-
[//]: # (在 静态页 index.html 中声明dir为ltr)
|
45
|
-
|
46
|
-
[//]: # ()
|
47
|
-
[//]: # ()
|
48
|
-
[//]: # (```)
|
49
|
-
|
50
|
-
[//]: # ()
|
51
|
-
[//]: # (dir="ltr")
|
52
|
-
|
53
|
-
[//]: # ()
|
54
|
-
[//]: # (```)
|
55
|
-
|
56
|
-
[//]: # ()
|
57
|
-
[//]: # ()
|
58
|
-
[//]: # ([demo](https://github.com/DLTech21/ofd-vue-demo))
|
59
|
-
|
60
|
-
[//]: # ()
|
61
|
-
[//]: # ()
|
62
|
-
[//]: # ()
|
63
|
-
[//]: # ()
|
64
|
-
|
65
|
-
#
|
66
|
-
|
67
|
-
|
68
|
-
## vue使用
|
69
|
-
|
70
|
-
|
71
|
-
### npm 安装
|
72
|
-
|
73
|
-
|
74
|
-
```
|
75
|
-
|
76
|
-
npm i ofd-view -S
|
77
|
-
|
78
|
-
```
|
79
|
-
|
80
|
-
|
81
|
-
在 main.js 中写入以下内容:
|
82
|
-
|
83
|
-
|
84
|
-
```
|
85
|
-
|
86
|
-
import OfdView from "ofd-view";
|
87
|
-
import 'ofd-view/lib/viewer.css'
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
Vue.use(OfdView);
|
92
|
-
|
93
|
-
```
|
94
|
-
|
95
|
-
|
96
|
-
在 静态页 index.html 中声明dir为ltr
|
97
|
-
|
98
|
-
|
99
|
-
```
|
100
|
-
|
101
|
-
dir="ltr"
|
102
|
-
|
103
|
-
```
|
104
|
-
|
105
|
-
|
106
|
-
配置参数
|
107
|
-
|
108
|
-
| 参数 | 说明 | 类型 | 示例 | 默认值 |
|
109
|
-
| --- |---------------------------| --- | --- | --- |
|
110
|
-
| file | ofd文件 | url | | [] |
|
111
|
-
| mem | parser_x.js变量 | object | | - |
|
112
|
-
| secret | | string | | |
|
113
|
-
| digest | | string | | |
|
114
|
-
| canDownload | 是否可下载 | boolean | | true |
|
115
|
-
| canPrint | 是否可打印(打印合脊那边客户看不懂新打开页的意思) | boolean | | true |
|
116
|
-
| canOpen | 是否可打开新文档 | boolean | | false |
|
1
|
+
[//]: # (# ofdview)
|
2
|
+
|
3
|
+
[//]: # ()
|
4
|
+
[//]: # ()
|
5
|
+
[//]: # (## vue使用)
|
6
|
+
|
7
|
+
[//]: # ()
|
8
|
+
[//]: # ()
|
9
|
+
[//]: # (### npm 安装)
|
10
|
+
|
11
|
+
[//]: # ()
|
12
|
+
[//]: # ()
|
13
|
+
[//]: # (```)
|
14
|
+
|
15
|
+
[//]: # ()
|
16
|
+
[//]: # (npm i ofd-view -S)
|
17
|
+
|
18
|
+
[//]: # ()
|
19
|
+
[//]: # (```)
|
20
|
+
|
21
|
+
[//]: # ()
|
22
|
+
[//]: # ()
|
23
|
+
[//]: # (在 main.js 中写入以下内容:)
|
24
|
+
|
25
|
+
[//]: # ()
|
26
|
+
[//]: # ()
|
27
|
+
[//]: # (```)
|
28
|
+
|
29
|
+
[//]: # ()
|
30
|
+
[//]: # (import OfdView from "ofd-view";)
|
31
|
+
|
32
|
+
[//]: # ()
|
33
|
+
[//]: # (import 'ofd-view/lib/viewer.css')
|
34
|
+
|
35
|
+
[//]: # ()
|
36
|
+
[//]: # ()
|
37
|
+
[//]: # (Vue.use(OfdView);)
|
38
|
+
|
39
|
+
[//]: # ()
|
40
|
+
[//]: # (```)
|
41
|
+
|
42
|
+
[//]: # ()
|
43
|
+
[//]: # ()
|
44
|
+
[//]: # (在 静态页 index.html 中声明dir为ltr)
|
45
|
+
|
46
|
+
[//]: # ()
|
47
|
+
[//]: # ()
|
48
|
+
[//]: # (```)
|
49
|
+
|
50
|
+
[//]: # ()
|
51
|
+
[//]: # (dir="ltr")
|
52
|
+
|
53
|
+
[//]: # ()
|
54
|
+
[//]: # (```)
|
55
|
+
|
56
|
+
[//]: # ()
|
57
|
+
[//]: # ()
|
58
|
+
[//]: # ([demo](https://github.com/DLTech21/ofd-vue-demo))
|
59
|
+
|
60
|
+
[//]: # ()
|
61
|
+
[//]: # ()
|
62
|
+
[//]: # ()
|
63
|
+
[//]: # ()
|
64
|
+
|
65
|
+
# vue-pdfjs-view
|
66
|
+
|
67
|
+
|
68
|
+
## vue使用
|
69
|
+
|
70
|
+
|
71
|
+
### npm 安装
|
72
|
+
|
73
|
+
|
74
|
+
```
|
75
|
+
|
76
|
+
npm i ofd-view -S
|
77
|
+
|
78
|
+
```
|
79
|
+
|
80
|
+
|
81
|
+
在 main.js 中写入以下内容:
|
82
|
+
|
83
|
+
|
84
|
+
```
|
85
|
+
|
86
|
+
import OfdView from "ofd-view";
|
87
|
+
import 'ofd-view/lib/viewer.css'
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
Vue.use(OfdView);
|
92
|
+
|
93
|
+
```
|
94
|
+
|
95
|
+
|
96
|
+
在 静态页 index.html 中声明dir为ltr
|
97
|
+
|
98
|
+
|
99
|
+
```
|
100
|
+
|
101
|
+
dir="ltr"
|
102
|
+
|
103
|
+
```
|
104
|
+
|
105
|
+
|
106
|
+
配置参数
|
107
|
+
|
108
|
+
| 参数 | 说明 | 类型 | 示例 | 默认值 |
|
109
|
+
| --- |---------------------------| --- | --- | --- |
|
110
|
+
| file | ofd文件 | url | | [] |
|
111
|
+
| mem | parser_x.js变量 | object | | - |
|
112
|
+
| secret | | string | | |
|
113
|
+
| digest | | string | | |
|
114
|
+
| canDownload | 是否可下载 | boolean | | true |
|
115
|
+
| canPrint | 是否可打印(打印合脊那边客户看不懂新打开页的意思) | boolean | | true |
|
116
|
+
| canOpen | 是否可打开新文档 | boolean | | false |
|
@@ -1,11 +1,11 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="40"
|
5
|
-
height="40"
|
6
|
-
viewBox="0 0 40 40">
|
7
|
-
<path
|
8
|
-
d="M 1.5006714,23.536225 6.8925879,18.994244 14.585721,26.037937 34.019683,4.5410479 38.499329,9.2235032 14.585721,35.458952 z"
|
9
|
-
id="path4"
|
10
|
-
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.25402856;stroke-opacity:1" />
|
11
|
-
</svg>
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
4
|
+
width="40"
|
5
|
+
height="40"
|
6
|
+
viewBox="0 0 40 40">
|
7
|
+
<path
|
8
|
+
d="M 1.5006714,23.536225 6.8925879,18.994244 14.585721,26.037937 34.019683,4.5410479 38.499329,9.2235032 14.585721,35.458952 z"
|
9
|
+
id="path4"
|
10
|
+
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.25402856;stroke-opacity:1" />
|
11
|
+
</svg>
|
@@ -1,16 +1,16 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
height="40"
|
5
|
-
width="40"
|
6
|
-
viewBox="0 0 40 40">
|
7
|
-
<rect
|
8
|
-
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
9
|
-
width="33.76017"
|
10
|
-
height="33.76017"
|
11
|
-
x="3.119915"
|
12
|
-
y="3.119915" />
|
13
|
-
<path
|
14
|
-
d="m 20.677967,8.54499 c -7.342801,0 -13.295293,4.954293 -13.295293,11.065751 0,2.088793 0.3647173,3.484376 1.575539,5.150563 L 6.0267418,31.45501 13.560595,29.011117 c 2.221262,1.387962 4.125932,1.665377 7.117372,1.665377 7.3428,0 13.295291,-4.954295 13.295291,-11.065753 0,-6.111458 -5.952491,-11.065751 -13.295291,-11.065751 z"
|
15
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.93031836;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/>
|
16
|
-
</svg>
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
4
|
+
height="40"
|
5
|
+
width="40"
|
6
|
+
viewBox="0 0 40 40">
|
7
|
+
<rect
|
8
|
+
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
9
|
+
width="33.76017"
|
10
|
+
height="33.76017"
|
11
|
+
x="3.119915"
|
12
|
+
y="3.119915" />
|
13
|
+
<path
|
14
|
+
d="m 20.677967,8.54499 c -7.342801,0 -13.295293,4.954293 -13.295293,11.065751 0,2.088793 0.3647173,3.484376 1.575539,5.150563 L 6.0267418,31.45501 13.560595,29.011117 c 2.221262,1.387962 4.125932,1.665377 7.117372,1.665377 7.3428,0 13.295291,-4.954295 13.295291,-11.065753 0,-6.111458 -5.952491,-11.065751 -13.295291,-11.065751 z"
|
15
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.93031836;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/>
|
16
|
+
</svg>
|
@@ -1,26 +1,26 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="40"
|
5
|
-
height="40"
|
6
|
-
viewBox="0 0 40 40">
|
7
|
-
<g
|
8
|
-
transform="translate(0,-60)"
|
9
|
-
id="layer1">
|
10
|
-
<rect
|
11
|
-
width="36.460953"
|
12
|
-
height="34.805603"
|
13
|
-
x="1.7695236"
|
14
|
-
y="62.597198"
|
15
|
-
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.30826771;stroke-opacity:1" />
|
16
|
-
<g
|
17
|
-
transform="matrix(0.88763677,0,0,0.88763677,2.2472646,8.9890584)">
|
18
|
-
<path
|
19
|
-
d="M 20,64.526342 C 11.454135,64.526342 4.5263421,71.454135 4.5263421,80 4.5263421,88.545865 11.454135,95.473658 20,95.473658 28.545865,95.473658 35.473658,88.545865 35.473658,80 35.473658,71.454135 28.545865,64.526342 20,64.526342 z m -0.408738,9.488564 c 3.527079,0 6.393832,2.84061 6.393832,6.335441 0,3.494831 -2.866753,6.335441 -6.393832,6.335441 -3.527079,0 -6.393832,-2.84061 -6.393832,-6.335441 0,-3.494831 2.866753,-6.335441 6.393832,-6.335441 z"
|
20
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.02768445;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
21
|
-
<path
|
22
|
-
d="m 7.2335209,71.819938 4.9702591,4.161823 c -1.679956,2.581606 -1.443939,6.069592 0.159325,8.677725 l -5.1263071,3.424463 c 0.67516,1.231452 3.0166401,3.547686 4.2331971,4.194757 l 3.907728,-4.567277 c 2.541952,1.45975 5.730694,1.392161 8.438683,-0.12614 l 3.469517,6.108336 c 1.129779,-0.44367 4.742234,-3.449633 5.416358,-5.003859 l -5.46204,-4.415541 c 1.44319,-2.424098 1.651175,-5.267515 0.557303,-7.748623 l 5.903195,-3.833951 C 33.14257,71.704996 30.616217,69.018606 29.02952,67.99296 l -4.118813,4.981678 C 22.411934,71.205099 18.900853,70.937534 16.041319,72.32916 l -3.595408,-5.322091 c -1.345962,0.579488 -4.1293881,2.921233 -5.2123901,4.812869 z m 8.1010311,3.426672 c 2.75284,-2.446266 6.769149,-2.144694 9.048998,0.420874 2.279848,2.56557 2.113919,6.596919 -0.638924,9.043185 -2.752841,2.446267 -6.775754,2.13726 -9.055604,-0.428308 -2.279851,-2.565568 -2.107313,-6.589485 0.64553,-9.035751 z"
|
23
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
24
|
-
</g>
|
25
|
-
</g>
|
26
|
-
</svg>
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
4
|
+
width="40"
|
5
|
+
height="40"
|
6
|
+
viewBox="0 0 40 40">
|
7
|
+
<g
|
8
|
+
transform="translate(0,-60)"
|
9
|
+
id="layer1">
|
10
|
+
<rect
|
11
|
+
width="36.460953"
|
12
|
+
height="34.805603"
|
13
|
+
x="1.7695236"
|
14
|
+
y="62.597198"
|
15
|
+
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.30826771;stroke-opacity:1" />
|
16
|
+
<g
|
17
|
+
transform="matrix(0.88763677,0,0,0.88763677,2.2472646,8.9890584)">
|
18
|
+
<path
|
19
|
+
d="M 20,64.526342 C 11.454135,64.526342 4.5263421,71.454135 4.5263421,80 4.5263421,88.545865 11.454135,95.473658 20,95.473658 28.545865,95.473658 35.473658,88.545865 35.473658,80 35.473658,71.454135 28.545865,64.526342 20,64.526342 z m -0.408738,9.488564 c 3.527079,0 6.393832,2.84061 6.393832,6.335441 0,3.494831 -2.866753,6.335441 -6.393832,6.335441 -3.527079,0 -6.393832,-2.84061 -6.393832,-6.335441 0,-3.494831 2.866753,-6.335441 6.393832,-6.335441 z"
|
20
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.02768445;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
21
|
+
<path
|
22
|
+
d="m 7.2335209,71.819938 4.9702591,4.161823 c -1.679956,2.581606 -1.443939,6.069592 0.159325,8.677725 l -5.1263071,3.424463 c 0.67516,1.231452 3.0166401,3.547686 4.2331971,4.194757 l 3.907728,-4.567277 c 2.541952,1.45975 5.730694,1.392161 8.438683,-0.12614 l 3.469517,6.108336 c 1.129779,-0.44367 4.742234,-3.449633 5.416358,-5.003859 l -5.46204,-4.415541 c 1.44319,-2.424098 1.651175,-5.267515 0.557303,-7.748623 l 5.903195,-3.833951 C 33.14257,71.704996 30.616217,69.018606 29.02952,67.99296 l -4.118813,4.981678 C 22.411934,71.205099 18.900853,70.937534 16.041319,72.32916 l -3.595408,-5.322091 c -1.345962,0.579488 -4.1293881,2.921233 -5.2123901,4.812869 z m 8.1010311,3.426672 c 2.75284,-2.446266 6.769149,-2.144694 9.048998,0.420874 2.279848,2.56557 2.113919,6.596919 -0.638924,9.043185 -2.752841,2.446267 -6.775754,2.13726 -9.055604,-0.428308 -2.279851,-2.565568 -2.107313,-6.589485 0.64553,-9.035751 z"
|
23
|
+
style="fill:#000000;fill-opacity:1;stroke:none" />
|
24
|
+
</g>
|
25
|
+
</g>
|
26
|
+
</svg>
|
@@ -1,10 +1,10 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="64"
|
5
|
-
height="64"
|
6
|
-
viewBox="0 0 64 64">
|
7
|
-
<path
|
8
|
-
d="M 32.003143,1.4044602 57.432701,62.632577 6.5672991,62.627924 z"
|
9
|
-
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:1.00493038;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
10
|
-
</svg>
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
4
|
+
width="64"
|
5
|
+
height="64"
|
6
|
+
viewBox="0 0 64 64">
|
7
|
+
<path
|
8
|
+
d="M 32.003143,1.4044602 57.432701,62.632577 6.5672991,62.627924 z"
|
9
|
+
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:1.00493038;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
10
|
+
</svg>
|
@@ -1,11 +1,11 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="64"
|
5
|
-
height="64"
|
6
|
-
viewBox="0 0 64 64">
|
7
|
-
<path
|
8
|
-
d="M 25.470843,9.4933766 C 25.30219,12.141818 30.139101,14.445969 34.704831,13.529144 40.62635,12.541995 41.398833,7.3856498 35.97505,5.777863 31.400921,4.1549155 25.157674,6.5445892 25.470843,9.4933766 z M 4.5246282,17.652051 C 4.068249,11.832873 9.2742983,5.9270407 18.437379,3.0977088 29.751911,-0.87185184 45.495663,1.4008022 53.603953,7.1104009 c 9.275765,6.1889221 7.158128,16.2079421 -3.171076,21.5939521 -1.784316,1.635815 -6.380222,1.21421 -7.068351,3.186186 -1.04003,0.972427 -1.288046,2.050158 -1.232864,3.168203 1.015111,2.000108 -3.831548,1.633216 -3.270553,3.759574 0.589477,5.264544 -0.179276,10.53738 -0.362842,15.806257 -0.492006,2.184998 1.163456,4.574232 -0.734888,6.610642 -2.482919,2.325184 -7.30604,2.189143 -9.193497,-0.274767 -2.733688,-1.740626 -8.254447,-3.615254 -6.104247,-6.339626 3.468112,-1.708686 -2.116197,-3.449897 0.431242,-5.080274 5.058402,-1.39256 -2.393215,-2.304318 -0.146889,-4.334645 3.069198,-0.977415 2.056986,-2.518352 -0.219121,-3.540397 1.876567,-1.807151 1.484149,-4.868919 -2.565455,-5.942205 0.150866,-1.805474 2.905737,-4.136876 -1.679967,-5.20493 C 10.260902,27.882167 4.6872697,22.95045 4.5245945,17.652051 z"
|
9
|
-
id="path604"
|
10
|
-
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.72665179;stroke-opacity:1" />
|
11
|
-
</svg>
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
4
|
+
width="64"
|
5
|
+
height="64"
|
6
|
+
viewBox="0 0 64 64">
|
7
|
+
<path
|
8
|
+
d="M 25.470843,9.4933766 C 25.30219,12.141818 30.139101,14.445969 34.704831,13.529144 40.62635,12.541995 41.398833,7.3856498 35.97505,5.777863 31.400921,4.1549155 25.157674,6.5445892 25.470843,9.4933766 z M 4.5246282,17.652051 C 4.068249,11.832873 9.2742983,5.9270407 18.437379,3.0977088 29.751911,-0.87185184 45.495663,1.4008022 53.603953,7.1104009 c 9.275765,6.1889221 7.158128,16.2079421 -3.171076,21.5939521 -1.784316,1.635815 -6.380222,1.21421 -7.068351,3.186186 -1.04003,0.972427 -1.288046,2.050158 -1.232864,3.168203 1.015111,2.000108 -3.831548,1.633216 -3.270553,3.759574 0.589477,5.264544 -0.179276,10.53738 -0.362842,15.806257 -0.492006,2.184998 1.163456,4.574232 -0.734888,6.610642 -2.482919,2.325184 -7.30604,2.189143 -9.193497,-0.274767 -2.733688,-1.740626 -8.254447,-3.615254 -6.104247,-6.339626 3.468112,-1.708686 -2.116197,-3.449897 0.431242,-5.080274 5.058402,-1.39256 -2.393215,-2.304318 -0.146889,-4.334645 3.069198,-0.977415 2.056986,-2.518352 -0.219121,-3.540397 1.876567,-1.807151 1.484149,-4.868919 -2.565455,-5.942205 0.150866,-1.805474 2.905737,-4.136876 -1.679967,-5.20493 C 10.260902,27.882167 4.6872697,22.95045 4.5245945,17.652051 z"
|
9
|
+
id="path604"
|
10
|
+
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.72665179;stroke-opacity:1" />
|
11
|
+
</svg>
|
@@ -1,11 +1,11 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="64"
|
5
|
-
height="64"
|
6
|
-
viewBox="0 0 64 64">
|
7
|
-
<path
|
8
|
-
d="M 32.003143,10.913072 57.432701,53.086929 6.567299,53.083723 z"
|
9
|
-
id="path2985"
|
10
|
-
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:0.83403099;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
11
|
-
</svg>
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
4
|
+
width="64"
|
5
|
+
height="64"
|
6
|
+
viewBox="0 0 64 64">
|
7
|
+
<path
|
8
|
+
d="M 32.003143,10.913072 57.432701,53.086929 6.567299,53.083723 z"
|
9
|
+
id="path2985"
|
10
|
+
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:0.83403099;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
11
|
+
</svg>
|
@@ -1,7 +1,7 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="40"
|
5
|
-
height="40"
|
6
|
-
viewBox="0 0 40 40">
|
7
|
-
</svg>
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
4
|
+
width="40"
|
5
|
+
height="40"
|
6
|
+
viewBox="0 0 40 40">
|
7
|
+
</svg>
|
@@ -1,42 +1,42 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="40"
|
5
|
-
height="40"
|
6
|
-
viewBox="0 0 40 40">
|
7
|
-
<rect
|
8
|
-
width="36.075428"
|
9
|
-
height="31.096582"
|
10
|
-
x="1.962286"
|
11
|
-
y="4.4517088"
|
12
|
-
id="rect4"
|
13
|
-
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.23004246;stroke-opacity:1" />
|
14
|
-
<rect
|
15
|
-
width="27.96859"
|
16
|
-
height="1.5012145"
|
17
|
-
x="6.0157046"
|
18
|
-
y="10.285"
|
19
|
-
id="rect6"
|
20
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
21
|
-
<rect
|
22
|
-
width="27.96859"
|
23
|
-
height="0.85783684"
|
24
|
-
x="6.0157056"
|
25
|
-
y="23.21689"
|
26
|
-
id="rect8"
|
27
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
28
|
-
<rect
|
29
|
-
width="27.96859"
|
30
|
-
height="0.85783684"
|
31
|
-
x="5.8130345"
|
32
|
-
y="28.964394"
|
33
|
-
id="rect10"
|
34
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
35
|
-
<rect
|
36
|
-
width="27.96859"
|
37
|
-
height="0.85783684"
|
38
|
-
x="6.0157046"
|
39
|
-
y="17.426493"
|
40
|
-
id="rect12"
|
41
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
42
|
-
</svg>
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
4
|
+
width="40"
|
5
|
+
height="40"
|
6
|
+
viewBox="0 0 40 40">
|
7
|
+
<rect
|
8
|
+
width="36.075428"
|
9
|
+
height="31.096582"
|
10
|
+
x="1.962286"
|
11
|
+
y="4.4517088"
|
12
|
+
id="rect4"
|
13
|
+
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.23004246;stroke-opacity:1" />
|
14
|
+
<rect
|
15
|
+
width="27.96859"
|
16
|
+
height="1.5012145"
|
17
|
+
x="6.0157046"
|
18
|
+
y="10.285"
|
19
|
+
id="rect6"
|
20
|
+
style="fill:#000000;fill-opacity:1;stroke:none" />
|
21
|
+
<rect
|
22
|
+
width="27.96859"
|
23
|
+
height="0.85783684"
|
24
|
+
x="6.0157056"
|
25
|
+
y="23.21689"
|
26
|
+
id="rect8"
|
27
|
+
style="fill:#000000;fill-opacity:1;stroke:none" />
|
28
|
+
<rect
|
29
|
+
width="27.96859"
|
30
|
+
height="0.85783684"
|
31
|
+
x="5.8130345"
|
32
|
+
y="28.964394"
|
33
|
+
id="rect10"
|
34
|
+
style="fill:#000000;fill-opacity:1;stroke:none" />
|
35
|
+
<rect
|
36
|
+
width="27.96859"
|
37
|
+
height="0.85783684"
|
38
|
+
x="6.0157046"
|
39
|
+
y="17.426493"
|
40
|
+
id="rect12"
|
41
|
+
style="fill:#000000;fill-opacity:1;stroke:none" />
|
42
|
+
</svg>
|
@@ -1,16 +1,16 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="40"
|
5
|
-
height="40"
|
6
|
-
viewBox="0 0 40 40">
|
7
|
-
<rect
|
8
|
-
width="33.76017"
|
9
|
-
height="33.76017"
|
10
|
-
x="3.119915"
|
11
|
-
y="3.119915"
|
12
|
-
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
13
|
-
<path
|
14
|
-
d="m 17.692678,34.50206 0,-16.182224 c -1.930515,-0.103225 -3.455824,-0.730383 -4.57593,-1.881473 -1.12011,-1.151067 -1.680164,-2.619596 -1.680164,-4.405591 0,-1.992435 0.621995,-3.5796849 1.865988,-4.7617553 1.243989,-1.1820288 3.06352,-1.7730536 5.458598,-1.7730764 l 9.802246,0 0,2.6789711 -2.229895,0 0,26.3251486 -2.632515,0 0,-26.3251486 -3.45324,0 0,26.3251486 z"
|
15
|
-
style="font-size:29.42051125px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.07795751;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial" />
|
16
|
-
</svg>
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
4
|
+
width="40"
|
5
|
+
height="40"
|
6
|
+
viewBox="0 0 40 40">
|
7
|
+
<rect
|
8
|
+
width="33.76017"
|
9
|
+
height="33.76017"
|
10
|
+
x="3.119915"
|
11
|
+
y="3.119915"
|
12
|
+
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
13
|
+
<path
|
14
|
+
d="m 17.692678,34.50206 0,-16.182224 c -1.930515,-0.103225 -3.455824,-0.730383 -4.57593,-1.881473 -1.12011,-1.151067 -1.680164,-2.619596 -1.680164,-4.405591 0,-1.992435 0.621995,-3.5796849 1.865988,-4.7617553 1.243989,-1.1820288 3.06352,-1.7730536 5.458598,-1.7730764 l 9.802246,0 0,2.6789711 -2.229895,0 0,26.3251486 -2.632515,0 0,-26.3251486 -3.45324,0 0,26.3251486 z"
|
15
|
+
style="font-size:29.42051125px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.07795751;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial" />
|
16
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
2
|
-
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
3
|
-
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
1
|
+
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
2
|
+
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
3
|
+
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
4
4
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M8 12a1 1 0 0 1-.707-.293l-5-5a1 1 0 0 1 1.414-1.414L8 9.586l4.293-4.293a1 1 0 0 1 1.414 1.414l-5 5A1 1 0 0 1 8 12z"></path></svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
2
|
-
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
3
|
-
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
1
|
+
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
2
|
+
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
3
|
+
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
4
4
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M13 11a1 1 0 0 1-.707-.293L8 6.414l-4.293 4.293a1 1 0 0 1-1.414-1.414l5-5a1 1 0 0 1 1.414 0l5 5A1 1 0 0 1 13 11z"></path></svg>
|
@@ -1,24 +1,24 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"
|
2
|
-
fill="rgba(255,255,255,1)" style="animation:spinLoadingIcon 1s steps(12,end)
|
3
|
-
infinite"><style>@keyframes
|
4
|
-
spinLoadingIcon{to{transform:rotate(360deg)}}</style><path
|
5
|
-
d="M7 3V1s0-1 1-1 1 1 1 1v2s0 1-1 1-1-1-1-1z"/><path d="M4.63
|
6
|
-
4.1l-1-1.73S3.13 1.5 4 1c.87-.5 1.37.37 1.37.37l1 1.73s.5.87-.37
|
7
|
-
1.37c-.87.57-1.37-.37-1.37-.37z" fill-opacity=".93"/><path
|
8
|
-
d="M3.1 6.37l-1.73-1S.5 4.87 1 4c.5-.87 1.37-.37 1.37-.37l1.73 1s.87.5.37
|
9
|
-
1.37c-.5.87-1.37.37-1.37.37z" fill-opacity=".86"/><path d="M3
|
10
|
-
9H1S0 9 0 8s1-1 1-1h2s1 0 1 1-1 1-1 1z" fill-opacity=".79"/><path d="M4.1 11.37l-1.73 1S1.5 12.87 1
|
11
|
-
12c-.5-.87.37-1.37.37-1.37l1.73-1s.87-.5 1.37.37c.5.87-.37 1.37-.37 1.37z"
|
12
|
-
fill-opacity=".72"/><path d="M3.63 13.56l1-1.73s.5-.87
|
13
|
-
1.37-.37c.87.5.37 1.37.37 1.37l-1 1.73s-.5.87-1.37.37c-.87-.5-.37-1.37-.37-1.37z"
|
14
|
-
fill-opacity=".65"/><path d="M7 15v-2s0-1 1-1 1 1 1 1v2s0 1-1
|
15
|
-
1-1-1-1-1z" fill-opacity=".58"/><path d="M10.63
|
16
|
-
14.56l-1-1.73s-.5-.87.37-1.37c.87-.5 1.37.37 1.37.37l1 1.73s.5.87-.37
|
17
|
-
1.37c-.87.5-1.37-.37-1.37-.37z" fill-opacity=".51"/><path
|
18
|
-
d="M13.56 12.37l-1.73-1s-.87-.5-.37-1.37c.5-.87 1.37-.37 1.37-.37l1.73 1s.87.5.37
|
19
|
-
1.37c-.5.87-1.37.37-1.37.37z" fill-opacity=".44"/><path d="M15
|
20
|
-
9h-2s-1 0-1-1 1-1 1-1h2s1 0 1 1-1 1-1 1z" fill-opacity=".37"/><path d="M14.56 5.37l-1.73
|
21
|
-
1s-.87.5-1.37-.37c-.5-.87.37-1.37.37-1.37l1.73-1s.87-.5 1.37.37c.5.87-.37 1.37-.37
|
22
|
-
1.37z" fill-opacity=".3"/><path d="M9.64 3.1l.98-1.66s.5-.874
|
23
|
-
1.37-.37c.87.5.37 1.37.37 1.37l-1 1.73s-.5.87-1.37.37c-.87-.5-.37-1.37-.37-1.37z"
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"
|
2
|
+
fill="rgba(255,255,255,1)" style="animation:spinLoadingIcon 1s steps(12,end)
|
3
|
+
infinite"><style>@keyframes
|
4
|
+
spinLoadingIcon{to{transform:rotate(360deg)}}</style><path
|
5
|
+
d="M7 3V1s0-1 1-1 1 1 1 1v2s0 1-1 1-1-1-1-1z"/><path d="M4.63
|
6
|
+
4.1l-1-1.73S3.13 1.5 4 1c.87-.5 1.37.37 1.37.37l1 1.73s.5.87-.37
|
7
|
+
1.37c-.87.57-1.37-.37-1.37-.37z" fill-opacity=".93"/><path
|
8
|
+
d="M3.1 6.37l-1.73-1S.5 4.87 1 4c.5-.87 1.37-.37 1.37-.37l1.73 1s.87.5.37
|
9
|
+
1.37c-.5.87-1.37.37-1.37.37z" fill-opacity=".86"/><path d="M3
|
10
|
+
9H1S0 9 0 8s1-1 1-1h2s1 0 1 1-1 1-1 1z" fill-opacity=".79"/><path d="M4.1 11.37l-1.73 1S1.5 12.87 1
|
11
|
+
12c-.5-.87.37-1.37.37-1.37l1.73-1s.87-.5 1.37.37c.5.87-.37 1.37-.37 1.37z"
|
12
|
+
fill-opacity=".72"/><path d="M3.63 13.56l1-1.73s.5-.87
|
13
|
+
1.37-.37c.87.5.37 1.37.37 1.37l-1 1.73s-.5.87-1.37.37c-.87-.5-.37-1.37-.37-1.37z"
|
14
|
+
fill-opacity=".65"/><path d="M7 15v-2s0-1 1-1 1 1 1 1v2s0 1-1
|
15
|
+
1-1-1-1-1z" fill-opacity=".58"/><path d="M10.63
|
16
|
+
14.56l-1-1.73s-.5-.87.37-1.37c.87-.5 1.37.37 1.37.37l1 1.73s.5.87-.37
|
17
|
+
1.37c-.87.5-1.37-.37-1.37-.37z" fill-opacity=".51"/><path
|
18
|
+
d="M13.56 12.37l-1.73-1s-.87-.5-.37-1.37c.5-.87 1.37-.37 1.37-.37l1.73 1s.87.5.37
|
19
|
+
1.37c-.5.87-1.37.37-1.37.37z" fill-opacity=".44"/><path d="M15
|
20
|
+
9h-2s-1 0-1-1 1-1 1-1h2s1 0 1 1-1 1-1 1z" fill-opacity=".37"/><path d="M14.56 5.37l-1.73
|
21
|
+
1s-.87.5-1.37-.37c-.5-.87.37-1.37.37-1.37l1.73-1s.87-.5 1.37.37c.5.87-.37 1.37-.37
|
22
|
+
1.37z" fill-opacity=".3"/><path d="M9.64 3.1l.98-1.66s.5-.874
|
23
|
+
1.37-.37c.87.5.37 1.37.37 1.37l-1 1.73s-.5.87-1.37.37c-.87-.5-.37-1.37-.37-1.37z"
|
24
24
|
fill-opacity=".23"/></svg>
|