artode-icons 0.1.1 → 0.1.2
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/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +303 -132
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +303 -132
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -14,6 +14,15 @@ interface ArtodeIconProps {
|
|
|
14
14
|
forceHover?: boolean;
|
|
15
15
|
/** Draw either the stroke or the fill of the SVG path */
|
|
16
16
|
drawType?: 'fill' | 'stroke';
|
|
17
|
+
/** Enable interactive particle mode */
|
|
18
|
+
interactive?: boolean;
|
|
19
|
+
/** Enable global mouse tracking for interactive mode */
|
|
20
|
+
globalMouse?: boolean;
|
|
21
|
+
/** Custom canvas size for interactive mode (width, height) */
|
|
22
|
+
customCanvasSize?: {
|
|
23
|
+
width: number;
|
|
24
|
+
height: number;
|
|
25
|
+
};
|
|
17
26
|
}
|
|
18
27
|
declare const ArtodeIcon: React.FC<ArtodeIconProps>;
|
|
19
28
|
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,15 @@ interface ArtodeIconProps {
|
|
|
14
14
|
forceHover?: boolean;
|
|
15
15
|
/** Draw either the stroke or the fill of the SVG path */
|
|
16
16
|
drawType?: 'fill' | 'stroke';
|
|
17
|
+
/** Enable interactive particle mode */
|
|
18
|
+
interactive?: boolean;
|
|
19
|
+
/** Enable global mouse tracking for interactive mode */
|
|
20
|
+
globalMouse?: boolean;
|
|
21
|
+
/** Custom canvas size for interactive mode (width, height) */
|
|
22
|
+
customCanvasSize?: {
|
|
23
|
+
width: number;
|
|
24
|
+
height: number;
|
|
25
|
+
};
|
|
17
26
|
}
|
|
18
27
|
declare const ArtodeIcon: React.FC<ArtodeIconProps>;
|
|
19
28
|
|