cx 25.10.0 → 25.10.1

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.
Files changed (137) hide show
  1. package/LICENSE-THIRD-PARTY.md +91 -91
  2. package/LICENSE.md +7 -7
  3. package/README.md +46 -46
  4. package/dist/manifest.js +570 -570
  5. package/dist/ui.js +1 -3
  6. package/package.json +1 -1
  7. package/src/charts/Bar.d.ts +27 -27
  8. package/src/charts/BarGraph.d.ts +15 -15
  9. package/src/charts/Chart.d.ts +12 -12
  10. package/src/charts/ColorMap.d.ts +21 -21
  11. package/src/charts/Column.d.ts +29 -29
  12. package/src/charts/ColumnBarBase.d.ts +64 -64
  13. package/src/charts/ColumnBarGraphBase.d.ts +73 -73
  14. package/src/charts/ColumnGraph.d.ts +18 -18
  15. package/src/charts/Gridlines.d.ts +24 -24
  16. package/src/charts/Legend.d.ts +45 -45
  17. package/src/charts/LegendEntry.d.ts +54 -54
  18. package/src/charts/LineGraph.d.ts +101 -101
  19. package/src/charts/Marker.d.ts +110 -110
  20. package/src/charts/MarkerLine.d.ts +56 -56
  21. package/src/charts/MouseTracker.d.ts +16 -16
  22. package/src/charts/PieChart.d.ts +92 -92
  23. package/src/charts/PieLabel.d.ts +26 -26
  24. package/src/charts/PieLabelsContainer.d.ts +6 -6
  25. package/src/charts/Range.d.ts +74 -74
  26. package/src/charts/RangeMarker.d.ts +35 -35
  27. package/src/charts/ScatterGraph.d.ts +64 -64
  28. package/src/charts/Swimlane.d.ts +24 -24
  29. package/src/charts/Swimlanes.d.ts +41 -41
  30. package/src/charts/axis/Axis.d.ts +113 -113
  31. package/src/charts/axis/Axis.scss +22 -22
  32. package/src/charts/axis/CategoryAxis.d.ts +30 -30
  33. package/src/charts/axis/NumericAxis.d.ts +46 -46
  34. package/src/charts/axis/Stack.d.ts +10 -10
  35. package/src/charts/axis/TimeAxis.d.ts +31 -31
  36. package/src/charts/axis/index.d.ts +3 -3
  37. package/src/charts/axis/index.scss +5 -5
  38. package/src/charts/axis/variables.scss +2 -2
  39. package/src/charts/helpers/MinMaxFinder.d.ts +22 -22
  40. package/src/charts/helpers/PointReducer.d.ts +24 -24
  41. package/src/charts/helpers/SnapPointFinder.d.ts +30 -30
  42. package/src/charts/helpers/ValueAtFinder.d.ts +16 -16
  43. package/src/charts/helpers/index.d.ts +4 -4
  44. package/src/charts/index.d.ts +27 -27
  45. package/src/charts/index.scss +22 -22
  46. package/src/charts/shapes.d.ts +22 -22
  47. package/src/global.scss +13 -13
  48. package/src/index.scss +6 -6
  49. package/src/svg/index.scss +8 -8
  50. package/src/ui/Instance.js +1 -4
  51. package/src/ui/index.scss +2 -2
  52. package/src/ui/layout/index.scss +3 -3
  53. package/src/ui/layout/variables.scss +2 -2
  54. package/src/ui/variables.scss +1 -1
  55. package/src/util/call-once.scss +6 -6
  56. package/src/util/index.scss +10 -10
  57. package/src/util/scss/divide.scss +3 -3
  58. package/src/util/scss/index.scss +9 -9
  59. package/src/variables.scss +217 -217
  60. package/src/widgets/AccessorBindings.spec.tsx +66 -66
  61. package/src/widgets/Button.d.ts +58 -58
  62. package/src/widgets/CxCredit.d.ts +12 -12
  63. package/src/widgets/DocumentTitle.d.ts +11 -11
  64. package/src/widgets/FlexBox.d.ts +69 -69
  65. package/src/widgets/Heading.d.ts +16 -16
  66. package/src/widgets/HighlightedSearchText.d.ts +9 -9
  67. package/src/widgets/HtmlElement.d.ts +30 -30
  68. package/src/widgets/Icon.d.ts +34 -34
  69. package/src/widgets/ProgressBar.d.ts +17 -17
  70. package/src/widgets/Resizer.d.ts +27 -27
  71. package/src/widgets/Sandbox.d.ts +18 -18
  72. package/src/widgets/Section.d.ts +52 -52
  73. package/src/widgets/animations.scss +10 -10
  74. package/src/widgets/autoFocus.d.ts +1 -1
  75. package/src/widgets/cx.d.ts +1 -1
  76. package/src/widgets/drag-drop/DragSource.d.ts +45 -45
  77. package/src/widgets/drag-drop/DropZone.d.ts +98 -98
  78. package/src/widgets/drag-drop/index.d.ts +4 -4
  79. package/src/widgets/drag-drop/index.scss +3 -3
  80. package/src/widgets/drag-drop/ops.d.ts +56 -56
  81. package/src/widgets/enableAllInternalDependencies.d.ts +1 -1
  82. package/src/widgets/form/Calendar.variables.scss +63 -63
  83. package/src/widgets/form/Checkbox.variables.scss +39 -39
  84. package/src/widgets/form/ColorPicker.variables.scss +22 -22
  85. package/src/widgets/form/Radio.variables.scss +45 -45
  86. package/src/widgets/form/index.scss +24 -24
  87. package/src/widgets/grid/Grid.d.ts +442 -442
  88. package/src/widgets/grid/GridCell.d.ts +38 -38
  89. package/src/widgets/grid/Pagination.d.ts +14 -14
  90. package/src/widgets/grid/TreeNode.d.ts +23 -23
  91. package/src/widgets/grid/index.d.ts +3 -3
  92. package/src/widgets/grid/index.scss +3 -3
  93. package/src/widgets/icons/arrow-down.svg +3 -3
  94. package/src/widgets/icons/arrow-right.svg +2 -2
  95. package/src/widgets/icons/base.svg +104 -104
  96. package/src/widgets/icons/calendar-old.svg +169 -169
  97. package/src/widgets/icons/calendar.svg +187 -187
  98. package/src/widgets/icons/clear.svg +74 -74
  99. package/src/widgets/icons/close.svg +74 -74
  100. package/src/widgets/icons/dropdown-arrow.svg +61 -61
  101. package/src/widgets/icons/file.svg +4 -4
  102. package/src/widgets/icons/folder-open.svg +5 -5
  103. package/src/widgets/icons/folder.svg +58 -58
  104. package/src/widgets/icons/forward.svg +67 -67
  105. package/src/widgets/icons/loading.svg +4 -4
  106. package/src/widgets/icons/search.svg +107 -107
  107. package/src/widgets/icons/sort-asc.svg +3 -3
  108. package/src/widgets/index.d.ts +55 -55
  109. package/src/widgets/index.scss +16 -16
  110. package/src/widgets/nav/Link.d.ts +26 -26
  111. package/src/widgets/nav/LinkButton.d.ts +34 -34
  112. package/src/widgets/nav/Menu.d.ts +27 -27
  113. package/src/widgets/nav/MenuItem.d.ts +31 -31
  114. package/src/widgets/nav/MenuSpacer.d.ts +5 -5
  115. package/src/widgets/nav/RedirectRoute.d.ts +9 -9
  116. package/src/widgets/nav/Route.d.ts +21 -21
  117. package/src/widgets/nav/Scroller.d.ts +17 -17
  118. package/src/widgets/nav/Submenu.d.ts +6 -6
  119. package/src/widgets/nav/Tab.d.ts +33 -33
  120. package/src/widgets/nav/Tab.variables.scss +84 -84
  121. package/src/widgets/nav/index.d.ts +10 -10
  122. package/src/widgets/nav/index.scss +5 -5
  123. package/src/widgets/overlay/ContextMenu.d.ts +10 -10
  124. package/src/widgets/overlay/Dropdown.d.ts +32 -32
  125. package/src/widgets/overlay/FlyweightTooltipTracker.d.ts +8 -8
  126. package/src/widgets/overlay/MsgBox.d.ts +16 -16
  127. package/src/widgets/overlay/Overlay.d.ts +73 -73
  128. package/src/widgets/overlay/Toast.d.ts +30 -30
  129. package/src/widgets/overlay/Tooltip.d.ts +50 -50
  130. package/src/widgets/overlay/Window.d.ts +42 -42
  131. package/src/widgets/overlay/Window.variables.scss +62 -62
  132. package/src/widgets/overlay/alerts.d.ts +7 -7
  133. package/src/widgets/overlay/captureMouse.d.ts +53 -53
  134. package/src/widgets/overlay/captureMouse.scss +13 -13
  135. package/src/widgets/overlay/createHotPromiseWindowFactory.d.ts +18 -18
  136. package/src/widgets/overlay/index.d.ts +11 -11
  137. package/src/widgets/overlay/index.scss +15 -15
@@ -1,187 +1,187 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="32"
13
- height="32"
14
- viewBox="0 0 32 32"
15
- id="svg2"
16
- version="1.1"
17
- inkscape:version="0.91 r13725"
18
- sodipodi:docname="calendar2.svg">
19
- <defs
20
- id="defs4" />
21
- <sodipodi:namedview
22
- id="base"
23
- pagecolor="#ffffff"
24
- bordercolor="#666666"
25
- borderopacity="1.0"
26
- inkscape:pageopacity="0.0"
27
- inkscape:pageshadow="2"
28
- inkscape:zoom="22.627417"
29
- inkscape:cx="20.979274"
30
- inkscape:cy="18.850542"
31
- inkscape:document-units="px"
32
- inkscape:current-layer="layer1"
33
- showgrid="true"
34
- units="px"
35
- inkscape:window-width="1856"
36
- inkscape:window-height="1057"
37
- inkscape:window-x="3056"
38
- inkscape:window-y="439"
39
- inkscape:window-maximized="1">
40
- <inkscape:grid
41
- type="xygrid"
42
- id="grid5338"
43
- empspacing="8" />
44
- </sodipodi:namedview>
45
- <metadata
46
- id="metadata7">
47
- <rdf:RDF>
48
- <cc:Work
49
- rdf:about="">
50
- <dc:format>image/svg+xml</dc:format>
51
- <dc:type
52
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
53
- <dc:title />
54
- </cc:Work>
55
- </rdf:RDF>
56
- </metadata>
57
- <g
58
- inkscape:label="Layer 1"
59
- inkscape:groupmode="layer"
60
- id="layer1"
61
- transform="translate(0,-1020.3622)"
62
- style="display:inline">
63
- <path
64
- style="fill:none;stroke:#999999;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
65
- d="m 4,1023.3622 6,0"
66
- id="path4210"
67
- inkscape:connector-curvature="0" />
68
- <path
69
- inkscape:connector-curvature="0"
70
- id="path4214"
71
- d="m 20,1023.3622 6,0"
72
- style="fill:none;stroke:#999999;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
73
- <rect
74
- style="display:inline;opacity:1;fill:#000000;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
75
- id="rect4288"
76
- width="4"
77
- height="4"
78
- x="19"
79
- y="1041.3622" />
80
- <path
81
- style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
82
- d="m 3,1045.3622 24,0"
83
- id="path4216"
84
- inkscape:connector-curvature="0" />
85
- <path
86
- inkscape:connector-curvature="0"
87
- id="path4218"
88
- d="m 3,1041.3622 24,0"
89
- style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
90
- <path
91
- style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
92
- d="m 3,1037.3622 24,0"
93
- id="path4220"
94
- inkscape:connector-curvature="0" />
95
- <path
96
- style="fill:none;stroke:#808080;stroke-width:1.00000322px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
97
- d="m 7,1048.3625 0,-15"
98
- id="path4224"
99
- inkscape:connector-curvature="0" />
100
- <path
101
- style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
102
- d="m 3,1033.3622 24,0"
103
- id="path4240"
104
- inkscape:connector-curvature="0" />
105
- <path
106
- inkscape:connector-curvature="0"
107
- id="path4244"
108
- d="m 11,1048.3625 0,-14.7957"
109
- style="fill:none;stroke:#808080;stroke-width:1.00000322px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
110
- <path
111
- style="fill:none;stroke:#808080;stroke-width:1.00000322px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
112
- d="m 15,1048.3625 0,-14.7276"
113
- id="path4246"
114
- inkscape:connector-curvature="0" />
115
- <path
116
- inkscape:connector-curvature="0"
117
- id="path4248"
118
- d="m 19,1048.3625 0,-14.966"
119
- style="fill:none;stroke:#808080;stroke-width:1.00000322px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
120
- <path
121
- style="fill:none;stroke:#808080;stroke-width:1.00000322px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
122
- d="m 23,1048.3625 0,-14.4892"
123
- id="path4250"
124
- inkscape:connector-curvature="0" />
125
- <rect
126
- y="1028.3622"
127
- x="10"
128
- height="2"
129
- width="10"
130
- id="rect4258"
131
- style="display:inline;opacity:1;fill:#666666;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
132
- <rect
133
- style="opacity:1;fill:none;stroke:#000000;stroke-width:1.99999857;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
134
- id="rect4138"
135
- width="24"
136
- height="24"
137
- x="3"
138
- y="1025.3622" />
139
- </g>
140
- <g
141
- inkscape:groupmode="layer"
142
- id="layer2"
143
- inkscape:label="Base"
144
- style="display:none">
145
- <circle
146
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.0501454;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
147
- id="path4140"
148
- cx="16"
149
- cy="16"
150
- r="12" />
151
- <rect
152
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
153
- id="rect4142-8"
154
- width="12"
155
- height="28"
156
- x="10"
157
- y="2" />
158
- <rect
159
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017611;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
160
- id="rect4144-4"
161
- width="28"
162
- height="12"
163
- x="2"
164
- y="10" />
165
- <rect
166
- y="7.9999995"
167
- x="4"
168
- height="15.999999"
169
- width="24"
170
- id="rect4146"
171
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017379;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
172
- <rect
173
- y="6.0250883"
174
- x="6.0250883"
175
- height="19.949823"
176
- width="19.949823"
177
- id="rect4148-8"
178
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017426;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
179
- <rect
180
- style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.04999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
181
- id="rect4150"
182
- width="16"
183
- height="24"
184
- x="8"
185
- y="4" />
186
- </g>
187
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="32"
13
+ height="32"
14
+ viewBox="0 0 32 32"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.91 r13725"
18
+ sodipodi:docname="calendar2.svg">
19
+ <defs
20
+ id="defs4" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="22.627417"
29
+ inkscape:cx="20.979274"
30
+ inkscape:cy="18.850542"
31
+ inkscape:document-units="px"
32
+ inkscape:current-layer="layer1"
33
+ showgrid="true"
34
+ units="px"
35
+ inkscape:window-width="1856"
36
+ inkscape:window-height="1057"
37
+ inkscape:window-x="3056"
38
+ inkscape:window-y="439"
39
+ inkscape:window-maximized="1">
40
+ <inkscape:grid
41
+ type="xygrid"
42
+ id="grid5338"
43
+ empspacing="8" />
44
+ </sodipodi:namedview>
45
+ <metadata
46
+ id="metadata7">
47
+ <rdf:RDF>
48
+ <cc:Work
49
+ rdf:about="">
50
+ <dc:format>image/svg+xml</dc:format>
51
+ <dc:type
52
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
53
+ <dc:title />
54
+ </cc:Work>
55
+ </rdf:RDF>
56
+ </metadata>
57
+ <g
58
+ inkscape:label="Layer 1"
59
+ inkscape:groupmode="layer"
60
+ id="layer1"
61
+ transform="translate(0,-1020.3622)"
62
+ style="display:inline">
63
+ <path
64
+ style="fill:none;stroke:#999999;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
65
+ d="m 4,1023.3622 6,0"
66
+ id="path4210"
67
+ inkscape:connector-curvature="0" />
68
+ <path
69
+ inkscape:connector-curvature="0"
70
+ id="path4214"
71
+ d="m 20,1023.3622 6,0"
72
+ style="fill:none;stroke:#999999;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
73
+ <rect
74
+ style="display:inline;opacity:1;fill:#000000;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
75
+ id="rect4288"
76
+ width="4"
77
+ height="4"
78
+ x="19"
79
+ y="1041.3622" />
80
+ <path
81
+ style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
82
+ d="m 3,1045.3622 24,0"
83
+ id="path4216"
84
+ inkscape:connector-curvature="0" />
85
+ <path
86
+ inkscape:connector-curvature="0"
87
+ id="path4218"
88
+ d="m 3,1041.3622 24,0"
89
+ style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
90
+ <path
91
+ style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
92
+ d="m 3,1037.3622 24,0"
93
+ id="path4220"
94
+ inkscape:connector-curvature="0" />
95
+ <path
96
+ style="fill:none;stroke:#808080;stroke-width:1.00000322px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
97
+ d="m 7,1048.3625 0,-15"
98
+ id="path4224"
99
+ inkscape:connector-curvature="0" />
100
+ <path
101
+ style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
102
+ d="m 3,1033.3622 24,0"
103
+ id="path4240"
104
+ inkscape:connector-curvature="0" />
105
+ <path
106
+ inkscape:connector-curvature="0"
107
+ id="path4244"
108
+ d="m 11,1048.3625 0,-14.7957"
109
+ style="fill:none;stroke:#808080;stroke-width:1.00000322px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
110
+ <path
111
+ style="fill:none;stroke:#808080;stroke-width:1.00000322px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
112
+ d="m 15,1048.3625 0,-14.7276"
113
+ id="path4246"
114
+ inkscape:connector-curvature="0" />
115
+ <path
116
+ inkscape:connector-curvature="0"
117
+ id="path4248"
118
+ d="m 19,1048.3625 0,-14.966"
119
+ style="fill:none;stroke:#808080;stroke-width:1.00000322px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
120
+ <path
121
+ style="fill:none;stroke:#808080;stroke-width:1.00000322px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
122
+ d="m 23,1048.3625 0,-14.4892"
123
+ id="path4250"
124
+ inkscape:connector-curvature="0" />
125
+ <rect
126
+ y="1028.3622"
127
+ x="10"
128
+ height="2"
129
+ width="10"
130
+ id="rect4258"
131
+ style="display:inline;opacity:1;fill:#666666;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
132
+ <rect
133
+ style="opacity:1;fill:none;stroke:#000000;stroke-width:1.99999857;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
134
+ id="rect4138"
135
+ width="24"
136
+ height="24"
137
+ x="3"
138
+ y="1025.3622" />
139
+ </g>
140
+ <g
141
+ inkscape:groupmode="layer"
142
+ id="layer2"
143
+ inkscape:label="Base"
144
+ style="display:none">
145
+ <circle
146
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.0501454;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
147
+ id="path4140"
148
+ cx="16"
149
+ cy="16"
150
+ r="12" />
151
+ <rect
152
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
153
+ id="rect4142-8"
154
+ width="12"
155
+ height="28"
156
+ x="10"
157
+ y="2" />
158
+ <rect
159
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017611;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
160
+ id="rect4144-4"
161
+ width="28"
162
+ height="12"
163
+ x="2"
164
+ y="10" />
165
+ <rect
166
+ y="7.9999995"
167
+ x="4"
168
+ height="15.999999"
169
+ width="24"
170
+ id="rect4146"
171
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017379;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
172
+ <rect
173
+ y="6.0250883"
174
+ x="6.0250883"
175
+ height="19.949823"
176
+ width="19.949823"
177
+ id="rect4148-8"
178
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.05017426;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
179
+ <rect
180
+ style="opacity:1;fill:none;stroke:#c40000;stroke-width:0.04999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
181
+ id="rect4150"
182
+ width="16"
183
+ height="24"
184
+ x="8"
185
+ y="4" />
186
+ </g>
187
+ </svg>
@@ -1,74 +1,74 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:cc="http://creativecommons.org/ns#"
5
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
- xmlns:svg="http://www.w3.org/2000/svg"
7
- xmlns="http://www.w3.org/2000/svg"
8
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
- height="32"
11
- viewBox="0 0 32 32"
12
- width="32"
13
- id="svg4136"
14
- version="1.1"
15
- inkscape:version="0.91 r13725"
16
- sodipodi:docname="close.svg">
17
- <metadata
18
- id="metadata4144">
19
- <rdf:RDF>
20
- <cc:Work
21
- rdf:about="">
22
- <dc:format>image/svg+xml</dc:format>
23
- <dc:type
24
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
25
- <dc:title></dc:title>
26
- </cc:Work>
27
- </rdf:RDF>
28
- </metadata>
29
- <defs
30
- id="defs4142" />
31
- <sodipodi:namedview
32
- pagecolor="#ffffff"
33
- bordercolor="#666666"
34
- borderopacity="1"
35
- objecttolerance="10"
36
- gridtolerance="10"
37
- guidetolerance="10"
38
- inkscape:pageopacity="0"
39
- inkscape:pageshadow="2"
40
- inkscape:window-width="1856"
41
- inkscape:window-height="1057"
42
- id="namedview4140"
43
- showgrid="true"
44
- inkscape:zoom="19.622214"
45
- inkscape:cx="23.277748"
46
- inkscape:cy="14.948171"
47
- inkscape:window-x="3056"
48
- inkscape:window-y="439"
49
- inkscape:window-maximized="1"
50
- inkscape:current-layer="svg4136">
51
- <inkscape:grid
52
- type="xygrid"
53
- id="grid4148"
54
- empspacing="4"
55
- dotted="false" />
56
- </sodipodi:namedview>
57
- <path
58
- d="M 16.900001,16 21.82,11.08 c 0.24,-0.24 0.24,-0.6 0,-0.84 -0.239998,-0.24 -0.599999,-0.24 -0.839999,0 l -4.920002,4.92 -5.04,-4.98 c -0.239998,-0.24 -0.6,-0.24 -0.839999,0 -0.2399999,0.239999 -0.2399999,0.599999 0,0.839999 L 15.16,16 10.18,20.980001 c -0.2399999,0.24 -0.2399999,0.600001 0,0.839999 0.239999,0.24 0.600001,0.24 0.839999,0 L 16,16.84 l 4.980001,4.98 c 0.24,0.24 0.600001,0.24 0.839999,0 0.24,-0.239998 0.24,-0.599999 0,-0.839999 L 16.900001,16 Z"
59
- id="path4138"
60
- inkscape:connector-curvature="0"
61
- style="fill:#000000" />
62
- <g
63
- inkscape:groupmode="layer"
64
- id="layer1"
65
- inkscape:label="Base"
66
- style="display:none">
67
- <circle
68
- style="opacity:1;fill:none;stroke:#000000;stroke-width:0.0501454;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
69
- id="path4140-7"
70
- cx="16"
71
- cy="16"
72
- r="16.000975" />
73
- </g>
74
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ height="32"
11
+ viewBox="0 0 32 32"
12
+ width="32"
13
+ id="svg4136"
14
+ version="1.1"
15
+ inkscape:version="0.91 r13725"
16
+ sodipodi:docname="close.svg">
17
+ <metadata
18
+ id="metadata4144">
19
+ <rdf:RDF>
20
+ <cc:Work
21
+ rdf:about="">
22
+ <dc:format>image/svg+xml</dc:format>
23
+ <dc:type
24
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
25
+ <dc:title></dc:title>
26
+ </cc:Work>
27
+ </rdf:RDF>
28
+ </metadata>
29
+ <defs
30
+ id="defs4142" />
31
+ <sodipodi:namedview
32
+ pagecolor="#ffffff"
33
+ bordercolor="#666666"
34
+ borderopacity="1"
35
+ objecttolerance="10"
36
+ gridtolerance="10"
37
+ guidetolerance="10"
38
+ inkscape:pageopacity="0"
39
+ inkscape:pageshadow="2"
40
+ inkscape:window-width="1856"
41
+ inkscape:window-height="1057"
42
+ id="namedview4140"
43
+ showgrid="true"
44
+ inkscape:zoom="19.622214"
45
+ inkscape:cx="23.277748"
46
+ inkscape:cy="14.948171"
47
+ inkscape:window-x="3056"
48
+ inkscape:window-y="439"
49
+ inkscape:window-maximized="1"
50
+ inkscape:current-layer="svg4136">
51
+ <inkscape:grid
52
+ type="xygrid"
53
+ id="grid4148"
54
+ empspacing="4"
55
+ dotted="false" />
56
+ </sodipodi:namedview>
57
+ <path
58
+ d="M 16.900001,16 21.82,11.08 c 0.24,-0.24 0.24,-0.6 0,-0.84 -0.239998,-0.24 -0.599999,-0.24 -0.839999,0 l -4.920002,4.92 -5.04,-4.98 c -0.239998,-0.24 -0.6,-0.24 -0.839999,0 -0.2399999,0.239999 -0.2399999,0.599999 0,0.839999 L 15.16,16 10.18,20.980001 c -0.2399999,0.24 -0.2399999,0.600001 0,0.839999 0.239999,0.24 0.600001,0.24 0.839999,0 L 16,16.84 l 4.980001,4.98 c 0.24,0.24 0.600001,0.24 0.839999,0 0.24,-0.239998 0.24,-0.599999 0,-0.839999 L 16.900001,16 Z"
59
+ id="path4138"
60
+ inkscape:connector-curvature="0"
61
+ style="fill:#000000" />
62
+ <g
63
+ inkscape:groupmode="layer"
64
+ id="layer1"
65
+ inkscape:label="Base"
66
+ style="display:none">
67
+ <circle
68
+ style="opacity:1;fill:none;stroke:#000000;stroke-width:0.0501454;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
69
+ id="path4140-7"
70
+ cx="16"
71
+ cy="16"
72
+ r="16.000975" />
73
+ </g>
74
+ </svg>