first commit
This commit is contained in:
commit
405df0a122
3083 changed files with 69203 additions and 0 deletions
8
public/heroicons/vue/.gitignore
vendored
Normal file
8
public/heroicons/vue/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
*
|
||||
!*.js
|
||||
!.gitignore
|
||||
!package.json
|
||||
!outline
|
||||
!solid
|
||||
!LICENSE
|
||||
!README.md
|
||||
21
public/heroicons/vue/LICENSE
Normal file
21
public/heroicons/vue/LICENSE
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) Tailwind Labs, Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
59
public/heroicons/vue/README.md
Normal file
59
public/heroicons/vue/README.md
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
<p align="center">
|
||||
<a href="https://heroicons.com" target="_blank">
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tailwindlabs/heroicons/HEAD/.github/logo-dark.svg">
|
||||
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tailwindlabs/heroicons/HEAD/.github/logo-light.svg">
|
||||
<img alt="Heroicons" width="315" height="117" style="max-width: 100%" src="https://raw.githubusercontent.com/tailwindlabs/heroicons/HEAD/.github/logo-light.svg">
|
||||
</picture>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<p align="center">Beautiful hand-crafted SVG icons, by the makers of Tailwind CSS.<p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://heroicons.com"><strong>Browse at Heroicons.com →</strong></a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/tailwindlabs/heroicons/releases"><img src="https://img.shields.io/npm/v/@heroicons/vue" alt="Latest Release"></a>
|
||||
<a href="https://github.com/tailwindlabs/heroicons/blob/master/vue/LICENSE"><img src="https://img.shields.io/npm/l/@heroicons/vue.svg" alt="License"></a>
|
||||
</p>
|
||||
|
||||
## Basic Usage
|
||||
|
||||
First, install `@heroicons/vue` from npm:
|
||||
|
||||
```sh
|
||||
npm install @heroicons/vue
|
||||
```
|
||||
|
||||
Now each icon can be imported individually as a Vue component:
|
||||
|
||||
```vue
|
||||
<template>
|
||||
<div>
|
||||
<BeakerIcon class="size-6 text-blue-500" />
|
||||
<p>...</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { BeakerIcon } from '@heroicons/vue/24/solid'
|
||||
</script>
|
||||
```
|
||||
|
||||
The 24x24 outline icons can be imported from `@heroicons/vue/24/outline`, the 24x24 solid icons can be imported from `@heroicons/vue/24/solid`, the 20x20 solid icons can be imported from `@heroicons/vue/20/solid`, and the 16x16 solid icons can be imported from `@heroicons/vue/16/solid`.
|
||||
|
||||
Icons use an upper camel case naming convention and are always suffixed with the word `Icon`.
|
||||
|
||||
[Browse the full list of icon names on UNPKG →](https://unpkg.com/browse/@heroicons/vue/24/outline/)
|
||||
|
||||
## Contributing
|
||||
|
||||
While we absolutely appreciate anyone's willingness to try and improve the project, we're currently only interested in contributions that fix bugs, for example things like incorrect TypeScript types, or fixing an icon that's been exported with a fill instead of a stroke, etc.
|
||||
|
||||
**We're not accepting contributions for new icons or adding support for other frameworks like Svelte or SolidJS**. Instead we encourage you to release your own icons in your own library, and create your own packages for any other frameworks you'd like to see supported.
|
||||
|
||||
## License
|
||||
|
||||
This library is MIT licensed.
|
||||
16
public/heroicons/vue/index.esm.js
Normal file
16
public/heroicons/vue/index.esm.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
// The only reason this file exists is to appease Vite's optimizeDeps feature which requires a root-level import.
|
||||
|
||||
export default new Proxy(
|
||||
{},
|
||||
{
|
||||
get: (_, property) => {
|
||||
if (property === '__esModule') {
|
||||
return {}
|
||||
}
|
||||
|
||||
throw new Error(
|
||||
`Importing from \`@heroicons/vue\` directly is not supported. Please import from either \`@heroicons/vue/16/solid\`, \`@heroicons/vue/20/solid\`, \`@heroicons/vue/24/solid\`, or \`@heroicons/vue/24/outline\` instead.`
|
||||
)
|
||||
},
|
||||
}
|
||||
)
|
||||
16
public/heroicons/vue/index.js
Normal file
16
public/heroicons/vue/index.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
// The only reason this file exists is to appease Vite's optimizeDeps feature which requires a root-level import.
|
||||
|
||||
module.exports = new Proxy(
|
||||
{},
|
||||
{
|
||||
get: (_, property) => {
|
||||
if (property === '__esModule') {
|
||||
return {}
|
||||
}
|
||||
|
||||
throw new Error(
|
||||
`Importing from \`@heroicons/vue\` directly is not supported. Please import from either \`@heroicons/vue/16/solid\`, \`@heroicons/vue/20/solid\`, \`@heroicons/vue/24/solid\`, or \`@heroicons/vue/24/outline\` instead.`
|
||||
)
|
||||
},
|
||||
}
|
||||
)
|
||||
16
public/heroicons/vue/outline/index.js
Normal file
16
public/heroicons/vue/outline/index.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
let proxy = new Proxy(
|
||||
{},
|
||||
{
|
||||
get: (obj, property) => {
|
||||
if (property === '__esModule') {
|
||||
return {}
|
||||
}
|
||||
|
||||
throw new Error(
|
||||
`You\'re trying to import \`@heroicons/vue/outline/${property}\` from Heroicons v1 but have installed Heroicons v2. Install \`@heroicons/vue@v1\` to resolve this error.`
|
||||
)
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
module.exports = proxy
|
||||
154
public/heroicons/vue/package.json
Normal file
154
public/heroicons/vue/package.json
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
{
|
||||
"name": "@heroicons/vue",
|
||||
"license": "MIT",
|
||||
"version": "2.2.0",
|
||||
"description": "A set of free MIT-licensed high-quality SVG icons for UI development.",
|
||||
"keywords": [
|
||||
"icons",
|
||||
"svg",
|
||||
"vue",
|
||||
"tailwindcss"
|
||||
],
|
||||
"homepage": "https://github.com/tailwindlabs/heroicons#readme",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/tailwindlabs/heroicons.git"
|
||||
},
|
||||
"files": [
|
||||
"16",
|
||||
"20",
|
||||
"24",
|
||||
"outline",
|
||||
"solid",
|
||||
"index.esm.js",
|
||||
"index.js",
|
||||
"LICENSE",
|
||||
"README.md"
|
||||
],
|
||||
"sideEffects": false,
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./index.esm.js",
|
||||
"require": "./index.js"
|
||||
},
|
||||
"./package.json": {
|
||||
"default": "./package.json"
|
||||
},
|
||||
"./outline": {
|
||||
"default": "./outline/index.js"
|
||||
},
|
||||
"./outline/index": {
|
||||
"default": "./outline/index.js"
|
||||
},
|
||||
"./outline/index.js": {
|
||||
"default": "./outline/index.js"
|
||||
},
|
||||
"./solid": {
|
||||
"default": "./solid/index.js"
|
||||
},
|
||||
"./solid/index": {
|
||||
"default": "./solid/index.js"
|
||||
},
|
||||
"./solid/index.js": {
|
||||
"default": "./solid/index.js"
|
||||
},
|
||||
"./16/solid": {
|
||||
"types": "./16/solid/index.d.ts",
|
||||
"import": "./16/solid/esm/index.js",
|
||||
"require": "./16/solid/index.js"
|
||||
},
|
||||
"./16/solid/*": {
|
||||
"types": "./16/solid/*.d.ts",
|
||||
"import": "./16/solid/esm/*.js",
|
||||
"require": "./16/solid/*.js"
|
||||
},
|
||||
"./16/solid/*.js": {
|
||||
"types": "./16/solid/*.d.ts",
|
||||
"import": "./16/solid/esm/*.js",
|
||||
"require": "./16/solid/*.js"
|
||||
},
|
||||
"./16/solid/esm/*": {
|
||||
"types": "./16/solid/*.d.ts",
|
||||
"import": "./16/solid/esm/*.js"
|
||||
},
|
||||
"./16/solid/esm/*.js": {
|
||||
"types": "./16/solid/*.d.ts",
|
||||
"import": "./16/solid/esm/*.js"
|
||||
},
|
||||
"./20/solid": {
|
||||
"types": "./20/solid/index.d.ts",
|
||||
"import": "./20/solid/esm/index.js",
|
||||
"require": "./20/solid/index.js"
|
||||
},
|
||||
"./20/solid/*": {
|
||||
"types": "./20/solid/*.d.ts",
|
||||
"import": "./20/solid/esm/*.js",
|
||||
"require": "./20/solid/*.js"
|
||||
},
|
||||
"./20/solid/*.js": {
|
||||
"types": "./20/solid/*.d.ts",
|
||||
"import": "./20/solid/esm/*.js",
|
||||
"require": "./20/solid/*.js"
|
||||
},
|
||||
"./20/solid/esm/*": {
|
||||
"types": "./20/solid/*.d.ts",
|
||||
"import": "./20/solid/esm/*.js"
|
||||
},
|
||||
"./20/solid/esm/*.js": {
|
||||
"types": "./20/solid/*.d.ts",
|
||||
"import": "./20/solid/esm/*.js"
|
||||
},
|
||||
"./24/outline": {
|
||||
"types": "./24/outline/index.d.ts",
|
||||
"import": "./24/outline/esm/index.js",
|
||||
"require": "./24/outline/index.js"
|
||||
},
|
||||
"./24/outline/*": {
|
||||
"types": "./24/outline/*.d.ts",
|
||||
"import": "./24/outline/esm/*.js",
|
||||
"require": "./24/outline/*.js"
|
||||
},
|
||||
"./24/outline/*.js": {
|
||||
"types": "./24/outline/*.d.ts",
|
||||
"import": "./24/outline/esm/*.js",
|
||||
"require": "./24/outline/*.js"
|
||||
},
|
||||
"./24/outline/esm/*": {
|
||||
"types": "./24/outline/*.d.ts",
|
||||
"import": "./24/outline/esm/*.js"
|
||||
},
|
||||
"./24/outline/esm/*.js": {
|
||||
"types": "./24/outline/*.d.ts",
|
||||
"import": "./24/outline/esm/*.js"
|
||||
},
|
||||
"./24/solid": {
|
||||
"types": "./24/solid/index.d.ts",
|
||||
"import": "./24/solid/esm/index.js",
|
||||
"require": "./24/solid/index.js"
|
||||
},
|
||||
"./24/solid/*": {
|
||||
"types": "./24/solid/*.d.ts",
|
||||
"import": "./24/solid/esm/*.js",
|
||||
"require": "./24/solid/*.js"
|
||||
},
|
||||
"./24/solid/*.js": {
|
||||
"types": "./24/solid/*.d.ts",
|
||||
"import": "./24/solid/esm/*.js",
|
||||
"require": "./24/solid/*.js"
|
||||
},
|
||||
"./24/solid/esm/*": {
|
||||
"types": "./24/solid/*.d.ts",
|
||||
"import": "./24/solid/esm/*.js"
|
||||
},
|
||||
"./24/solid/esm/*.js": {
|
||||
"types": "./24/solid/*.d.ts",
|
||||
"import": "./24/solid/esm/*.js"
|
||||
}
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": ">= 3"
|
||||
}
|
||||
}
|
||||
16
public/heroicons/vue/solid/index.js
Normal file
16
public/heroicons/vue/solid/index.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
let proxy = new Proxy(
|
||||
{},
|
||||
{
|
||||
get: (obj, property) => {
|
||||
if (property === '__esModule') {
|
||||
return {}
|
||||
}
|
||||
|
||||
throw new Error(
|
||||
`You\'re trying to import \`@heroicons/vue/solid/${property}\` from Heroicons v1 but have installed Heroicons v2. Install \`@heroicons/vue@v1\` to resolve this error.`
|
||||
)
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
module.exports = proxy
|
||||
Loading…
Add table
Add a link
Reference in a new issue