svelte-octicons 17.4.0 → 17.5.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/CHANGELOG.md +4 -0
- package/lib/File16.svelte +1 -1
- package/lib/FileAdded16.svelte +1 -0
- package/lib/FileAdded16.svelte.d.ts +11 -0
- package/lib/FileMoved16.svelte +1 -0
- package/lib/FileMoved16.svelte.d.ts +11 -0
- package/lib/FileRemoved16.svelte +1 -0
- package/lib/FileRemoved16.svelte.d.ts +11 -0
- package/lib/Organization24.svelte +1 -1
- package/lib/index.d.ts +3 -0
- package/lib/index.js +3 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [17.5.0](https://github.com/metonym/svelte-octicons/releases/tag/v17.5.0) - 2022-05-13
|
|
9
|
+
|
|
10
|
+
- upgrade `@primer/octicons` to v17.2.0 (net +3 icons)
|
|
11
|
+
|
|
8
12
|
## [17.4.0](https://github.com/metonym/svelte-octicons/releases/tag/v17.4.0) - 2022-05-05
|
|
9
13
|
|
|
10
14
|
- upgrade `@primer/octicons` to v17.1.0 (net +6 icons)
|
package/lib/File16.svelte
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg class:octicon={true} class:octicon-file={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M3.75 1.5a.25.25 0 00-.25.
|
|
1
|
+
<svg class:octicon={true} class:octicon-file={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M3.75 1.5a.25.25 0 00-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 00.25-.25V6h-2.75A1.75 1.75 0 019 4.25V1.5H3.75zm6.75.062V4.25c0 .138.112.25.25.25h2.688a.252.252 0 00-.011-.013l-2.914-2.914a.272.272 0 00-.013-.011zM2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0113.25 16h-9.5A1.75 1.75 0 012 14.25V1.75z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg class:octicon={true} class:octicon-file-added={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M3.75 1.5a.25.25 0 00-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 00.25-.25V4.664a.25.25 0 00-.073-.177l-2.914-2.914a.25.25 0 00-.177-.073H3.75zM2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0113.25 16h-9.5A1.75 1.75 0 012 14.25V1.75zm6.23 3.508a.75.75 0 01.755.745l.01 1.497h1.497a.75.75 0 010 1.5H9v1.507a.75.75 0 01-1.5 0V9.005l-1.502.01a.75.75 0 11-.01-1.5l1.507-.01-.01-1.492a.75.75 0 01.745-.755z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface FileAdded16Props
|
|
5
|
+
extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
|
|
6
|
+
|
|
7
|
+
export default class FileAdded16 extends SvelteComponentTyped<
|
|
8
|
+
FileAdded16Props,
|
|
9
|
+
{},
|
|
10
|
+
{ default: {} }
|
|
11
|
+
> {}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg class:octicon={true} class:octicon-file-moved={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0113.25 16h-3.5a.75.75 0 010-1.5h3.5a.25.25 0 00.25-.25V4.664a.25.25 0 00-.073-.177l-2.914-2.914a.25.25 0 00-.177-.073H3.75a.25.25 0 00-.25.25v6.5a.75.75 0 01-1.5 0v-6.5z"/><path d="M5.427 15.573l3.146-3.146a.25.25 0 000-.354L5.427 8.927A.25.25 0 005 9.104V11.5H.75a.75.75 0 000 1.5H5v2.396c0 .223.27.335.427.177z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface FileMoved16Props
|
|
5
|
+
extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
|
|
6
|
+
|
|
7
|
+
export default class FileMoved16 extends SvelteComponentTyped<
|
|
8
|
+
FileMoved16Props,
|
|
9
|
+
{},
|
|
10
|
+
{ default: {} }
|
|
11
|
+
> {}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg class:octicon={true} class:octicon-file-removed={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M3.75 1.5a.25.25 0 00-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 00.25-.25V4.664a.25.25 0 00-.073-.177l-2.914-2.914a.25.25 0 00-.177-.073H3.75zM2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0113.25 16h-9.5A1.75 1.75 0 012 14.25V1.75zM8.25 7.5h2.242a.75.75 0 010 1.5h-2.24l-2.254.015a.75.75 0 01-.01-1.5L8.25 7.5z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface FileRemoved16Props
|
|
5
|
+
extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
|
|
6
|
+
|
|
7
|
+
export default class FileRemoved16 extends SvelteComponentTyped<
|
|
8
|
+
FileRemoved16Props,
|
|
9
|
+
{},
|
|
10
|
+
{ default: {} }
|
|
11
|
+
> {}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg class:octicon={true} class:octicon-organization={true} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...$$restProps}><slot /><path d="
|
|
1
|
+
<svg class:octicon={true} class:octicon-organization={true} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...$$restProps}><slot /><path d="M6.25 12a.75.75 0 000 1.5h.5a.75.75 0 000-1.5h-.5zM5.5 9.25a.75.75 0 01.75-.75h.5a.75.75 0 010 1.5h-.5a.75.75 0 01-.75-.75zM6.25 5a.75.75 0 000 1.5h.5a.75.75 0 000-1.5h-.5zM9 12.75a.75.75 0 01.75-.75h.5a.75.75 0 010 1.5h-.5a.75.75 0 01-.75-.75zm.75-4.25a.75.75 0 000 1.5h.5a.75.75 0 000-1.5h-.5zM9 5.75A.75.75 0 019.75 5h.5a.75.75 0 010 1.5h-.5A.75.75 0 019 5.75zM13.25 12a.75.75 0 000 1.5h.5a.75.75 0 000-1.5h-.5zm-.75-2.75a.75.75 0 01.75-.75h.5a.75.75 0 010 1.5h-.5a.75.75 0 01-.75-.75zM13.25 5a.75.75 0 000 1.5h.5a.75.75 0 000-1.5h-.5z"/><path fill-rule="evenodd" d="M2 20a2 2 0 002 2h3.75a.75.75 0 00.75-.75V19h3v2.25c0 .414.336.75.75.75H16c.092 0 .183-.006.272-.018a.753.753 0 00.166.018H20a2 2 0 002-2v-8a2 2 0 00-.8-1.6l-.5-.375a.75.75 0 00-.9 1.2l.5.375a.5.5 0 01.2.4v8a.5.5 0 01-.5.5h-2.063c.041-.16.063-.327.063-.5V3a2 2 0 00-2-2H4a2 2 0 00-2 2v17zm2 .5a.5.5 0 01-.5-.5V3a.5.5 0 01.5-.5h12a.5.5 0 01.5.5v17a.5.5 0 01-.5.5h-3v-2.25a.75.75 0 00-.75-.75h-4.5a.75.75 0 00-.75.75v2.25H4z"/></svg>
|
package/lib/index.d.ts
CHANGED
|
@@ -158,6 +158,7 @@ export { default as FeedTag16 } from "./FeedTag16.svelte";
|
|
|
158
158
|
export { default as FeedTrophy16 } from "./FeedTrophy16.svelte";
|
|
159
159
|
export { default as File16 } from "./File16.svelte";
|
|
160
160
|
export { default as File24 } from "./File24.svelte";
|
|
161
|
+
export { default as FileAdded16 } from "./FileAdded16.svelte";
|
|
161
162
|
export { default as FileBadge16 } from "./FileBadge16.svelte";
|
|
162
163
|
export { default as FileBinary16 } from "./FileBinary16.svelte";
|
|
163
164
|
export { default as FileBinary24 } from "./FileBinary24.svelte";
|
|
@@ -171,6 +172,8 @@ export { default as FileDirectoryFill16 } from "./FileDirectoryFill16.svelte";
|
|
|
171
172
|
export { default as FileDirectoryFill24 } from "./FileDirectoryFill24.svelte";
|
|
172
173
|
export { default as FileDirectoryOpenFill16 } from "./FileDirectoryOpenFill16.svelte";
|
|
173
174
|
export { default as FileMedia24 } from "./FileMedia24.svelte";
|
|
175
|
+
export { default as FileMoved16 } from "./FileMoved16.svelte";
|
|
176
|
+
export { default as FileRemoved16 } from "./FileRemoved16.svelte";
|
|
174
177
|
export { default as FileSubmodule16 } from "./FileSubmodule16.svelte";
|
|
175
178
|
export { default as FileSubmodule24 } from "./FileSubmodule24.svelte";
|
|
176
179
|
export { default as FileSymlinkFile16 } from "./FileSymlinkFile16.svelte";
|
package/lib/index.js
CHANGED
|
@@ -158,6 +158,7 @@ export { default as FeedTag16 } from "./FeedTag16.svelte";
|
|
|
158
158
|
export { default as FeedTrophy16 } from "./FeedTrophy16.svelte";
|
|
159
159
|
export { default as File16 } from "./File16.svelte";
|
|
160
160
|
export { default as File24 } from "./File24.svelte";
|
|
161
|
+
export { default as FileAdded16 } from "./FileAdded16.svelte";
|
|
161
162
|
export { default as FileBadge16 } from "./FileBadge16.svelte";
|
|
162
163
|
export { default as FileBinary16 } from "./FileBinary16.svelte";
|
|
163
164
|
export { default as FileBinary24 } from "./FileBinary24.svelte";
|
|
@@ -171,6 +172,8 @@ export { default as FileDirectoryFill16 } from "./FileDirectoryFill16.svelte";
|
|
|
171
172
|
export { default as FileDirectoryFill24 } from "./FileDirectoryFill24.svelte";
|
|
172
173
|
export { default as FileDirectoryOpenFill16 } from "./FileDirectoryOpenFill16.svelte";
|
|
173
174
|
export { default as FileMedia24 } from "./FileMedia24.svelte";
|
|
175
|
+
export { default as FileMoved16 } from "./FileMoved16.svelte";
|
|
176
|
+
export { default as FileRemoved16 } from "./FileRemoved16.svelte";
|
|
174
177
|
export { default as FileSubmodule16 } from "./FileSubmodule16.svelte";
|
|
175
178
|
export { default as FileSubmodule24 } from "./FileSubmodule24.svelte";
|
|
176
179
|
export { default as FileSymlinkFile16 } from "./FileSymlinkFile16.svelte";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-octicons",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.5.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "GitHub Octicons as Svelte components",
|
|
6
6
|
"author": "Eric Liu (https://github.com/metonym)",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"test": "svelte-check --workspace test"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@primer/octicons": "17.
|
|
20
|
-
"gh-pages": "^
|
|
19
|
+
"@primer/octicons": "17.2.0",
|
|
20
|
+
"gh-pages": "^4.0.0",
|
|
21
21
|
"svelte": "^3.48.0",
|
|
22
22
|
"svelte-check": "^2.7.0",
|
|
23
23
|
"svelte-readme": "^3.6.3",
|