@jis3r/icons 1.18.0 → 1.20.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/icons/axis-3d.svelte +122 -0
- package/dist/icons/axis-3d.svelte.d.ts +19 -0
- package/dist/icons/gallery-horizontal.svelte +100 -0
- package/dist/icons/gallery-horizontal.svelte.d.ts +19 -0
- package/dist/icons/index.js +14 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,122 @@
|
|
|
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) return;
|
|
22
|
+
isHovered = true;
|
|
23
|
+
|
|
24
|
+
setTimeout(() => {
|
|
25
|
+
isHovered = false;
|
|
26
|
+
}, 900);
|
|
27
|
+
}
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<div class={className} aria-label="axis-3d" 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="axis-3d-icon"
|
|
42
|
+
class:animate={isHovered}
|
|
43
|
+
>
|
|
44
|
+
<path d="M4 4v15a1 1 0 0 0 1 1h15" class="axis-3d-path1" />
|
|
45
|
+
<g class="axis-3d-group">
|
|
46
|
+
<path d="M4.293 19.707 6 18" class="axis-3d-path2" />
|
|
47
|
+
<path d="m9 15 1.5-1.5" class="axis-3d-path3" />
|
|
48
|
+
<path d="M13.5 10.5 15 9" class="axis-3d-path4" />
|
|
49
|
+
</g>
|
|
50
|
+
</svg>
|
|
51
|
+
</div>
|
|
52
|
+
|
|
53
|
+
<style>
|
|
54
|
+
div {
|
|
55
|
+
display: inline-block;
|
|
56
|
+
}
|
|
57
|
+
.axis-3d-icon {
|
|
58
|
+
overflow: visible;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.axis-3d-path2,
|
|
62
|
+
.axis-3d-path3,
|
|
63
|
+
.axis-3d-path4 {
|
|
64
|
+
stroke-dasharray: 10;
|
|
65
|
+
stroke-dashoffset: 0;
|
|
66
|
+
opacity: 1;
|
|
67
|
+
transition:
|
|
68
|
+
stroke-dashoffset 0.1s ease-in-out,
|
|
69
|
+
opacity 0.1s ease-in-out;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.axis-3d-icon.animate .axis-3d-path2 {
|
|
73
|
+
opacity: 0;
|
|
74
|
+
stroke-dashoffset: 10;
|
|
75
|
+
animation: drawPath2 0.3s ease-in-out 0.2s forwards;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.axis-3d-icon.animate .axis-3d-path3 {
|
|
79
|
+
opacity: 0;
|
|
80
|
+
stroke-dashoffset: 10;
|
|
81
|
+
animation: drawPath3 0.3s ease-in-out 0.4s forwards;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.axis-3d-icon.animate .axis-3d-path4 {
|
|
85
|
+
opacity: 0;
|
|
86
|
+
stroke-dashoffset: 10;
|
|
87
|
+
animation: drawPath4 0.3s ease-in-out 0.6s forwards;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@keyframes drawPath2 {
|
|
91
|
+
0% {
|
|
92
|
+
stroke-dashoffset: 10;
|
|
93
|
+
opacity: 0;
|
|
94
|
+
}
|
|
95
|
+
100% {
|
|
96
|
+
stroke-dashoffset: 0;
|
|
97
|
+
opacity: 1;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
@keyframes drawPath3 {
|
|
102
|
+
0% {
|
|
103
|
+
stroke-dashoffset: 10;
|
|
104
|
+
opacity: 0;
|
|
105
|
+
}
|
|
106
|
+
100% {
|
|
107
|
+
stroke-dashoffset: 0;
|
|
108
|
+
opacity: 1;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
@keyframes drawPath4 {
|
|
113
|
+
0% {
|
|
114
|
+
stroke-dashoffset: 10;
|
|
115
|
+
opacity: 0;
|
|
116
|
+
}
|
|
117
|
+
100% {
|
|
118
|
+
stroke-dashoffset: 0;
|
|
119
|
+
opacity: 1;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
</style>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default Axis3d;
|
|
2
|
+
type Axis3d = {
|
|
3
|
+
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
+
$set?(props: Partial<Props>): void;
|
|
5
|
+
};
|
|
6
|
+
declare const Axis3d: 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,100 @@
|
|
|
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) return;
|
|
22
|
+
isHovered = true;
|
|
23
|
+
|
|
24
|
+
setTimeout(() => {
|
|
25
|
+
isHovered = false;
|
|
26
|
+
}, 600);
|
|
27
|
+
}
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<div class={className} aria-label="gallery-horizontal" 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="gallery-horizontal-icon"
|
|
42
|
+
class:animate={isHovered}
|
|
43
|
+
>
|
|
44
|
+
<path d="M2 3v18" class="gallery-path gallery-path-1" />
|
|
45
|
+
<rect width="12" height="18" x="6" y="3" rx="2" class="gallery-rect" />
|
|
46
|
+
<path d="M22 3v18" class="gallery-path gallery-path-2" />
|
|
47
|
+
</svg>
|
|
48
|
+
</div>
|
|
49
|
+
|
|
50
|
+
<style>
|
|
51
|
+
div {
|
|
52
|
+
display: inline-block;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.gallery-horizontal-icon {
|
|
56
|
+
overflow: visible;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.gallery-path {
|
|
60
|
+
opacity: 1;
|
|
61
|
+
transform: scale(1) translateX(0);
|
|
62
|
+
transform-origin: center;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.gallery-rect {
|
|
66
|
+
opacity: 1;
|
|
67
|
+
transform: scale(1);
|
|
68
|
+
transform-origin: center;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.gallery-horizontal-icon.animate .gallery-path-1 {
|
|
72
|
+
animation: slideInLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.gallery-horizontal-icon.animate .gallery-path-2 {
|
|
76
|
+
animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@keyframes slideInLeft {
|
|
80
|
+
0% {
|
|
81
|
+
opacity: 0;
|
|
82
|
+
transform: scale(0.8) translateX(4px);
|
|
83
|
+
}
|
|
84
|
+
100% {
|
|
85
|
+
opacity: 1;
|
|
86
|
+
transform: scale(1) translateX(0);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@keyframes slideInRight {
|
|
91
|
+
0% {
|
|
92
|
+
opacity: 0;
|
|
93
|
+
transform: scale(0.8) translateX(-4px);
|
|
94
|
+
}
|
|
95
|
+
100% {
|
|
96
|
+
opacity: 1;
|
|
97
|
+
transform: scale(1) translateX(0);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
</style>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default GalleryHorizontal;
|
|
2
|
+
type GalleryHorizontal = {
|
|
3
|
+
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
+
$set?(props: Partial<Props>): void;
|
|
5
|
+
};
|
|
6
|
+
declare const GalleryHorizontal: 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
|
+
};
|
package/dist/icons/index.js
CHANGED
|
@@ -37,6 +37,7 @@ import arrowUpZA from './arrow-up-z-a.svelte';
|
|
|
37
37
|
import audioLines from './audio-lines.svelte';
|
|
38
38
|
import award from './award.svelte';
|
|
39
39
|
import axe from './axe.svelte';
|
|
40
|
+
import axis3d from './axis-3d.svelte';
|
|
40
41
|
import badgeAlert from './badge-alert.svelte';
|
|
41
42
|
import badgeCheck from './badge-check.svelte';
|
|
42
43
|
import badgeQuestionMark from './badge-question-mark.svelte';
|
|
@@ -241,6 +242,7 @@ import folderPlus from './folder-plus.svelte';
|
|
|
241
242
|
import folderSync from './folder-sync.svelte';
|
|
242
243
|
import folderUp from './folder-up.svelte';
|
|
243
244
|
import frame from './frame.svelte';
|
|
245
|
+
import galleryHorizontal from './gallery-horizontal.svelte';
|
|
244
246
|
import galleryHorizontalEnd from './gallery-horizontal-end.svelte';
|
|
245
247
|
import galleryThumbnails from './gallery-thumbnails.svelte';
|
|
246
248
|
import galleryVerticalEnd from './gallery-vertical-end.svelte';
|
|
@@ -929,6 +931,12 @@ let ICONS_LIST = [
|
|
|
929
931
|
],
|
|
930
932
|
categories: ['tools', 'gaming']
|
|
931
933
|
},
|
|
934
|
+
{
|
|
935
|
+
name: 'axis-3d',
|
|
936
|
+
icon: axis3d,
|
|
937
|
+
tags: ['gizmo', 'coordinates'],
|
|
938
|
+
categories: ['design']
|
|
939
|
+
},
|
|
932
940
|
{
|
|
933
941
|
name: 'badge-alert',
|
|
934
942
|
icon: badgeAlert,
|
|
@@ -3122,6 +3130,12 @@ let ICONS_LIST = [
|
|
|
3122
3130
|
tags: ['logo', 'design', 'tool'],
|
|
3123
3131
|
categories: ['design', 'photography']
|
|
3124
3132
|
},
|
|
3133
|
+
{
|
|
3134
|
+
name: 'gallery-horizontal',
|
|
3135
|
+
icon: galleryHorizontal,
|
|
3136
|
+
tags: ['carousel', 'pictures', 'images', 'scroll', 'swipe', 'album', 'portfolio'],
|
|
3137
|
+
categories: ['layout', 'design', 'development', 'photography', 'multimedia']
|
|
3138
|
+
},
|
|
3125
3139
|
{
|
|
3126
3140
|
name: 'gallery-horizontal-end',
|
|
3127
3141
|
icon: galleryHorizontalEnd,
|
package/dist/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export { default as ArrowUp } from "./icons/arrow-up.svelte";
|
|
|
37
37
|
export { default as AudioLines } from "./icons/audio-lines.svelte";
|
|
38
38
|
export { default as Award } from "./icons/award.svelte";
|
|
39
39
|
export { default as Axe } from "./icons/axe.svelte";
|
|
40
|
+
export { default as Axis3d } from "./icons/axis-3d.svelte";
|
|
40
41
|
export { default as BadgeAlert } from "./icons/badge-alert.svelte";
|
|
41
42
|
export { default as BadgeCheck } from "./icons/badge-check.svelte";
|
|
42
43
|
export { default as BadgeQuestionMark } from "./icons/badge-question-mark.svelte";
|
|
@@ -242,6 +243,7 @@ export { default as FolderSync } from "./icons/folder-sync.svelte";
|
|
|
242
243
|
export { default as FolderUp } from "./icons/folder-up.svelte";
|
|
243
244
|
export { default as Frame } from "./icons/frame.svelte";
|
|
244
245
|
export { default as GalleryHorizontalEnd } from "./icons/gallery-horizontal-end.svelte";
|
|
246
|
+
export { default as GalleryHorizontal } from "./icons/gallery-horizontal.svelte";
|
|
245
247
|
export { default as GalleryThumbnails } from "./icons/gallery-thumbnails.svelte";
|
|
246
248
|
export { default as GalleryVerticalEnd } from "./icons/gallery-vertical-end.svelte";
|
|
247
249
|
export { default as Gauge } from "./icons/gauge.svelte";
|
package/dist/index.js
CHANGED
|
@@ -37,6 +37,7 @@ export { default as ArrowUp } from './icons/arrow-up.svelte';
|
|
|
37
37
|
export { default as AudioLines } from './icons/audio-lines.svelte';
|
|
38
38
|
export { default as Award } from './icons/award.svelte';
|
|
39
39
|
export { default as Axe } from './icons/axe.svelte';
|
|
40
|
+
export { default as Axis3d } from './icons/axis-3d.svelte';
|
|
40
41
|
export { default as BadgeAlert } from './icons/badge-alert.svelte';
|
|
41
42
|
export { default as BadgeCheck } from './icons/badge-check.svelte';
|
|
42
43
|
export { default as BadgeQuestionMark } from './icons/badge-question-mark.svelte';
|
|
@@ -242,6 +243,7 @@ export { default as FolderSync } from './icons/folder-sync.svelte';
|
|
|
242
243
|
export { default as FolderUp } from './icons/folder-up.svelte';
|
|
243
244
|
export { default as Frame } from './icons/frame.svelte';
|
|
244
245
|
export { default as GalleryHorizontalEnd } from './icons/gallery-horizontal-end.svelte';
|
|
246
|
+
export { default as GalleryHorizontal } from './icons/gallery-horizontal.svelte';
|
|
245
247
|
export { default as GalleryThumbnails } from './icons/gallery-thumbnails.svelte';
|
|
246
248
|
export { default as GalleryVerticalEnd } from './icons/gallery-vertical-end.svelte';
|
|
247
249
|
export { default as Gauge } from './icons/gauge.svelte';
|