Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6916aebee4 | ||
|
|
65d213264f | ||
|
|
ee77147aff | ||
|
|
3b7b74fe86 | ||
|
|
3a2f052ce9 | ||
|
|
cf34d61971 | ||
|
|
2814a63b8f | ||
|
|
4bcab462dc | ||
|
|
6c93bb97c7 | ||
|
|
3c1993c463 | ||
|
|
7a57c306c3 | ||
|
|
32637199f5 |
@@ -1,13 +1,23 @@
|
|||||||
import { fileURLToPath, URL } from 'node:url'
|
import { fileURLToPath, URL } from 'node:url'
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import { defineConfig } from 'vitepress'
|
import { defineConfig } from 'vitepress'
|
||||||
|
import { createWriteStream } from 'node:fs'
|
||||||
|
import { resolve } from 'node:path'
|
||||||
|
import { SitemapStream } from 'sitemap'
|
||||||
import sidebar from './sidebar';
|
import sidebar from './sidebar';
|
||||||
|
|
||||||
|
const links = []
|
||||||
|
|
||||||
|
|
||||||
|
const title = "Lucide";
|
||||||
|
const socialTitle = "Lucide Icons";
|
||||||
|
const description = "Beautiful & consistent icon toolkit made by the community."
|
||||||
|
|
||||||
// https://vitepress.dev/reference/site-config
|
// https://vitepress.dev/reference/site-config
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
|
title,
|
||||||
|
description,
|
||||||
cleanUrls: true,
|
cleanUrls: true,
|
||||||
title: "Lucide",
|
|
||||||
description: "Beautiful & consistent icon toolkit made by the community.",
|
|
||||||
outDir: '.vercel/output/static',
|
outDir: '.vercel/output/static',
|
||||||
vite: {
|
vite: {
|
||||||
resolve: {
|
resolve: {
|
||||||
@@ -28,14 +38,67 @@ export default defineConfig({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
head: [
|
head: [
|
||||||
[
|
[ 'script', {
|
||||||
'script',
|
src: 'https://plausible.io/js/script.js',
|
||||||
{
|
'data-domain': 'lucide.dev',
|
||||||
src: 'https://plausible.io/js/script.js',
|
defer: ''
|
||||||
'data-domain': 'lucide.dev',
|
}],
|
||||||
defer: ''
|
[ 'meta', {
|
||||||
}
|
property:"og:locale",
|
||||||
],
|
content:"en_US"
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"og:type",
|
||||||
|
content:"website"
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"og:site_name",
|
||||||
|
content: title,
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"og:title",
|
||||||
|
content: socialTitle,
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"og:description",
|
||||||
|
content: description
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"og:url",
|
||||||
|
content:"https://lucide.dev"
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"og:image",
|
||||||
|
content: "https://lucide.dev/og.png"
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"og:image:width",
|
||||||
|
content:"1200"
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"og:image:height",
|
||||||
|
content:"630"
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"og:image:type",
|
||||||
|
content:"image/png"
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"twitter:card",
|
||||||
|
content:"summary_large_image"
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"twitter:title",
|
||||||
|
content: socialTitle,
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"twitter:description",
|
||||||
|
content: description
|
||||||
|
}],
|
||||||
|
[ 'meta', {
|
||||||
|
property:"twitter:image",
|
||||||
|
content:"https://lucide.dev/og.png"
|
||||||
|
}],
|
||||||
],
|
],
|
||||||
themeConfig: {
|
themeConfig: {
|
||||||
// https://vitepress.dev/reference/default-theme-config
|
// https://vitepress.dev/reference/default-theme-config
|
||||||
@@ -44,7 +107,7 @@ export default defineConfig({
|
|||||||
dark: '/logo.dark.svg'
|
dark: '/logo.dark.svg'
|
||||||
},
|
},
|
||||||
nav: [
|
nav: [
|
||||||
{ text: 'Icons', link: '/icons/index.md' },
|
{ text: 'Icons', link: '/icons/' },
|
||||||
{ text: 'Guide', link: '/guide/' },
|
{ text: 'Guide', link: '/guide/' },
|
||||||
{ text: 'Packages', link: '/packages' },
|
{ text: 'Packages', link: '/packages' },
|
||||||
{ text: 'License', link: '/license' },
|
{ text: 'License', link: '/license' },
|
||||||
@@ -61,5 +124,37 @@ export default defineConfig({
|
|||||||
editLink: {
|
editLink: {
|
||||||
pattern: 'https://github.com/lucide-icons/lucide/edit/main/docs/:path'
|
pattern: 'https://github.com/lucide-icons/lucide/edit/main/docs/:path'
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
transformHtml: (_, id, { pageData }) => {
|
||||||
|
if (/[\\/]404\.html$/.test(id)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pageData.relativePath === 'index.md') {
|
||||||
|
console.log('Home!');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pageData.relativePath.startsWith('icons/')) {
|
||||||
|
links.push({
|
||||||
|
url: pageData.relativePath.replace(/((^|\/)index)?\.md$/, '$2'),
|
||||||
|
lastmod: pageData?.params?.changedRelease?.date
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
links.push({
|
||||||
|
url: pageData.relativePath.replace(/((^|\/)index)?\.md$/, '$2'),
|
||||||
|
lastmod: pageData.lastUpdated
|
||||||
|
})
|
||||||
|
},
|
||||||
|
buildEnd: async ({ outDir }) => {
|
||||||
|
const sitemap = new SitemapStream({
|
||||||
|
hostname: 'https://lucide.dev/'
|
||||||
|
})
|
||||||
|
const writeStream = createWriteStream(resolve(outDir, 'sitemap.xml'))
|
||||||
|
sitemap.pipe(writeStream)
|
||||||
|
links.forEach((link) => sitemap.write(link))
|
||||||
|
sitemap.end()
|
||||||
|
await new Promise((r) => writeStream.on('finish', r))
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -13,10 +13,10 @@ hero:
|
|||||||
actions:
|
actions:
|
||||||
- theme: brand
|
- theme: brand
|
||||||
text: View all icons
|
text: View all icons
|
||||||
link: icons/index
|
link: icons/
|
||||||
- theme: alt
|
- theme: alt
|
||||||
text: Get Started
|
text: Get Started
|
||||||
link: guide/index
|
link: guide/
|
||||||
- theme: alt
|
- theme: alt
|
||||||
text: GitHub
|
text: GitHub
|
||||||
link: https://github.com/lucide-icons/lucide
|
link: https://github.com/lucide-icons/lucide
|
||||||
|
|||||||
@@ -46,6 +46,7 @@
|
|||||||
"shiki": "^0.14.2",
|
"shiki": "^0.14.2",
|
||||||
"shiki-processor": "^0.1.3",
|
"shiki-processor": "^0.1.3",
|
||||||
"simple-git": "^3.18.0",
|
"simple-git": "^3.18.0",
|
||||||
|
"sitemap": "^7.1.1",
|
||||||
"svg-pathdata": "^6.0.3",
|
"svg-pathdata": "^6.0.3",
|
||||||
"svgson": "^5.2.1",
|
"svgson": "^5.2.1",
|
||||||
"vue": "^3.2.47"
|
"vue": "^3.2.47"
|
||||||
|
|||||||
BIN
docs/public/og.png
Normal file
|
After Width: | Height: | Size: 157 KiB |
11
icons/bar-chart-big.json
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"statistics",
|
||||||
|
"diagram",
|
||||||
|
"graph"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"charts"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/bar-chart-big.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M3 3v18h18" />
|
||||||
|
<rect width="4" height="7" x="7" y="10" rx="1" />
|
||||||
|
<rect width="4" height="12" x="15" y="5" rx="1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 339 B |
11
icons/bar-chart-horizontal-big.json
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"statistics",
|
||||||
|
"diagram",
|
||||||
|
"graph"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"charts"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/bar-chart-horizontal-big.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M3 3v18h18" />
|
||||||
|
<rect width="12" height="4" x="7" y="5" rx="1" />
|
||||||
|
<rect width="7" height="4" x="7" y="13" rx="1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 338 B |
@@ -10,7 +10,8 @@
|
|||||||
"digits",
|
"digits",
|
||||||
"computer",
|
"computer",
|
||||||
"zero",
|
"zero",
|
||||||
"one"
|
"one",
|
||||||
|
"boolean"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"text",
|
"text",
|
||||||
|
|||||||
@@ -9,10 +9,10 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
|
<rect x="14" y="14" width="4" height="6" rx="2" />
|
||||||
|
<rect x="6" y="4" width="4" height="6" rx="2" />
|
||||||
<path d="M6 20h4" />
|
<path d="M6 20h4" />
|
||||||
<path d="M14 10h4" />
|
<path d="M14 10h4" />
|
||||||
<path d="M6 14h2v6" />
|
<path d="M6 14h2v6" />
|
||||||
<path d="M14 4h2v6" />
|
<path d="M14 4h2v6" />
|
||||||
<rect width="4" height="6" x="6" y="4" />
|
|
||||||
<rect width="4" height="6" x="14" y="14" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 409 B |
@@ -9,8 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M2,16V4c0-1.1,0.9-2,2-2h11" />
|
<path d="M2 16V4a2 2 0 0 1 2-2h11" />
|
||||||
<path d="M5,14H4c-1.1,0-2,0.9-2,2s0.9,2,2,2h1" />
|
<path d="M5 14H4a2 2 0 1 0 0 4h1" />
|
||||||
<path d="M22,18H11c-1.1,0-2,0.9-2,2l0,0" />
|
<path d="M22 18H11a2 2 0 1 0 0 4h11V6H11a2 2 0 0 0-2 2v12" />
|
||||||
<path d="M11,6h11v16H11c-1.1,0-2-0.9-2-2V8C9,6.9,9.9,6,11,6z" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 415 B After Width: | Height: | Size: 351 B |
@@ -9,8 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
|
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20" />
|
||||||
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2Z" />
|
|
||||||
<path d="M12 13V7" />
|
<path d="M12 13V7" />
|
||||||
<path d="m9 10 3 3 3-3" />
|
<path d="m9 10 3 3 3-3" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 386 B After Width: | Height: | Size: 339 B |
@@ -9,9 +9,9 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M20,2l-4.5,4.5"/>
|
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H14" />
|
||||||
<path d="M19,3l1,1"/>
|
<path d="M20 8v14H6.5a2.5 2.5 0 0 1 0-5H20" />
|
||||||
<circle cx="14" cy="8" r="2"/>
|
<circle cx="14" cy="8" r="2" />
|
||||||
<path d="M4,19.5C4,18.1,5.1,17,6.5,17H20" />
|
<path d="m20 2-4.5 4.5" />
|
||||||
<path d="M20,8v14H6.5C5.1,22,4,20.9,4,19.5v-15C4,3.1,5.1,2,6.5,2H14" />
|
<path d="m19 3 1 1" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 415 B After Width: | Height: | Size: 395 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M4,19.5C4,18.1,5.1,17,6.5,17H20" />
|
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10" />
|
||||||
<path d="M18,6V4c0-1.1-0.9-2-2-2s-2,0.9-2,2v2" />
|
<path d="M20 15v7H6.5a2.5 2.5 0 0 1 0-5H20" />
|
||||||
<path d="M20,15v7H6.5C5.1,22,4,20.9,4,19.5v-15C4,3.1,5.1,2,6.5,2H10" />
|
<rect width="8" height="5" x="12" y="6" rx="1" />
|
||||||
<path d="M13,6h6c0.6,0,1,0.4,1,1v3c0,0.6-0.4,1-1,1h-6c-0.6,0-1-0.4-1-1V7C12,6.4,12.4,6,13,6z" />
|
<path d="M18 6V4a2 2 0 1 0-4 0v2" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 480 B After Width: | Height: | Size: 398 B |
@@ -9,7 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<polyline points="10,2 10,10 13,7 16,10 16,2" />
|
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20" />
|
||||||
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
|
<polyline points="10 2 10 10 13 7 16 10 16 2" />
|
||||||
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 337 B |
@@ -9,7 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="9" y1="10" x2="15" y2="10"/>
|
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20" />
|
||||||
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
|
<path d="M9 10h6" />
|
||||||
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 309 B |
@@ -9,8 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="12" y1="7" x2="12" y2="13"/>
|
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20" />
|
||||||
<line x1="9" y1="10" x2="15" y2="10"/>
|
<path d="M9 10h6" />
|
||||||
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
|
<path d="M12 7v6" />
|
||||||
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 415 B After Width: | Height: | Size: 332 B |
14
icons/book-up-2.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"code",
|
||||||
|
"version control",
|
||||||
|
"git",
|
||||||
|
"repository",
|
||||||
|
"push",
|
||||||
|
"force"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"development"
|
||||||
|
]
|
||||||
|
}
|
||||||
17
icons/book-up-2.svg
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2" />
|
||||||
|
<path d="M18 2h2v20H6.5a2.5 2.5 0 0 1 0-5H20" />
|
||||||
|
<path d="M12 13V7" />
|
||||||
|
<path d="m9 10 3-3 3 3" />
|
||||||
|
<path d="m9 5 3-3 3 3" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 387 B |
@@ -9,8 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
|
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20" />
|
||||||
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2Z" />
|
<path d="M12 13V7" />
|
||||||
<path d="M12,13V7" />
|
<path d="m9 10 3-3 3 3" />
|
||||||
<path d="M9,10l3-3l3,3" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 386 B After Width: | Height: | Size: 339 B |
@@ -9,8 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M9.5,7l5,5" />
|
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20" />
|
||||||
<path d="M14.5,7l-5,5" />
|
<path d="m14.5 7-5 5" />
|
||||||
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
|
<path d="m9.5 7 5 5" />
|
||||||
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 387 B After Width: | Height: | Size: 339 B |
@@ -9,6 +9,5 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
|
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20" />
|
||||||
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 333 B After Width: | Height: | Size: 286 B |
26
icons/candlestick-chart.json
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"trading",
|
||||||
|
"trader",
|
||||||
|
"financial",
|
||||||
|
"markets",
|
||||||
|
"portfolio",
|
||||||
|
"assets",
|
||||||
|
"prices",
|
||||||
|
"value",
|
||||||
|
"valuation",
|
||||||
|
"commodities",
|
||||||
|
"currencies",
|
||||||
|
"currency",
|
||||||
|
"exchange",
|
||||||
|
"hedge fund",
|
||||||
|
"statistics",
|
||||||
|
"diagram",
|
||||||
|
"graph"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"charts",
|
||||||
|
"money"
|
||||||
|
]
|
||||||
|
}
|
||||||
19
icons/candlestick-chart.svg
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M9 5v4" />
|
||||||
|
<rect width="4" height="6" x="7" y="9" rx="1" />
|
||||||
|
<path d="M9 15v2" />
|
||||||
|
<path d="M17 3v2" />
|
||||||
|
<rect width="4" height="8" x="15" y="5" rx="1" />
|
||||||
|
<path d="M17 13v3" />
|
||||||
|
<path d="M3 3v18h18" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 429 B |
17
icons/circle-dashed.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"pending",
|
||||||
|
"dot",
|
||||||
|
"progress",
|
||||||
|
"issue",
|
||||||
|
"draft",
|
||||||
|
"code",
|
||||||
|
"version control"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"development",
|
||||||
|
"coding",
|
||||||
|
"shapes"
|
||||||
|
]
|
||||||
|
}
|
||||||
20
icons/circle-dashed.svg
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M10.1 2.18a9.93 9.93 0 0 1 3.8 0" />
|
||||||
|
<path d="M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7" />
|
||||||
|
<path d="M21.82 10.1a9.93 9.93 0 0 1 0 3.8" />
|
||||||
|
<path d="M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69" />
|
||||||
|
<path d="M13.9 21.82a9.94 9.94 0 0 1-3.8 0" />
|
||||||
|
<path d="M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7" />
|
||||||
|
<path d="M2.18 13.9a9.93 9.93 0 0 1 0-3.8" />
|
||||||
|
<path d="M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 606 B |
17
icons/circle-dot-dashed.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"pending",
|
||||||
|
"dot",
|
||||||
|
"progress",
|
||||||
|
"issue",
|
||||||
|
"draft",
|
||||||
|
"code",
|
||||||
|
"version control"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"development",
|
||||||
|
"coding",
|
||||||
|
"shapes"
|
||||||
|
]
|
||||||
|
}
|
||||||
21
icons/circle-dot-dashed.svg
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M10.1 2.18a9.93 9.93 0 0 1 3.8 0" />
|
||||||
|
<path d="M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7" />
|
||||||
|
<path d="M21.82 10.1a9.93 9.93 0 0 1 0 3.8" />
|
||||||
|
<path d="M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69" />
|
||||||
|
<path d="M13.9 21.82a9.94 9.94 0 0 1-3.8 0" />
|
||||||
|
<path d="M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7" />
|
||||||
|
<path d="M2.18 13.9a9.93 9.93 0 0 1 0-3.8" />
|
||||||
|
<path d="M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69" />
|
||||||
|
<circle cx="12" cy="12" r="1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 641 B |
@@ -8,12 +8,15 @@
|
|||||||
"dot",
|
"dot",
|
||||||
"progress",
|
"progress",
|
||||||
"issue",
|
"issue",
|
||||||
"radio button",
|
"code",
|
||||||
|
"version control",
|
||||||
"choices",
|
"choices",
|
||||||
"multiple choice",
|
"multiple choice",
|
||||||
"choose"
|
"choose"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
|
"development",
|
||||||
|
"coding",
|
||||||
"shapes"
|
"shapes"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,9 +9,9 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
|
<rect width="4" height="6" x="2" y="12" rx="2" />
|
||||||
|
<path d="M14 2v6h6" />
|
||||||
<path d="M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4" />
|
<path d="M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4" />
|
||||||
<polyline points="14 2 14 8 20 8" />
|
|
||||||
<path d="M10 12h2v6" />
|
<path d="M10 12h2v6" />
|
||||||
<rect width="4" height="6" x="2" y="12" />
|
|
||||||
<path d="M10 18h4" />
|
<path d="M10 18h4" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 409 B After Width: | Height: | Size: 402 B |
@@ -9,9 +9,9 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect width="6" height="6" x="9" y="2" />
|
<rect x="16" y="16" width="6" height="6" rx="1" />
|
||||||
<rect width="6" height="6" x="16" y="16" />
|
<rect x="2" y="16" width="6" height="6" rx="1" />
|
||||||
<rect width="6" height="6" x="2" y="16" />
|
<rect x="9" y="2" width="6" height="6" rx="1" />
|
||||||
<path d="M5 16v-4h14v4" />
|
<path d="M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3" />
|
||||||
<path d="M12 12V8" />
|
<path d="M12 12V8" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 396 B After Width: | Height: | Size: 445 B |
@@ -10,7 +10,7 @@
|
|||||||
"space",
|
"space",
|
||||||
"physics",
|
"physics",
|
||||||
"satellites",
|
"satellites",
|
||||||
"moons",
|
"moons"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"science"
|
"science"
|
||||||
|
|||||||
29
icons/presentation.json
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"contributors": [
|
||||||
|
"danielbayley"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"screen",
|
||||||
|
"whiteboard",
|
||||||
|
"marker pens",
|
||||||
|
"markers",
|
||||||
|
"blackboard",
|
||||||
|
"chalk",
|
||||||
|
"easel",
|
||||||
|
"school",
|
||||||
|
"learning",
|
||||||
|
"lesson",
|
||||||
|
"office",
|
||||||
|
"meeting",
|
||||||
|
"project",
|
||||||
|
"planning"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"multimedia",
|
||||||
|
"photography",
|
||||||
|
"devices",
|
||||||
|
"communication",
|
||||||
|
"design"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/presentation.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M2 3h20" />
|
||||||
|
<path d="M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3" />
|
||||||
|
<path d="m7 21 5-5 5 5" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 316 B |
24
icons/projector.json
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"contributors": [
|
||||||
|
"danielbayley"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"cinema",
|
||||||
|
"film",
|
||||||
|
"movie",
|
||||||
|
"home video",
|
||||||
|
"presentation",
|
||||||
|
"slideshow",
|
||||||
|
"office",
|
||||||
|
"meeting",
|
||||||
|
"project",
|
||||||
|
"planning"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"multimedia",
|
||||||
|
"photography",
|
||||||
|
"devices",
|
||||||
|
"communication"
|
||||||
|
]
|
||||||
|
}
|
||||||
18
icons/projector.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M5 7 3 5" />
|
||||||
|
<path d="M9 6V3" />
|
||||||
|
<path d="m13 7 2-2" />
|
||||||
|
<circle cx="9" cy="13" r="3" />
|
||||||
|
<path d="M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17" />
|
||||||
|
<path d="M16 16h2" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 433 B |
22
icons/refresh-ccw-dot.json
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"arrows",
|
||||||
|
"rotate",
|
||||||
|
"reload",
|
||||||
|
"synchronise",
|
||||||
|
"synchronize",
|
||||||
|
"circular",
|
||||||
|
"cycle",
|
||||||
|
"issue",
|
||||||
|
"code",
|
||||||
|
"version control",
|
||||||
|
"dashed"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"arrows",
|
||||||
|
"development",
|
||||||
|
"coding",
|
||||||
|
"shapes"
|
||||||
|
]
|
||||||
|
}
|
||||||
17
icons/refresh-ccw-dot.svg
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M3 2v6h6" />
|
||||||
|
<path d="M21 12A9 9 0 0 0 6 5.3L3 8" />
|
||||||
|
<path d="M21 22v-6h-6" />
|
||||||
|
<path d="M3 12a9 9 0 0 0 15 6.7l3-2.7" />
|
||||||
|
<circle cx="12" cy="12" r="1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 381 B |
18
icons/search-check.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"find",
|
||||||
|
"scan",
|
||||||
|
"magnifier",
|
||||||
|
"magnifying glass",
|
||||||
|
"found",
|
||||||
|
"correct",
|
||||||
|
"complete",
|
||||||
|
"tick"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"text",
|
||||||
|
"account",
|
||||||
|
"social"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/search-check.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="m8 11 2 2 4-4" />
|
||||||
|
<circle cx="11" cy="11" r="8" />
|
||||||
|
<path d="m21 21-4.3-4.3" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 302 B |
18
icons/search-code.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"find",
|
||||||
|
"scan",
|
||||||
|
"magnifier",
|
||||||
|
"magnifying glass",
|
||||||
|
"grep",
|
||||||
|
"chevrons",
|
||||||
|
"<>"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"text",
|
||||||
|
"account",
|
||||||
|
"social",
|
||||||
|
"development"
|
||||||
|
]
|
||||||
|
}
|
||||||
16
icons/search-code.svg
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="m9 9-2 2 2 2" />
|
||||||
|
<path d="m13 13 2-2-2-2" />
|
||||||
|
<circle cx="11" cy="11" r="8" />
|
||||||
|
<path d="m21 21-4.3-4.3" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 331 B |
19
icons/search-slash.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"find",
|
||||||
|
"scan",
|
||||||
|
"magnifier",
|
||||||
|
"magnifying glass",
|
||||||
|
"stop",
|
||||||
|
"clear",
|
||||||
|
"cancel",
|
||||||
|
"abort",
|
||||||
|
"/"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"text",
|
||||||
|
"account",
|
||||||
|
"social"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/search-slash.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="m13.5 8.5-5 5" />
|
||||||
|
<circle cx="11" cy="11" r="8" />
|
||||||
|
<path d="m21 21-4.3-4.3" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 302 B |
18
icons/search-x.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"find",
|
||||||
|
"scan",
|
||||||
|
"magnifier",
|
||||||
|
"magnifying glass",
|
||||||
|
"stop",
|
||||||
|
"clear",
|
||||||
|
"cancel",
|
||||||
|
"abort"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"text",
|
||||||
|
"account",
|
||||||
|
"social"
|
||||||
|
]
|
||||||
|
}
|
||||||
16
icons/search-x.svg
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="m13.5 8.5-5 5" />
|
||||||
|
<path d="m8.5 8.5 5 5" />
|
||||||
|
<circle cx="11" cy="11" r="8" />
|
||||||
|
<path d="m21 21-4.3-4.3" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 330 B |
@@ -6,6 +6,7 @@
|
|||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"find",
|
"find",
|
||||||
|
"scan",
|
||||||
"magnifier",
|
"magnifier",
|
||||||
"magnifying glass"
|
"magnifying glass"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -10,5 +10,5 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="11" cy="11" r="8" />
|
<circle cx="11" cy="11" r="8" />
|
||||||
<line x1="21" x2="16.65" y1="21" y2="16.65" />
|
<path d="m21 21-4.3-4.3" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 292 B After Width: | Height: | Size: 273 B |
19
icons/shapes.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"triangle",
|
||||||
|
"equilateral",
|
||||||
|
"square",
|
||||||
|
"circle",
|
||||||
|
"classification",
|
||||||
|
"different",
|
||||||
|
"collection",
|
||||||
|
"toy",
|
||||||
|
"blocks",
|
||||||
|
"learning"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"shapes",
|
||||||
|
"gaming"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/shapes.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z" />
|
||||||
|
<rect x="3" y="14" width="7" height="7" rx="1" />
|
||||||
|
<circle cx="17.5" cy="17.5" r="3.5" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 405 B |
@@ -8,10 +8,12 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"on",
|
"on",
|
||||||
"off",
|
"off",
|
||||||
"switch"
|
"switch",
|
||||||
|
"boolean"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"layout",
|
"layout",
|
||||||
"account"
|
"account",
|
||||||
|
"development"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -8,10 +8,12 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"on",
|
"on",
|
||||||
"off",
|
"off",
|
||||||
"switch"
|
"switch",
|
||||||
|
"boolean"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"layout",
|
"layout",
|
||||||
"account"
|
"account",
|
||||||
|
"development"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
29
pnpm-lock.yaml
generated
@@ -108,6 +108,9 @@ importers:
|
|||||||
simple-git:
|
simple-git:
|
||||||
specifier: ^3.18.0
|
specifier: ^3.18.0
|
||||||
version: 3.18.0
|
version: 3.18.0
|
||||||
|
sitemap:
|
||||||
|
specifier: ^7.1.1
|
||||||
|
version: 7.1.1
|
||||||
svg-pathdata:
|
svg-pathdata:
|
||||||
specifier: ^6.0.3
|
specifier: ^6.0.3
|
||||||
version: 6.0.3
|
version: 6.0.3
|
||||||
@@ -6204,12 +6207,15 @@ packages:
|
|||||||
|
|
||||||
/@types/node@12.11.1:
|
/@types/node@12.11.1:
|
||||||
resolution: {integrity: sha512-TJtwsqZ39pqcljJpajeoofYRfeZ7/I/OMUQ5pR4q5wOKf2ocrUvBAZUMhWsOvKx3dVc/aaV5GluBivt0sWqA5A==}
|
resolution: {integrity: sha512-TJtwsqZ39pqcljJpajeoofYRfeZ7/I/OMUQ5pR4q5wOKf2ocrUvBAZUMhWsOvKx3dVc/aaV5GluBivt0sWqA5A==}
|
||||||
dev: true
|
|
||||||
|
|
||||||
/@types/node@16.9.1:
|
/@types/node@16.9.1:
|
||||||
resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==}
|
resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@types/node@17.0.45:
|
||||||
|
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@types/parse-json@4.0.0:
|
/@types/parse-json@4.0.0:
|
||||||
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
|
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
|
||||||
dev: true
|
dev: true
|
||||||
@@ -6282,6 +6288,12 @@ packages:
|
|||||||
'@types/node': 12.11.1
|
'@types/node': 12.11.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@types/sax@1.2.4:
|
||||||
|
resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==}
|
||||||
|
dependencies:
|
||||||
|
'@types/node': 12.11.1
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@types/scheduler@0.16.2:
|
/@types/scheduler@0.16.2:
|
||||||
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
|
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
|
||||||
dev: true
|
dev: true
|
||||||
@@ -7528,6 +7540,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
|
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/arg@5.0.2:
|
||||||
|
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/argparse@1.0.10:
|
/argparse@1.0.10:
|
||||||
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
|
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -17849,6 +17865,17 @@ packages:
|
|||||||
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
|
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/sitemap@7.1.1:
|
||||||
|
resolution: {integrity: sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==}
|
||||||
|
engines: {node: '>=12.0.0', npm: '>=5.6.0'}
|
||||||
|
hasBin: true
|
||||||
|
dependencies:
|
||||||
|
'@types/node': 17.0.45
|
||||||
|
'@types/sax': 1.2.4
|
||||||
|
arg: 5.0.2
|
||||||
|
sax: 1.2.4
|
||||||
|
dev: false
|
||||||
|
|
||||||
/slash@3.0.0:
|
/slash@3.0.0:
|
||||||
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
|
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
|
|||||||