@jis3r/icons 1.1.5 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/navbar.svelte +78 -0
- package/dist/components/navbar.svelte.d.ts +6 -0
- package/dist/components/ui/badge/badge.svelte.d.ts +2 -30
- package/dist/components/ui/button/button.svelte.d.ts +2 -62
- package/dist/components/ui/card/card-description.svelte +1 -1
- package/dist/components/ui/card/card-title.svelte +1 -1
- package/dist/components/ui/card/card.svelte +1 -1
- package/dist/components/ui/input/input.svelte +2 -2
- package/dist/components/ui/tooltip/tooltip-content.svelte +1 -1
- package/dist/icons/arrow-down-0-1.svelte.d.ts +3 -3
- package/dist/icons/arrow-down-1-0.svelte.d.ts +3 -3
- package/dist/icons/arrow-up-0-1.svelte.d.ts +3 -3
- package/dist/icons/arrow-up-1-0.svelte.d.ts +3 -3
- package/dist/icons/book-up-2.svelte.d.ts +3 -3
- package/dist/icons/bookmark-check.svelte +26 -2
- package/dist/icons/bookmark-minus.svelte +108 -0
- package/dist/icons/bookmark-minus.svelte.d.ts +19 -0
- package/dist/icons/bookmark-plus.svelte +114 -0
- package/dist/icons/bookmark-plus.svelte.d.ts +19 -0
- package/dist/icons/bookmark-x.svelte +114 -0
- package/dist/icons/{file-warning.svelte.d.ts → bookmark-x.svelte.d.ts} +3 -3
- package/dist/icons/bookmark.svelte +81 -0
- package/dist/icons/{align-center.svelte.d.ts → bookmark.svelte.d.ts} +3 -3
- package/dist/icons/bot.svelte +94 -0
- package/dist/icons/{file-check-2.svelte.d.ts → bot.svelte.d.ts} +3 -3
- package/dist/icons/calendar-check-2.svelte.d.ts +3 -3
- package/dist/icons/clock-1.svelte.d.ts +3 -3
- package/dist/icons/clock-10.svelte.d.ts +3 -3
- package/dist/icons/clock-11.svelte.d.ts +3 -3
- package/dist/icons/clock-12.svelte.d.ts +3 -3
- package/dist/icons/clock-2.svelte.d.ts +3 -3
- package/dist/icons/clock-3.svelte.d.ts +3 -3
- package/dist/icons/clock-4.svelte.d.ts +3 -3
- package/dist/icons/clock-5.svelte.d.ts +3 -3
- package/dist/icons/clock-6.svelte.d.ts +3 -3
- package/dist/icons/clock-7.svelte.d.ts +3 -3
- package/dist/icons/clock-8.svelte.d.ts +3 -3
- package/dist/icons/clock-9.svelte.d.ts +3 -3
- package/dist/icons/dice-1.svelte.d.ts +3 -3
- package/dist/icons/dice-2.svelte.d.ts +3 -3
- package/dist/icons/dice-3.svelte.d.ts +3 -3
- package/dist/icons/dice-4.svelte.d.ts +3 -3
- package/dist/icons/dice-5.svelte.d.ts +3 -3
- package/dist/icons/dice-6.svelte.d.ts +3 -3
- package/dist/icons/disc-3.svelte.d.ts +3 -3
- package/dist/icons/{file-check-2.svelte → file-check-corner.svelte} +9 -7
- package/dist/icons/file-check-corner.svelte.d.ts +19 -0
- package/dist/icons/{file-warning.svelte → file-exclamation-point.svelte} +6 -1
- package/dist/icons/file-exclamation-point.svelte.d.ts +19 -0
- package/dist/icons/grid-2x2-check.svelte.d.ts +3 -3
- package/dist/icons/index.d.ts +8 -2
- package/dist/icons/index.js +5621 -40
- package/dist/icons/link-2-off.svelte.d.ts +3 -3
- package/dist/icons/maximize-2.svelte.d.ts +3 -3
- package/dist/icons/minimize-2.svelte.d.ts +3 -3
- package/dist/icons/mouse-pointer-2.svelte.d.ts +3 -3
- package/dist/icons/move-diagonal-2.svelte.d.ts +3 -3
- package/dist/icons/navigation-2-off.svelte.d.ts +3 -3
- package/dist/icons/paperclip.svelte +81 -0
- package/dist/icons/paperclip.svelte.d.ts +19 -0
- package/dist/icons/{align-center.svelte → text-align-center.svelte} +1 -1
- package/dist/icons/text-align-center.svelte.d.ts +19 -0
- package/dist/icons/text-search.svelte +124 -0
- package/dist/icons/text-search.svelte.d.ts +19 -0
- package/dist/icons/trash-2.svelte.d.ts +3 -3
- package/dist/index.d.ts +10 -3
- package/dist/index.js +10 -3
- package/dist/utils/icons.js +4 -2
- package/package.json +20 -9
- package/dist/icons/metadata.json +0 -8120
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export default
|
|
2
|
-
type
|
|
1
|
+
export default Link2Off;
|
|
2
|
+
type Link2Off = {
|
|
3
3
|
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
4
|
$set?(props: Partial<Props>): void;
|
|
5
5
|
};
|
|
6
|
-
declare const
|
|
6
|
+
declare const Link2Off: import("svelte").Component<{
|
|
7
7
|
color?: string;
|
|
8
8
|
size?: number;
|
|
9
9
|
strokeWidth?: number;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export default
|
|
2
|
-
type
|
|
1
|
+
export default Maximize2;
|
|
2
|
+
type Maximize2 = {
|
|
3
3
|
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
4
|
$set?(props: Partial<Props>): void;
|
|
5
5
|
};
|
|
6
|
-
declare const
|
|
6
|
+
declare const Maximize2: import("svelte").Component<{
|
|
7
7
|
color?: string;
|
|
8
8
|
size?: number;
|
|
9
9
|
strokeWidth?: number;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export default
|
|
2
|
-
type
|
|
1
|
+
export default Minimize2;
|
|
2
|
+
type Minimize2 = {
|
|
3
3
|
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
4
|
$set?(props: Partial<Props>): void;
|
|
5
5
|
};
|
|
6
|
-
declare const
|
|
6
|
+
declare const Minimize2: import("svelte").Component<{
|
|
7
7
|
color?: string;
|
|
8
8
|
size?: number;
|
|
9
9
|
strokeWidth?: number;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export default
|
|
2
|
-
type
|
|
1
|
+
export default MousePointer2;
|
|
2
|
+
type MousePointer2 = {
|
|
3
3
|
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
4
|
$set?(props: Partial<Props>): void;
|
|
5
5
|
};
|
|
6
|
-
declare const
|
|
6
|
+
declare const MousePointer2: import("svelte").Component<{
|
|
7
7
|
color?: string;
|
|
8
8
|
size?: number;
|
|
9
9
|
strokeWidth?: number;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export default
|
|
2
|
-
type
|
|
1
|
+
export default MoveDiagonal2;
|
|
2
|
+
type MoveDiagonal2 = {
|
|
3
3
|
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
4
|
$set?(props: Partial<Props>): void;
|
|
5
5
|
};
|
|
6
|
-
declare const
|
|
6
|
+
declare const MoveDiagonal2: import("svelte").Component<{
|
|
7
7
|
color?: string;
|
|
8
8
|
size?: number;
|
|
9
9
|
strokeWidth?: number;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export default
|
|
2
|
-
type
|
|
1
|
+
export default Navigation2Off;
|
|
2
|
+
type Navigation2Off = {
|
|
3
3
|
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
4
|
$set?(props: Partial<Props>): void;
|
|
5
5
|
};
|
|
6
|
-
declare const
|
|
6
|
+
declare const Navigation2Off: import("svelte").Component<{
|
|
7
7
|
color?: string;
|
|
8
8
|
size?: number;
|
|
9
9
|
strokeWidth?: number;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
/**
|
|
3
|
+
* @typedef {Object} Props
|
|
4
|
+
* @property {string} [color]
|
|
5
|
+
* @property {number} [size]
|
|
6
|
+
* @property {number} [strokeWidth]
|
|
7
|
+
* @property {boolean} [isHovered]
|
|
8
|
+
* @property {string} [class]
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/** @type {Props} */
|
|
12
|
+
let {
|
|
13
|
+
color = 'currentColor',
|
|
14
|
+
size = 24,
|
|
15
|
+
strokeWidth = 2,
|
|
16
|
+
isHovered = false,
|
|
17
|
+
class: className = ''
|
|
18
|
+
} = $props();
|
|
19
|
+
|
|
20
|
+
function handleMouseEnter() {
|
|
21
|
+
isHovered = true;
|
|
22
|
+
|
|
23
|
+
setTimeout(() => {
|
|
24
|
+
isHovered = false;
|
|
25
|
+
}, 600);
|
|
26
|
+
}
|
|
27
|
+
</script>
|
|
28
|
+
|
|
29
|
+
<div class={className} aria-label="paperclip" role="img" onmouseenter={handleMouseEnter}>
|
|
30
|
+
<svg
|
|
31
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
32
|
+
width={size}
|
|
33
|
+
height={size}
|
|
34
|
+
viewBox="0 0 24 24"
|
|
35
|
+
fill="none"
|
|
36
|
+
stroke={color}
|
|
37
|
+
stroke-width={strokeWidth}
|
|
38
|
+
stroke-linecap="round"
|
|
39
|
+
stroke-linejoin="round"
|
|
40
|
+
class="paperclip-icon"
|
|
41
|
+
class:animate={isHovered}
|
|
42
|
+
>
|
|
43
|
+
<path
|
|
44
|
+
d="m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551"
|
|
45
|
+
class="paperclip-path"
|
|
46
|
+
/>
|
|
47
|
+
</svg>
|
|
48
|
+
</div>
|
|
49
|
+
|
|
50
|
+
<style>
|
|
51
|
+
div {
|
|
52
|
+
display: inline-block;
|
|
53
|
+
}
|
|
54
|
+
.paperclip-icon {
|
|
55
|
+
overflow: visible;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.paperclip-path {
|
|
59
|
+
stroke-dasharray: 87;
|
|
60
|
+
stroke-dashoffset: 0;
|
|
61
|
+
transition:
|
|
62
|
+
stroke-dashoffset 0.6s ease-in,
|
|
63
|
+
opacity 0.1s ease-in;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.paperclip-icon.animate .paperclip-path {
|
|
67
|
+
animation: drawPath 0.6s ease-in forwards;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
@keyframes drawPath {
|
|
71
|
+
0% {
|
|
72
|
+
stroke-dashoffset: 87;
|
|
73
|
+
}
|
|
74
|
+
15% {
|
|
75
|
+
stroke-dashoffset: 87;
|
|
76
|
+
}
|
|
77
|
+
100% {
|
|
78
|
+
stroke-dashoffset: 174;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
</style>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default Paperclip;
|
|
2
|
+
type Paperclip = {
|
|
3
|
+
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
+
$set?(props: Partial<Props>): void;
|
|
5
|
+
};
|
|
6
|
+
declare const Paperclip: import("svelte").Component<{
|
|
7
|
+
color?: string;
|
|
8
|
+
size?: number;
|
|
9
|
+
strokeWidth?: number;
|
|
10
|
+
isHovered?: boolean;
|
|
11
|
+
class?: string;
|
|
12
|
+
}, {}, "">;
|
|
13
|
+
type Props = {
|
|
14
|
+
color?: string;
|
|
15
|
+
size?: number;
|
|
16
|
+
strokeWidth?: number;
|
|
17
|
+
isHovered?: boolean;
|
|
18
|
+
class?: string;
|
|
19
|
+
};
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
}
|
|
27
27
|
</script>
|
|
28
28
|
|
|
29
|
-
<div class={className} aria-label="align-center" role="img" onmouseenter={handleMouseEnter}>
|
|
29
|
+
<div class={className} aria-label="text-align-center" role="img" onmouseenter={handleMouseEnter}>
|
|
30
30
|
<svg
|
|
31
31
|
xmlns="http://www.w3.org/2000/svg"
|
|
32
32
|
width={size}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default TextAlignCenter;
|
|
2
|
+
type TextAlignCenter = {
|
|
3
|
+
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
+
$set?(props: Partial<Props>): void;
|
|
5
|
+
};
|
|
6
|
+
declare const TextAlignCenter: import("svelte").Component<{
|
|
7
|
+
color?: string;
|
|
8
|
+
size?: number;
|
|
9
|
+
strokeWidth?: number;
|
|
10
|
+
isHovered?: boolean;
|
|
11
|
+
class?: string;
|
|
12
|
+
}, {}, "">;
|
|
13
|
+
type Props = {
|
|
14
|
+
color?: string;
|
|
15
|
+
size?: number;
|
|
16
|
+
strokeWidth?: number;
|
|
17
|
+
isHovered?: boolean;
|
|
18
|
+
class?: string;
|
|
19
|
+
};
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
/**
|
|
3
|
+
* @typedef {Object} Props
|
|
4
|
+
* @property {string} [color]
|
|
5
|
+
* @property {number} [size]
|
|
6
|
+
* @property {number} [strokeWidth]
|
|
7
|
+
* @property {boolean} [isHovered]
|
|
8
|
+
* @property {string} [class]
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/** @type {Props} */
|
|
12
|
+
let {
|
|
13
|
+
color = 'currentColor',
|
|
14
|
+
size = 24,
|
|
15
|
+
strokeWidth = 2,
|
|
16
|
+
isHovered = false,
|
|
17
|
+
class: className = ''
|
|
18
|
+
} = $props();
|
|
19
|
+
|
|
20
|
+
function handleMouseEnter() {
|
|
21
|
+
if (!isHovered) {
|
|
22
|
+
isHovered = true;
|
|
23
|
+
setTimeout(() => {
|
|
24
|
+
isHovered = false;
|
|
25
|
+
}, 1000);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<div class={className} aria-label="text-search" role="img" onmouseenter={handleMouseEnter}>
|
|
31
|
+
<svg
|
|
32
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
33
|
+
width={size}
|
|
34
|
+
height={size}
|
|
35
|
+
viewBox="0 0 24 24"
|
|
36
|
+
fill="none"
|
|
37
|
+
stroke={color}
|
|
38
|
+
stroke-width={strokeWidth}
|
|
39
|
+
stroke-linecap="round"
|
|
40
|
+
stroke-linejoin="round"
|
|
41
|
+
class="text-search-icon"
|
|
42
|
+
class:animate={isHovered}
|
|
43
|
+
>
|
|
44
|
+
<path d="M21 5H3" class="line top" />
|
|
45
|
+
<g class="text-group">
|
|
46
|
+
<path d="M10 12H3" class="line middle" />
|
|
47
|
+
<path d="M10 19H3" class="line bottom" />
|
|
48
|
+
</g>
|
|
49
|
+
|
|
50
|
+
<g class="magnifier">
|
|
51
|
+
<circle cx="17" cy="15" r="3" />
|
|
52
|
+
<path d="m21 19-1.9-1.9" />
|
|
53
|
+
</g>
|
|
54
|
+
</svg>
|
|
55
|
+
</div>
|
|
56
|
+
|
|
57
|
+
<style>
|
|
58
|
+
div {
|
|
59
|
+
display: inline-block;
|
|
60
|
+
}
|
|
61
|
+
.text-search-icon {
|
|
62
|
+
overflow: visible;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.line {
|
|
66
|
+
transition: opacity 0.1s ease-out;
|
|
67
|
+
}
|
|
68
|
+
.top,
|
|
69
|
+
.middle,
|
|
70
|
+
.bottom {
|
|
71
|
+
transform-origin: left center;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.magnifier {
|
|
75
|
+
transform-origin: 17px 15px;
|
|
76
|
+
}
|
|
77
|
+
.text-search-icon.animate .magnifier {
|
|
78
|
+
animation: search-bounce 1s ease-in-out;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.text-search-icon.animate .top {
|
|
82
|
+
animation: line-shrink-top 1s ease-in-out;
|
|
83
|
+
}
|
|
84
|
+
.text-search-icon.animate .middle {
|
|
85
|
+
animation: line-shrink-mid 1s ease-in-out;
|
|
86
|
+
}
|
|
87
|
+
.text-search-icon.animate .bottom {
|
|
88
|
+
animation: line-shrink-bot 1s ease-in-out 0.05s;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@keyframes search-bounce {
|
|
92
|
+
0%,
|
|
93
|
+
100% {
|
|
94
|
+
transform: translateX(0) translateY(0);
|
|
95
|
+
}
|
|
96
|
+
25% {
|
|
97
|
+
transform: translateX(0) translateY(-4px);
|
|
98
|
+
}
|
|
99
|
+
50% {
|
|
100
|
+
transform: translateX(-3px) translateY(0);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
@keyframes line-shrink-mid {
|
|
105
|
+
0%,
|
|
106
|
+
25%,
|
|
107
|
+
100% {
|
|
108
|
+
transform: scaleX(1);
|
|
109
|
+
}
|
|
110
|
+
50% {
|
|
111
|
+
transform: scaleX(0.7);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
@keyframes line-shrink-bot {
|
|
115
|
+
0%,
|
|
116
|
+
30%,
|
|
117
|
+
100% {
|
|
118
|
+
transform: scaleX(1);
|
|
119
|
+
}
|
|
120
|
+
50% {
|
|
121
|
+
transform: scaleX(0.8);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
</style>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default TextSearch;
|
|
2
|
+
type TextSearch = {
|
|
3
|
+
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
+
$set?(props: Partial<Props>): void;
|
|
5
|
+
};
|
|
6
|
+
declare const TextSearch: import("svelte").Component<{
|
|
7
|
+
color?: string;
|
|
8
|
+
size?: number;
|
|
9
|
+
strokeWidth?: number;
|
|
10
|
+
isHovered?: boolean;
|
|
11
|
+
class?: string;
|
|
12
|
+
}, {}, "">;
|
|
13
|
+
type Props = {
|
|
14
|
+
color?: string;
|
|
15
|
+
size?: number;
|
|
16
|
+
strokeWidth?: number;
|
|
17
|
+
isHovered?: boolean;
|
|
18
|
+
class?: string;
|
|
19
|
+
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export default
|
|
2
|
-
type
|
|
1
|
+
export default Trash2;
|
|
2
|
+
type Trash2 = {
|
|
3
3
|
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
4
|
$set?(props: Partial<Props>): void;
|
|
5
5
|
};
|
|
6
|
-
declare const
|
|
6
|
+
declare const Trash2: import("svelte").Component<{
|
|
7
7
|
color?: string;
|
|
8
8
|
size?: number;
|
|
9
9
|
strokeWidth?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ export { default as Activity } from "./icons/activity.svelte";
|
|
|
2
2
|
export { default as AlarmClockCheck } from "./icons/alarm-clock-check.svelte";
|
|
3
3
|
export { default as AlarmClockOff } from "./icons/alarm-clock-off.svelte";
|
|
4
4
|
export { default as AlarmClock } from "./icons/alarm-clock.svelte";
|
|
5
|
-
export { default as AlignCenter } from "./icons/align-center.svelte";
|
|
6
5
|
export { default as AlignHorizontalSpaceAround } from "./icons/align-horizontal-space-around.svelte";
|
|
7
6
|
export { default as AlignVerticalSpaceAround } from "./icons/align-vertical-space-around.svelte";
|
|
8
7
|
export { default as Anvil } from "./icons/anvil.svelte";
|
|
@@ -81,7 +80,12 @@ export { default as BookUser } from "./icons/book-user.svelte";
|
|
|
81
80
|
export { default as BookX } from "./icons/book-x.svelte";
|
|
82
81
|
export { default as Book } from "./icons/book.svelte";
|
|
83
82
|
export { default as BookmarkCheck } from "./icons/bookmark-check.svelte";
|
|
83
|
+
export { default as BookmarkMinus } from "./icons/bookmark-minus.svelte";
|
|
84
|
+
export { default as BookmarkPlus } from "./icons/bookmark-plus.svelte";
|
|
85
|
+
export { default as BookmarkX } from "./icons/bookmark-x.svelte";
|
|
86
|
+
export { default as Bookmark } from "./icons/bookmark.svelte";
|
|
84
87
|
export { default as BotOff } from "./icons/bot-off.svelte";
|
|
88
|
+
export { default as Bot } from "./icons/bot.svelte";
|
|
85
89
|
export { default as Boxes } from "./icons/boxes.svelte";
|
|
86
90
|
export { default as BrainCog } from "./icons/brain-cog.svelte";
|
|
87
91
|
export { default as BriefcaseBusiness } from "./icons/briefcase-business.svelte";
|
|
@@ -202,10 +206,11 @@ export { default as EyeOff } from "./icons/eye-off.svelte";
|
|
|
202
206
|
export { default as FileChartColumnIncreasing } from "./icons/file-chart-column-increasing.svelte";
|
|
203
207
|
export { default as FileChartColumn } from "./icons/file-chart-column.svelte";
|
|
204
208
|
export { default as FileChartLine } from "./icons/file-chart-line.svelte";
|
|
205
|
-
export { default as
|
|
209
|
+
export { default as FileCheckCorner } from "./icons/file-check-corner.svelte";
|
|
206
210
|
export { default as FileCheck } from "./icons/file-check.svelte";
|
|
207
211
|
export { default as FileCog } from "./icons/file-cog.svelte";
|
|
208
212
|
export { default as FileDown } from "./icons/file-down.svelte";
|
|
213
|
+
export { default as FileExclamationPoint } from "./icons/file-exclamation-point.svelte";
|
|
209
214
|
export { default as FileMinus } from "./icons/file-minus.svelte";
|
|
210
215
|
export { default as FilePenLine } from "./icons/file-pen-line.svelte";
|
|
211
216
|
export { default as FilePen } from "./icons/file-pen.svelte";
|
|
@@ -214,7 +219,6 @@ export { default as FileQuestionMark } from "./icons/file-question-mark.svelte";
|
|
|
214
219
|
export { default as FileStack } from "./icons/file-stack.svelte";
|
|
215
220
|
export { default as FileTerminal } from "./icons/file-terminal.svelte";
|
|
216
221
|
export { default as FileUp } from "./icons/file-up.svelte";
|
|
217
|
-
export { default as FileWarning } from "./icons/file-warning.svelte";
|
|
218
222
|
export { default as FishOff } from "./icons/fish-off.svelte";
|
|
219
223
|
export { default as FlagOff } from "./icons/flag-off.svelte";
|
|
220
224
|
export { default as FlashlightOff } from "./icons/flashlight-off.svelte";
|
|
@@ -333,6 +337,7 @@ export { default as PanelRightClose } from "./icons/panel-right-close.svelte";
|
|
|
333
337
|
export { default as PanelRightOpen } from "./icons/panel-right-open.svelte";
|
|
334
338
|
export { default as PanelTopClose } from "./icons/panel-top-close.svelte";
|
|
335
339
|
export { default as PanelTopOpen } from "./icons/panel-top-open.svelte";
|
|
340
|
+
export { default as Paperclip } from "./icons/paperclip.svelte";
|
|
336
341
|
export { default as PenLine } from "./icons/pen-line.svelte";
|
|
337
342
|
export { default as PenOff } from "./icons/pen-off.svelte";
|
|
338
343
|
export { default as Pen } from "./icons/pen.svelte";
|
|
@@ -432,8 +437,10 @@ export { default as Sword } from "./icons/sword.svelte";
|
|
|
432
437
|
export { default as Tag } from "./icons/tag.svelte";
|
|
433
438
|
export { default as Telescope } from "./icons/telescope.svelte";
|
|
434
439
|
export { default as Terminal } from "./icons/terminal.svelte";
|
|
440
|
+
export { default as TextAlignCenter } from "./icons/text-align-center.svelte";
|
|
435
441
|
export { default as TextCursorInput } from "./icons/text-cursor-input.svelte";
|
|
436
442
|
export { default as TextCursor } from "./icons/text-cursor.svelte";
|
|
443
|
+
export { default as TextSearch } from "./icons/text-search.svelte";
|
|
437
444
|
export { default as Thermometer } from "./icons/thermometer.svelte";
|
|
438
445
|
export { default as ThumbsDown } from "./icons/thumbs-down.svelte";
|
|
439
446
|
export { default as ThumbsUp } from "./icons/thumbs-up.svelte";
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,6 @@ export { default as Activity } from './icons/activity.svelte';
|
|
|
2
2
|
export { default as AlarmClockCheck } from './icons/alarm-clock-check.svelte';
|
|
3
3
|
export { default as AlarmClockOff } from './icons/alarm-clock-off.svelte';
|
|
4
4
|
export { default as AlarmClock } from './icons/alarm-clock.svelte';
|
|
5
|
-
export { default as AlignCenter } from './icons/align-center.svelte';
|
|
6
5
|
export { default as AlignHorizontalSpaceAround } from './icons/align-horizontal-space-around.svelte';
|
|
7
6
|
export { default as AlignVerticalSpaceAround } from './icons/align-vertical-space-around.svelte';
|
|
8
7
|
export { default as Anvil } from './icons/anvil.svelte';
|
|
@@ -81,7 +80,12 @@ export { default as BookUser } from './icons/book-user.svelte';
|
|
|
81
80
|
export { default as BookX } from './icons/book-x.svelte';
|
|
82
81
|
export { default as Book } from './icons/book.svelte';
|
|
83
82
|
export { default as BookmarkCheck } from './icons/bookmark-check.svelte';
|
|
83
|
+
export { default as BookmarkMinus } from './icons/bookmark-minus.svelte';
|
|
84
|
+
export { default as BookmarkPlus } from './icons/bookmark-plus.svelte';
|
|
85
|
+
export { default as BookmarkX } from './icons/bookmark-x.svelte';
|
|
86
|
+
export { default as Bookmark } from './icons/bookmark.svelte';
|
|
84
87
|
export { default as BotOff } from './icons/bot-off.svelte';
|
|
88
|
+
export { default as Bot } from './icons/bot.svelte';
|
|
85
89
|
export { default as Boxes } from './icons/boxes.svelte';
|
|
86
90
|
export { default as BrainCog } from './icons/brain-cog.svelte';
|
|
87
91
|
export { default as BriefcaseBusiness } from './icons/briefcase-business.svelte';
|
|
@@ -202,10 +206,11 @@ export { default as EyeOff } from './icons/eye-off.svelte';
|
|
|
202
206
|
export { default as FileChartColumnIncreasing } from './icons/file-chart-column-increasing.svelte';
|
|
203
207
|
export { default as FileChartColumn } from './icons/file-chart-column.svelte';
|
|
204
208
|
export { default as FileChartLine } from './icons/file-chart-line.svelte';
|
|
205
|
-
export { default as
|
|
209
|
+
export { default as FileCheckCorner } from './icons/file-check-corner.svelte';
|
|
206
210
|
export { default as FileCheck } from './icons/file-check.svelte';
|
|
207
211
|
export { default as FileCog } from './icons/file-cog.svelte';
|
|
208
212
|
export { default as FileDown } from './icons/file-down.svelte';
|
|
213
|
+
export { default as FileExclamationPoint } from './icons/file-exclamation-point.svelte';
|
|
209
214
|
export { default as FileMinus } from './icons/file-minus.svelte';
|
|
210
215
|
export { default as FilePenLine } from './icons/file-pen-line.svelte';
|
|
211
216
|
export { default as FilePen } from './icons/file-pen.svelte';
|
|
@@ -214,7 +219,6 @@ export { default as FileQuestionMark } from './icons/file-question-mark.svelte';
|
|
|
214
219
|
export { default as FileStack } from './icons/file-stack.svelte';
|
|
215
220
|
export { default as FileTerminal } from './icons/file-terminal.svelte';
|
|
216
221
|
export { default as FileUp } from './icons/file-up.svelte';
|
|
217
|
-
export { default as FileWarning } from './icons/file-warning.svelte';
|
|
218
222
|
export { default as FishOff } from './icons/fish-off.svelte';
|
|
219
223
|
export { default as FlagOff } from './icons/flag-off.svelte';
|
|
220
224
|
export { default as FlashlightOff } from './icons/flashlight-off.svelte';
|
|
@@ -333,6 +337,7 @@ export { default as PanelRightClose } from './icons/panel-right-close.svelte';
|
|
|
333
337
|
export { default as PanelRightOpen } from './icons/panel-right-open.svelte';
|
|
334
338
|
export { default as PanelTopClose } from './icons/panel-top-close.svelte';
|
|
335
339
|
export { default as PanelTopOpen } from './icons/panel-top-open.svelte';
|
|
340
|
+
export { default as Paperclip } from './icons/paperclip.svelte';
|
|
336
341
|
export { default as PenLine } from './icons/pen-line.svelte';
|
|
337
342
|
export { default as PenOff } from './icons/pen-off.svelte';
|
|
338
343
|
export { default as Pen } from './icons/pen.svelte';
|
|
@@ -432,8 +437,10 @@ export { default as Sword } from './icons/sword.svelte';
|
|
|
432
437
|
export { default as Tag } from './icons/tag.svelte';
|
|
433
438
|
export { default as Telescope } from './icons/telescope.svelte';
|
|
434
439
|
export { default as Terminal } from './icons/terminal.svelte';
|
|
440
|
+
export { default as TextAlignCenter } from './icons/text-align-center.svelte';
|
|
435
441
|
export { default as TextCursorInput } from './icons/text-cursor-input.svelte';
|
|
436
442
|
export { default as TextCursor } from './icons/text-cursor.svelte';
|
|
443
|
+
export { default as TextSearch } from './icons/text-search.svelte';
|
|
437
444
|
export { default as Thermometer } from './icons/thermometer.svelte';
|
|
438
445
|
export { default as ThumbsDown } from './icons/thumbs-down.svelte';
|
|
439
446
|
export { default as ThumbsUp } from './icons/thumbs-up.svelte';
|
package/dist/utils/icons.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import iflog from 'iflog';
|
|
2
|
+
|
|
1
3
|
export let getIconSource = async (iconName) => {
|
|
2
4
|
try {
|
|
3
5
|
// Create a map of all icon files at build time
|
|
@@ -42,7 +44,7 @@ export let preloadIconSources = async (icons) => {
|
|
|
42
44
|
// Wait for all to complete and return the updated icons array
|
|
43
45
|
return await Promise.all(loadPromises);
|
|
44
46
|
} catch (error) {
|
|
45
|
-
|
|
47
|
+
iflog.error('Failed to preload icon sources:', error);
|
|
46
48
|
throw error;
|
|
47
49
|
}
|
|
48
50
|
};
|
|
@@ -62,7 +64,7 @@ export let downloadIcon = async (icon) => {
|
|
|
62
64
|
link.click();
|
|
63
65
|
URL.revokeObjectURL(url);
|
|
64
66
|
} catch (error) {
|
|
65
|
-
|
|
67
|
+
iflog.error(`Failed to download icon ${icon.name}:`, error);
|
|
66
68
|
throw error;
|
|
67
69
|
}
|
|
68
70
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jis3r/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "beautifully crafted, moving icons. for svelte.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"svelte",
|
|
7
|
+
"icons",
|
|
8
|
+
"lucide",
|
|
9
|
+
"animated",
|
|
10
|
+
"beautiful",
|
|
11
|
+
"moving"
|
|
12
|
+
],
|
|
5
13
|
"author": "jis3r",
|
|
6
14
|
"license": "MIT",
|
|
7
15
|
"scripts": {
|
|
@@ -37,10 +45,12 @@
|
|
|
37
45
|
}
|
|
38
46
|
},
|
|
39
47
|
"devDependencies": {
|
|
48
|
+
"@lucide/svelte": "^0.552.0",
|
|
40
49
|
"@sveltejs/adapter-auto": "^6.0.1",
|
|
41
50
|
"@sveltejs/kit": "^2.26.1",
|
|
42
51
|
"@sveltejs/package": "^2.0.0",
|
|
43
52
|
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
|
53
|
+
"@tailwindcss/vite": "^4.1.16",
|
|
44
54
|
"@types/eslint": "^9.6.0",
|
|
45
55
|
"autoprefixer": "^10.4.20",
|
|
46
56
|
"bits-ui": "^1.8.0",
|
|
@@ -51,28 +61,29 @@
|
|
|
51
61
|
"globals": "^16.0.0",
|
|
52
62
|
"prettier": "^3.3.2",
|
|
53
63
|
"prettier-plugin-svelte": "^3.2.6",
|
|
54
|
-
"prettier-plugin-tailwindcss": "^0.
|
|
64
|
+
"prettier-plugin-tailwindcss": "^0.7.1",
|
|
55
65
|
"publint": "^0.3.10",
|
|
56
|
-
"tailwind-merge": "^
|
|
57
|
-
"tailwind-variants": "^
|
|
58
|
-
"tailwindcss": "^
|
|
66
|
+
"tailwind-merge": "^3.3.1",
|
|
67
|
+
"tailwind-variants": "^3.1.1",
|
|
68
|
+
"tailwindcss": "^4.1.16",
|
|
59
69
|
"tailwindcss-animate": "^1.0.7",
|
|
70
|
+
"tw-animate-css": "^1.4.0",
|
|
60
71
|
"typescript": "^5.3.2",
|
|
61
72
|
"vite": "^6.3.5",
|
|
62
73
|
"vite-plugin-raw": "^1.0.3",
|
|
63
74
|
"vitest": "^3.1.1"
|
|
64
75
|
},
|
|
65
76
|
"dependencies": {
|
|
66
|
-
"@lucide/svelte": "^0.535.0",
|
|
67
77
|
"@number-flow/svelte": "^0.3.6",
|
|
68
78
|
"iflog": "^0.3.0",
|
|
69
79
|
"mode-watcher": "^0.5.1",
|
|
70
|
-
"motion": "^12.23.
|
|
80
|
+
"motion": "^12.23.24",
|
|
71
81
|
"posthog-js": "^1.246.0",
|
|
72
82
|
"shadcn-svelte": "^1.0.6",
|
|
73
|
-
"svelte": "^5.0.0"
|
|
83
|
+
"svelte": "^5.0.0",
|
|
84
|
+
"svelte-fast-marquee": "^1.0.2"
|
|
74
85
|
},
|
|
75
86
|
"overrides": {
|
|
76
87
|
"cookie": "0.7.0"
|
|
77
88
|
}
|
|
78
|
-
}
|
|
89
|
+
}
|