svelte-codicons 0.4.0 → 0.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/IssueDraft.svelte +1 -1
- package/lib/Layout.svelte +1 -0
- package/lib/Layout.svelte.d.ts +11 -0
- package/lib/Newline.svelte +1 -0
- package/lib/Newline.svelte.d.ts +11 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +2 -0
- package/package.json +7 -7
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
|
+
## [0.5.0](https://github.com/metonym/svelte-codicons/releases/tag/v0.5.0) - 2021-12-14
|
|
9
|
+
|
|
10
|
+
- Upgrade `@vscode/codicons` to version `0.0.27` (net +2 icons)
|
|
11
|
+
|
|
8
12
|
## [0.4.0](https://github.com/metonym/svelte-codicons/releases/tag/v0.4.0) - 2021-11-04
|
|
9
13
|
|
|
10
14
|
- Upgrade `@vscode/codicons` to version `0.0.26` (net +3 icons)
|
package/lib/IssueDraft.svelte
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor" {...$$restProps}><slot /><
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor" {...$$restProps}><slot /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.7324 9.20047L13.6835 9.50931C13.889 8.87656 14 8.20125 14 7.5C14 6.79875 13.889 6.12344 13.6835 5.49069L12.7324 5.79953C12.9058 6.33376 13 6.9049 13 7.5C13 8.0951 12.9058 8.66624 12.7324 9.20047ZM12.4021 5.00313L13.2928 4.54842C12.6696 3.3279 11.6721 2.33037 10.4516 1.70723L9.99687 2.59787C11.0298 3.12523 11.8748 3.9702 12.4021 5.00313ZM9.20047 2.26763L9.50931 1.31652C8.87656 1.11105 8.20125 1 7.5 1C6.79875 1 6.12344 1.11105 5.49069 1.31652L5.79953 2.26763C6.33376 2.09415 6.9049 2 7.5 2C8.0951 2 8.66624 2.09415 9.20047 2.26763ZM5.00313 2.59787L4.54842 1.70723C3.3279 2.33037 2.33037 3.3279 1.70723 4.54842L2.59787 5.00313C3.12523 3.9702 3.9702 3.12523 5.00313 2.59787ZM1 7.5C1 6.79875 1.11105 6.12344 1.31652 5.49069L2.26763 5.79953C2.09415 6.33376 2 6.9049 2 7.5C2 8.0951 2.09415 8.66624 2.26763 9.20047L1.31652 9.50931C1.11105 8.87656 1 8.20125 1 7.5ZM2.59787 9.99687L1.70723 10.4516C2.33037 11.6721 3.3279 12.6696 4.54842 13.2928L5.00313 12.4021C3.9702 11.8748 3.12523 11.0298 2.59787 9.99687ZM5.79953 12.7324L5.49069 13.6835C6.12344 13.889 6.79875 14 7.5 14C8.20125 14 8.87656 13.889 9.50931 13.6835L9.20047 12.7324C8.66624 12.9058 8.0951 13 7.5 13C6.9049 13 6.33376 12.9058 5.79953 12.7324ZM9.99687 12.4021L10.4516 13.2928C11.6721 12.6696 12.6696 11.6721 13.2928 10.4516L12.4021 9.99687C11.8748 11.0298 11.0298 11.8748 9.99687 12.4021ZM7.50002 8.5C8.0523 8.5 8.50002 8.05228 8.50002 7.5C8.50002 6.94772 8.0523 6.5 7.50002 6.5C6.94773 6.5 6.50002 6.94772 6.50002 7.5C6.50002 8.05228 6.94773 8.5 7.50002 8.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor" {...$$restProps}><slot /><path d="M3 1L2 2V14L3 15H14L15 14V2L14 1H3ZM3 11V2H6V11H3ZM3 12L14 12V14H3V12ZM14 11L7 11V2H14V11Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class Layout extends SvelteComponentTyped<
|
|
8
|
+
LayoutProps,
|
|
9
|
+
{},
|
|
10
|
+
{ default: {} }
|
|
11
|
+
> {}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor" {...$$restProps}><slot /><path fill-rule="evenodd" clip-rule="evenodd" d="M12 5.5V7.484C12 7.61661 11.9473 7.74379 11.8535 7.83755C11.7598 7.93132 11.6326 7.984 11.5 7.984H4.618L6.251 6.351L5.544 5.644L3.423 7.765L3 8.188V8.756L5.544 11.3L6.251 10.593L4.641 8.984H11.5C11.8978 8.984 12.2793 8.82597 12.5607 8.54466C12.842 8.26336 13 7.88182 13 7.484V5.5H12Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface NewlineProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class Newline extends SvelteComponentTyped<
|
|
8
|
+
NewlineProps,
|
|
9
|
+
{},
|
|
10
|
+
{ default: {} }
|
|
11
|
+
> {}
|
package/lib/index.d.ts
CHANGED
|
@@ -189,6 +189,7 @@ export { default as Law } from "./Law.svelte";
|
|
|
189
189
|
export { default as LayersActive } from "./LayersActive.svelte";
|
|
190
190
|
export { default as LayersDot } from "./LayersDot.svelte";
|
|
191
191
|
export { default as Layers } from "./Layers.svelte";
|
|
192
|
+
export { default as Layout } from "./Layout.svelte";
|
|
192
193
|
export { default as Library } from "./Library.svelte";
|
|
193
194
|
export { default as LightbulbAutofix } from "./LightbulbAutofix.svelte";
|
|
194
195
|
export { default as Lightbulb } from "./Lightbulb.svelte";
|
|
@@ -221,6 +222,7 @@ export { default as MultipleWindows } from "./MultipleWindows.svelte";
|
|
|
221
222
|
export { default as Mute } from "./Mute.svelte";
|
|
222
223
|
export { default as NewFile } from "./NewFile.svelte";
|
|
223
224
|
export { default as NewFolder } from "./NewFolder.svelte";
|
|
225
|
+
export { default as Newline } from "./Newline.svelte";
|
|
224
226
|
export { default as NoNewline } from "./NoNewline.svelte";
|
|
225
227
|
export { default as Note } from "./Note.svelte";
|
|
226
228
|
export { default as NotebookTemplate } from "./NotebookTemplate.svelte";
|
package/lib/index.js
CHANGED
|
@@ -189,6 +189,7 @@ export { default as Law } from "./Law.svelte";
|
|
|
189
189
|
export { default as LayersActive } from "./LayersActive.svelte";
|
|
190
190
|
export { default as LayersDot } from "./LayersDot.svelte";
|
|
191
191
|
export { default as Layers } from "./Layers.svelte";
|
|
192
|
+
export { default as Layout } from "./Layout.svelte";
|
|
192
193
|
export { default as Library } from "./Library.svelte";
|
|
193
194
|
export { default as LightbulbAutofix } from "./LightbulbAutofix.svelte";
|
|
194
195
|
export { default as Lightbulb } from "./Lightbulb.svelte";
|
|
@@ -221,6 +222,7 @@ export { default as MultipleWindows } from "./MultipleWindows.svelte";
|
|
|
221
222
|
export { default as Mute } from "./Mute.svelte";
|
|
222
223
|
export { default as NewFile } from "./NewFile.svelte";
|
|
223
224
|
export { default as NewFolder } from "./NewFolder.svelte";
|
|
225
|
+
export { default as Newline } from "./Newline.svelte";
|
|
224
226
|
export { default as NoNewline } from "./NoNewline.svelte";
|
|
225
227
|
export { default as Note } from "./Note.svelte";
|
|
226
228
|
export { default as NotebookTemplate } from "./NotebookTemplate.svelte";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-codicons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "VS Code Codicons as Svelte components",
|
|
6
6
|
"author": "Eric Liu (https://github.com/metonym)",
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
"test": "svelte-check --workspace test"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@vscode/codicons": "
|
|
20
|
+
"@vscode/codicons": "0.0.27",
|
|
21
21
|
"gh-pages": "^3.2.3",
|
|
22
|
-
"rollup": "^2.
|
|
23
|
-
"svelte": "^3.44.
|
|
24
|
-
"svelte-check": "^2.2.
|
|
25
|
-
"svelte-readme": "^3.6.
|
|
26
|
-
"svelvg": "^0.
|
|
22
|
+
"rollup": "^2.61.1",
|
|
23
|
+
"svelte": "^3.44.3",
|
|
24
|
+
"svelte-check": "^2.2.10",
|
|
25
|
+
"svelte-readme": "^3.6.1",
|
|
26
|
+
"svelvg": "^0.8.1"
|
|
27
27
|
},
|
|
28
28
|
"repository": {
|
|
29
29
|
"type": "git",
|