@genarou/blazir-icons 1.3.2 → 1.3.3
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/LICENSE +67 -42
- package/dist/icons/Ai.svelte +34 -6
- package/dist/icons/Alternate.svelte +15 -8
- package/dist/icons/Alternate.svelte.d.ts +5 -2
- package/dist/icons/AnimatedArrowLeft.svelte +29 -11
- package/dist/icons/AnimatedArrowLeft.svelte.d.ts +5 -2
- package/dist/icons/Archive.svelte +21 -0
- package/dist/icons/Archive.svelte.d.ts +7 -0
- package/dist/icons/Attachment.svelte +10 -10
- package/dist/icons/Attachment.svelte.d.ts +5 -2
- package/dist/icons/Bank.svelte +16 -8
- package/dist/icons/Bank.svelte.d.ts +5 -2
- package/dist/icons/Bell.svelte +11 -8
- package/dist/icons/Bell.svelte.d.ts +5 -2
- package/dist/icons/Box.svelte +12 -10
- package/dist/icons/Box.svelte.d.ts +5 -2
- package/dist/icons/BoxAdd.svelte +11 -8
- package/dist/icons/BoxAdd.svelte.d.ts +5 -2
- package/dist/icons/Buy.svelte +11 -10
- package/dist/icons/Buy.svelte.d.ts +5 -2
- package/dist/icons/Calendar.svelte +12 -9
- package/dist/icons/Calendar.svelte.d.ts +5 -2
- package/dist/icons/CalendarEdit.svelte +5 -5
- package/dist/icons/CalendarPlus.svelte +11 -9
- package/dist/icons/CalendarPlus.svelte.d.ts +5 -2
- package/dist/icons/Cart.svelte +13 -10
- package/dist/icons/Connect.svelte +21 -0
- package/dist/icons/Connect.svelte.d.ts +7 -0
- package/dist/icons/Dashboard.svelte +10 -7
- package/dist/icons/Dashboard.svelte.d.ts +5 -2
- package/dist/icons/DashboardOutlined.svelte +14 -12
- package/dist/icons/DashboardOutlined.svelte.d.ts +5 -2
- package/dist/icons/Eye.svelte +42 -29
- package/dist/icons/Eye.svelte.d.ts +5 -2
- package/dist/icons/EyeOff.svelte +51 -51
- package/dist/icons/EyeOff.svelte.d.ts +5 -2
- package/dist/icons/Filter.svelte +10 -7
- package/dist/icons/Filter.svelte.d.ts +5 -2
- package/dist/icons/FilterOutline.svelte +8 -7
- package/dist/icons/FilterOutline.svelte.d.ts +5 -2
- package/dist/icons/HardDrive.svelte +21 -0
- package/dist/icons/HardDrive.svelte.d.ts +7 -0
- package/dist/icons/Historic.svelte +21 -0
- package/dist/icons/Historic.svelte.d.ts +7 -0
- package/dist/icons/Home.svelte +11 -7
- package/dist/icons/Home.svelte.d.ts +5 -2
- package/dist/icons/MagnifiyingGlass.svelte +12 -8
- package/dist/icons/MagnifiyingGlass.svelte.d.ts +5 -2
- package/dist/icons/Pause.svelte +21 -0
- package/dist/icons/Pause.svelte.d.ts +7 -0
- package/dist/icons/Play.svelte +21 -0
- package/dist/icons/Play.svelte.d.ts +7 -0
- package/dist/icons/Process.svelte +21 -0
- package/dist/icons/Process.svelte.d.ts +7 -0
- package/dist/icons/Settings.svelte +16 -8
- package/dist/icons/Settings.svelte.d.ts +5 -2
- package/dist/icons/SyncPhoto.svelte +21 -0
- package/dist/icons/SyncPhoto.svelte.d.ts +7 -0
- package/dist/icons/Work.svelte +21 -0
- package/dist/icons/Work.svelte.d.ts +7 -0
- package/dist/icons/registry.d.ts +84 -19
- package/dist/icons/registry.js +18 -0
- package/dist/icons-api.d.ts +9 -0
- package/dist/icons-api.js +9 -0
- package/package.json +13 -12
package/dist/icons/Home.svelte
CHANGED
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import IconBase from "../IconBase.svelte";
|
|
3
|
-
import type { IconProps } from "../types";
|
|
4
|
-
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
|
+
|
|
5
|
+
const props: IconProps & { mode?: IconMode } = $props();
|
|
5
6
|
</script>
|
|
6
7
|
|
|
7
8
|
<IconBase
|
|
8
9
|
{...props}
|
|
9
10
|
mode="solid"
|
|
10
11
|
viewBox="0 0 24 24"
|
|
11
|
-
ariaLabel={props.ariaLabel ?? "
|
|
12
|
-
title={props.title ?? ""}
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Inicio"}
|
|
13
|
+
title={props.title ?? "Home"}
|
|
13
14
|
>
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M12.7 2.25c-.4-.3-1-.3-1.4 0l-8.5 6.4c-.5.4-.8 1-.8 1.6V19c0 1.1.9 2 2 2h5v-5c0-.6.4-1 1-1h4c.6 0 1 .4 1 1v5h5c1.1 0 2-.9 2-2V10.25c0-.6-.3-1.2-.8-1.6l-8.5-6.4z"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
17
21
|
</IconBase>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const Home: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type Home = ReturnType<typeof Home>;
|
|
4
7
|
export default Home;
|
|
@@ -1,18 +1,22 @@
|
|
|
1
|
-
<!-- src/lib/icons/SearchSmall.svelte -->
|
|
2
1
|
<script lang="ts">
|
|
3
2
|
import IconBase from "../IconBase.svelte";
|
|
4
|
-
import type { IconProps } from "../types";
|
|
5
|
-
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
|
+
|
|
5
|
+
const props: IconProps & { mode?: IconMode } = $props();
|
|
6
6
|
</script>
|
|
7
7
|
|
|
8
8
|
<IconBase
|
|
9
9
|
{...props}
|
|
10
10
|
mode="solid"
|
|
11
11
|
viewBox="0 0 8 8"
|
|
12
|
-
ariaLabel={props.ariaLabel ?? "
|
|
13
|
-
title={props.title ?? ""}
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Buscar"}
|
|
13
|
+
title={props.title ?? "Search Small"}
|
|
14
14
|
>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M3.5 0C1.57 0 0 1.57 0 3.5S1.57 7 3.5 7c.74 0 1.42-.23 1.97-.63l1.1 1.1c.3.3.77.3 1.06 0 .3-.3.3-.77 0-1.06l-1.1-1.1c.4-.55.63-1.23.63-1.97C7.16 1.57 5.43 0 3.5 0zm0 1.5c1.1 0 2 0.9 2 2s-0.9 2-2 2-2-0.9-2-2 0.9-2 2-2z"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
18
21
|
</IconBase>
|
|
22
|
+
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const MagnifiyingGlass: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type MagnifiyingGlass = ReturnType<typeof MagnifiyingGlass>;
|
|
4
7
|
export default MagnifiyingGlass;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
|
+
|
|
5
|
+
const props: IconProps & { mode?: IconMode } = $props();
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<IconBase
|
|
9
|
+
{...props}
|
|
10
|
+
mode="solid"
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Pausar"}
|
|
13
|
+
title={props.title ?? "Pause"}
|
|
14
|
+
>
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M16 19q-.825 0-1.412-.587T14 17V7q0-.825.588-1.412T16 5t1.413.588T18 7v10q0 .825-.587 1.413T16 19m-8 0q-.825 0-1.412-.587T6 17V7q0-.825.588-1.412T8 5t1.413.588T10 7v10q0 .825-.587 1.413T8 19"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
21
|
+
</IconBase>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
|
+
|
|
5
|
+
const props: IconProps & { mode?: IconMode } = $props();
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<IconBase
|
|
9
|
+
{...props}
|
|
10
|
+
mode="solid"
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Reproducir"}
|
|
13
|
+
title={props.title ?? "Play"}
|
|
14
|
+
>
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M8 17.175V6.825q0-.425.3-.713t.7-.287q.125 0 .263.037t.262.113l8.15 5.175q.225.15.338.375t.112.475t-.112.475t-.338.375l-8.15 5.175q-.125.075-.262.113T9 18.175q-.4 0-.7-.288t-.3-.712"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
21
|
+
</IconBase>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
|
+
|
|
5
|
+
const props: IconProps & { mode?: IconMode } = $props();
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<IconBase
|
|
9
|
+
{...props}
|
|
10
|
+
mode="solid"
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Conexiones"}
|
|
13
|
+
title={props.title ?? "Connections"}
|
|
14
|
+
>
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M16 20q-.425 0-.712-.288T15 19v-1h-3q-.425 0-.712-.288T11 17v-4H9v1q0 .425-.288.713T8 15H3q-.425 0-.712-.288T2 14v-4q0-.425.288-.712T3 9h5q.425 0 .713.288T9 10v1h2V7q0-.425.288-.712T12 6h3V5q0-.425.288-.712T16 4h5q.425 0 .713.288T22 5v4q0 .425-.288.713T21 10h-5q-.425 0-.712-.288T15 9V8h-2v8h2v-1q0-.425.288-.712T16 14h5q.425 0 .713.288T22 15v4q0 .425-.288.713T21 20z"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
21
|
+
</IconBase>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const Process: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
6
|
+
type Process = ReturnType<typeof Process>;
|
|
7
|
+
export default Process;
|
|
@@ -1,13 +1,21 @@
|
|
|
1
|
-
<!-- src/lib/icons/Settings.svelte -->
|
|
2
1
|
<script lang="ts">
|
|
3
2
|
import IconBase from "../IconBase.svelte";
|
|
4
|
-
import type { IconProps } from "../types";
|
|
5
|
-
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
|
+
|
|
5
|
+
const props: IconProps & { mode?: IconMode } = $props();
|
|
6
6
|
</script>
|
|
7
7
|
|
|
8
|
-
<IconBase
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
<IconBase
|
|
9
|
+
{...props}
|
|
10
|
+
mode="solid"
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Configuración"}
|
|
13
|
+
title={props.title ?? "Settings"}
|
|
14
|
+
>
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M19.14 12.94c.04-.3.06-.61.06-.94s-.02-.64-.06-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54a.49.49 0 0 0-.48-.41h-3.84a.49.49 0 0 0-.48.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.07-.47 0-.59.22L2.65 8.87c-.11.21-.06.47.12.61l2.03 1.58c-.04.3-.06.61-.06.94s.02.64.06.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.27.41.48.41h3.84c.21 0 .43-.17.48-.41l.36-2.54c.59-.24 1.13-.57 1.62-.94l2.39.96c.22.07.47 0 .59-.22l1.92-3.32c.11-.21.06-.47-.12-.61l-2.03-1.58zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5z"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
13
21
|
</IconBase>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const Settings: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type Settings = ReturnType<typeof Settings>;
|
|
4
7
|
export default Settings;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
|
+
|
|
5
|
+
const props: IconProps & { mode?: IconMode } = $props();
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<IconBase
|
|
9
|
+
{...props}
|
|
10
|
+
mode="solid"
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Cámara con sincronización"}
|
|
13
|
+
title={props.title ?? "Camera Sync"}
|
|
14
|
+
>
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M8 17q-.825 0-1.412-.587T6 15V9q0-.825.588-1.412T8 7h1l.7-.7q.15-.15.338-.225T10.425 6h3.15q.2 0 .388.075t.337.225l.7.7h1q.825 0 1.412.588T18 9v6q0 .825-.587 1.413T16 17zm4-3q.825 0 1.413-.587T14 12t-.587-1.412T12 10t-1.412.588T10 12t.588 1.413T12 14m0 10q-4.4 0-7.712-2.762T.174 14.275Q.1 13.85.337 13.5T1 13.1t.75.213t.4.687q.65 3.275 3.113 5.475T11.1 21.95l-.85-.85q-.275-.275-.275-.7t.275-.7t.7-.275t.7.275l3.3 3.3q.175.175.113.4t-.288.275q-.675.175-1.362.25T12 24m0-24q4.4 0 7.713 2.75t4.112 6.975q.075.425-.162.775t-.663.4t-.75-.213t-.4-.687q-.65-3.275-3.113-5.475T12.9 2.05l.85.85q.275.275.275.7t-.275.7t-.7.275t-.7-.275L9.05 1Q8.875.825 8.938.6t.287-.275Q9.9.15 10.588.075T12 0"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
21
|
+
</IconBase>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const SyncPhoto: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
6
|
+
type SyncPhoto = ReturnType<typeof SyncPhoto>;
|
|
7
|
+
export default SyncPhoto;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import IconBase from "../IconBase.svelte";
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
|
+
|
|
5
|
+
const props: IconProps & { mode?: IconMode } = $props();
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<IconBase
|
|
9
|
+
{...props}
|
|
10
|
+
mode="solid"
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Archivo con configuración"}
|
|
13
|
+
title={props.title ?? "File Settings"}
|
|
14
|
+
>
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M7 11h3q.425 0 .713-.288T11 10t-.288-.712T10 9H7q-.425 0-.712.288T6 10t.288.713T7 11m-3 9q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h17.025q.275 0 .45.15t.175.4q0 .275-.187.438t-.438.112q-.2-.05-.462-.075T20 5q-2.075 0-3.537 1.463T15 10q0 .55.1 1.05t.3.95H14q-1.25 0-2.125.875T11 15v1q-.7.5-1.175 1.213t-.675 1.562q-.125.5-.5.863T7.775 20zm10 1q.425 0 .713-.288T15 20t-.288-.712T14 19t-.712.288T13 20t.288.713T14 21m6-10q.425 0 .713-.288T21 10t-.288-.712T20 9t-.712.288T19 10t.288.713T20 11m-8.125 11.125Q11 21.25 11 20q0-.975.563-1.75T13 17.175V15q0-.425.288-.712T14 14h5v-1.175q-.875-.3-1.437-1.075T17 10q0-1.25.875-2.125T20 7t2.125.875T23 10q0 .975-.562 1.75T21 12.825V15q0 .425-.288.713T20 16h-5v1.175q.875.3 1.438 1.075T17 20q0 1.25-.875 2.125T14 23t-2.125-.875M10 15q.425 0 .713-.288T11 14t-.288-.712T10 13H7q-.425 0-.712.288T6 14t.288.713T7 15z"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
21
|
+
</IconBase>
|
package/dist/icons/registry.d.ts
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
import type { Component } from "svelte";
|
|
2
2
|
export declare const iconRegistry: {
|
|
3
|
-
readonly home: Component<import("..").IconProps
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
readonly
|
|
7
|
-
|
|
3
|
+
readonly home: Component<import("..").IconProps & {
|
|
4
|
+
mode?: import("..").IconMode;
|
|
5
|
+
}, {}, "">;
|
|
6
|
+
readonly dashboard: Component<import("..").IconProps & {
|
|
7
|
+
mode?: import("..").IconMode;
|
|
8
|
+
}, {}, "">;
|
|
9
|
+
readonly dashboardOutline: Component<import("..").IconProps & {
|
|
10
|
+
mode?: import("..").IconMode;
|
|
11
|
+
}, {}, "">;
|
|
12
|
+
readonly settings: Component<import("..").IconProps & {
|
|
13
|
+
mode?: import("..").IconMode;
|
|
14
|
+
}, {}, "">;
|
|
15
|
+
readonly search: Component<import("..").IconProps & {
|
|
16
|
+
mode?: import("..").IconMode;
|
|
17
|
+
}, {}, "">;
|
|
8
18
|
readonly menu: Component<import("..").IconProps, {}, "">;
|
|
9
19
|
readonly close: Component<import("..").IconProps, {}, "">;
|
|
10
20
|
readonly plus: Component<import("..").IconProps, {}, "">;
|
|
@@ -22,8 +32,12 @@ export declare const iconRegistry: {
|
|
|
22
32
|
readonly lockOpen: Component<import("..").IconProps, {}, "">;
|
|
23
33
|
readonly key: Component<import("..").IconProps, {}, "">;
|
|
24
34
|
readonly logout: Component<import("..").IconProps, {}, "">;
|
|
25
|
-
readonly eye: Component<import("..").IconProps
|
|
26
|
-
|
|
35
|
+
readonly eye: Component<import("..").IconProps & {
|
|
36
|
+
mode?: import("..").IconMode;
|
|
37
|
+
}, {}, "">;
|
|
38
|
+
readonly eyeOff: Component<import("..").IconProps & {
|
|
39
|
+
mode?: import("..").IconMode;
|
|
40
|
+
}, {}, "">;
|
|
27
41
|
readonly shield: Component<import("..").IconProps, {}, "">;
|
|
28
42
|
readonly fingerprint: Component<import("..").IconProps, {}, "">;
|
|
29
43
|
readonly contact: Component<import("..").IconProps, {}, "">;
|
|
@@ -31,7 +45,9 @@ export declare const iconRegistry: {
|
|
|
31
45
|
readonly email: Component<import("..").IconProps, {}, "">;
|
|
32
46
|
readonly emailAnimated: Component<import("..").IconProps, {}, "">;
|
|
33
47
|
readonly phone: Component<import("..").IconProps, {}, "">;
|
|
34
|
-
readonly bell: Component<import("..").IconProps
|
|
48
|
+
readonly bell: Component<import("..").IconProps & {
|
|
49
|
+
mode?: import("..").IconMode;
|
|
50
|
+
}, {}, "">;
|
|
35
51
|
readonly send: Component<import("..").IconProps, {}, "">;
|
|
36
52
|
readonly share: Component<import("..").IconProps, {}, "">;
|
|
37
53
|
readonly world: Component<import("..").IconProps, {}, "">;
|
|
@@ -46,11 +62,15 @@ export declare const iconRegistry: {
|
|
|
46
62
|
readonly cost: Component<import("..").IconProps, {}, "">;
|
|
47
63
|
readonly exchange: Component<import("..").IconProps, {}, "">;
|
|
48
64
|
readonly swap: Component<import("..").IconProps, {}, "">;
|
|
49
|
-
readonly bank: Component<import("..").IconProps
|
|
65
|
+
readonly bank: Component<import("..").IconProps & {
|
|
66
|
+
mode?: import("..").IconMode;
|
|
67
|
+
}, {}, "">;
|
|
50
68
|
readonly pay: Component<import("..").IconProps, {}, "">;
|
|
51
69
|
readonly creditCard: Component<import("..").IconProps, {}, "">;
|
|
52
70
|
readonly receipt: Component<import("..").IconProps, {}, "">;
|
|
53
|
-
readonly buy: Component<import("..").IconProps
|
|
71
|
+
readonly buy: Component<import("..").IconProps & {
|
|
72
|
+
mode?: import("..").IconMode;
|
|
73
|
+
}, {}, "">;
|
|
54
74
|
readonly chart: Component<import("..").IconProps, {}, "">;
|
|
55
75
|
readonly chartDocument: Component<import("..").IconProps, {}, "">;
|
|
56
76
|
readonly chartSquare: Component<import("..").IconProps, {}, "">;
|
|
@@ -78,18 +98,29 @@ export declare const iconRegistry: {
|
|
|
78
98
|
readonly imageAnimated: Component<import("..").IconProps, {}, "">;
|
|
79
99
|
readonly folder: Component<import("..").IconProps, {}, "">;
|
|
80
100
|
readonly folderShared: Component<import("..").IconProps, {}, "">;
|
|
81
|
-
readonly attachment: Component<import("..").IconProps
|
|
101
|
+
readonly attachment: Component<import("..").IconProps & {
|
|
102
|
+
mode?: import("..").IconMode;
|
|
103
|
+
}, {}, "">;
|
|
82
104
|
readonly save: Component<import("..").IconProps, {}, "">;
|
|
83
105
|
readonly form: Component<import("..").IconProps, {}, "">;
|
|
84
106
|
readonly print: Component<import("..").IconProps, {}, "">;
|
|
85
|
-
readonly
|
|
86
|
-
|
|
107
|
+
readonly work: Component<import("..").IconProps & {
|
|
108
|
+
mode?: import("..").IconMode;
|
|
109
|
+
}, {}, "">;
|
|
110
|
+
readonly calendar: Component<import("..").IconProps & {
|
|
111
|
+
mode?: import("..").IconMode;
|
|
112
|
+
}, {}, "">;
|
|
113
|
+
readonly calendarPlus: Component<import("..").IconProps & {
|
|
114
|
+
mode?: import("..").IconMode;
|
|
115
|
+
}, {}, "">;
|
|
87
116
|
readonly calendarEdit: Component<import("..").IconProps, {}, "">;
|
|
88
117
|
readonly timer: Component<import("..").IconProps, {}, "">;
|
|
89
118
|
readonly arrowRight: Component<import("..").IconProps, {}, "">;
|
|
90
119
|
readonly arrowUp: Component<import("..").IconProps, {}, "">;
|
|
91
120
|
readonly arrowUpDown: Component<import("..").IconProps, {}, "">;
|
|
92
|
-
readonly arrowLeftAnimated: Component<import("..").IconProps
|
|
121
|
+
readonly arrowLeftAnimated: Component<import("..").IconProps & {
|
|
122
|
+
mode?: import("..").IconMode;
|
|
123
|
+
}, {}, "">;
|
|
93
124
|
readonly chevronDown: Component<import("..").IconProps, {}, "">;
|
|
94
125
|
readonly chevronUpDown: Component<import("..").IconProps, {}, "">;
|
|
95
126
|
readonly download: Component<import("..").IconProps, {}, "">;
|
|
@@ -99,6 +130,30 @@ export declare const iconRegistry: {
|
|
|
99
130
|
readonly uploadProgress: Component<import("..").IconProps, {}, "">;
|
|
100
131
|
readonly fileUploadAnimated: Component<import("..").IconProps, {}, "">;
|
|
101
132
|
readonly refresh: Component<import("..").IconProps, {}, "">;
|
|
133
|
+
readonly syncPhoto: Component<import("..").IconProps & {
|
|
134
|
+
mode?: import("..").IconMode;
|
|
135
|
+
}, {}, "">;
|
|
136
|
+
readonly process: Component<import("..").IconProps & {
|
|
137
|
+
mode?: import("..").IconMode;
|
|
138
|
+
}, {}, "">;
|
|
139
|
+
readonly play: Component<import("..").IconProps & {
|
|
140
|
+
mode?: import("..").IconMode;
|
|
141
|
+
}, {}, "">;
|
|
142
|
+
readonly pause: Component<import("..").IconProps & {
|
|
143
|
+
mode?: import("..").IconMode;
|
|
144
|
+
}, {}, "">;
|
|
145
|
+
readonly historic: Component<import("..").IconProps & {
|
|
146
|
+
mode?: import("..").IconMode;
|
|
147
|
+
}, {}, "">;
|
|
148
|
+
readonly hardDrive: Component<import("..").IconProps & {
|
|
149
|
+
mode?: import("..").IconMode;
|
|
150
|
+
}, {}, "">;
|
|
151
|
+
readonly connect: Component<import("..").IconProps & {
|
|
152
|
+
mode?: import("..").IconMode;
|
|
153
|
+
}, {}, "">;
|
|
154
|
+
readonly archive: Component<import("..").IconProps & {
|
|
155
|
+
mode?: import("..").IconMode;
|
|
156
|
+
}, {}, "">;
|
|
102
157
|
readonly check: Component<import("..").IconProps, {}, "">;
|
|
103
158
|
readonly checkOutline: Component<import("..").IconProps, {}, "">;
|
|
104
159
|
readonly checkList: Component<import("..").IconProps, {}, "">;
|
|
@@ -117,7 +172,9 @@ export declare const iconRegistry: {
|
|
|
117
172
|
readonly heart: Component<import("..").IconProps, {}, "">;
|
|
118
173
|
readonly reset: Component<import("..").IconProps, {}, "">;
|
|
119
174
|
readonly height: Component<import("..").IconProps, {}, "">;
|
|
120
|
-
readonly alternate: Component<import("..").IconProps
|
|
175
|
+
readonly alternate: Component<import("..").IconProps & {
|
|
176
|
+
mode?: import("..").IconMode;
|
|
177
|
+
}, {}, "">;
|
|
121
178
|
readonly moon: Component<import("..").IconProps, {}, "">;
|
|
122
179
|
readonly sun: Component<import("..").IconProps, {}, "">;
|
|
123
180
|
readonly colors: Component<import("..").IconProps, {}, "">;
|
|
@@ -132,9 +189,13 @@ export declare const iconRegistry: {
|
|
|
132
189
|
readonly category: Component<import("..").IconProps, {}, "">;
|
|
133
190
|
readonly categoryAdd: Component<import("..").IconProps, {}, "">;
|
|
134
191
|
readonly categorySearch: Component<import("..").IconProps, {}, "">;
|
|
135
|
-
readonly boxAdd: Component<import("..").IconProps
|
|
192
|
+
readonly boxAdd: Component<import("..").IconProps & {
|
|
193
|
+
mode?: import("..").IconMode;
|
|
194
|
+
}, {}, "">;
|
|
136
195
|
readonly measure: Component<import("..").IconProps, {}, "">;
|
|
137
|
-
readonly box: Component<import("..").IconProps
|
|
196
|
+
readonly box: Component<import("..").IconProps & {
|
|
197
|
+
mode?: import("..").IconMode;
|
|
198
|
+
}, {}, "">;
|
|
138
199
|
readonly scan: Component<import("..").IconProps, {}, "">;
|
|
139
200
|
readonly cart: Component<import("..").IconProps, {}, "">;
|
|
140
201
|
readonly cards: Component<import("..").IconProps, {}, "">;
|
|
@@ -148,8 +209,12 @@ export declare const iconRegistry: {
|
|
|
148
209
|
readonly editOutline: Component<import("..").IconProps, {}, "">;
|
|
149
210
|
readonly trash: Component<import("..").IconProps, {}, "">;
|
|
150
211
|
readonly trashOutline: Component<import("..").IconProps, {}, "">;
|
|
151
|
-
readonly filter: Component<import("..").IconProps
|
|
152
|
-
|
|
212
|
+
readonly filter: Component<import("..").IconProps & {
|
|
213
|
+
mode?: import("..").IconMode;
|
|
214
|
+
}, {}, "">;
|
|
215
|
+
readonly filterOutline: Component<import("..").IconProps & {
|
|
216
|
+
mode?: import("..").IconMode;
|
|
217
|
+
}, {}, "">;
|
|
153
218
|
readonly tags: Component<import("..").IconProps, {}, "">;
|
|
154
219
|
readonly tools: Component<import("..").IconProps, {}, "">;
|
|
155
220
|
readonly objectGroup: Component<import("..").IconProps, {}, "">;
|
package/dist/icons/registry.js
CHANGED
|
@@ -161,6 +161,15 @@ import Power from "./Power.svelte";
|
|
|
161
161
|
import Receipt from "./Receipt.svelte";
|
|
162
162
|
import Sync from "./Sync.svelte";
|
|
163
163
|
import Wifi from "./Wifi.svelte";
|
|
164
|
+
import SyncPhoto from "./SyncPhoto.svelte";
|
|
165
|
+
import Process from "./Process.svelte";
|
|
166
|
+
import Play from "./Play.svelte";
|
|
167
|
+
import Pause from "./Pause.svelte";
|
|
168
|
+
import Historic from "./Historic.svelte";
|
|
169
|
+
import HardDrive from "./HardDrive.svelte";
|
|
170
|
+
import Connect from "./Connect.svelte";
|
|
171
|
+
import Archive from "./Archive.svelte";
|
|
172
|
+
import Work from "./Work.svelte";
|
|
164
173
|
// 🔑 Catálogo central de íconos - usando directamente los componentes
|
|
165
174
|
export const iconRegistry = {
|
|
166
175
|
// — Navegación y layout —
|
|
@@ -251,6 +260,7 @@ export const iconRegistry = {
|
|
|
251
260
|
save: Save,
|
|
252
261
|
form: Form,
|
|
253
262
|
print: Print,
|
|
263
|
+
work: Work,
|
|
254
264
|
// — Calendario y tiempo —
|
|
255
265
|
calendar: Calendar,
|
|
256
266
|
calendarPlus: CalendarPlus,
|
|
@@ -271,6 +281,14 @@ export const iconRegistry = {
|
|
|
271
281
|
uploadProgress: UploadLoader,
|
|
272
282
|
fileUploadAnimated: FileUpdateAnimated,
|
|
273
283
|
refresh: Refresh,
|
|
284
|
+
syncPhoto: SyncPhoto,
|
|
285
|
+
process: Process,
|
|
286
|
+
play: Play,
|
|
287
|
+
pause: Pause,
|
|
288
|
+
historic: Historic,
|
|
289
|
+
hardDrive: HardDrive,
|
|
290
|
+
connect: Connect,
|
|
291
|
+
archive: Archive,
|
|
274
292
|
// — Estados y feedback —
|
|
275
293
|
check: Check,
|
|
276
294
|
checkOutline: CheckO,
|
package/dist/icons-api.d.ts
CHANGED
|
@@ -86,6 +86,15 @@ export declare const bzIcons: {
|
|
|
86
86
|
readonly Save: "save";
|
|
87
87
|
readonly Form: "form";
|
|
88
88
|
readonly Print: "print";
|
|
89
|
+
readonly Work: "work";
|
|
90
|
+
readonly SyncPhoto: "syncPhoto";
|
|
91
|
+
readonly Process: "process";
|
|
92
|
+
readonly Play: "play";
|
|
93
|
+
readonly Pause: "pause";
|
|
94
|
+
readonly Historic: "historic";
|
|
95
|
+
readonly HardDrive: "hardDrive";
|
|
96
|
+
readonly Connect: "connect";
|
|
97
|
+
readonly Archive: "archive";
|
|
89
98
|
readonly Calendar: "calendar";
|
|
90
99
|
readonly CalendarPlus: "calendarPlus";
|
|
91
100
|
readonly CalendarEdit: "calendarEdit";
|
package/dist/icons-api.js
CHANGED
|
@@ -91,6 +91,15 @@ export const bzIcons = {
|
|
|
91
91
|
Save: "save",
|
|
92
92
|
Form: "form",
|
|
93
93
|
Print: "print",
|
|
94
|
+
Work: "work",
|
|
95
|
+
SyncPhoto: "syncPhoto",
|
|
96
|
+
Process: "process",
|
|
97
|
+
Play: "play",
|
|
98
|
+
Pause: "pause",
|
|
99
|
+
Historic: "historic",
|
|
100
|
+
HardDrive: "hardDrive",
|
|
101
|
+
Connect: "connect",
|
|
102
|
+
Archive: "archive",
|
|
94
103
|
// — Calendario y tiempo —
|
|
95
104
|
Calendar: "calendar",
|
|
96
105
|
CalendarPlus: "calendarPlus",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genarou/blazir-icons",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -38,6 +38,17 @@
|
|
|
38
38
|
"README.md",
|
|
39
39
|
"LICENSE"
|
|
40
40
|
],
|
|
41
|
+
"scripts": {
|
|
42
|
+
"dev": "vite",
|
|
43
|
+
"build": "svelte-package",
|
|
44
|
+
"preview": "vite preview",
|
|
45
|
+
"prepublishOnly": "npm run build",
|
|
46
|
+
"clean": "rm -rf dist",
|
|
47
|
+
"prebuild": "npm run clean",
|
|
48
|
+
"try": "npm run build && vite --config play/vite.config.js",
|
|
49
|
+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
50
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
|
51
|
+
},
|
|
41
52
|
"devDependencies": {
|
|
42
53
|
"@sveltejs/kit": "^2.47.1",
|
|
43
54
|
"@sveltejs/package": "^2.5.0",
|
|
@@ -64,15 +75,5 @@
|
|
|
64
75
|
"homepage": "https://github.com/GenaroUG/blazir-icons#readme",
|
|
65
76
|
"bugs": {
|
|
66
77
|
"url": "https://github.com/GenaroUG/blazir-icons/issues"
|
|
67
|
-
},
|
|
68
|
-
"scripts": {
|
|
69
|
-
"dev": "vite",
|
|
70
|
-
"build": "svelte-package",
|
|
71
|
-
"preview": "vite preview",
|
|
72
|
-
"clean": "rm -rf dist",
|
|
73
|
-
"prebuild": "npm run clean",
|
|
74
|
-
"try": "npm run build && vite --config play/vite.config.js",
|
|
75
|
-
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
76
|
-
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
|
77
78
|
}
|
|
78
|
-
}
|
|
79
|
+
}
|