@charcoal-ui/icon-files 3.14.0 → 3.16.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/package.json +2 -2
- package/src/32/ImageHidden.js +2 -0
- package/src/Inline/Back.js +2 -0
- package/src/Inline/Latest.js +2 -0
- package/src/index.cjs +3 -0
- package/src/index.d.ts +3 -0
- package/src/index.js +3 -0
- package/svg/32/ImageHidden.svg +1 -0
- package/svg/Inline/Back.svg +1 -0
- package/svg/Inline/Latest.svg +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@charcoal-ui/icon-files",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.16.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.cjs",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"url": "https://github.com/pixiv/charcoal.git",
|
|
23
23
|
"directory": "packages/icon-files"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "e28930956816f95325a648ec492d9f1f82e516c8"
|
|
26
26
|
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/** This file is auto generated. DO NOT EDIT BY HAND. */
|
|
2
|
+
export default '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M21.106 28.447l-12-24 1.788-.894 12 24-1.788.894z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M19.758 25.75h4.229A3.01 3.01 0 0027 22.743V9.257a3.01 3.01 0 00-3.014-3.007H10.008l5.428 10.855 4.252 2.52L25 16.719v6.024a1.01 1.01 0 01-1.014 1.007h-5.228l1 2zm2.992-13a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0z" fill="currentColor"/><path d="M12.556 15.817L7 18.617v4.126c0 .553.45 1.007 1.013 1.007h8.509l1 2H8.013A3.01 3.01 0 015 22.743V9.257A3.01 3.01 0 017.777 6.26l4.779 9.558z" fill="currentColor"/></svg>'
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/** This file is auto generated. DO NOT EDIT BY HAND. */
|
|
2
|
+
export default '<svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.957 1.957A1 1 0 004.543.543L.086 5l4.457 4.457a1 1 0 001.414-1.414L2.914 5l3.043-3.043z" fill="currentColor"/></svg>'
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/** This file is auto generated. DO NOT EDIT BY HAND. */
|
|
2
|
+
export default '<svg width="13" height="10" viewBox="0 0 13 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.043 1.957A1 1 0 013.457.543L7.914 5 3.457 9.457a1 1 0 01-1.414-1.414L5.086 5 2.043 1.957z" fill="currentColor"/><path d="M7.043 1.957A1 1 0 018.457.543L12.914 5 8.457 9.457a1 1 0 01-1.414-1.414L10.086 5 7.043 1.957z" fill="currentColor"/></svg>'
|
package/src/index.cjs
CHANGED
|
@@ -214,6 +214,7 @@ module.exports = {
|
|
|
214
214
|
'32/Gift': () => import('./32/Gift.js').then(m => m.default),
|
|
215
215
|
'32/Home': () => import('./32/Home.js').then(m => m.default),
|
|
216
216
|
'32/HorizontalWriting': () => import('./32/HorizontalWriting.js').then(m => m.default),
|
|
217
|
+
'32/ImageHidden': () => import('./32/ImageHidden.js').then(m => m.default),
|
|
217
218
|
'32/Index': () => import('./32/Index.js').then(m => m.default),
|
|
218
219
|
'32/LikeOff': () => import('./32/LikeOff.js').then(m => m.default),
|
|
219
220
|
'32/LikeOn': () => import('./32/LikeOn.js').then(m => m.default),
|
|
@@ -242,6 +243,7 @@ module.exports = {
|
|
|
242
243
|
'32/VerticalWriting': () => import('./32/VerticalWriting.js').then(m => m.default),
|
|
243
244
|
'32/ZoomIn': () => import('./32/ZoomIn.js').then(m => m.default),
|
|
244
245
|
'Inline/Add': () => import('./Inline/Add.js').then(m => m.default),
|
|
246
|
+
'Inline/Back': () => import('./Inline/Back.js').then(m => m.default),
|
|
245
247
|
'Inline/BookmarkOff': () => import('./Inline/BookmarkOff.js').then(m => m.default),
|
|
246
248
|
'Inline/BookmarkOn': () => import('./Inline/BookmarkOn.js').then(m => m.default),
|
|
247
249
|
'Inline/Breadcrumbs': () => import('./Inline/Breadcrumbs.js').then(m => m.default),
|
|
@@ -253,6 +255,7 @@ module.exports = {
|
|
|
253
255
|
'Inline/Folder': () => import('./Inline/Folder.js').then(m => m.default),
|
|
254
256
|
'Inline/ImageResponse': () => import('./Inline/ImageResponse.js').then(m => m.default),
|
|
255
257
|
'Inline/Images': () => import('./Inline/Images.js').then(m => m.default),
|
|
258
|
+
'Inline/Latest': () => import('./Inline/Latest.js').then(m => m.default),
|
|
256
259
|
'Inline/Like': () => import('./Inline/Like.js').then(m => m.default),
|
|
257
260
|
'Inline/LikeOff': () => import('./Inline/LikeOff.js').then(m => m.default),
|
|
258
261
|
'Inline/List': () => import('./Inline/List.js').then(m => m.default),
|
package/src/index.d.ts
CHANGED
|
@@ -214,6 +214,7 @@ declare var _default: {
|
|
|
214
214
|
'32/Gift': () => Promise<string>;
|
|
215
215
|
'32/Home': () => Promise<string>;
|
|
216
216
|
'32/HorizontalWriting': () => Promise<string>;
|
|
217
|
+
'32/ImageHidden': () => Promise<string>;
|
|
217
218
|
'32/Index': () => Promise<string>;
|
|
218
219
|
'32/LikeOff': () => Promise<string>;
|
|
219
220
|
'32/LikeOn': () => Promise<string>;
|
|
@@ -242,6 +243,7 @@ declare var _default: {
|
|
|
242
243
|
'32/VerticalWriting': () => Promise<string>;
|
|
243
244
|
'32/ZoomIn': () => Promise<string>;
|
|
244
245
|
'Inline/Add': () => Promise<string>;
|
|
246
|
+
'Inline/Back': () => Promise<string>;
|
|
245
247
|
'Inline/BookmarkOff': () => Promise<string>;
|
|
246
248
|
'Inline/BookmarkOn': () => Promise<string>;
|
|
247
249
|
'Inline/Breadcrumbs': () => Promise<string>;
|
|
@@ -253,6 +255,7 @@ declare var _default: {
|
|
|
253
255
|
'Inline/Folder': () => Promise<string>;
|
|
254
256
|
'Inline/ImageResponse': () => Promise<string>;
|
|
255
257
|
'Inline/Images': () => Promise<string>;
|
|
258
|
+
'Inline/Latest': () => Promise<string>;
|
|
256
259
|
'Inline/Like': () => Promise<string>;
|
|
257
260
|
'Inline/LikeOff': () => Promise<string>;
|
|
258
261
|
'Inline/List': () => Promise<string>;
|
package/src/index.js
CHANGED
|
@@ -214,6 +214,7 @@ export default {
|
|
|
214
214
|
'32/Gift': () => import('./32/Gift.js').then(m => m.default),
|
|
215
215
|
'32/Home': () => import('./32/Home.js').then(m => m.default),
|
|
216
216
|
'32/HorizontalWriting': () => import('./32/HorizontalWriting.js').then(m => m.default),
|
|
217
|
+
'32/ImageHidden': () => import('./32/ImageHidden.js').then(m => m.default),
|
|
217
218
|
'32/Index': () => import('./32/Index.js').then(m => m.default),
|
|
218
219
|
'32/LikeOff': () => import('./32/LikeOff.js').then(m => m.default),
|
|
219
220
|
'32/LikeOn': () => import('./32/LikeOn.js').then(m => m.default),
|
|
@@ -242,6 +243,7 @@ export default {
|
|
|
242
243
|
'32/VerticalWriting': () => import('./32/VerticalWriting.js').then(m => m.default),
|
|
243
244
|
'32/ZoomIn': () => import('./32/ZoomIn.js').then(m => m.default),
|
|
244
245
|
'Inline/Add': () => import('./Inline/Add.js').then(m => m.default),
|
|
246
|
+
'Inline/Back': () => import('./Inline/Back.js').then(m => m.default),
|
|
245
247
|
'Inline/BookmarkOff': () => import('./Inline/BookmarkOff.js').then(m => m.default),
|
|
246
248
|
'Inline/BookmarkOn': () => import('./Inline/BookmarkOn.js').then(m => m.default),
|
|
247
249
|
'Inline/Breadcrumbs': () => import('./Inline/Breadcrumbs.js').then(m => m.default),
|
|
@@ -253,6 +255,7 @@ export default {
|
|
|
253
255
|
'Inline/Folder': () => import('./Inline/Folder.js').then(m => m.default),
|
|
254
256
|
'Inline/ImageResponse': () => import('./Inline/ImageResponse.js').then(m => m.default),
|
|
255
257
|
'Inline/Images': () => import('./Inline/Images.js').then(m => m.default),
|
|
258
|
+
'Inline/Latest': () => import('./Inline/Latest.js').then(m => m.default),
|
|
256
259
|
'Inline/Like': () => import('./Inline/Like.js').then(m => m.default),
|
|
257
260
|
'Inline/LikeOff': () => import('./Inline/LikeOff.js').then(m => m.default),
|
|
258
261
|
'Inline/List': () => import('./Inline/List.js').then(m => m.default),
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M21.106 28.447l-12-24 1.788-.894 12 24-1.788.894z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M19.758 25.75h4.229A3.01 3.01 0 0027 22.743V9.257a3.01 3.01 0 00-3.014-3.007H10.008l5.428 10.855 4.252 2.52L25 16.719v6.024a1.01 1.01 0 01-1.014 1.007h-5.228l1 2zm2.992-13a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0z" fill="currentColor"/><path d="M12.556 15.817L7 18.617v4.126c0 .553.45 1.007 1.013 1.007h8.509l1 2H8.013A3.01 3.01 0 015 22.743V9.257A3.01 3.01 0 017.777 6.26l4.779 9.558z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="8" height="10" viewBox="0 0 8 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.957 1.957A1 1 0 004.543.543L.086 5l4.457 4.457a1 1 0 001.414-1.414L2.914 5l3.043-3.043z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="13" height="10" viewBox="0 0 13 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.043 1.957A1 1 0 013.457.543L7.914 5 3.457 9.457a1 1 0 01-1.414-1.414L5.086 5 2.043 1.957z" fill="currentColor"/><path d="M7.043 1.957A1 1 0 018.457.543L12.914 5 8.457 9.457a1 1 0 01-1.414-1.414L10.086 5 7.043 1.957z" fill="currentColor"/></svg>
|