@iconify-svelte/ooui 1.0.5 → 1.0.6
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/components/d/draggable-horizontal.svelte +11 -0
- package/components/d/draggable-vertical.svelte +11 -0
- package/components/d/draggable-xy.svelte +11 -0
- package/components/e/edit-lock.svelte +2 -2
- package/components/e/edit-undo-ltr.svelte +2 -2
- package/components/e/edit-undo-rtl.svelte +2 -3
- package/components/e/edit.svelte +2 -2
- package/components/h/hand.svelte +3 -2
- package/components/l/list-numbered-ltr.svelte +2 -2
- package/components/l/list-numbered-rtl.svelte +2 -2
- package/components/l/log-in-ltr.svelte +2 -2
- package/components/l/log-in-rtl.svelte +3 -3
- package/css/a/asu8thb_w.css +4 -0
- package/css/b/b_0xcpbdq.css +4 -0
- package/css/g/gdd69vbix.css +4 -0
- package/css/i/i7ez5gbap.css +4 -0
- package/css/j/jpd9cm4bn.css +4 -0
- package/css/j/jxxcn393e.css +4 -0
- package/css/k/k_p-29b1u.css +4 -0
- package/css/n/njarltr6p.css +4 -0
- package/css/o/ot_dhmbyk.css +4 -0
- package/css/q/qvktn51hg.css +4 -0
- package/css/r/rsfdux1we.css +4 -0
- package/css/s/s91egttvu.css +4 -0
- package/css/y/yzgrvsbgm.css +4 -0
- package/iconify.json +3 -3
- package/package.json +15 -3
- package/css/d/duloenbag.css +0 -4
- package/css/e/ennnt_tfg.css +0 -4
- package/css/i/i83v5ob8r.css +0 -4
- package/css/i/i8va3e7ze.css +0 -4
- package/css/i/ir04mybzg.css +0 -4
- package/css/j/jrjaysrsh.css +0 -4
- package/css/o/oht9jkbkp.css +0 -4
- package/css/p/p05xzufih.css +0 -4
- package/css/p/p2mab2o0j.css +0 -4
- package/css/w/wsleks8hm.css +0 -4
- package/css/z/z1m7h6l_q.css +0 -4
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/k/k_p-29b1u.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":20,"height":20};
|
|
9
|
+
const content = `<path class="k_p-29b1u"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:draggable-horizontal" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/s/s91egttvu.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":20,"height":20};
|
|
9
|
+
const content = `<path class="s91egttvu"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:draggable-vertical" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/h/hogm20ukb.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":20,"height":20};
|
|
9
|
+
const content = `<path class="hogm20ukb"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:draggable-xy" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/g/gdd69vbix.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":20,"height":20};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="gdd69vbix"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:edit-lock" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/o/ot_dhmbyk.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":20,"height":20};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="ot_dhmbyk"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:edit-undo-ltr" {...props}></Icon>
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
4
|
-
import '../../css/p/p05xzufih.css';
|
|
3
|
+
import '../../css/q/qvktn51hg.css';
|
|
5
4
|
|
|
6
5
|
/** @type {{width?: string; height?: string;}} */
|
|
7
6
|
let {width, height, ...props} = $props();
|
|
8
7
|
|
|
9
8
|
const viewBox = {"width":20,"height":20};
|
|
10
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="qvktn51hg"/>`;
|
|
11
10
|
</script>
|
|
12
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:edit-undo-rtl" {...props}></Icon>
|
package/components/e/edit.svelte
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/i/
|
|
3
|
+
import '../../css/i/i7ez5gbap.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":20,"height":20};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="i7ez5gbap"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:edit" {...props}></Icon>
|
package/components/h/hand.svelte
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/a/asu8thb_w.css';
|
|
4
|
+
import '../../css/y/yzgrvsbgm.css';
|
|
4
5
|
|
|
5
6
|
/** @type {{width?: string; height?: string;}} */
|
|
6
7
|
let {width, height, ...props} = $props();
|
|
7
8
|
|
|
8
9
|
const viewBox = {"width":20,"height":20};
|
|
9
|
-
const content = `<path class="
|
|
10
|
+
const content = `<path class="asu8thb_w"/><path class="yzgrvsbgm"/>`;
|
|
10
11
|
</script>
|
|
11
12
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:hand" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/j/jxxcn393e.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":20,"height":20};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="jxxcn393e"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:list-numbered-ltr" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/b/b_0xcpbdq.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":20,"height":20};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="b_0xcpbdq"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:list-numbered-rtl" {...props}></Icon>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/r/rsfdux1we.css';
|
|
4
4
|
import '../../css/l/leg-f-qxq.css';
|
|
5
5
|
|
|
6
6
|
/** @type {{width?: string; height?: string;}} */
|
|
7
7
|
let {width, height, ...props} = $props();
|
|
8
8
|
|
|
9
9
|
const viewBox = {"width":20,"height":20};
|
|
10
|
-
const content = `<path class="
|
|
10
|
+
const content = `<path class="rsfdux1we"/><path class="leg-f-qxq"/>`;
|
|
11
11
|
</script>
|
|
12
12
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:log-in-ltr" {...props}></Icon>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
4
|
-
import '../../css/
|
|
3
|
+
import '../../css/j/jpd9cm4bn.css';
|
|
4
|
+
import '../../css/n/njarltr6p.css';
|
|
5
5
|
|
|
6
6
|
/** @type {{width?: string; height?: string;}} */
|
|
7
7
|
let {width, height, ...props} = $props();
|
|
8
8
|
|
|
9
9
|
const viewBox = {"width":20,"height":20};
|
|
10
|
-
const content = `<path class="
|
|
10
|
+
const content = `<path class="jpd9cm4bn"/><path class="njarltr6p"/>`;
|
|
11
11
|
</script>
|
|
12
12
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="ooui:log-in-rtl" {...props}></Icon>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.ot_dhmbyk {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("m11.76 12.463l-5.213 5.216a1 1 0 0 1-.394.242L1.91 19.335L.64 18.076l1.413-4.243c.049-.146.133-.28.242-.39l5.222-5.222zM14.124 1.5l-3 3H14a6 6 0 0 1 6 6V14h-2v-3.5a4 4 0 0 0-4-4h-2.876l3 3l-1.414 1.414l-4.707-4.707V4.793L12.71.086z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.qvktn51hg {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("m15.024 9.2l-8.477 8.479a1 1 0 0 1-.394.242L1.91 19.335L.64 18.076l.702-2.11l3.716.024l8.373-8.375zm-3.027-4.407v1.414L7.29 10.914L5.876 9.5l3-3H6a4 4 0 0 0-4 4V14H0v-3.5a6 6 0 0 1 6-6h2.876l-3-3L7.29.086zm7.626-.193l-3.184 3.185l-4.255-4.23L15.38.359l4.243 4.243Z");
|
|
4
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"prefix": "ooui",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "OOUI",
|
|
5
|
-
"total":
|
|
6
|
-
"version": "0.
|
|
5
|
+
"total": 416,
|
|
6
|
+
"version": "0.54.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "OOUI Team",
|
|
9
9
|
"url": "https://github.com/wikimedia/oojs-ui"
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1781326584
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/ooui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.6",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/ooui/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -370,9 +370,17 @@
|
|
|
370
370
|
"types": "./types/gfwqskkx.d.ts",
|
|
371
371
|
"svelte": "./components/d/download.svelte"
|
|
372
372
|
},
|
|
373
|
-
"./draggable": {
|
|
373
|
+
"./draggable-horizontal": {
|
|
374
374
|
"types": "./types/gfwqskkx.d.ts",
|
|
375
|
-
"svelte": "./components/d/draggable.svelte"
|
|
375
|
+
"svelte": "./components/d/draggable-horizontal.svelte"
|
|
376
|
+
},
|
|
377
|
+
"./draggable-vertical": {
|
|
378
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
379
|
+
"svelte": "./components/d/draggable-vertical.svelte"
|
|
380
|
+
},
|
|
381
|
+
"./draggable-xy": {
|
|
382
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
383
|
+
"svelte": "./components/d/draggable-xy.svelte"
|
|
376
384
|
},
|
|
377
385
|
"./edit": {
|
|
378
386
|
"types": "./types/gfwqskkx.d.ts",
|
|
@@ -1698,6 +1706,10 @@
|
|
|
1698
1706
|
"types": "./types/gfwqskkx.d.ts",
|
|
1699
1707
|
"svelte": "./components/z/zoom-out.svelte"
|
|
1700
1708
|
},
|
|
1709
|
+
"./draggable": {
|
|
1710
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
1711
|
+
"svelte": "./components/d/draggable.svelte"
|
|
1712
|
+
},
|
|
1701
1713
|
"./*": "./*"
|
|
1702
1714
|
},
|
|
1703
1715
|
"dependencies": {
|
package/css/d/duloenbag.css
DELETED
package/css/e/ennnt_tfg.css
DELETED
package/css/i/i83v5ob8r.css
DELETED
package/css/i/i8va3e7ze.css
DELETED
package/css/i/ir04mybzg.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.ir04mybzg {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M8 10.215L4.455 13.76l-.976 2.417l2.443-.947L8.152 13h2.828l-3.786 3.785a1 1 0 0 1-.346.225L2.05 18.873l-1.296-1.3l1.917-4.745a1 1 0 0 1 .22-.33L8 7.386zM15 0a3 3 0 0 1 3 3v2h2v6H10V5h2V3a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1v2h2V3a1 1 0 0 0-1-1");
|
|
4
|
-
}
|
package/css/j/jrjaysrsh.css
DELETED
package/css/o/oht9jkbkp.css
DELETED
package/css/p/p05xzufih.css
DELETED
package/css/p/p2mab2o0j.css
DELETED
package/css/w/wsleks8hm.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.wsleks8hm {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("m8.756 9.459l-4.3 4.3l-.977 2.418l2.443-.947l4.302-4.303l1.414 1.414l-4.444 4.444a1 1 0 0 1-.346.225L2.05 18.873l-1.296-1.3l1.917-4.745a1 1 0 0 1 .22-.33l4.45-4.453zM14.124 1.5l-3 3H14a6 6 0 0 1 6 6V14h-2v-3.5a4 4 0 0 0-4-4h-2.876l3 3l-1.414 1.414l-4.707-4.707V4.793L12.71.086z");
|
|
4
|
-
}
|
package/css/z/z1m7h6l_q.css
DELETED