svelte-octicons 17.3.1 → 17.4.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 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.4.0](https://github.com/metonym/svelte-octicons/releases/tag/v17.4.0) - 2022-05-05
9
+
10
+ - upgrade `@primer/octicons` to v17.1.0 (net +6 icons)
11
+
8
12
  ## [17.3.1](https://github.com/metonym/svelte-octicons/releases/tag/v17.3.1) - 2022-04-03
9
13
 
10
14
  - upgrade `svelvg` to v0.10.1 so that TypeScript props correctly extend `svg` attributes
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-cloud={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path fill-rule="evenodd" d="M2 7.25A5.225 5.225 0 017.25 2a5.222 5.222 0 014.767 3.029A4.472 4.472 0 0116 9.5c0 2.505-1.995 4.5-4.5 4.5h-8A3.475 3.475 0 010 10.5c0-1.41.809-2.614 2.001-3.17L2 7.25zm1.54.482a.75.75 0 01-.556.832c-.86.22-1.484.987-1.484 1.936 0 1.124.876 2 2 2h8c1.676 0 3-1.324 3-3s-1.324-3-3-3a.75.75 0 01-.709-.504A3.72 3.72 0 007.25 3.5C5.16 3.5 3.5 5.16 3.5 7.25a3.276 3.276 0 00.035.436l.004.036.001.008v.002z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface Cloud16Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class Cloud16 extends SvelteComponentTyped<
8
+ Cloud16Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-cloud={true} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...$$restProps}><slot /><path fill-rule="evenodd" d="M3.103 10.107c0-4.244 3.445-7.607 7.733-7.607 3.19 0 5.912 1.858 7.099 4.563a.634.634 0 01.01.022l.001.006C21.348 7.345 24 10.095 24 13.536 24 17.148 21.076 20 17.431 20H5.017C2.23 20 0 17.83 0 15.06a4.9 4.9 0 013.112-4.581 8.024 8.024 0 01-.009-.372zM10.836 4c-3.485 0-6.233 2.717-6.233 6.107 0 .284.022.602.052.756a.75.75 0 01-.552.869c-1.52.385-2.603 1.712-2.603 3.328 0 1.917 1.532 3.44 3.517 3.44h12.414c2.843 0 5.069-2.206 5.069-4.964 0-2.759-2.226-4.965-5.069-4.965a.75.75 0 01-.696-.47l-.179-.446C15.606 5.5 13.424 4 10.836 4z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface Cloud24Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class Cloud24 extends SvelteComponentTyped<
8
+ Cloud24Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-cloud-offline={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path d="M7.25 2c-.69 0-1.351.13-1.957.371a.75.75 0 10.554 1.394c.43-.17.903-.265 1.403-.265a3.72 3.72 0 013.541 2.496.75.75 0 00.709.504c1.676 0 3 1.324 3 3a3 3 0 01-.681 1.92.75.75 0 001.156.955A4.496 4.496 0 0016 9.5a4.472 4.472 0 00-3.983-4.471A5.222 5.222 0 007.25 2z"/><path fill-rule="evenodd" d="M.72 1.72a.75.75 0 011.06 0l2.311 2.31c.03.025.056.052.08.08l8.531 8.532a.785.785 0 01.035.034l2.043 2.044a.75.75 0 11-1.06 1.06l-1.8-1.799a4.64 4.64 0 01-.42.019h-8A3.475 3.475 0 010 10.5c0-1.41.809-2.614 2.001-3.17a5.218 5.218 0 01.646-2.622L.72 2.78a.75.75 0 010-1.06zM3.5 7.25c0-.505.096-.983.271-1.418L10.44 12.5H3.5c-1.124 0-2-.876-2-2 0-.95.624-1.716 1.484-1.936a.75.75 0 00.557-.833A4.1 4.1 0 013.5 7.25z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface CloudOffline16Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class CloudOffline16 extends SvelteComponentTyped<
8
+ CloudOffline16Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-cloud-offline={true} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...$$restProps}><slot /><path fill-rule="evenodd" d="M2.78 2.22a.75.75 0 00-1.06 1.06l2.64 2.642a7.525 7.525 0 00-1.249 4.557A4.9 4.9 0 000 15.059C0 17.831 2.229 20 5.017 20h12.414a6.879 6.879 0 00.944-.065l2.845 2.845a.75.75 0 101.06-1.06L2.78 2.22zM16.94 18.5L5.448 7.01a6.03 6.03 0 00-.794 3.853.75.75 0 01-.552.869c-1.52.385-2.603 1.712-2.603 3.328 0 1.917 1.532 3.44 3.517 3.44H16.94z"/><path d="M10.836 2.5a7.865 7.865 0 00-3.638.88.75.75 0 10.692 1.331A6.365 6.365 0 0110.836 4c2.588 0 4.77 1.5 5.72 3.655l.179.445a.75.75 0 00.696.471c2.843 0 5.069 2.206 5.069 4.965a4.9 4.9 0 01-1.684 3.716.75.75 0 00.986 1.13A6.396 6.396 0 0024 13.536c0-3.44-2.652-6.191-6.054-6.445l-.002-.006a.634.634 0 00-.01-.022C16.749 4.358 14.026 2.5 10.837 2.5z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface CloudOffline24Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class CloudOffline24 extends SvelteComponentTyped<
8
+ CloudOffline24Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-file-directory-open-fill={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path d="M.513 1.513A1.75 1.75 0 011.75 1h3.5c.55 0 1.07.26 1.4.7l.9 1.2a.25.25 0 00.2.1H13a1 1 0 011 1v.5H2.75a.75.75 0 000 1.5h11.978a1 1 0 01.994 1.117L15 13.25A1.75 1.75 0 0113.25 15H1.75A1.75 1.75 0 010 13.25V2.75c0-.464.184-.91.513-1.237z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface FileDirectoryOpenFill16Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class FileDirectoryOpenFill16 extends SvelteComponentTyped<
8
+ FileDirectoryOpenFill16Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
@@ -0,0 +1 @@
1
+ <svg class:octicon={true} class:octicon-sliders={true} xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" {...$$restProps}><slot /><path d="M15 2.75a.75.75 0 01-.75.75h-4a.75.75 0 010-1.5h4a.75.75 0 01.75.75zm-8.5.75v1.25a.75.75 0 001.5 0v-4a.75.75 0 00-1.5 0V2H1.75a.75.75 0 000 1.5H6.5zm1.25 5.25a.75.75 0 000-1.5h-6a.75.75 0 000 1.5h6zM15 8a.75.75 0 01-.75.75H11.5V10a.75.75 0 11-1.5 0V6a.75.75 0 011.5 0v1.25h2.75A.75.75 0 0115 8zm-9 5.25v-2a.75.75 0 00-1.5 0v1.25H1.75a.75.75 0 000 1.5H4.5v1.25a.75.75 0 001.5 0v-2zm9 0a.75.75 0 01-.75.75h-6a.75.75 0 010-1.5h6a.75.75 0 01.75.75z"/></svg>
@@ -0,0 +1,11 @@
1
+ /// <reference types="svelte" />
2
+ import { SvelteComponentTyped } from "svelte";
3
+
4
+ export interface Sliders16Props
5
+ extends svelte.JSX.SVGAttributes<SVGSVGElement> {}
6
+
7
+ export default class Sliders16 extends SvelteComponentTyped<
8
+ Sliders16Props,
9
+ {},
10
+ { default: {} }
11
+ > {}
package/lib/index.d.ts CHANGED
@@ -74,6 +74,10 @@ export { default as CircleSlash16 } from "./CircleSlash16.svelte";
74
74
  export { default as CircleSlash24 } from "./CircleSlash24.svelte";
75
75
  export { default as Clock16 } from "./Clock16.svelte";
76
76
  export { default as Clock24 } from "./Clock24.svelte";
77
+ export { default as Cloud16 } from "./Cloud16.svelte";
78
+ export { default as Cloud24 } from "./Cloud24.svelte";
79
+ export { default as CloudOffline16 } from "./CloudOffline16.svelte";
80
+ export { default as CloudOffline24 } from "./CloudOffline24.svelte";
77
81
  export { default as Code16 } from "./Code16.svelte";
78
82
  export { default as Code24 } from "./Code24.svelte";
79
83
  export { default as CodeOfConduct16 } from "./CodeOfConduct16.svelte";
@@ -165,6 +169,7 @@ export { default as FileDirectory16 } from "./FileDirectory16.svelte";
165
169
  export { default as FileDirectory24 } from "./FileDirectory24.svelte";
166
170
  export { default as FileDirectoryFill16 } from "./FileDirectoryFill16.svelte";
167
171
  export { default as FileDirectoryFill24 } from "./FileDirectoryFill24.svelte";
172
+ export { default as FileDirectoryOpenFill16 } from "./FileDirectoryOpenFill16.svelte";
168
173
  export { default as FileMedia24 } from "./FileMedia24.svelte";
169
174
  export { default as FileSubmodule16 } from "./FileSubmodule16.svelte";
170
175
  export { default as FileSubmodule24 } from "./FileSubmodule24.svelte";
@@ -397,6 +402,7 @@ export { default as SingleSelect16 } from "./SingleSelect16.svelte";
397
402
  export { default as SingleSelect24 } from "./SingleSelect24.svelte";
398
403
  export { default as Skip16 } from "./Skip16.svelte";
399
404
  export { default as Skip24 } from "./Skip24.svelte";
405
+ export { default as Sliders16 } from "./Sliders16.svelte";
400
406
  export { default as Smiley16 } from "./Smiley16.svelte";
401
407
  export { default as Smiley24 } from "./Smiley24.svelte";
402
408
  export { default as SortAsc16 } from "./SortAsc16.svelte";
package/lib/index.js CHANGED
@@ -74,6 +74,10 @@ export { default as CircleSlash16 } from "./CircleSlash16.svelte";
74
74
  export { default as CircleSlash24 } from "./CircleSlash24.svelte";
75
75
  export { default as Clock16 } from "./Clock16.svelte";
76
76
  export { default as Clock24 } from "./Clock24.svelte";
77
+ export { default as Cloud16 } from "./Cloud16.svelte";
78
+ export { default as Cloud24 } from "./Cloud24.svelte";
79
+ export { default as CloudOffline16 } from "./CloudOffline16.svelte";
80
+ export { default as CloudOffline24 } from "./CloudOffline24.svelte";
77
81
  export { default as Code16 } from "./Code16.svelte";
78
82
  export { default as Code24 } from "./Code24.svelte";
79
83
  export { default as CodeOfConduct16 } from "./CodeOfConduct16.svelte";
@@ -165,6 +169,7 @@ export { default as FileDirectory16 } from "./FileDirectory16.svelte";
165
169
  export { default as FileDirectory24 } from "./FileDirectory24.svelte";
166
170
  export { default as FileDirectoryFill16 } from "./FileDirectoryFill16.svelte";
167
171
  export { default as FileDirectoryFill24 } from "./FileDirectoryFill24.svelte";
172
+ export { default as FileDirectoryOpenFill16 } from "./FileDirectoryOpenFill16.svelte";
168
173
  export { default as FileMedia24 } from "./FileMedia24.svelte";
169
174
  export { default as FileSubmodule16 } from "./FileSubmodule16.svelte";
170
175
  export { default as FileSubmodule24 } from "./FileSubmodule24.svelte";
@@ -397,6 +402,7 @@ export { default as SingleSelect16 } from "./SingleSelect16.svelte";
397
402
  export { default as SingleSelect24 } from "./SingleSelect24.svelte";
398
403
  export { default as Skip16 } from "./Skip16.svelte";
399
404
  export { default as Skip24 } from "./Skip24.svelte";
405
+ export { default as Sliders16 } from "./Sliders16.svelte";
400
406
  export { default as Smiley16 } from "./Smiley16.svelte";
401
407
  export { default as Smiley24 } from "./Smiley24.svelte";
402
408
  export { default as SortAsc16 } from "./SortAsc16.svelte";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-octicons",
3
- "version": "17.3.1",
3
+ "version": "17.4.0",
4
4
  "license": "MIT",
5
5
  "description": "GitHub Octicons as Svelte components",
6
6
  "author": "Eric Liu (https://github.com/metonym)",
@@ -8,7 +8,6 @@
8
8
  "main": "./lib/index.js",
9
9
  "types": "./lib/index.d.ts",
10
10
  "type": "module",
11
- "sideEffects": false,
12
11
  "scripts": {
13
12
  "dev": "rollup -cw",
14
13
  "predeploy": "rollup -c",
@@ -17,10 +16,10 @@
17
16
  "test": "svelte-check --workspace test"
18
17
  },
19
18
  "devDependencies": {
20
- "@primer/octicons": "17.0.0",
19
+ "@primer/octicons": "17.1.0",
21
20
  "gh-pages": "^3.2.3",
22
- "svelte": "^3.46.6",
23
- "svelte-check": "^2.4.6",
21
+ "svelte": "^3.48.0",
22
+ "svelte-check": "^2.7.0",
24
23
  "svelte-readme": "^3.6.3",
25
24
  "svelvg": "^0.10.1"
26
25
  },