Fixed #3829 - Add new Icon components

pull/3841/head
mertsincan 2023-03-31 22:45:03 +01:00
parent 2817a3268e
commit 01c151b799
139 changed files with 2050 additions and 0 deletions

View File

@ -11,6 +11,16 @@ fs.readdirSync(path.resolve(__dirname, './components/lib/'), { withFileTypes: tr
});
});
fs.readdirSync(path.resolve(__dirname, './components/lib/icon/'), { withFileTypes: true })
.filter((dir) => dir.isDirectory())
.forEach(({ name: folderName }) => {
fs.readdirSync(path.resolve(__dirname, './components/lib/icon/' + folderName)).forEach((file) => {
if (file === 'package.json' || file.endsWith('d.ts') || file.endsWith('vue')) {
fs.copySync(path.resolve(__dirname, './components/lib/icon/' + folderName) + '/' + file, 'dist/icon/' + folderName + '/' + file);
}
});
});
fs.copySync(path.resolve(__dirname, './components/lib/ts-helpers.d.ts'), 'dist/ts-helpers.d.ts');
fs.copySync(path.resolve(__dirname, './package-build.json'), 'dist/package.json');
fs.copySync(path.resolve(__dirname, './README.md'), 'dist/README.md');

View File

@ -0,0 +1,68 @@
<script>
import { ObjectUtils } from 'primevue/utils';
export default {
name: 'BaseIcon',
props: {
label: {
type: String,
value: undefined
},
spin: {
type: Boolean,
value: false
}
},
methods: {
pti() {
const isLabelEmpty = ObjectUtils.isEmpty(this.label);
return {
class: [
'p-icon',
{
'p-icon-spin': this.spin
}
],
role: !isLabelEmpty ? 'img' : undefined,
'aria-hidden': isLabelEmpty
};
}
}
};
</script>
<style>
/* Theme */
.p-icon {
display: inline-block;
width: 1rem;
height: 1rem;
}
.p-icon-spin {
-webkit-animation: p-icon-spin 2s infinite linear;
animation: p-icon-spin 2s infinite linear;
}
@-webkit-keyframes p-icon-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes p-icon-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
</style>

View File

@ -0,0 +1,8 @@
{
"main": "./baseicon.cjs.js",
"module": "./baseicon.esm.js",
"unpkg": "./baseicon.min.js",
"browser": {
"./sfc": "./BaseIcon.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class AngleDoubleDownIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
AngleDoubleDownIcon: GlobalComponentConstructor<AngleDoubleDownIcon>;
}
}
export default AngleDoubleDownIcon;

View File

@ -0,0 +1,18 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M6.70786 6.59831C6.80043 6.63674 6.89974 6.65629 6.99997 6.65581C7.19621 6.64081 7.37877 6.54953 7.50853 6.40153L11.0685 2.8416C11.1364 2.69925 11.1586 2.53932 11.132 2.38384C11.1053 2.22837 11.0311 2.08498 10.9195 1.97343C10.808 1.86188 10.6646 1.78766 10.5091 1.76099C10.3536 1.73431 10.1937 1.75649 10.0513 1.82448L6.99997 4.87585L3.9486 1.82448C3.80625 1.75649 3.64632 1.73431 3.49084 1.76099C3.33536 1.78766 3.19197 1.86188 3.08043 1.97343C2.96888 2.08498 2.89466 2.22837 2.86798 2.38384C2.84131 2.53932 2.86349 2.69925 2.93147 2.8416L6.46089 6.43205C6.53132 6.50336 6.61528 6.55989 6.70786 6.59831ZM6.70786 12.1925C6.80043 12.2309 6.89974 12.2505 6.99997 12.25C7.10241 12.2465 7.20306 12.2222 7.29575 12.1785C7.38845 12.1348 7.47124 12.0726 7.53905 11.9957L11.0685 8.46629C11.1614 8.32292 11.2036 8.15249 11.1881 7.98233C11.1727 7.81216 11.1005 7.6521 10.9833 7.52781C10.866 7.40353 10.7104 7.3222 10.5415 7.29688C10.3725 7.27155 10.1999 7.30369 10.0513 7.38814L6.99997 10.4395L3.9486 7.38814C3.80006 7.30369 3.62747 7.27155 3.45849 7.29688C3.28951 7.3222 3.13393 7.40353 3.01667 7.52781C2.89942 7.6521 2.82729 7.81216 2.81184 7.98233C2.79639 8.15249 2.83852 8.32292 2.93148 8.46629L6.4609 12.0262C6.53133 12.0975 6.61529 12.1541 6.70786 12.1925Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'AngleDoubleDownIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class AngleDoubleLeftIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
AngleDoubleLeftIcon: GlobalComponentConstructor<AngleDoubleLeftIcon>;
}
}
export default AngleDoubleLeftIcon;

View File

@ -0,0 +1,18 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M5.71602 11.164C5.80782 11.2021 5.9063 11.2215 6.00569 11.221C6.20216 11.2301 6.39427 11.1612 6.54025 11.0294C6.68191 10.8875 6.76148 10.6953 6.76148 10.4948C6.76148 10.2943 6.68191 10.1021 6.54025 9.96024L3.51441 6.9344L6.54025 3.90855C6.624 3.76126 6.65587 3.59011 6.63076 3.42254C6.60564 3.25498 6.525 3.10069 6.40175 2.98442C6.2785 2.86815 6.11978 2.79662 5.95104 2.7813C5.78229 2.76598 5.61329 2.80776 5.47112 2.89994L1.97123 6.39983C1.82957 6.54167 1.75 6.73393 1.75 6.9344C1.75 7.13486 1.82957 7.32712 1.97123 7.46896L5.47112 10.9991C5.54096 11.0698 5.62422 11.1259 5.71602 11.164ZM11.0488 10.9689C11.1775 11.1156 11.3585 11.2061 11.5531 11.221C11.7477 11.2061 11.9288 11.1156 12.0574 10.9689C12.1815 10.8302 12.25 10.6506 12.25 10.4645C12.25 10.2785 12.1815 10.0989 12.0574 9.96024L9.03158 6.93439L12.0574 3.90855C12.1248 3.76739 12.1468 3.60881 12.1204 3.45463C12.0939 3.30045 12.0203 3.15826 11.9097 3.04765C11.7991 2.93703 11.6569 2.86343 11.5027 2.83698C11.3486 2.81053 11.19 2.83252 11.0488 2.89994L7.51865 6.36957C7.37699 6.51141 7.29742 6.70367 7.29742 6.90414C7.29742 7.1046 7.37699 7.29686 7.51865 7.4387L11.0488 10.9689Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'AngleDoubleLeftIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class AngleDoubleRightIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
AngleDoubleRightIcon: GlobalComponentConstructor<AngleDoubleRightIcon>;
}
}
export default AngleDoubleRightIcon;

View File

@ -0,0 +1,18 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M7.68757 11.1451C7.7791 11.1831 7.8773 11.2024 7.9764 11.2019C8.07769 11.1985 8.17721 11.1745 8.26886 11.1312C8.36052 11.088 8.44238 11.0265 8.50943 10.9505L12.0294 7.49085C12.1707 7.34942 12.25 7.15771 12.25 6.95782C12.25 6.75794 12.1707 6.56622 12.0294 6.42479L8.50943 2.90479C8.37014 2.82159 8.20774 2.78551 8.04633 2.80192C7.88491 2.81833 7.73309 2.88635 7.6134 2.99588C7.4937 3.10541 7.41252 3.25061 7.38189 3.40994C7.35126 3.56927 7.37282 3.73423 7.44337 3.88033L10.4605 6.89748L7.44337 9.91463C7.30212 10.0561 7.22278 10.2478 7.22278 10.4477C7.22278 10.6475 7.30212 10.8393 7.44337 10.9807C7.51301 11.0512 7.59603 11.1071 7.68757 11.1451ZM1.94207 10.9505C2.07037 11.0968 2.25089 11.1871 2.44493 11.2019C2.63898 11.1871 2.81949 11.0968 2.94779 10.9505L6.46779 7.49085C6.60905 7.34942 6.68839 7.15771 6.68839 6.95782C6.68839 6.75793 6.60905 6.56622 6.46779 6.42479L2.94779 2.90479C2.80704 2.83757 2.6489 2.81563 2.49517 2.84201C2.34143 2.86839 2.19965 2.94178 2.08936 3.05207C1.97906 3.16237 1.90567 3.30415 1.8793 3.45788C1.85292 3.61162 1.87485 3.76975 1.94207 3.9105L4.95922 6.92765L1.94207 9.9448C1.81838 10.0831 1.75 10.2621 1.75 10.4477C1.75 10.6332 1.81838 10.8122 1.94207 10.9505Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'AngleDoubleRightIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class AngleDoubleUpIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
AngleDoubleUpIcon: GlobalComponentConstructor<AngleDoubleUpIcon>;
}
}
export default AngleDoubleUpIcon;

View File

@ -0,0 +1,18 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10.1504 6.67719C10.2417 6.71508 10.3396 6.73436 10.4385 6.73389C10.6338 6.74289 10.8249 6.67441 10.97 6.54334C11.1109 6.4023 11.19 6.21112 11.19 6.01178C11.19 5.81245 11.1109 5.62127 10.97 5.48023L7.45977 1.96998C7.31873 1.82912 7.12755 1.75 6.92821 1.75C6.72888 1.75 6.5377 1.82912 6.39666 1.96998L2.9165 5.45014C2.83353 5.58905 2.79755 5.751 2.81392 5.91196C2.83028 6.07293 2.89811 6.22433 3.00734 6.34369C3.11656 6.46306 3.26137 6.54402 3.42025 6.57456C3.57914 6.60511 3.74364 6.5836 3.88934 6.51325L6.89813 3.50446L9.90691 6.51325C9.97636 6.58357 10.0592 6.6393 10.1504 6.67719ZM9.93702 11.9993C10.065 12.1452 10.245 12.2352 10.4385 12.25C10.632 12.2352 10.812 12.1452 10.9399 11.9993C11.0633 11.8614 11.1315 11.6828 11.1315 11.4978C11.1315 11.3128 11.0633 11.1342 10.9399 10.9963L7.48987 7.48609C7.34883 7.34523 7.15765 7.26611 6.95832 7.26611C6.75899 7.26611 6.5678 7.34523 6.42677 7.48609L2.91652 10.9963C2.84948 11.1367 2.82761 11.2944 2.85391 11.4477C2.88022 11.601 2.9534 11.7424 3.06339 11.8524C3.17338 11.9624 3.31477 12.0356 3.46808 12.0619C3.62139 12.0882 3.77908 12.0663 3.91945 11.9993L6.92823 8.99048L9.93702 11.9993Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'AngleDoubleUpIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class AngleDownIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
AngleDownIcon: GlobalComponentConstructor<AngleDownIcon>;
}
}
export default AngleDownIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M7 9.95946C6.88043 9.96002 6.76196 9.9367 6.65152 9.89086C6.54109 9.84502 6.44093 9.77758 6.35691 9.69251L2.14645 5.44565C2.03556 5.27462 1.9853 5.07131 2.00373 4.8683C2.02216 4.6653 2.10821 4.47436 2.24808 4.32609C2.38796 4.17782 2.57357 4.0808 2.77516 4.05059C2.97674 4.02037 3.18264 4.05872 3.35984 4.15946L7 7.79963L10.6402 4.15946C10.8174 4.05872 11.0233 4.02037 11.2248 4.05059C11.4264 4.0808 11.612 4.17782 11.7519 4.32609C11.8918 4.47436 11.9778 4.6653 11.9963 4.8683C12.0147 5.07131 11.9644 5.27462 11.8535 5.44565L7.60669 9.69251C7.44591 9.85561 7.22888 9.9511 7 9.95946Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'AngleDownIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class AngleLeftIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
AngleLeftIcon: GlobalComponentConstructor<AngleLeftIcon>;
}
}
export default AngleLeftIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M8.75 11.185C8.65146 11.1854 8.55381 11.1662 8.4628 11.1284C8.37179 11.0906 8.28924 11.0351 8.22 10.965L4.72 7.46496C4.57955 7.32433 4.50066 7.13371 4.50066 6.93496C4.50066 6.73621 4.57955 6.54558 4.72 6.40496L8.22 2.93496C8.36095 2.84357 8.52851 2.80215 8.69582 2.81733C8.86312 2.83252 9.02048 2.90344 9.14268 3.01872C9.26487 3.134 9.34483 3.28696 9.36973 3.4531C9.39463 3.61924 9.36303 3.78892 9.28 3.93496L6.28 6.93496L9.28 9.93496C9.42045 10.0756 9.49934 10.2662 9.49934 10.465C9.49934 10.6637 9.42045 10.8543 9.28 10.995C9.13526 11.1257 8.9448 11.1939 8.75 11.185Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'AngleLeftIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class AngleRightIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
AngleRightIcon: GlobalComponentConstructor<AngleRightIcon>;
}
}
export default AngleRightIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M5.25 11.1728C5.14929 11.1694 5.05033 11.1455 4.9592 11.1025C4.86806 11.0595 4.78666 10.9984 4.72 10.9228C4.57955 10.7822 4.50066 10.5916 4.50066 10.3928C4.50066 10.1941 4.57955 10.0035 4.72 9.86283L7.72 6.86283L4.72 3.86283C4.66067 3.71882 4.64765 3.55991 4.68275 3.40816C4.71785 3.25642 4.79932 3.11936 4.91585 3.01602C5.03238 2.91268 5.17819 2.84819 5.33305 2.83149C5.4879 2.81479 5.64411 2.84671 5.78 2.92283L9.28 6.42283C9.42045 6.56346 9.49934 6.75408 9.49934 6.95283C9.49934 7.15158 9.42045 7.34221 9.28 7.48283L5.78 10.9228C5.71333 10.9984 5.63193 11.0595 5.5408 11.1025C5.44966 11.1455 5.35071 11.1694 5.25 11.1728Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'AngleRightIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/angleup/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class AngleUpIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
AngleUpIcon: GlobalComponentConstructor<AngleUpIcon>;
}
}
export default AngleUpIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M10.4134 9.49931C10.3148 9.49977 10.2172 9.48055 10.1262 9.44278C10.0352 9.405 9.95263 9.34942 9.88338 9.27931L6.88338 6.27931L3.88338 9.27931C3.73811 9.34946 3.57409 9.3709 3.41567 9.34044C3.25724 9.30999 3.11286 9.22926 3.00395 9.11025C2.89504 8.99124 2.82741 8.84028 2.8111 8.67978C2.79478 8.51928 2.83065 8.35781 2.91338 8.21931L6.41338 4.71931C6.55401 4.57886 6.74463 4.49997 6.94338 4.49997C7.14213 4.49997 7.33276 4.57886 7.47338 4.71931L10.9734 8.21931C11.1138 8.35994 11.1927 8.55056 11.1927 8.74931C11.1927 8.94806 11.1138 9.13868 10.9734 9.27931C10.9007 9.35315 10.8132 9.41089 10.7168 9.44879C10.6203 9.48669 10.5169 9.5039 10.4134 9.49931Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'AngleUpIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class ArrowDownIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
ArrowDownIcon: GlobalComponentConstructor<ArrowDownIcon>;
}
}
export default ArrowDownIcon;

View File

@ -0,0 +1,25 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_326_12468)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M6.99994 14C6.91097 14.0004 6.82281 13.983 6.74064 13.9489C6.65843 13.9148 6.58387 13.8646 6.52133 13.8013L1.10198 8.38193C0.982318 8.25351 0.917175 8.08367 0.920272 7.90817C0.923368 7.73267 0.994462 7.56523 1.11858 7.44111C1.24269 7.317 1.41014 7.2459 1.58563 7.2428C1.76113 7.23971 1.93098 7.30485 2.0594 7.42451L6.32263 11.6877V0.677419C6.32263 0.497756 6.394 0.325452 6.52104 0.198411C6.64808 0.0713706 6.82039 0 7.00005 0C7.17971 0 7.35202 0.0713706 7.47906 0.198411C7.6061 0.325452 7.67747 0.497756 7.67747 0.677419V11.6877L11.9407 7.42451C12.0691 7.30485 12.2389 7.23971 12.4144 7.2428C12.5899 7.2459 12.7574 7.317 12.8815 7.44111C13.0056 7.56523 13.0767 7.73267 13.0798 7.90817C13.0829 8.08367 13.0178 8.25351 12.8981 8.38193L7.47875 13.8013C7.41621 13.8646 7.34164 13.9148 7.25944 13.9489C7.17727 13.983 7.08912 14.0004 7.00015 14C7.00012 14 7.00009 14 7.00005 14C7.00001 14 6.99998 14 6.99994 14Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_326_12468">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'ArrowDownIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/arrowup/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class ArrowUpIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
ArrowUpIcon: GlobalComponentConstructor<ArrowUpIcon>;
}
}
export default ArrowUpIcon;

View File

@ -0,0 +1,25 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_326_12509)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M6.51551 13.799C6.64205 13.9255 6.813 13.9977 6.99193 14C7.17087 13.9977 7.34182 13.9255 7.46835 13.799C7.59489 13.6725 7.66701 13.5015 7.66935 13.3226V2.31233L11.9326 6.57554C11.9951 6.63887 12.0697 6.68907 12.1519 6.72319C12.2341 6.75731 12.3223 6.77467 12.4113 6.77425C12.5003 6.77467 12.5885 6.75731 12.6707 6.72319C12.7529 6.68907 12.8274 6.63887 12.89 6.57554C13.0168 6.44853 13.0881 6.27635 13.0881 6.09683C13.0881 5.91732 13.0168 5.74514 12.89 5.61812L7.48846 0.216594C7.48274 0.210436 7.4769 0.204374 7.47094 0.198411C7.3439 0.0713707 7.1716 0 6.99193 0C6.81227 0 6.63997 0.0713707 6.51293 0.198411C6.50704 0.204296 6.50128 0.210278 6.49563 0.216354L1.09386 5.61812C0.974201 5.74654 0.909057 5.91639 0.912154 6.09189C0.91525 6.26738 0.986345 6.43483 1.11046 6.55894C1.23457 6.68306 1.40202 6.75415 1.57752 6.75725C1.75302 6.76035 1.92286 6.6952 2.05128 6.57554L6.31451 2.31231V13.3226C6.31685 13.5015 6.38898 13.6725 6.51551 13.799Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_326_12509">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'ArrowUpIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/ban/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class BanIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
BanIcon: GlobalComponentConstructor<BanIcon>;
}
}
export default BanIcon;

View File

@ -0,0 +1,23 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_288_11866)">
<path
d="M7 0C5.61553 0 4.26215 0.410543 3.11101 1.17971C1.95987 1.94888 1.06266 3.04213 0.532846 4.32122C0.00303296 5.6003 -0.13559 7.00776 0.134506 8.36563C0.404603 9.7235 1.07129 10.9708 2.05026 11.9497C3.02922 12.9287 4.2765 13.5954 5.63437 13.8655C6.99224 14.1356 8.3997 13.997 9.67879 13.4672C10.9579 12.9373 12.0511 12.0401 12.8203 10.889C13.5895 9.73785 14 8.38447 14 7C14 5.14348 13.2625 3.36301 11.9497 2.05025C10.637 0.737498 8.85652 0 7 0ZM1.16667 7C1.16549 5.65478 1.63303 4.35118 2.48889 3.31333L10.6867 11.5111C9.83309 12.2112 8.79816 12.6544 7.70243 12.789C6.60669 12.9236 5.49527 12.744 4.49764 12.2713C3.50001 11.7986 2.65724 11.0521 2.06751 10.1188C1.47778 9.18558 1.16537 8.10397 1.16667 7ZM11.5111 10.6867L3.31334 2.48889C4.43144 1.57388 5.84966 1.10701 7.29265 1.1789C8.73565 1.2508 10.1004 1.85633 11.1221 2.87795C12.1437 3.89956 12.7492 5.26435 12.8211 6.70735C12.893 8.15034 12.4261 9.56856 11.5111 10.6867Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_288_11866">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'BanIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/bars/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class BarsIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
BarsIcon: GlobalComponentConstructor<BarsIcon>;
}
}
export default BarsIcon;

View File

@ -0,0 +1,18 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M13.3226 3.6129H0.677419C0.497757 3.6129 0.325452 3.54152 0.198411 3.41448C0.0713707 3.28744 0 3.11514 0 2.93548C0 2.75581 0.0713707 2.58351 0.198411 2.45647C0.325452 2.32943 0.497757 2.25806 0.677419 2.25806H13.3226C13.5022 2.25806 13.6745 2.32943 13.8016 2.45647C13.9286 2.58351 14 2.75581 14 2.93548C14 3.11514 13.9286 3.28744 13.8016 3.41448C13.6745 3.54152 13.5022 3.6129 13.3226 3.6129ZM13.3226 7.67741H0.677419C0.497757 7.67741 0.325452 7.60604 0.198411 7.479C0.0713707 7.35196 0 7.17965 0 6.99999C0 6.82033 0.0713707 6.64802 0.198411 6.52098C0.325452 6.39394 0.497757 6.32257 0.677419 6.32257H13.3226C13.5022 6.32257 13.6745 6.39394 13.8016 6.52098C13.9286 6.64802 14 6.82033 14 6.99999C14 7.17965 13.9286 7.35196 13.8016 7.479C13.6745 7.60604 13.5022 7.67741 13.3226 7.67741ZM0.677419 11.7419H13.3226C13.5022 11.7419 13.6745 11.6706 13.8016 11.5435C13.9286 11.4165 14 11.2442 14 11.0645C14 10.8848 13.9286 10.7125 13.8016 10.5855C13.6745 10.4585 13.5022 10.3871 13.3226 10.3871H0.677419C0.497757 10.3871 0.325452 10.4585 0.198411 10.5855C0.0713707 10.7125 0 10.8848 0 11.0645C0 11.2442 0.0713707 11.4165 0.198411 11.5435C0.325452 11.6706 0.497757 11.7419 0.677419 11.7419Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'BarsIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/calendar/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class CalendarIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
CalendarIcon: GlobalComponentConstructor<CalendarIcon>;
}
}
export default CalendarIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M10.7838 1.51351H9.83783V0.567568C9.83783 0.417039 9.77804 0.272676 9.6716 0.166237C9.56516 0.0597971 9.42079 0 9.27027 0C9.11974 0 8.97538 0.0597971 8.86894 0.166237C8.7625 0.272676 8.7027 0.417039 8.7027 0.567568V1.51351H5.29729V0.567568C5.29729 0.417039 5.2375 0.272676 5.13106 0.166237C5.02462 0.0597971 4.88025 0 4.72973 0C4.5792 0 4.43484 0.0597971 4.3284 0.166237C4.22196 0.272676 4.16216 0.417039 4.16216 0.567568V1.51351H3.21621C2.66428 1.51351 2.13494 1.73277 1.74467 2.12305C1.35439 2.51333 1.13513 3.04266 1.13513 3.59459V11.9189C1.13513 12.4709 1.35439 13.0002 1.74467 13.3905C2.13494 13.7807 2.66428 14 3.21621 14H10.7838C11.3357 14 11.865 13.7807 12.2553 13.3905C12.6456 13.0002 12.8649 12.4709 12.8649 11.9189V3.59459C12.8649 3.04266 12.6456 2.51333 12.2553 2.12305C11.865 1.73277 11.3357 1.51351 10.7838 1.51351ZM3.21621 2.64865H4.16216V3.59459C4.16216 3.74512 4.22196 3.88949 4.3284 3.99593C4.43484 4.10237 4.5792 4.16216 4.72973 4.16216C4.88025 4.16216 5.02462 4.10237 5.13106 3.99593C5.2375 3.88949 5.29729 3.74512 5.29729 3.59459V2.64865H8.7027V3.59459C8.7027 3.74512 8.7625 3.88949 8.86894 3.99593C8.97538 4.10237 9.11974 4.16216 9.27027 4.16216C9.42079 4.16216 9.56516 4.10237 9.6716 3.99593C9.77804 3.88949 9.83783 3.74512 9.83783 3.59459V2.64865H10.7838C11.0347 2.64865 11.2753 2.74831 11.4527 2.92571C11.6301 3.10311 11.7297 3.34371 11.7297 3.59459V5.67568H2.27027V3.59459C2.27027 3.34371 2.36993 3.10311 2.54733 2.92571C2.72473 2.74831 2.96533 2.64865 3.21621 2.64865ZM10.7838 12.8649H3.21621C2.96533 12.8649 2.72473 12.7652 2.54733 12.5878C2.36993 12.4104 2.27027 12.1698 2.27027 11.9189V6.81081H11.7297V11.9189C11.7297 12.1698 11.6301 12.4104 11.4527 12.5878C11.2753 12.7652 11.0347 12.8649 10.7838 12.8649Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'CalendarIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/check/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class CheckIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
CheckIcon: GlobalComponentConstructor<CheckIcon>;
}
}
export default CheckIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M4.86199 11.5948C4.78717 11.5923 4.71366 11.5745 4.64596 11.5426C4.57826 11.5107 4.51779 11.4652 4.46827 11.4091L0.753985 7.69483C0.683167 7.64891 0.623706 7.58751 0.580092 7.51525C0.536478 7.44299 0.509851 7.36177 0.502221 7.27771C0.49459 7.19366 0.506156 7.10897 0.536046 7.03004C0.565935 6.95111 0.613367 6.88 0.674759 6.82208C0.736151 6.76416 0.8099 6.72095 0.890436 6.69571C0.970973 6.67046 1.05619 6.66385 1.13966 6.67635C1.22313 6.68886 1.30266 6.72017 1.37226 6.76792C1.44186 6.81567 1.4997 6.8786 1.54141 6.95197L4.86199 10.2503L12.6397 2.49483C12.7444 2.42694 12.8689 2.39617 12.9932 2.40745C13.1174 2.41873 13.2343 2.47141 13.3251 2.55705C13.4159 2.64268 13.4753 2.75632 13.4938 2.87973C13.5123 3.00315 13.4888 3.1292 13.4271 3.23768L5.2557 11.4091C5.20618 11.4652 5.14571 11.5107 5.07801 11.5426C5.01031 11.5745 4.9368 11.5923 4.86199 11.5948Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'CheckIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class ChevronDownIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
ChevronDownIcon: GlobalComponentConstructor<ChevronDownIcon>;
}
}
export default ChevronDownIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M7.01744 10.398C6.91269 10.3985 6.8089 10.378 6.71215 10.3379C6.61541 10.2977 6.52766 10.2386 6.45405 10.1641L1.13907 4.84913C1.03306 4.69404 0.985221 4.5065 1.00399 4.31958C1.02276 4.13266 1.10693 3.95838 1.24166 3.82747C1.37639 3.69655 1.55301 3.61742 1.74039 3.60402C1.92777 3.59062 2.11386 3.64382 2.26584 3.75424L7.01744 8.47394L11.769 3.75424C11.9189 3.65709 12.097 3.61306 12.2748 3.62921C12.4527 3.64535 12.6199 3.72073 12.7498 3.84328C12.8797 3.96582 12.9647 4.12842 12.9912 4.30502C13.0177 4.48162 12.9841 4.662 12.8958 4.81724L7.58083 10.1322C7.50996 10.2125 7.42344 10.2775 7.32656 10.3232C7.22968 10.3689 7.12449 10.3944 7.01744 10.398Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'ChevronDownIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class ChevronLeftIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
ChevronLeftIcon: GlobalComponentConstructor<ChevronLeftIcon>;
}
}
export default ChevronLeftIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M9.61296 13C9.50997 13.0005 9.40792 12.9804 9.3128 12.9409C9.21767 12.9014 9.13139 12.8433 9.05902 12.7701L3.83313 7.54416C3.68634 7.39718 3.60388 7.19795 3.60388 6.99022C3.60388 6.78249 3.68634 6.58325 3.83313 6.43628L9.05902 1.21039C9.20762 1.07192 9.40416 0.996539 9.60724 1.00012C9.81032 1.00371 10.0041 1.08597 10.1477 1.22959C10.2913 1.37322 10.3736 1.56698 10.3772 1.77005C10.3808 1.97313 10.3054 2.16968 10.1669 2.31827L5.49496 6.99022L10.1669 11.6622C10.3137 11.8091 10.3962 12.0084 10.3962 12.2161C10.3962 12.4238 10.3137 12.6231 10.1669 12.7701C10.0945 12.8433 10.0083 12.9014 9.91313 12.9409C9.81801 12.9804 9.71596 13.0005 9.61296 13Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'ChevronLeftIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class ChevronRightIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
ChevronRightIcon: GlobalComponentConstructor<ChevronRightIcon>;
}
}
export default ChevronRightIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M4.38708 13C4.28408 13.0005 4.18203 12.9804 4.08691 12.9409C3.99178 12.9014 3.9055 12.8433 3.83313 12.7701C3.68634 12.6231 3.60388 12.4238 3.60388 12.2161C3.60388 12.0084 3.68634 11.8091 3.83313 11.6622L8.50507 6.99022L3.83313 2.31827C3.69467 2.16968 3.61928 1.97313 3.62287 1.77005C3.62645 1.56698 3.70872 1.37322 3.85234 1.22959C3.99596 1.08597 4.18972 1.00371 4.3928 1.00012C4.59588 0.996539 4.79242 1.07192 4.94102 1.21039L10.1669 6.43628C10.3137 6.58325 10.3962 6.78249 10.3962 6.99022C10.3962 7.19795 10.3137 7.39718 10.1669 7.54416L4.94102 12.7701C4.86865 12.8433 4.78237 12.9014 4.68724 12.9409C4.59212 12.9804 4.49007 13.0005 4.38708 13Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'ChevronRightIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class ChevronUpIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
ChevronUpIcon: GlobalComponentConstructor<ChevronUpIcon>;
}
}
export default ChevronUpIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M12.2097 10.4113C12.1057 10.4118 12.0027 10.3915 11.9067 10.3516C11.8107 10.3118 11.7237 10.2532 11.6506 10.1792L6.93602 5.46461L2.22139 10.1476C2.07272 10.244 1.89599 10.2877 1.71953 10.2717C1.54307 10.2556 1.3771 10.1808 1.24822 10.0593C1.11933 9.93766 1.035 9.77633 1.00874 9.6011C0.982477 9.42587 1.0158 9.2469 1.10338 9.09287L6.37701 3.81923C6.52533 3.6711 6.72639 3.58789 6.93602 3.58789C7.14565 3.58789 7.3467 3.6711 7.49502 3.81923L12.7687 9.09287C12.9168 9.24119 13 9.44225 13 9.65187C13 9.8615 12.9168 10.0626 12.7687 10.2109C12.616 10.3487 12.4151 10.4207 12.2097 10.4113Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'ChevronUpIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class ExclamationTriangleIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
ExclamationTriangleIcon: GlobalComponentConstructor<ExclamationTriangleIcon>;
}
}
export default ExclamationTriangleIcon;

View File

@ -0,0 +1,31 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_323_12417)">
<path
d="M13.4018 13.1893H0.598161C0.49329 13.189 0.390283 13.1615 0.299143 13.1097C0.208003 13.0578 0.131826 12.9832 0.0780112 12.8932C0.0268539 12.8015 0 12.6982 0 12.5931C0 12.4881 0.0268539 12.3848 0.0780112 12.293L6.47985 1.08982C6.53679 1.00399 6.61408 0.933574 6.70484 0.884867C6.7956 0.836159 6.897 0.810669 7 0.810669C7.103 0.810669 7.2044 0.836159 7.29516 0.884867C7.38592 0.933574 7.46321 1.00399 7.52015 1.08982L13.922 12.293C13.9731 12.3848 14 12.4881 14 12.5931C14 12.6982 13.9731 12.8015 13.922 12.8932C13.8682 12.9832 13.792 13.0578 13.7009 13.1097C13.6097 13.1615 13.5067 13.189 13.4018 13.1893ZM1.63046 11.989H12.3695L7 2.59425L1.63046 11.989Z"
fill="currentColor"
/>
<path
d="M6.99996 8.78801C6.84143 8.78594 6.68997 8.72204 6.57787 8.60993C6.46576 8.49782 6.40186 8.34637 6.39979 8.18784V5.38703C6.39979 5.22786 6.46302 5.0752 6.57557 4.96265C6.68813 4.85009 6.84078 4.78686 6.99996 4.78686C7.15914 4.78686 7.31179 4.85009 7.42435 4.96265C7.5369 5.0752 7.60013 5.22786 7.60013 5.38703V8.18784C7.59806 8.34637 7.53416 8.49782 7.42205 8.60993C7.30995 8.72204 7.15849 8.78594 6.99996 8.78801Z"
fill="currentColor"
/>
<path
d="M6.99996 11.1887C6.84143 11.1866 6.68997 11.1227 6.57787 11.0106C6.46576 10.8985 6.40186 10.7471 6.39979 10.5885V10.1884C6.39979 10.0292 6.46302 9.87658 6.57557 9.76403C6.68813 9.65147 6.84078 9.58824 6.99996 9.58824C7.15914 9.58824 7.31179 9.65147 7.42435 9.76403C7.5369 9.87658 7.60013 10.0292 7.60013 10.1884V10.5885C7.59806 10.7471 7.53416 10.8985 7.42205 11.0106C7.30995 11.1227 7.15849 11.1866 6.99996 11.1887Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_323_12417">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'ExclamationTriangleIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/eye/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class EyeIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
EyeIcon: GlobalComponentConstructor<EyeIcon>;
}
}
export default EyeIcon;

View File

@ -0,0 +1,18 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.0535499 7.25213C0.208567 7.59162 2.40413 12.4 7 12.4C11.5959 12.4 13.7914 7.59162 13.9465 7.25213C13.9487 7.2471 13.9506 7.24304 13.952 7.24001C13.9837 7.16396 14 7.08239 14 7.00001C14 6.91762 13.9837 6.83605 13.952 6.76001C13.9506 6.75697 13.9487 6.75292 13.9465 6.74788C13.7914 6.4084 11.5959 1.60001 7 1.60001C2.40413 1.60001 0.208567 6.40839 0.0535499 6.74788C0.0512519 6.75292 0.0494023 6.75697 0.048 6.76001C0.0163137 6.83605 0 6.91762 0 7.00001C0 7.08239 0.0163137 7.16396 0.048 7.24001C0.0494023 7.24304 0.0512519 7.2471 0.0535499 7.25213ZM7 11.2C3.664 11.2 1.736 7.92001 1.264 7.00001C1.736 6.08001 3.664 2.80001 7 2.80001C10.336 2.80001 12.264 6.08001 12.736 7.00001C12.264 7.92001 10.336 11.2 7 11.2ZM5.55551 9.16182C5.98308 9.44751 6.48576 9.6 7 9.6C7.68891 9.59789 8.349 9.32328 8.83614 8.83614C9.32328 8.349 9.59789 7.68891 9.59999 7C9.59999 6.48576 9.44751 5.98308 9.16182 5.55551C8.87612 5.12794 8.47006 4.7947 7.99497 4.59791C7.51988 4.40112 6.99711 4.34963 6.49276 4.44995C5.98841 4.55027 5.52513 4.7979 5.16152 5.16152C4.7979 5.52513 4.55027 5.98841 4.44995 6.49276C4.34963 6.99711 4.40112 7.51988 4.59791 7.99497C4.7947 8.47006 5.12794 8.87612 5.55551 9.16182ZM6.2222 5.83594C6.45243 5.6821 6.7231 5.6 7 5.6C7.37065 5.6021 7.72553 5.75027 7.98762 6.01237C8.24972 6.27446 8.39789 6.62934 8.4 7C8.4 7.27689 8.31789 7.54756 8.16405 7.77779C8.01022 8.00802 7.79157 8.18746 7.53575 8.29343C7.27994 8.39939 6.99844 8.42711 6.72687 8.37309C6.4553 8.31908 6.20584 8.18574 6.01005 7.98994C5.81425 7.79415 5.68091 7.54469 5.6269 7.27312C5.57288 7.00155 5.6006 6.72006 5.70656 6.46424C5.81253 6.20842 5.99197 5.98977 6.2222 5.83594Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'EyeIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/eyeslash/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class EyeSlashIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
EyeSlashIcon: GlobalComponentConstructor<EyeSlashIcon>;
}
}
export default EyeSlashIcon;

View File

@ -0,0 +1,25 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_287_10550)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M13.9414 6.74792C13.9437 6.75295 13.9455 6.757 13.9469 6.76003C13.982 6.8394 14.0001 6.9252 14.0001 7.01195C14.0001 7.0987 13.982 7.1845 13.9469 7.26386C13.6004 8.00059 13.1711 8.69549 12.6674 9.33515C12.6115 9.4071 12.54 9.46538 12.4582 9.50556C12.3765 9.54574 12.2866 9.56678 12.1955 9.56707C12.0834 9.56671 11.9737 9.53496 11.8788 9.47541C11.7838 9.41586 11.7074 9.3309 11.6583 9.23015C11.6092 9.12941 11.5893 9.01691 11.6008 8.90543C11.6124 8.79394 11.6549 8.68793 11.7237 8.5994C12.1065 8.09726 12.4437 7.56199 12.7313 6.99995C12.2595 6.08027 10.3402 2.8014 6.99732 2.8014C6.63723 2.80218 6.27816 2.83969 5.92569 2.91336C5.77666 2.93304 5.62568 2.89606 5.50263 2.80972C5.37958 2.72337 5.29344 2.59398 5.26125 2.44714C5.22907 2.30031 5.2532 2.14674 5.32885 2.01685C5.40451 1.88696 5.52618 1.79021 5.66978 1.74576C6.10574 1.64961 6.55089 1.60134 6.99732 1.60181C11.5916 1.60181 13.7864 6.40856 13.9414 6.74792ZM2.20333 1.61685C2.35871 1.61411 2.5091 1.67179 2.6228 1.77774L12.2195 11.3744C12.3318 11.4869 12.3949 11.6393 12.3949 11.7983C12.3949 11.9572 12.3318 12.1097 12.2195 12.2221C12.107 12.3345 11.9546 12.3976 11.7956 12.3976C11.6367 12.3976 11.4842 12.3345 11.3718 12.2221L10.5081 11.3584C9.46549 12.0426 8.24432 12.4042 6.99729 12.3981C2.403 12.3981 0.208197 7.59135 0.0532336 7.25198C0.0509364 7.24694 0.0490875 7.2429 0.0476856 7.23986C0.0162332 7.16518 3.05176e-05 7.08497 3.05176e-05 7.00394C3.05176e-05 6.92291 0.0162332 6.8427 0.0476856 6.76802C0.631261 5.47831 1.46902 4.31959 2.51084 3.36119L1.77509 2.62545C1.66914 2.51175 1.61146 2.36136 1.61421 2.20597C1.61695 2.05059 1.6799 1.90233 1.78979 1.79244C1.89968 1.68254 2.04794 1.6196 2.20333 1.61685ZM7.45314 8.35147L5.68574 6.57609V6.5361C5.5872 6.78938 5.56498 7.06597 5.62183 7.33173C5.67868 7.59749 5.8121 7.84078 6.00563 8.03158C6.19567 8.21043 6.43052 8.33458 6.68533 8.39089C6.94014 8.44721 7.20543 8.43359 7.45314 8.35147ZM1.26327 6.99994C1.7351 7.91163 3.64645 11.1985 6.99729 11.1985C7.9267 11.2048 8.8408 10.9618 9.64438 10.4947L8.35682 9.20718C7.86027 9.51441 7.27449 9.64491 6.69448 9.57752C6.11446 9.51014 5.57421 9.24881 5.16131 8.83592C4.74842 8.42303 4.4871 7.88277 4.41971 7.30276C4.35232 6.72274 4.48282 6.13697 4.79005 5.64041L3.35855 4.2089C2.4954 5.00336 1.78523 5.94935 1.26327 6.99994Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_287_10550">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'EyeSlashIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/filter/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class FilterIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
FilterIcon: GlobalComponentConstructor<FilterIcon>;
}
}
export default FilterIcon;

View File

@ -0,0 +1,23 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_390_17708)">
<path
d="M8.64708 14H5.35296C5.18981 13.9979 5.03395 13.9321 4.91858 13.8167C4.8032 13.7014 4.73745 13.5455 4.73531 13.3824V7L0.329431 0.98C0.259794 0.889466 0.217389 0.780968 0.20718 0.667208C0.19697 0.553448 0.219379 0.439133 0.271783 0.337647C0.324282 0.236453 0.403423 0.151519 0.500663 0.0920138C0.597903 0.0325088 0.709548 0.000692754 0.823548 0H13.1765C13.2905 0.000692754 13.4021 0.0325088 13.4994 0.0920138C13.5966 0.151519 13.6758 0.236453 13.7283 0.337647C13.7807 0.439133 13.8031 0.553448 13.7929 0.667208C13.7826 0.780968 13.7402 0.889466 13.6706 0.98L9.26472 7V13.3824C9.26259 13.5455 9.19683 13.7014 9.08146 13.8167C8.96609 13.9321 8.81022 13.9979 8.64708 14ZM5.97061 12.7647H8.02943V6.79412C8.02878 6.66289 8.07229 6.53527 8.15296 6.43177L11.9412 1.23529H2.05884L5.86355 6.43177C5.94422 6.53527 5.98773 6.66289 5.98708 6.79412L5.97061 12.7647Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_390_17708">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'FilterIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class FilterSlashIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
FilterSlashIcon: GlobalComponentConstructor<FilterSlashIcon>;
}
}
export default FilterSlashIcon;

View File

@ -0,0 +1,25 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_408_20963)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M13.4994 0.0920138C13.5967 0.151519 13.6758 0.236453 13.7283 0.337647C13.7807 0.439133 13.8031 0.553448 13.7929 0.667208C13.7827 0.780968 13.7403 0.889466 13.6707 0.98L11.406 4.06823C11.3099 4.19928 11.1656 4.28679 11.005 4.3115C10.8444 4.33621 10.6805 4.2961 10.5495 4.2C10.4184 4.1039 10.3309 3.95967 10.3062 3.79905C10.2815 3.63843 10.3216 3.47458 10.4177 3.34353L11.9412 1.23529H7.41184C7.24803 1.23529 7.09093 1.17022 6.97509 1.05439C6.85926 0.938558 6.79419 0.781457 6.79419 0.617647C6.79419 0.453837 6.85926 0.296736 6.97509 0.180905C7.09093 0.0650733 7.24803 0 7.41184 0H13.1765C13.2905 0.000692754 13.4022 0.0325088 13.4994 0.0920138ZM4.20008 0.181168H4.24126L13.2013 9.03411C13.3169 9.14992 13.3819 9.3069 13.3819 9.47058C13.3819 9.63426 13.3169 9.79124 13.2013 9.90705C13.1445 9.96517 13.0766 10.0112 13.0016 10.0423C12.9266 10.0735 12.846 10.0891 12.7648 10.0882C12.6836 10.0886 12.6032 10.0728 12.5283 10.0417C12.4533 10.0106 12.3853 9.96479 12.3283 9.90705L9.3142 6.92587L9.26479 6.99999V13.3823C9.26265 13.5455 9.19689 13.7014 9.08152 13.8167C8.96615 13.9321 8.81029 13.9979 8.64714 14H5.35302C5.18987 13.9979 5.03401 13.9321 4.91864 13.8167C4.80327 13.7014 4.73751 13.5455 4.73537 13.3823V6.99999L0.329492 1.02117C0.259855 0.930634 0.21745 0.822137 0.207241 0.708376C0.197031 0.594616 0.21944 0.480301 0.271844 0.378815C0.324343 0.277621 0.403484 0.192687 0.500724 0.133182C0.597964 0.073677 0.709609 0.041861 0.823609 0.0411682H3.86243C3.92448 0.0461551 3.9855 0.060022 4.04361 0.0823446C4.10037 0.10735 4.15311 0.140655 4.20008 0.181168ZM8.02949 6.79411C8.02884 6.66289 8.07235 6.53526 8.15302 6.43176L8.42478 6.05293L3.55773 1.23529H2.0589L5.84714 6.43176C5.92781 6.53526 5.97132 6.66289 5.97067 6.79411V12.7647H8.02949V6.79411Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_408_20963">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'FilterSlashIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { ClassComponent } from '../ts-helpers';
export interface IconProps {
label?: string | undefined;
spin?: boolean;
}
export interface IconSlots {}
export interface IconEmits {}
export declare class Icon extends ClassComponent<IconProps, IconSlots, IconEmits> {}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class InfoCircleIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
InfoCircleIcon: GlobalComponentConstructor<InfoCircleIcon>;
}
}
export default InfoCircleIcon;

View File

@ -0,0 +1,25 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_408_21102)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M3.11101 12.8203C4.26215 13.5895 5.61553 14 7 14C8.85652 14 10.637 13.2625 11.9497 11.9497C13.2625 10.637 14 8.85652 14 7C14 5.61553 13.5895 4.26215 12.8203 3.11101C12.0511 1.95987 10.9579 1.06266 9.67879 0.532846C8.3997 0.00303296 6.99224 -0.13559 5.63437 0.134506C4.2765 0.404603 3.02922 1.07129 2.05026 2.05026C1.07129 3.02922 0.404603 4.2765 0.134506 5.63437C-0.13559 6.99224 0.00303296 8.3997 0.532846 9.67879C1.06266 10.9579 1.95987 12.0511 3.11101 12.8203ZM3.75918 2.14976C4.71846 1.50879 5.84628 1.16667 7 1.16667C8.5471 1.16667 10.0308 1.78125 11.1248 2.87521C12.2188 3.96918 12.8333 5.45291 12.8333 7C12.8333 8.15373 12.4912 9.28154 11.8502 10.2408C11.2093 11.2001 10.2982 11.9478 9.23232 12.3893C8.16642 12.8308 6.99353 12.9463 5.86198 12.7212C4.73042 12.4962 3.69102 11.9406 2.87521 11.1248C2.05941 10.309 1.50384 9.26958 1.27876 8.13803C1.05367 7.00647 1.16919 5.83358 1.61071 4.76768C2.05222 3.70178 2.79989 2.79074 3.75918 2.14976ZM7.00002 4.8611C6.84594 4.85908 6.69873 4.79698 6.58977 4.68801C6.48081 4.57905 6.4187 4.43185 6.41669 4.27776V3.88888C6.41669 3.73417 6.47815 3.58579 6.58754 3.4764C6.69694 3.367 6.84531 3.30554 7.00002 3.30554C7.15473 3.30554 7.3031 3.367 7.4125 3.4764C7.52189 3.58579 7.58335 3.73417 7.58335 3.88888V4.27776C7.58134 4.43185 7.51923 4.57905 7.41027 4.68801C7.30131 4.79698 7.1541 4.85908 7.00002 4.8611ZM7.00002 10.6945C6.84594 10.6925 6.69873 10.6304 6.58977 10.5214C6.48081 10.4124 6.4187 10.2652 6.41669 10.1111V6.22225C6.41669 6.06754 6.47815 5.91917 6.58754 5.80977C6.69694 5.70037 6.84531 5.63892 7.00002 5.63892C7.15473 5.63892 7.3031 5.70037 7.4125 5.80977C7.52189 5.91917 7.58335 6.06754 7.58335 6.22225V10.1111C7.58134 10.2652 7.51923 10.4124 7.41027 10.5214C7.30131 10.6304 7.1541 10.6925 7.00002 10.6945Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_408_21102">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'InfoCircleIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/minus/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class MinusIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
MinusIcon: GlobalComponentConstructor<MinusIcon>;
}
}
export default MinusIcon;

View File

@ -0,0 +1,16 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<path
d="M13.2222 7.77778H0.777778C0.571498 7.77778 0.373667 7.69584 0.227806 7.54998C0.0819442 7.40412 0 7.20629 0 7.00001C0 6.79373 0.0819442 6.5959 0.227806 6.45003C0.373667 6.30417 0.571498 6.22223 0.777778 6.22223H13.2222C13.4285 6.22223 13.6263 6.30417 13.7722 6.45003C13.9181 6.5959 14 6.79373 14 7.00001C14 7.20629 13.9181 7.40412 13.7722 7.54998C13.6263 7.69584 13.4285 7.77778 13.2222 7.77778Z"
fill="currentColor"
/>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'MinusIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/pencil/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class PencilIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
PencilIcon: GlobalComponentConstructor<PencilIcon>;
}
}
export default PencilIcon;

View File

@ -0,0 +1,23 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_414_20836)">
<path
d="M0.609628 13.959C0.530658 13.9599 0.452305 13.9451 0.379077 13.9156C0.305849 13.8861 0.239191 13.8424 0.18294 13.787C0.118447 13.7234 0.0688234 13.6464 0.0376166 13.5614C0.00640987 13.4765 -0.00560954 13.3857 0.00241768 13.2956L0.25679 10.1501C0.267698 10.0041 0.331934 9.86709 0.437312 9.76516L9.51265 0.705715C10.0183 0.233014 10.6911 -0.0203041 11.3835 0.00127367C12.0714 0.00660201 12.7315 0.27311 13.2298 0.746671C13.7076 1.23651 13.9824 1.88848 13.9992 2.57201C14.0159 3.25554 13.7733 3.92015 13.32 4.4327L4.23648 13.5331C4.13482 13.6342 4.0017 13.6978 3.85903 13.7133L0.667067 14L0.609628 13.959ZM1.43018 10.4696L1.25787 12.714L3.50619 12.5092L12.4502 3.56444C12.6246 3.35841 12.7361 3.10674 12.7714 2.83933C12.8067 2.57193 12.7644 2.30002 12.6495 2.05591C12.5346 1.8118 12.3519 1.60575 12.1231 1.46224C11.8943 1.31873 11.6291 1.2438 11.3589 1.24633C11.1813 1.23508 11.0033 1.25975 10.8355 1.31887C10.6677 1.37798 10.5136 1.47033 10.3824 1.59036L1.43018 10.4696Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_414_20836">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'PencilIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/plus/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class PlusIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
PlusIcon: GlobalComponentConstructor<PlusIcon>;
}
}
export default PlusIcon;

View File

@ -0,0 +1,23 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_306_11939)">
<path
d="M7.67742 6.32258V0.677419C7.67742 0.497757 7.60605 0.325452 7.47901 0.198411C7.35197 0.0713707 7.17966 0 7 0C6.82034 0 6.64803 0.0713707 6.52099 0.198411C6.39395 0.325452 6.32258 0.497757 6.32258 0.677419V6.32258H0.677419C0.497757 6.32258 0.325452 6.39395 0.198411 6.52099C0.0713707 6.64803 0 6.82034 0 7C0 7.17966 0.0713707 7.35197 0.198411 7.47901C0.325452 7.60605 0.497757 7.67742 0.677419 7.67742H6.32258V13.3226C6.32492 13.5015 6.39704 13.6725 6.52358 13.799C6.65012 13.9255 6.82106 13.9977 7 14C7.17966 14 7.35197 13.9286 7.47901 13.8016C7.60605 13.6745 7.67742 13.5022 7.67742 13.3226V7.67742H13.3226C13.5022 7.67742 13.6745 7.60605 13.8016 7.47901C13.9286 7.35197 14 7.17966 14 7C13.9977 6.82106 13.9255 6.65012 13.799 6.52358C13.6725 6.39704 13.5015 6.32492 13.3226 6.32258H7.67742Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_306_11939">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'PlusIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/refresh/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class RefreshIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
RefreshIcon: GlobalComponentConstructor<RefreshIcon>;
}
}
export default RefreshIcon;

View File

@ -0,0 +1,25 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_414_20758)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M6.77051 5.96336C6.84324 5.99355 6.92127 6.00891 7.00002 6.00854C7.07877 6.00891 7.1568 5.99355 7.22953 5.96336C7.30226 5.93317 7.36823 5.88876 7.42357 5.83273L9.82101 3.43529C9.93325 3.32291 9.99629 3.17058 9.99629 3.01175C9.99629 2.85292 9.93325 2.70058 9.82101 2.5882L7.42357 0.190763C7.3687 0.131876 7.30253 0.0846451 7.22901 0.0518865C7.15549 0.019128 7.07612 0.00151319 6.99564 9.32772e-05C6.91517 -0.00132663 6.83523 0.0134773 6.7606 0.0436218C6.68597 0.0737664 6.61817 0.118634 6.56126 0.175548C6.50435 0.232462 6.45948 0.300257 6.42933 0.374888C6.39919 0.449519 6.38439 0.529456 6.38581 0.609933C6.38722 0.690409 6.40484 0.769775 6.4376 0.843296C6.47036 0.916817 6.51759 0.982986 6.57647 1.03786L7.95103 2.41241H6.99998C5.46337 2.41241 3.98969 3.02283 2.90314 4.10938C1.81659 5.19593 1.20618 6.66961 1.20618 8.20622C1.20618 9.74283 1.81659 11.2165 2.90314 12.3031C3.98969 13.3896 5.46337 14 6.99998 14C8.53595 13.9979 10.0084 13.3868 11.0945 12.3007C12.1806 11.2146 12.7917 9.74218 12.7938 8.20622C12.7938 8.04726 12.7306 7.89481 12.6182 7.78241C12.5058 7.67001 12.3534 7.60686 12.1944 7.60686C12.0355 7.60686 11.883 7.67001 11.7706 7.78241C11.6582 7.89481 11.5951 8.04726 11.5951 8.20622C11.5951 9.11504 11.3256 10.0035 10.8207 10.7591C10.3157 11.5148 9.59809 12.1037 8.75845 12.4515C7.9188 12.7993 6.99489 12.8903 6.10353 12.713C5.21217 12.5357 4.3934 12.0981 3.75077 11.4554C3.10813 10.8128 2.67049 9.99404 2.49319 9.10268C2.31589 8.21132 2.40688 7.2874 2.75468 6.44776C3.10247 5.60811 3.69143 4.89046 4.44709 4.38554C5.20275 3.88063 6.09116 3.61113 6.99998 3.61113H7.95098L6.57647 4.98564C6.46423 5.09802 6.40119 5.25035 6.40119 5.40918C6.40119 5.56801 6.46423 5.72035 6.57647 5.83273C6.63181 5.88876 6.69778 5.93317 6.77051 5.96336Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_414_20758">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'RefreshIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/search/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class SearchIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
SearchIcon: GlobalComponentConstructor<SearchIcon>;
}
}
export default SearchIcon;

View File

@ -0,0 +1,25 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_238_9909)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2.67602 11.0265C3.6661 11.688 4.83011 12.0411 6.02086 12.0411C6.81149 12.0411 7.59438 11.8854 8.32483 11.5828C8.87005 11.357 9.37808 11.0526 9.83317 10.6803L12.9769 13.8241C13.0323 13.8801 13.0983 13.9245 13.171 13.9548C13.2438 13.985 13.3219 14.0003 13.4007 14C13.4795 14.0003 13.5575 13.985 13.6303 13.9548C13.7031 13.9245 13.7691 13.8801 13.8244 13.8241C13.9367 13.7116 13.9998 13.5592 13.9998 13.4003C13.9998 13.2414 13.9367 13.089 13.8244 12.9765L10.6807 9.8328C11.053 9.37773 11.3573 8.86972 11.5831 8.32452C11.8857 7.59408 12.0414 6.81119 12.0414 6.02056C12.0414 4.8298 11.6883 3.66579 11.0268 2.67572C10.3652 1.68564 9.42494 0.913972 8.32483 0.45829C7.22472 0.00260857 6.01418 -0.116618 4.84631 0.115686C3.67844 0.34799 2.60568 0.921393 1.76369 1.76338C0.921698 2.60537 0.348296 3.67813 0.115991 4.84601C-0.116313 6.01388 0.00291375 7.22441 0.458595 8.32452C0.914277 9.42464 1.68595 10.3649 2.67602 11.0265ZM3.35565 2.0158C4.14456 1.48867 5.07206 1.20731 6.02086 1.20731C7.29317 1.20731 8.51338 1.71274 9.41304 2.6124C10.3127 3.51206 10.8181 4.73226 10.8181 6.00457C10.8181 6.95337 10.5368 7.88088 10.0096 8.66978C9.48251 9.45868 8.73328 10.0736 7.85669 10.4367C6.98011 10.7997 6.01554 10.8947 5.08496 10.7096C4.15439 10.5245 3.2996 10.0676 2.62869 9.39674C1.95778 8.72583 1.50089 7.87104 1.31579 6.94046C1.13068 6.00989 1.22568 5.04532 1.58878 4.16874C1.95187 3.29215 2.56675 2.54292 3.35565 2.0158Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_238_9909">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'SearchIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class SearchMinusIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
SearchMinusIcon: GlobalComponentConstructor<SearchMinusIcon>;
}
}
export default SearchMinusIcon;

View File

@ -0,0 +1,25 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_417_21152)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M6.0208 12.0411C4.83005 12.0411 3.66604 11.688 2.67596 11.0265C1.68589 10.3649 0.914216 9.42464 0.458534 8.32452C0.00285271 7.22441 -0.116374 6.01388 0.11593 4.84601C0.348235 3.67813 0.921637 2.60537 1.76363 1.76338C2.60562 0.921393 3.67838 0.34799 4.84625 0.115686C6.01412 -0.116618 7.22466 0.00260857 8.32477 0.45829C9.42488 0.913972 10.3652 1.68564 11.0267 2.67572C11.6883 3.66579 12.0414 4.8298 12.0414 6.02056C12.0395 7.41563 11.5542 8.76029 10.6783 9.8305L13.8244 12.9765C13.9367 13.089 13.9997 13.2414 13.9997 13.4003C13.9997 13.5592 13.9367 13.7116 13.8244 13.8241C13.769 13.8801 13.703 13.9245 13.6302 13.9548C13.5575 13.985 13.4794 14.0003 13.4006 14C13.3218 14.0003 13.2437 13.985 13.171 13.9548C13.0982 13.9245 13.0322 13.8801 12.9768 13.8241L9.83082 10.678C8.76059 11.5539 7.4159 12.0393 6.0208 12.0411ZM6.0208 1.20731C5.07199 1.20731 4.14449 1.48867 3.35559 2.0158C2.56669 2.54292 1.95181 3.29215 1.58872 4.16874C1.22562 5.04532 1.13062 6.00989 1.31572 6.94046C1.50083 7.87104 1.95772 8.72583 2.62863 9.39674C3.29954 10.0676 4.15433 10.5245 5.0849 10.7096C6.01548 10.8947 6.98005 10.7997 7.85663 10.4367C8.73322 10.0736 9.48244 9.45868 10.0096 8.66978C10.5367 7.88088 10.8181 6.95337 10.8181 6.00457C10.8181 4.73226 10.3126 3.51206 9.41297 2.6124C8.51331 1.71274 7.29311 1.20731 6.0208 1.20731ZM4.00591 6.60422H8.00362C8.16266 6.60422 8.31518 6.54104 8.42764 6.42859C8.5401 6.31613 8.60328 6.1636 8.60328 6.00456C8.60328 5.84553 8.5401 5.693 8.42764 5.58054C8.31518 5.46809 8.16266 5.40491 8.00362 5.40491H4.00591C3.84687 5.40491 3.69434 5.46809 3.58189 5.58054C3.46943 5.693 3.40625 5.84553 3.40625 6.00456C3.40625 6.1636 3.46943 6.31613 3.58189 6.42859C3.69434 6.54104 3.84687 6.60422 4.00591 6.60422Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_417_21152">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'SearchMinusIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class SearchPlusIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
SearchPlusIcon: GlobalComponentConstructor<SearchPlusIcon>;
}
}
export default SearchPlusIcon;

View File

@ -0,0 +1,25 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_417_21164)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2.67596 11.0265C3.66604 11.688 4.83005 12.0411 6.0208 12.0411C6.81143 12.0411 7.59432 11.8854 8.32477 11.5828C8.86999 11.357 9.37802 11.0526 9.83311 10.6803L12.9768 13.8241C13.0322 13.8801 13.0982 13.9245 13.171 13.9548C13.2437 13.985 13.3218 14.0003 13.4006 14C13.4794 14.0003 13.5575 13.985 13.6302 13.9548C13.703 13.9245 13.769 13.8801 13.8244 13.8241C13.9367 13.7116 13.9997 13.5592 13.9997 13.4003C13.9997 13.2414 13.9367 13.089 13.8244 12.9765L10.6806 9.8328C11.0529 9.37773 11.3572 8.86972 11.5831 8.32452C11.8856 7.59408 12.0414 6.81119 12.0414 6.02056C12.0414 4.8298 11.6883 3.66579 11.0267 2.67572C10.3652 1.68564 9.42488 0.913972 8.32477 0.45829C7.22466 0.00260857 6.01412 -0.116618 4.84625 0.115686C3.67838 0.34799 2.60562 0.921393 1.76363 1.76338C0.921637 2.60537 0.348235 3.67813 0.11593 4.84601C-0.116374 6.01388 0.00285271 7.22441 0.458534 8.32452C0.914216 9.42464 1.68589 10.3649 2.67596 11.0265ZM3.35559 2.0158C4.14449 1.48867 5.07199 1.20731 6.0208 1.20731C7.29311 1.20731 8.51331 1.71274 9.41297 2.6124C10.3126 3.51206 10.8181 4.73226 10.8181 6.00457C10.8181 6.95337 10.5367 7.88088 10.0096 8.66978C9.48244 9.45868 8.73322 10.0736 7.85663 10.4367C6.98005 10.7997 6.01548 10.8947 5.0849 10.7096C4.15433 10.5245 3.29954 10.0676 2.62863 9.39674C1.95772 8.72583 1.50083 7.87104 1.31572 6.94046C1.13062 6.00989 1.22562 5.04532 1.58872 4.16874C1.95181 3.29215 2.56669 2.54292 3.35559 2.0158ZM6.00481 8.60309C5.84641 8.60102 5.69509 8.53718 5.58308 8.42517C5.47107 8.31316 5.40722 8.16183 5.40515 8.00344V6.60422H4.00591C3.84687 6.60422 3.69434 6.54104 3.58189 6.42859C3.46943 6.31613 3.40625 6.1636 3.40625 6.00456C3.40625 5.84553 3.46943 5.693 3.58189 5.58054C3.69434 5.46809 3.84687 5.40491 4.00591 5.40491H5.40515V4.00572C5.40515 3.84668 5.46833 3.69416 5.58079 3.5817C5.69324 3.46924 5.84577 3.40607 6.00481 3.40607C6.16385 3.40607 6.31637 3.46924 6.42883 3.5817C6.54129 3.69416 6.60447 3.84668 6.60447 4.00572V5.40491H8.00362C8.16266 5.40491 8.31518 5.46809 8.42764 5.58054C8.5401 5.693 8.60328 5.84553 8.60328 6.00456C8.60328 6.1636 8.5401 6.31613 8.42764 6.42859C8.31518 6.54104 8.16266 6.60422 8.00362 6.60422H6.60447V8.00344C6.60239 8.16183 6.53855 8.31316 6.42654 8.42517C6.31453 8.53718 6.1632 8.60102 6.00481 8.60309Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_417_21164">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'SearchPlusIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

12
components/lib/icon/sortalt/index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class SortAltIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
SortAltIcon: GlobalComponentConstructor<SortAltIcon>;
}
}
export default SortAltIcon;

View File

@ -0,0 +1,29 @@
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<g clip-path="url(#clip0_378_15529)">
<path
d="M5.64515 3.61291C5.47353 3.61291 5.30192 3.54968 5.16644 3.4142L3.38708 1.63484L1.60773 3.4142C1.34579 3.67613 0.912244 3.67613 0.650309 3.4142C0.388374 3.15226 0.388374 2.71871 0.650309 2.45678L2.90837 0.198712C3.17031 -0.0632236 3.60386 -0.0632236 3.86579 0.198712L6.12386 2.45678C6.38579 2.71871 6.38579 3.15226 6.12386 3.4142C5.98837 3.54968 5.81676 3.61291 5.64515 3.61291Z"
fill="currentColor"
/>
<path d="M3.38714 14C3.01681 14 2.70972 13.6929 2.70972 13.3226V0.677419C2.70972 0.307097 3.01681 0 3.38714 0C3.75746 0 4.06456 0.307097 4.06456 0.677419V13.3226C4.06456 13.6929 3.75746 14 3.38714 14Z" fill="currentColor" />
<path
d="M10.6129 14C10.4413 14 10.2697 13.9368 10.1342 13.8013L7.87611 11.5432C7.61418 11.2813 7.61418 10.8477 7.87611 10.5858C8.13805 10.3239 8.5716 10.3239 8.83353 10.5858L10.6129 12.3652L12.3922 10.5858C12.6542 10.3239 13.0877 10.3239 13.3497 10.5858C13.6116 10.8477 13.6116 11.2813 13.3497 11.5432L11.0916 13.8013C10.9561 13.9368 10.7845 14 10.6129 14Z"
fill="currentColor"
/>
<path d="M10.6129 14C10.2426 14 9.93552 13.6929 9.93552 13.3226V0.677419C9.93552 0.307097 10.2426 0 10.6129 0C10.9833 0 11.2904 0.307097 11.2904 0.677419V13.3226C11.2904 13.6929 10.9832 14 10.6129 14Z" fill="currentColor" />
</g>
<defs>
<clipPath id="clip0_378_15529">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'SortAltIcon',
extends: BaseIcon
};
</script>

View File

@ -0,0 +1,9 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts",
"browser": {
"./sfc": "./index.vue"
}
}

Some files were not shown because too many files have changed in this diff Show More