@iconify-svelte/wordpress 1.0.0 → 1.0.2
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/a/accordion-heading.svelte +11 -0
- package/components/a/accordion-item.svelte +11 -0
- package/components/a/accordion.svelte +13 -0
- package/components/c/contents.svelte +10 -0
- package/components/f/full-height.svelte +10 -0
- package/components/n/navigation-overlay.svelte +10 -0
- package/components/t/tab.svelte +10 -0
- package/components/t/tabs-menu-item.svelte +10 -0
- package/components/t/tabs-menu.svelte +10 -0
- package/components/t/tabs.svelte +10 -0
- package/css/c/cscibeb.css +4 -0
- package/css/e/e-1td4v.css +5 -0
- package/css/g/gc5qm6s.css +4 -0
- package/css/g/gfibxt.css +4 -0
- package/css/g/gowxx9bg.css +5 -0
- package/css/l/l-77qp.css +5 -0
- package/css/m/m_z43o.css +4 -0
- package/css/m/mwfimy.css +5 -0
- package/css/n/ndmukab.css +4 -0
- package/css/o/oe9m6ftt.css +4 -0
- package/css/o/ov6n40b.css +4 -0
- package/css/p/pe0-54c.css +4 -0
- package/css/r/rdlnrx.css +4 -0
- package/css/r/rexvdb.css +4 -0
- package/css/s/srlz1t.css +5 -0
- package/iconify.json +2 -2
- package/package.json +41 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/m/mwfimy.css';
|
|
4
|
+
import '../../css/r/rdlnrx.css';
|
|
5
|
+
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="mwfimy"/><path class="rdlnrx"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:accordion-heading" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/e/e-1td4v.css';
|
|
4
|
+
import '../../css/g/gfibxt.css';
|
|
5
|
+
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="e-1td4v"/><path class="gfibxt"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:accordion-item" {...props}></Icon>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/l/l-77qp.css';
|
|
4
|
+
import '../../css/r/rexvdb.css';
|
|
5
|
+
import '../../css/s/srlz1t.css';
|
|
6
|
+
import '../../css/m/m_z43o.css';
|
|
7
|
+
|
|
8
|
+
let {width, height, ...props} = $props();
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<path class="l-77qp"/><path class="rexvdb"/><path class="srlz1t"/><path class="m_z43o"/>`;
|
|
12
|
+
</script>
|
|
13
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:accordion" {...props}></Icon>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/g/gowxx9bg.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="gowxx9bg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:contents" {...props}></Icon>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/ndmukab.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="ndmukab"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:full-height" {...props}></Icon>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/o/oe9m6ftt.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="oe9m6ftt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:navigation-overlay" {...props}></Icon>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/g/gc5qm6s.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="gc5qm6s"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:tab" {...props}></Icon>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/c/cscibeb.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="cscibeb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:tabs-menu-item" {...props}></Icon>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/o/ov6n40b.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="ov6n40b"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:tabs-menu" {...props}></Icon>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/p/pe0-54c.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="pe0-54c"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="wordpress:tabs" {...props}></Icon>
|
package/css/g/gfibxt.css
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
.gowxx9bg {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
fill-rule: evenodd;
|
|
4
|
+
d: path("M8.104 6H6.5a2 2 0 0 0-2 2v2.334H6V8a.5.5 0 0 1 .5-.5h1.604zM4.5 13.667V16a2 2 0 0 0 2 2h1.604v-1.5H6.5A.5.5 0 0 1 6 16v-2.333zM10.396 6v1.5h3.208V6zm5.5 0v1.5H17.5a.5.5 0 0 1 .5.5v2.334h1.5V8a2 2 0 0 0-2-2zm3.604 7.667H18V16a.5.5 0 0 1-.5.5h-1.604V18H17.5a2 2 0 0 0 2-2zM13.604 18v-1.5h-3.208V18z");
|
|
5
|
+
}
|
package/css/l/l-77qp.css
ADDED
package/css/m/m_z43o.css
ADDED
package/css/m/mwfimy.css
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.oe9m6ftt {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M18.5 10a1.5 1.5 0 0 1 1.5 1.5v7a1.5 1.5 0 0 1-1.5 1.5h-7a1.5 1.5 0 0 1-1.5-1.5v-7a1.5 1.5 0 0 1 1.5-1.5zM16 4a2 2 0 0 1 2 2v2h-1.5V6a.5.5 0 0 0-.5-.5H6a.5.5 0 0 0-.5.5v3H8v1.5H5.5V16a.5.5 0 0 0 .5.5h2V18H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z");
|
|
4
|
+
}
|
package/css/r/rdlnrx.css
ADDED
package/css/r/rexvdb.css
ADDED
package/css/s/srlz1t.css
ADDED
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "wordpress",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "WordPress Icons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 331,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "The WordPress Contributors",
|
|
8
8
|
"url": "https://github.com/WordPress/gutenberg/tree/HEAD/packages/icons"
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
],
|
|
28
28
|
"palette": false
|
|
29
29
|
},
|
|
30
|
-
"lastModified":
|
|
30
|
+
"lastModified": 1770924760
|
|
31
31
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/wordpress",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/wordpress/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "GPL-2.0-or-later",
|
|
8
8
|
"exports": {
|
|
9
|
+
"./accordion": {
|
|
10
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
11
|
+
"svelte": "./components/a/accordion.svelte"
|
|
12
|
+
},
|
|
13
|
+
"./accordion-heading": {
|
|
14
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
15
|
+
"svelte": "./components/a/accordion-heading.svelte"
|
|
16
|
+
},
|
|
17
|
+
"./accordion-item": {
|
|
18
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
19
|
+
"svelte": "./components/a/accordion-item.svelte"
|
|
20
|
+
},
|
|
9
21
|
"./add-card": {
|
|
10
22
|
"types": "./types/gfwqskkx.d.ts",
|
|
11
23
|
"svelte": "./components/a/add-card.svelte"
|
|
@@ -294,6 +306,10 @@
|
|
|
294
306
|
"types": "./types/gfwqskkx.d.ts",
|
|
295
307
|
"svelte": "./components/c/connection.svelte"
|
|
296
308
|
},
|
|
309
|
+
"./contents": {
|
|
310
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
311
|
+
"svelte": "./components/c/contents.svelte"
|
|
312
|
+
},
|
|
297
313
|
"./copy": {
|
|
298
314
|
"types": "./types/gfwqskkx.d.ts",
|
|
299
315
|
"svelte": "./components/c/copy.svelte"
|
|
@@ -486,6 +502,10 @@
|
|
|
486
502
|
"types": "./types/gfwqskkx.d.ts",
|
|
487
503
|
"svelte": "./components/f/format-uppercase.svelte"
|
|
488
504
|
},
|
|
505
|
+
"./full-height": {
|
|
506
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
507
|
+
"svelte": "./components/f/full-height.svelte"
|
|
508
|
+
},
|
|
489
509
|
"./fullscreen": {
|
|
490
510
|
"types": "./types/gfwqskkx.d.ts",
|
|
491
511
|
"svelte": "./components/f/fullscreen.svelte"
|
|
@@ -766,6 +786,10 @@
|
|
|
766
786
|
"types": "./types/gfwqskkx.d.ts",
|
|
767
787
|
"svelte": "./components/n/navigation.svelte"
|
|
768
788
|
},
|
|
789
|
+
"./navigation-overlay": {
|
|
790
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
791
|
+
"svelte": "./components/n/navigation-overlay.svelte"
|
|
792
|
+
},
|
|
769
793
|
"./next": {
|
|
770
794
|
"types": "./types/gfwqskkx.d.ts",
|
|
771
795
|
"svelte": "./components/n/next.svelte"
|
|
@@ -1142,6 +1166,10 @@
|
|
|
1142
1166
|
"types": "./types/gfwqskkx.d.ts",
|
|
1143
1167
|
"svelte": "./components/s/symbol-filled.svelte"
|
|
1144
1168
|
},
|
|
1169
|
+
"./tab": {
|
|
1170
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
1171
|
+
"svelte": "./components/t/tab.svelte"
|
|
1172
|
+
},
|
|
1145
1173
|
"./table": {
|
|
1146
1174
|
"types": "./types/gfwqskkx.d.ts",
|
|
1147
1175
|
"svelte": "./components/t/table.svelte"
|
|
@@ -1178,6 +1206,18 @@
|
|
|
1178
1206
|
"types": "./types/gfwqskkx.d.ts",
|
|
1179
1207
|
"svelte": "./components/t/tablet.svelte"
|
|
1180
1208
|
},
|
|
1209
|
+
"./tabs": {
|
|
1210
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
1211
|
+
"svelte": "./components/t/tabs.svelte"
|
|
1212
|
+
},
|
|
1213
|
+
"./tabs-menu": {
|
|
1214
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
1215
|
+
"svelte": "./components/t/tabs-menu.svelte"
|
|
1216
|
+
},
|
|
1217
|
+
"./tabs-menu-item": {
|
|
1218
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
1219
|
+
"svelte": "./components/t/tabs-menu-item.svelte"
|
|
1220
|
+
},
|
|
1181
1221
|
"./tag": {
|
|
1182
1222
|
"types": "./types/gfwqskkx.d.ts",
|
|
1183
1223
|
"svelte": "./components/t/tag.svelte"
|