@genarou/blazir-icons 1.3.3 → 1.3.4

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.
@@ -1,8 +1,8 @@
1
1
  <script lang="ts">
2
2
  import IconBase from "../IconBase.svelte";
3
- import type { IconMode, IconProps } from "../types.js";
3
+ import type { IconProps } from "../types.js";
4
4
 
5
- const props: IconProps & { mode?: IconMode } = $props();
5
+ const props: IconProps = $props();
6
6
  </script>
7
7
 
8
8
  <IconBase
@@ -1,7 +1,4 @@
1
- import type { IconMode, IconProps } from "../types.js";
2
- type $$ComponentProps = IconProps & {
3
- mode?: IconMode;
4
- };
5
- declare const Filter: import("svelte").Component<$$ComponentProps, {}, "">;
1
+ import type { IconProps } from "../types.js";
2
+ declare const Filter: import("svelte").Component<IconProps, {}, "">;
6
3
  type Filter = ReturnType<typeof Filter>;
7
4
  export default Filter;
@@ -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={props.mode ?? "solid"}
11
+ viewBox="0 0 24 24"
12
+ ariaLabel={props.ariaLabel ?? "Código QR"}
13
+ title={props.title ?? "QR Code"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M13 21v-2h2v2zm-2-2v-5h2v5zm8-3v-4h2v4zm-2-4v-2h2v2zM5 14v-2h2v2zm-2-2v-2h2v2zm9-7V3h2v2zM4.5 7.5h3v-3h-3zM3 8V4q0-.425.288-.712T4 3h4q.425 0 .713.288T9 4v4q0 .425-.288.713T8 9H4q-.425 0-.712-.288T3 8m1.5 11.5h3v-3h-3zM3 20v-4q0-.425.288-.712T4 15h4q.425 0 .713.288T9 16v4q0 .425-.288.713T8 21H4q-.425 0-.712-.288T3 20M16.5 7.5h3v-3h-3zM15 8V4q0-.425.288-.712T16 3h4q.425 0 .713.288T21 4v4q0 .425-.288.713T20 9h-4q-.425 0-.712-.288T15 8m2 13v-3h-2v-2h4v3h2v2zm-4-7v-2h4v2zm-4 0v-2H7v-2h6v2h-2v2zm1-5V5h2v2h2v2zM5.25 6.75v-1.5h1.5v1.5zm0 12v-1.5h1.5v1.5zm12-12v-1.5h1.5v1.5z"
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 Qr: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type Qr = ReturnType<typeof Qr>;
7
+ export default Qr;
@@ -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={props.mode ?? "solid"}
11
+ viewBox="0 0 24 24"
12
+ ariaLabel={props.ariaLabel ?? "Usuario protegido"}
13
+ title={props.title ?? "Protected User"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M18 22q-1.825-.45-2.912-2T14 16.55V14l4-2l4 2v2.55q0 1.9-1.088 3.45T18 22M4 20v-2.8q0-.85.438-1.562T5.6 14.55q1.55-.775 3.15-1.162T12 13v3.55q0 .9.188 1.775T12.775 20zm5.175-9.175Q8 9.65 8 8t1.175-2.825T12 4t2.825 1.175T16 8t-1.175 2.825T12 12t-2.825-1.175"
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 UserShield: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type UserShield = ReturnType<typeof UserShield>;
7
+ export default UserShield;
@@ -28,6 +28,7 @@ const _loaders = {
28
28
  more: () => import('./More.svelte'),
29
29
  // — Usuarios y autenticación —
30
30
  user: () => import('./User.svelte'),
31
+ userShield: () => import('./UserShield.svelte'),
31
32
  userTie: () => import('./UserTie.svelte'),
32
33
  team: () => import('./Team.svelte'),
33
34
  group: () => import('./Group.svelte'),
@@ -101,6 +102,7 @@ const _loaders = {
101
102
  save: () => import('./Save.svelte'),
102
103
  form: () => import('./Form.svelte'),
103
104
  print: () => import('./Print.svelte'),
105
+ work: () => import('./Work.svelte'),
104
106
  // — Calendario y tiempo —
105
107
  calendar: () => import('./Calendar.svelte'),
106
108
  calendarPlus: () => import('./CalendarPlus.svelte'),
@@ -121,6 +123,14 @@ const _loaders = {
121
123
  uploadProgress: () => import('./UploadLoader.svelte'),
122
124
  fileUploadAnimated: () => import('./FileUploadAnimated.svelte'),
123
125
  refresh: () => import('./Update.svelte'),
126
+ syncPhoto: () => import('./SyncPhoto.svelte'),
127
+ process: () => import('./Process.svelte'),
128
+ play: () => import('./Play.svelte'),
129
+ pause: () => import('./Pause.svelte'),
130
+ historic: () => import('./Historic.svelte'),
131
+ hardDrive: () => import('./HardDrive.svelte'),
132
+ connect: () => import('./Connect.svelte'),
133
+ archive: () => import('./Archive.svelte'),
124
134
  // — Estados y feedback —
125
135
  check: () => import('./Check.svelte'),
126
136
  checkOutline: () => import('./CheckO.svelte'),
@@ -172,7 +182,7 @@ const _loaders = {
172
182
  editOutline: () => import('./EditOutline.svelte'),
173
183
  trash: () => import('./Trash.svelte'),
174
184
  trashOutline: () => import('./TrashOutline.svelte'),
175
- filter: () => import('./FilterOutline.svelte'),
185
+ filter: () => import('./Filter.svelte'),
176
186
  filterOutline: () => import('./FilterOutline.svelte'),
177
187
  tags: () => import('./Tags.svelte'),
178
188
  tools: () => import('./Tools.svelte'),
@@ -192,6 +202,7 @@ const _loaders = {
192
202
  earth: () => import('./Earth.svelte'),
193
203
  globe: () => import('./Globe.svelte'),
194
204
  lightHub: () => import('./LightHub.svelte'),
205
+ qr: () => import('./Qr.svelte'),
195
206
  sync: () => import('./Sync.svelte'),
196
207
  };
197
208
  // ============================================================================
@@ -23,6 +23,9 @@ export declare const iconRegistry: {
23
23
  readonly sidebar: Component<import("..").IconProps, {}, "">;
24
24
  readonly more: Component<import("..").IconProps, {}, "">;
25
25
  readonly user: Component<import("..").IconProps, {}, "">;
26
+ readonly userShield: Component<import("..").IconProps & {
27
+ mode?: import("..").IconMode;
28
+ }, {}, "">;
26
29
  readonly userTie: Component<import("..").IconProps, {}, "">;
27
30
  readonly team: Component<import("..").IconProps, {}, "">;
28
31
  readonly group: Component<import("..").IconProps, {}, "">;
@@ -209,9 +212,7 @@ export declare const iconRegistry: {
209
212
  readonly editOutline: Component<import("..").IconProps, {}, "">;
210
213
  readonly trash: Component<import("..").IconProps, {}, "">;
211
214
  readonly trashOutline: Component<import("..").IconProps, {}, "">;
212
- readonly filter: Component<import("..").IconProps & {
213
- mode?: import("..").IconMode;
214
- }, {}, "">;
215
+ readonly filter: Component<import("..").IconProps, {}, "">;
215
216
  readonly filterOutline: Component<import("..").IconProps & {
216
217
  mode?: import("..").IconMode;
217
218
  }, {}, "">;
@@ -230,6 +231,9 @@ export declare const iconRegistry: {
230
231
  readonly earth: Component<import("..").IconProps, {}, "">;
231
232
  readonly globe: Component<import("..").IconProps, {}, "">;
232
233
  readonly lightHub: Component<import("..").IconProps, {}, "">;
234
+ readonly qr: Component<import("..").IconProps & {
235
+ mode?: import("..").IconMode;
236
+ }, {}, "">;
233
237
  readonly sync: Component<import("..").IconProps, {}, "">;
234
238
  };
235
239
  export type IconName = keyof typeof iconRegistry;
@@ -59,6 +59,7 @@ import EyeOff from "./EyeOff.svelte";
59
59
  import Favorites from "./Favorites.svelte";
60
60
  import File from "./File.svelte";
61
61
  import FileUpdateAnimated from "./FileUploadAnimated.svelte";
62
+ import Filter from "./Filter.svelte";
62
63
  import FilterOutline from "./FilterOutline.svelte";
63
64
  import Fingerprint from "./Fingerprint.svelte";
64
65
  import Folder from "./Folder.svelte";
@@ -135,7 +136,9 @@ import UpDownArrow from "./UpDownArrow.svelte";
135
136
  import Upload from "./Upload.svelte";
136
137
  import UploadAnimated from "./UploadAnimated.svelte";
137
138
  import UploadLoader from "./UploadLoader.svelte";
139
+ import Qr from "./Qr.svelte";
138
140
  import User from "./User.svelte";
141
+ import UserShield from "./UserShield.svelte";
139
142
  import UserTie from "./UserTie.svelte";
140
143
  import Wallet from "./Wallet.svelte";
141
144
  import Warehouse from "./Warehouse.svelte";
@@ -187,6 +190,7 @@ export const iconRegistry = {
187
190
  more: More,
188
191
  // — Usuarios y autenticación —
189
192
  user: User,
193
+ userShield: UserShield,
190
194
  userTie: UserTie,
191
195
  team: Team,
192
196
  group: Group,
@@ -340,7 +344,7 @@ export const iconRegistry = {
340
344
  editOutline: EditOutline,
341
345
  trash: Trash,
342
346
  trashOutline: TrashOutline,
343
- filter: FilterOutline,
347
+ filter: Filter,
344
348
  filterOutline: FilterOutline,
345
349
  tags: Tags,
346
350
  tools: Tools,
@@ -360,5 +364,6 @@ export const iconRegistry = {
360
364
  earth: Earth,
361
365
  globe: Globe,
362
366
  lightHub: LightHub,
367
+ qr: Qr,
363
368
  sync: Sync,
364
369
  };
@@ -17,6 +17,7 @@ export declare const bzIcons: {
17
17
  readonly Sidebar: "sidebar";
18
18
  readonly More: "more";
19
19
  readonly User: "user";
20
+ readonly UserShield: "userShield";
20
21
  readonly UserTie: "userTie";
21
22
  readonly Team: "team";
22
23
  readonly Group: "group";
@@ -173,6 +174,7 @@ export declare const bzIcons: {
173
174
  readonly Earth: "earth";
174
175
  readonly Globe: "globe";
175
176
  readonly LightHub: "lightHub";
177
+ readonly Qr: "qr";
176
178
  readonly Sync: "sync";
177
179
  };
178
180
  export type BzIconKey = keyof typeof bzIcons;
package/dist/icons-api.js CHANGED
@@ -18,6 +18,7 @@ export const bzIcons = {
18
18
  More: "more",
19
19
  // — Usuarios y autenticación —
20
20
  User: "user",
21
+ UserShield: "userShield",
21
22
  UserTie: "userTie",
22
23
  Team: "team",
23
24
  Group: "group",
@@ -189,5 +190,6 @@ export const bzIcons = {
189
190
  Earth: "earth",
190
191
  Globe: "globe",
191
192
  LightHub: "lightHub",
193
+ Qr: "qr",
192
194
  Sync: "sync",
193
195
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@genarou/blazir-icons",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "publishConfig": {