svelte-octicons 15.3.0 → 16.0.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/Iterations16.svelte +1 -0
- package/lib/Iterations16.svelte.d.ts +11 -0
- package/lib/Iterations24.svelte +1 -0
- package/lib/Iterations24.svelte.d.ts +11 -0
- package/lib/{SelectSingle16.svelte → SingleSelect16.svelte} +1 -1
- package/lib/{SelectSingle16.svelte.d.ts → SingleSelect16.svelte.d.ts} +3 -3
- package/lib/index.d.ts +3 -1
- package/lib/index.js +3 -1
- 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
|
+
## [16.0.0](https://github.com/metonym/svelte-octicons/releases/tag/v16.0.0) - 2021-09-28
|
|
9
|
+
|
|
10
|
+
- Upgrade `@primer/octicons` to version 16.0.0 (net +2 icons)
|
|
11
|
+
|
|
8
12
|
## [15.3.0](https://github.com/metonym/svelte-octicons/releases/tag/v15.3.0) - 2021-09-20
|
|
9
13
|
|
|
10
14
|
- Upgrade `@primer/octicons` to version 15.2.0 (net +6 icons)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg class:octicon={true} class:octicon-iterations={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path d="M2.5 7.25a4.75 4.75 0 019.5 0 .75.75 0 001.5 0 6.25 6.25 0 10-6.25 6.25H12v2.146c0 .223.27.335.427.177l2.896-2.896a.25.25 0 000-.354l-2.896-2.896a.25.25 0 00-.427.177V12H7.25A4.75 4.75 0 012.5 7.25z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface Iterations16Props
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class Iterations16 extends SvelteComponentTyped<
|
|
8
|
+
Iterations16Props,
|
|
9
|
+
{},
|
|
10
|
+
{ default: {} }
|
|
11
|
+
> {}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg class:octicon={true} class:octicon-iterations={true} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...$$restProps}><slot /><path d="M2.5 10.5a8 8 0 1116 0 .75.75 0 001.5 0 9.5 9.5 0 10-9.5 9.5h10.94l-2.72 2.72a.75.75 0 101.06 1.06l3.735-3.735c.44-.439.44-1.151 0-1.59L19.78 14.72a.75.75 0 00-1.06 1.06l2.72 2.72H10.5a8 8 0 01-8-8z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface Iterations24Props
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class Iterations24 extends SvelteComponentTyped<
|
|
8
|
+
Iterations24Props,
|
|
9
|
+
{},
|
|
10
|
+
{ default: {} }
|
|
11
|
+
> {}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg class:octicon={true} class:octicon-select
|
|
1
|
+
<svg class:octicon={true} class:octicon-single-select={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path d="M5.06 7.356l2.795 2.833c.08.081.21.081.29 0l2.794-2.833c.13-.131.038-.356-.145-.356H5.206c-.183 0-.275.225-.145.356z"/><path fill-rule="evenodd" d="M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0113.25 15H2.75A1.75 1.75 0 011 13.25V2.75zm1.75-.25a.25.25 0 00-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 00.25-.25V2.75a.25.25 0 00-.25-.25H2.75z"/></svg>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="svelte" />
|
|
2
2
|
import { SvelteComponentTyped } from "svelte";
|
|
3
3
|
|
|
4
|
-
export interface
|
|
4
|
+
export interface SingleSelect16Props
|
|
5
5
|
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
6
|
|
|
7
|
-
export default class
|
|
8
|
-
|
|
7
|
+
export default class SingleSelect16 extends SvelteComponentTyped<
|
|
8
|
+
SingleSelect16Props,
|
|
9
9
|
{},
|
|
10
10
|
{ default: {} }
|
|
11
11
|
> {}
|
package/lib/index.d.ts
CHANGED
|
@@ -226,6 +226,8 @@ export { default as IssueReopened16 } from "./IssueReopened16.svelte";
|
|
|
226
226
|
export { default as IssueReopened24 } from "./IssueReopened24.svelte";
|
|
227
227
|
export { default as Italic16 } from "./Italic16.svelte";
|
|
228
228
|
export { default as Italic24 } from "./Italic24.svelte";
|
|
229
|
+
export { default as Iterations16 } from "./Iterations16.svelte";
|
|
230
|
+
export { default as Iterations24 } from "./Iterations24.svelte";
|
|
229
231
|
export { default as KebabHorizontal16 } from "./KebabHorizontal16.svelte";
|
|
230
232
|
export { default as KebabHorizontal24 } from "./KebabHorizontal24.svelte";
|
|
231
233
|
export { default as Key16 } from "./Key16.svelte";
|
|
@@ -347,7 +349,6 @@ export { default as ScreenNormal16 } from "./ScreenNormal16.svelte";
|
|
|
347
349
|
export { default as ScreenNormal24 } from "./ScreenNormal24.svelte";
|
|
348
350
|
export { default as Search16 } from "./Search16.svelte";
|
|
349
351
|
export { default as Search24 } from "./Search24.svelte";
|
|
350
|
-
export { default as SelectSingle16 } from "./SelectSingle16.svelte";
|
|
351
352
|
export { default as Server16 } from "./Server16.svelte";
|
|
352
353
|
export { default as Server24 } from "./Server24.svelte";
|
|
353
354
|
export { default as Share16 } from "./Share16.svelte";
|
|
@@ -370,6 +371,7 @@ export { default as SignIn16 } from "./SignIn16.svelte";
|
|
|
370
371
|
export { default as SignIn24 } from "./SignIn24.svelte";
|
|
371
372
|
export { default as SignOut16 } from "./SignOut16.svelte";
|
|
372
373
|
export { default as SignOut24 } from "./SignOut24.svelte";
|
|
374
|
+
export { default as SingleSelect16 } from "./SingleSelect16.svelte";
|
|
373
375
|
export { default as SingleSelect24 } from "./SingleSelect24.svelte";
|
|
374
376
|
export { default as Skip16 } from "./Skip16.svelte";
|
|
375
377
|
export { default as Skip24 } from "./Skip24.svelte";
|
package/lib/index.js
CHANGED
|
@@ -226,6 +226,8 @@ export { default as IssueReopened16 } from "./IssueReopened16.svelte";
|
|
|
226
226
|
export { default as IssueReopened24 } from "./IssueReopened24.svelte";
|
|
227
227
|
export { default as Italic16 } from "./Italic16.svelte";
|
|
228
228
|
export { default as Italic24 } from "./Italic24.svelte";
|
|
229
|
+
export { default as Iterations16 } from "./Iterations16.svelte";
|
|
230
|
+
export { default as Iterations24 } from "./Iterations24.svelte";
|
|
229
231
|
export { default as KebabHorizontal16 } from "./KebabHorizontal16.svelte";
|
|
230
232
|
export { default as KebabHorizontal24 } from "./KebabHorizontal24.svelte";
|
|
231
233
|
export { default as Key16 } from "./Key16.svelte";
|
|
@@ -347,7 +349,6 @@ export { default as ScreenNormal16 } from "./ScreenNormal16.svelte";
|
|
|
347
349
|
export { default as ScreenNormal24 } from "./ScreenNormal24.svelte";
|
|
348
350
|
export { default as Search16 } from "./Search16.svelte";
|
|
349
351
|
export { default as Search24 } from "./Search24.svelte";
|
|
350
|
-
export { default as SelectSingle16 } from "./SelectSingle16.svelte";
|
|
351
352
|
export { default as Server16 } from "./Server16.svelte";
|
|
352
353
|
export { default as Server24 } from "./Server24.svelte";
|
|
353
354
|
export { default as Share16 } from "./Share16.svelte";
|
|
@@ -370,6 +371,7 @@ export { default as SignIn16 } from "./SignIn16.svelte";
|
|
|
370
371
|
export { default as SignIn24 } from "./SignIn24.svelte";
|
|
371
372
|
export { default as SignOut16 } from "./SignOut16.svelte";
|
|
372
373
|
export { default as SignOut24 } from "./SignOut24.svelte";
|
|
374
|
+
export { default as SingleSelect16 } from "./SingleSelect16.svelte";
|
|
373
375
|
export { default as SingleSelect24 } from "./SingleSelect24.svelte";
|
|
374
376
|
export { default as Skip16 } from "./Skip16.svelte";
|
|
375
377
|
export { default as Skip24 } from "./Skip24.svelte";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-octicons",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "16.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "GitHub Octicons as Svelte components",
|
|
6
6
|
"author": "Eric Liu (https://github.com/metonym)",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"test": "svelte-check --workspace test"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@primer/octicons": "
|
|
19
|
+
"@primer/octicons": "16.0.0",
|
|
20
20
|
"gh-pages": "^3.2.3",
|
|
21
|
-
"svelte": "^3.
|
|
21
|
+
"svelte": "^3.43.0",
|
|
22
22
|
"svelte-check": "^2.2.6",
|
|
23
23
|
"svelte-readme": "^3.3.1",
|
|
24
24
|
"svelvg": "^0.7.0"
|