svelte-codicons 0.5.0 → 0.6.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/Layout.svelte +1 -1
- package/lib/LayoutActivitybarLeft.svelte +1 -0
- package/lib/LayoutActivitybarLeft.svelte.d.ts +11 -0
- package/lib/LayoutActivitybarRight.svelte +1 -0
- package/lib/LayoutActivitybarRight.svelte.d.ts +11 -0
- package/lib/LayoutCentered.svelte +1 -0
- package/lib/LayoutCentered.svelte.d.ts +11 -0
- package/lib/LayoutMenubar.svelte +1 -0
- package/lib/LayoutMenubar.svelte.d.ts +11 -0
- package/lib/LayoutPanel.svelte +1 -0
- package/lib/LayoutPanel.svelte.d.ts +11 -0
- package/lib/LayoutPanelCenter.svelte +1 -0
- package/lib/LayoutPanelCenter.svelte.d.ts +11 -0
- package/lib/LayoutPanelJustify.svelte +1 -0
- package/lib/LayoutPanelJustify.svelte.d.ts +11 -0
- package/lib/LayoutPanelLeft.svelte +1 -0
- package/lib/LayoutPanelLeft.svelte.d.ts +11 -0
- package/lib/LayoutPanelRight.svelte +1 -0
- package/lib/LayoutPanelRight.svelte.d.ts +11 -0
- package/lib/LayoutSidebarLeft.svelte +1 -0
- package/lib/LayoutSidebarLeft.svelte.d.ts +11 -0
- package/lib/LayoutSidebarRight.svelte +1 -0
- package/lib/LayoutSidebarRight.svelte.d.ts +11 -0
- package/lib/LayoutStatusbar.svelte +1 -0
- package/lib/LayoutStatusbar.svelte.d.ts +11 -0
- package/lib/Target.svelte +1 -0
- package/lib/Target.svelte.d.ts +11 -0
- package/lib/index.d.ts +13 -0
- package/lib/index.js +13 -0
- package/package.json +11 -8
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.6.0](https://github.com/metonym/svelte-codicons/releases/tag/v0.6.0) - 2022-02-14
|
|
9
|
+
|
|
10
|
+
- Upgrade `@vscode/codicons` to version `0.0.28` (net +13 icons)
|
|
11
|
+
|
|
8
12
|
## [0.5.0](https://github.com/metonym/svelte-codicons/releases/tag/v0.5.0) - 2021-12-14
|
|
9
13
|
|
|
10
14
|
- Upgrade `@vscode/codicons` to version `0.0.27` (net +2 icons)
|
package/lib/Layout.svelte
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg width="
|
|
1
|
+
<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg" fill="currentColor" {...$$restProps}><slot /><path d="M1 0L0 1V12L1 13H5L6 12V1L5 0H1ZM1 12V1H5V12H1Z"/><path d="M7 1L8 0H12L13 1V5L12 6H8L7 5V1ZM8 1V5H12V1H8Z"/><path d="M7 8L8 7H12L13 8V12L12 13H8L7 12V8ZM8 8V12H12V8H8Z"/></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 fill-rule="evenodd" clip-rule="evenodd" d="M2 1L1 2V14L2 15H14L15 14V2L14 1H2ZM14 14H4V2H14V14Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutActivitybarLeftProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutActivitybarLeft extends SvelteComponentTyped<
|
|
8
|
+
LayoutActivitybarLeftProps,
|
|
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="M2 1L1 2V14L2 15H14L15 14V2L14 1H2ZM2 14V2H12V14H2Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutActivitybarRightProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutActivitybarRight extends SvelteComponentTyped<
|
|
8
|
+
LayoutActivitybarRightProps,
|
|
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 d="M2 1L1 2V14L2 15H14L15 14V2L14 1H2ZM2 14V2H6V14H2ZM10 14V2H14V14H10Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutCenteredProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutCentered extends SvelteComponentTyped<
|
|
8
|
+
LayoutCenteredProps,
|
|
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 d="M6 3H3V4H6V3Z"/><path d="M3 5H6V6H3V5Z"/><path d="M6 7H3V8H6V7Z"/><path d="M2 1L1 2V14L2 15H14L15 14V2L14 1H2ZM2 14V2H14V14H2Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutMenubarProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutMenubar extends SvelteComponentTyped<
|
|
8
|
+
LayoutMenubarProps,
|
|
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="M2 1L1 2V14L2 15H14L15 14V2L14 1H2ZM2 10V2H14V10H2Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutPanelProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutPanel extends SvelteComponentTyped<
|
|
8
|
+
LayoutPanelProps,
|
|
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 d="M2 1L1 2V14L2 15H14L15 14V2L14 1H2ZM2 14V2H4V14H2ZM5 10V2H11V10H5ZM12 2H14V14H12V2Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutPanelCenterProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutPanelCenter extends SvelteComponentTyped<
|
|
8
|
+
LayoutPanelCenterProps,
|
|
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 d="M2 1L1 2V14L2 15H14L15 14V2L14 1H2ZM2 10V2H4V10H2ZM5 10V2H11V10H5ZM12 10V2H14V10H12Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutPanelJustifyProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutPanelJustify extends SvelteComponentTyped<
|
|
8
|
+
LayoutPanelJustifyProps,
|
|
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 d="M1 2L2 1H14L15 2V14L14 15H2L1 14V2ZM2 2V10H10V2H2ZM11 2V14H14V2H11Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutPanelLeftProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutPanelLeft extends SvelteComponentTyped<
|
|
8
|
+
LayoutPanelLeftProps,
|
|
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 d="M1 2L2 1H14L15 2V14L14 15H2L1 14V2ZM2 2V14H5V2H2ZM6 2V10H14V2H6Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutPanelRightProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutPanelRight extends SvelteComponentTyped<
|
|
8
|
+
LayoutPanelRightProps,
|
|
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="M2 1L1 2V14L2 15H14L15 14V2L14 1H2ZM14 14H7V2H14V14Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutSidebarLeftProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutSidebarLeft extends SvelteComponentTyped<
|
|
8
|
+
LayoutSidebarLeftProps,
|
|
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="M2 1L1 2V14L2 15H14L15 14V2L14 1H2ZM2 14V2H9V14H2Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutSidebarRightProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutSidebarRight extends SvelteComponentTyped<
|
|
8
|
+
LayoutSidebarRightProps,
|
|
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="M2 1L1 2V14L2 15H14L15 14V2L14 1H2ZM2 12V2H14V12H2Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface LayoutStatusbarProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class LayoutStatusbar extends SvelteComponentTyped<
|
|
8
|
+
LayoutStatusbarProps,
|
|
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 d="M8 9C8.55228 9 9 8.55228 9 8C9 7.44772 8.55228 7 8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9Z"/><path d="M12 8C12 10.2091 10.2091 12 8 12C5.79086 12 4 10.2091 4 8C4 5.79086 5.79086 4 8 4C10.2091 4 12 5.79086 12 8ZM8 11C9.65685 11 11 9.65685 11 8C11 6.34315 9.65685 5 8 5C6.34315 5 5 6.34315 5 8C5 9.65685 6.34315 11 8 11Z"/><path d="M15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8ZM8 14C11.3137 14 14 11.3137 14 8C14 4.68629 11.3137 2 8 2C4.68629 2 2 4.68629 2 8C2 11.3137 4.68629 14 8 14Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { SvelteComponentTyped } from "svelte";
|
|
3
|
+
|
|
4
|
+
export interface TargetProps
|
|
5
|
+
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {}
|
|
6
|
+
|
|
7
|
+
export default class Target extends SvelteComponentTyped<
|
|
8
|
+
TargetProps,
|
|
9
|
+
{},
|
|
10
|
+
{ default: {} }
|
|
11
|
+
> {}
|
package/lib/index.d.ts
CHANGED
|
@@ -189,6 +189,18 @@ 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 LayoutActivitybarLeft } from "./LayoutActivitybarLeft.svelte";
|
|
193
|
+
export { default as LayoutActivitybarRight } from "./LayoutActivitybarRight.svelte";
|
|
194
|
+
export { default as LayoutCentered } from "./LayoutCentered.svelte";
|
|
195
|
+
export { default as LayoutMenubar } from "./LayoutMenubar.svelte";
|
|
196
|
+
export { default as LayoutPanelCenter } from "./LayoutPanelCenter.svelte";
|
|
197
|
+
export { default as LayoutPanelJustify } from "./LayoutPanelJustify.svelte";
|
|
198
|
+
export { default as LayoutPanelLeft } from "./LayoutPanelLeft.svelte";
|
|
199
|
+
export { default as LayoutPanelRight } from "./LayoutPanelRight.svelte";
|
|
200
|
+
export { default as LayoutPanel } from "./LayoutPanel.svelte";
|
|
201
|
+
export { default as LayoutSidebarLeft } from "./LayoutSidebarLeft.svelte";
|
|
202
|
+
export { default as LayoutSidebarRight } from "./LayoutSidebarRight.svelte";
|
|
203
|
+
export { default as LayoutStatusbar } from "./LayoutStatusbar.svelte";
|
|
192
204
|
export { default as Layout } from "./Layout.svelte";
|
|
193
205
|
export { default as Library } from "./Library.svelte";
|
|
194
206
|
export { default as LightbulbAutofix } from "./LightbulbAutofix.svelte";
|
|
@@ -336,6 +348,7 @@ export { default as SyncIgnored } from "./SyncIgnored.svelte";
|
|
|
336
348
|
export { default as Sync } from "./Sync.svelte";
|
|
337
349
|
export { default as Table } from "./Table.svelte";
|
|
338
350
|
export { default as Tag } from "./Tag.svelte";
|
|
351
|
+
export { default as Target } from "./Target.svelte";
|
|
339
352
|
export { default as Tasklist } from "./Tasklist.svelte";
|
|
340
353
|
export { default as Telescope } from "./Telescope.svelte";
|
|
341
354
|
export { default as TerminalBash } from "./TerminalBash.svelte";
|
package/lib/index.js
CHANGED
|
@@ -189,6 +189,18 @@ 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 LayoutActivitybarLeft } from "./LayoutActivitybarLeft.svelte";
|
|
193
|
+
export { default as LayoutActivitybarRight } from "./LayoutActivitybarRight.svelte";
|
|
194
|
+
export { default as LayoutCentered } from "./LayoutCentered.svelte";
|
|
195
|
+
export { default as LayoutMenubar } from "./LayoutMenubar.svelte";
|
|
196
|
+
export { default as LayoutPanelCenter } from "./LayoutPanelCenter.svelte";
|
|
197
|
+
export { default as LayoutPanelJustify } from "./LayoutPanelJustify.svelte";
|
|
198
|
+
export { default as LayoutPanelLeft } from "./LayoutPanelLeft.svelte";
|
|
199
|
+
export { default as LayoutPanelRight } from "./LayoutPanelRight.svelte";
|
|
200
|
+
export { default as LayoutPanel } from "./LayoutPanel.svelte";
|
|
201
|
+
export { default as LayoutSidebarLeft } from "./LayoutSidebarLeft.svelte";
|
|
202
|
+
export { default as LayoutSidebarRight } from "./LayoutSidebarRight.svelte";
|
|
203
|
+
export { default as LayoutStatusbar } from "./LayoutStatusbar.svelte";
|
|
192
204
|
export { default as Layout } from "./Layout.svelte";
|
|
193
205
|
export { default as Library } from "./Library.svelte";
|
|
194
206
|
export { default as LightbulbAutofix } from "./LightbulbAutofix.svelte";
|
|
@@ -336,6 +348,7 @@ export { default as SyncIgnored } from "./SyncIgnored.svelte";
|
|
|
336
348
|
export { default as Sync } from "./Sync.svelte";
|
|
337
349
|
export { default as Table } from "./Table.svelte";
|
|
338
350
|
export { default as Tag } from "./Tag.svelte";
|
|
351
|
+
export { default as Target } from "./Target.svelte";
|
|
339
352
|
export { default as Tasklist } from "./Tasklist.svelte";
|
|
340
353
|
export { default as Telescope } from "./Telescope.svelte";
|
|
341
354
|
export { default as TerminalBash } from "./TerminalBash.svelte";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-codicons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "VS Code Codicons as Svelte components",
|
|
6
6
|
"author": "Eric Liu (https://github.com/metonym)",
|
|
@@ -14,16 +14,19 @@
|
|
|
14
14
|
"predeploy": "rollup -c",
|
|
15
15
|
"deploy": "gh-pages -d dist",
|
|
16
16
|
"prepack": "svelvg glob=@vscode/codicons/src/icons iconIndex",
|
|
17
|
-
"
|
|
17
|
+
"check": "svelte-check --workspace tests",
|
|
18
|
+
"test": "vitest"
|
|
18
19
|
},
|
|
19
20
|
"devDependencies": {
|
|
20
|
-
"@
|
|
21
|
+
"@sveltejs/vite-plugin-svelte": "next",
|
|
22
|
+
"@vscode/codicons": "0.0.28",
|
|
21
23
|
"gh-pages": "^3.2.3",
|
|
22
|
-
"rollup": "^2.
|
|
23
|
-
"svelte": "^3.
|
|
24
|
-
"svelte-check": "^2.
|
|
25
|
-
"svelte-readme": "^3.6.
|
|
26
|
-
"svelvg": "^0.8.
|
|
24
|
+
"rollup": "^2.67.2",
|
|
25
|
+
"svelte": "^3.46.4",
|
|
26
|
+
"svelte-check": "^2.4.3",
|
|
27
|
+
"svelte-readme": "^3.6.2",
|
|
28
|
+
"svelvg": "^0.8.4",
|
|
29
|
+
"vitest": "^0.3.5"
|
|
27
30
|
},
|
|
28
31
|
"repository": {
|
|
29
32
|
"type": "git",
|