@mapbox/assembly 1.9.2 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assembly.css +6 -1
- package/dist/assembly.css.map +1 -1
- package/dist/assembly.js +1 -1
- package/dist/assembly.min.css +1 -1
- package/package.json +1 -1
- package/src/svgs/elipse.svg +4 -0
- package/src/svgs/pen.svg +5 -0
- package/src/svgs/select.svg +4 -0
- package/src/svgs/sqaure.svg +4 -0
- package/src/theming.css +4 -0
package/package.json
CHANGED
package/src/svgs/pen.svg
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<svg viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M10.5 9a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.77 2.23a.501.501 0 0 1 .533-.114L14.076 6.26A3.002 3.002 0 0 1 16 9.06V12l1.146 1.146a.5.5 0 0 1 0 .707l-3.293 3.293a.5.5 0 0 1-.707 0L12 16H9.06a3 3 0 0 1-2.8-1.923L2.116 3.303a.5.5 0 0 1 .113-.533l.54-.54Zm2.005 1.852a.501.501 0 0 0-.693.693l.064.078 4.268 4.268a2.5 2.5 0 1 0 .707-.707L4.853 4.146l-.078-.064Z"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<svg viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="m3.06 3.334 4.07 11.53c.329.935 1.672.872 1.912-.09L10.236 10l4.723-.59c.981-.123 1.208-1.445.323-1.887L4.45 2.107c-.805-.402-1.69.379-1.39 1.227Z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<svg viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5 2.5a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1v-11a1 1 0 0 1 1-1h11Zm-10 2v9h9v-9h-9Z"/>
|
|
4
|
+
</svg>
|
package/src/theming.css
CHANGED
|
@@ -196,6 +196,8 @@
|
|
|
196
196
|
* <div class='cursor-notallowed'>cursor-notallowed</div>
|
|
197
197
|
* <div class='cursor-grab'>cursor-grab</div>
|
|
198
198
|
* <div class='cursor-grabbing'>cursor-grabbing</div>
|
|
199
|
+
* <div class='cursor-col-resize'>cursor-col-resize</div>
|
|
200
|
+
* <div class='cursor-row-resize'>cursor-row-resize</div>
|
|
199
201
|
*/
|
|
200
202
|
.cursor-default { cursor: default !important; }
|
|
201
203
|
.cursor-pointer { cursor: pointer !important; }
|
|
@@ -204,6 +206,8 @@
|
|
|
204
206
|
.cursor-notallowed { cursor: not-allowed !important; }
|
|
205
207
|
.cursor-grab { cursor: grab !important; }
|
|
206
208
|
.cursor-grabbing { cursor: grabbing !important; }
|
|
209
|
+
.cursor-col-resize { cursor: col-resize !important; }
|
|
210
|
+
.cursor-row-resize { cursor: row-resize !important; }
|
|
207
211
|
|
|
208
212
|
/** @endgroup */
|
|
209
213
|
|