@payfit/unity-icons 2.55.22 → 2.56.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/package.json CHANGED
@@ -1,12 +1,17 @@
1
1
  {
2
2
  "name": "@payfit/unity-icons",
3
- "version": "2.55.22",
3
+ "version": "2.56.0",
4
4
  "module": "./dist/esm/index.js",
5
5
  "type": "module",
6
6
  "sideEffects": false,
7
7
  "storybook": {
8
8
  "url": "https://unity-icons.payfit.io/"
9
9
  },
10
+ "intent": {
11
+ "version": 1,
12
+ "repo": "PayFit/hr-apps",
13
+ "docs": "../../../../apps/shared/docsite/src/content/docs"
14
+ },
10
15
  "exports": {
11
16
  ".": {
12
17
  "import": {
@@ -37,6 +42,7 @@
37
42
  },
38
43
  "files": [
39
44
  "dist",
45
+ "skills",
40
46
  "src/agent-references"
41
47
  ],
42
48
  "peerDependencies": {
@@ -70,17 +76,17 @@
70
76
  "tsx": "4.20.5",
71
77
  "vite": "8.1.4",
72
78
  "vitest": "4.1.10",
73
- "@payfit/figma-tools": "0.0.0-use.local",
74
79
  "@payfit/hr-app-eslint": "0.0.0-use.local",
80
+ "@payfit/figma-tools": "0.0.0-use.local",
75
81
  "@payfit/hr-apps-tsconfigs": "0.0.0-use.local",
76
82
  "@payfit/storybook-config": "0.0.0-use.local",
77
- "@payfit/unity-themes": "2.55.22",
83
+ "@payfit/unity-themes": "2.56.0",
78
84
  "@payfit/vite-configs": "0.0.0-use.local"
79
85
  },
80
86
  "dependencies": {
81
87
  "react": "18.3.1",
82
88
  "react-dom": "18.3.1",
83
- "@payfit/unity-themes": "2.55.22"
89
+ "@payfit/unity-themes": "2.56.0"
84
90
  },
85
91
  "peerDependenciesMeta": {
86
92
  "storybook": {
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: unity-icons
3
+ description: Use when selecting a Unity icon, checking Filled/Outlined variants, or rendering an icon in Unity code. Search the canonical icon catalog first and use the source implementation only for usage details.
4
+ metadata:
5
+ type: core
6
+ library: '@payfit/unity-icons'
7
+ ---
8
+
9
+ ## Source of truth
10
+
11
+ - Read [src/agent-references/icons-catalog.json](../../src/agent-references/icons-catalog.json) first. It contains one entry per `baseName` and a `variants` list with the exact sprite names. Do not use the Storybook MCP projection for discovery when the JSON catalog is available.
12
+
13
+ For a targeted lookup, search the full JSON rather than reading an arbitrary slice:
14
+
15
+ ```sh
16
+ jq '.icons[] | select(.baseName | test("search|glass"; "i"))' \
17
+ libs/shared/unity/icons/src/agent-references/icons-catalog.json
18
+ ```
19
+
20
+ ## Standard operating procedure
21
+
22
+ 1. Extract the user's intent and likely synonyms, then search the complete catalog.
23
+ 2. Compare all plausible `baseName` matches and their available variants.
24
+ 3. Return the exact icon name, preserving its PascalCase spelling and suffix.
25
+ 4. Only inspect `src/components/icon/Icon.tsx`, `src/components/icon/parts/IconSprite.tsx`, or `src/components/icons-provider/UnityIconsProvider.tsx` when usage or API details are needed.
26
+ 5. Prefer `Icon` from `@payfit/unity-components` for product UI. Use `IconSprite` from `@payfit/unity-icons` only when the lower-level sprite API is specifically required.
27
+
28
+ ```tsx
29
+ import { Icon } from '@payfit/unity-components'
30
+ ;<Icon src="MagnifyingGlassOutlined" size={20} />
31
+ ```
32
+
33
+ Do not guess lowercase or kebab-case names, and do not cast arbitrary strings to `UnityIcon`; both bypass the typed sprite-id guard and can render an empty SVG.
34
+
35
+ For broader browsing, use the [Unity icon catalog](https://unity-icons.payfit.io/?path=/docs/reference-find-my-icon--docs).
@@ -0,0 +1,763 @@
1
+ {
2
+ "icons": [
3
+ {
4
+ "baseName": "Airplane",
5
+ "variants": ["AirplaneFilled", "AirplaneOutlined"]
6
+ },
7
+ {
8
+ "baseName": "Alarm",
9
+ "variants": ["AlarmFilled", "AlarmOutlined"]
10
+ },
11
+ {
12
+ "baseName": "ArrowCircleRight",
13
+ "variants": ["ArrowCircleRightFilled", "ArrowCircleRightOutlined"]
14
+ },
15
+ {
16
+ "baseName": "ArrowClockwise",
17
+ "variants": ["ArrowClockwiseFilled", "ArrowClockwiseOutlined"]
18
+ },
19
+ {
20
+ "baseName": "ArrowDown",
21
+ "variants": ["ArrowDownFilled", "ArrowDownOutlined"]
22
+ },
23
+ {
24
+ "baseName": "ArrowElbowRight",
25
+ "variants": ["ArrowElbowRightFilled", "ArrowElbowRightOutlined"]
26
+ },
27
+ {
28
+ "baseName": "ArrowFatLineUp",
29
+ "variants": ["ArrowFatLineUpFilled", "ArrowFatLineUpOutlined"]
30
+ },
31
+ {
32
+ "baseName": "ArrowLeft",
33
+ "variants": ["ArrowLeftFilled", "ArrowLeftOutlined"]
34
+ },
35
+ {
36
+ "baseName": "ArrowRight",
37
+ "variants": ["ArrowRightFilled", "ArrowRightOutlined"]
38
+ },
39
+ {
40
+ "baseName": "ArrowsOutSimple",
41
+ "variants": ["ArrowsOutSimpleFilled", "ArrowsOutSimpleOutlined"]
42
+ },
43
+ {
44
+ "baseName": "ArrowSquareOut",
45
+ "variants": ["ArrowSquareOutFilled", "ArrowSquareOutOutlined"]
46
+ },
47
+ {
48
+ "baseName": "ArrowUp",
49
+ "variants": ["ArrowUpFilled", "ArrowUpOutlined"]
50
+ },
51
+ {
52
+ "baseName": "ArrowUpAndRight",
53
+ "variants": ["ArrowUpAndRightFilled", "ArrowUpAndRightOutlined"]
54
+ },
55
+ {
56
+ "baseName": "ArrowUpRight",
57
+ "variants": ["ArrowUpRightFilled", "ArrowUpRightOutlined"]
58
+ },
59
+ {
60
+ "baseName": "ArrowUUpLeft",
61
+ "variants": ["ArrowUUpLeftFilled", "ArrowUUpLeftOutlined"]
62
+ },
63
+ {
64
+ "baseName": "At",
65
+ "variants": ["AtFilled", "AtOutlined"]
66
+ },
67
+ {
68
+ "baseName": "Baby",
69
+ "variants": ["BabyFilled", "BabyOutlined"]
70
+ },
71
+ {
72
+ "baseName": "BabyCarriage",
73
+ "variants": ["BabyCarriageFilled", "BabyCarriageOutlined"]
74
+ },
75
+ {
76
+ "baseName": "Badge",
77
+ "variants": ["BadgeFilled", "BadgeOutlined"]
78
+ },
79
+ {
80
+ "baseName": "Bank",
81
+ "variants": ["BankFilled", "BankOutlined"]
82
+ },
83
+ {
84
+ "baseName": "Bell",
85
+ "variants": ["BellFilled", "BellOutlined"]
86
+ },
87
+ {
88
+ "baseName": "BookOpenText",
89
+ "variants": ["BookOpenTextFilled", "BookOpenTextOutlined"]
90
+ },
91
+ {
92
+ "baseName": "Briefcase",
93
+ "variants": ["BriefcaseFilled", "BriefcaseOutlined"]
94
+ },
95
+ {
96
+ "baseName": "Browser",
97
+ "variants": ["BrowserFilled", "BrowserOutlined"]
98
+ },
99
+ {
100
+ "baseName": "Buildings",
101
+ "variants": ["BuildingsFilled", "BuildingsOutlined"]
102
+ },
103
+ {
104
+ "baseName": "Cake",
105
+ "variants": ["CakeFilled", "CakeOutlined"]
106
+ },
107
+ {
108
+ "baseName": "Calculator",
109
+ "variants": ["CalculatorFilled", "CalculatorOutlined"]
110
+ },
111
+ {
112
+ "baseName": "Calendar",
113
+ "variants": ["CalendarFilled", "CalendarOutlined"]
114
+ },
115
+ {
116
+ "baseName": "CalendarBlank",
117
+ "variants": ["CalendarBlankFilled", "CalendarBlankOutlined"]
118
+ },
119
+ {
120
+ "baseName": "CalendarCheck",
121
+ "variants": ["CalendarCheckFilled", "CalendarCheckOutlined"]
122
+ },
123
+ {
124
+ "baseName": "CalendarEvent",
125
+ "variants": ["CalendarEventFilled", "CalendarEventOutlined"]
126
+ },
127
+ {
128
+ "baseName": "CalendarMonth",
129
+ "variants": ["CalendarMonthFilled", "CalendarMonthOutlined"]
130
+ },
131
+ {
132
+ "baseName": "CalendarPlus",
133
+ "variants": ["CalendarPlusFilled", "CalendarPlusOutlined"]
134
+ },
135
+ {
136
+ "baseName": "CalendarX",
137
+ "variants": ["CalendarXFilled", "CalendarXOutlined"]
138
+ },
139
+ {
140
+ "baseName": "Camera",
141
+ "variants": ["CameraFilled", "CameraOutlined"]
142
+ },
143
+ {
144
+ "baseName": "CardsThree",
145
+ "variants": ["CardsThreeFilled", "CardsThreeOutlined"]
146
+ },
147
+ {
148
+ "baseName": "CaretDoubleRight",
149
+ "variants": ["CaretDoubleRightFilled", "CaretDoubleRightOutlined"]
150
+ },
151
+ {
152
+ "baseName": "CaretDown",
153
+ "variants": ["CaretDownFilled", "CaretDownOutlined"]
154
+ },
155
+ {
156
+ "baseName": "CaretLeft",
157
+ "variants": ["CaretLeftFilled", "CaretLeftOutlined"]
158
+ },
159
+ {
160
+ "baseName": "CaretRight",
161
+ "variants": ["CaretRightFilled", "CaretRightOutlined"]
162
+ },
163
+ {
164
+ "baseName": "CaretUp",
165
+ "variants": ["CaretUpFilled", "CaretUpOutlined"]
166
+ },
167
+ {
168
+ "baseName": "CaretUpDown",
169
+ "variants": ["CaretUpDownFilled", "CaretUpDownOutlined"]
170
+ },
171
+ {
172
+ "baseName": "ChargingStation",
173
+ "variants": ["ChargingStationFilled", "ChargingStationOutlined"]
174
+ },
175
+ {
176
+ "baseName": "Chart",
177
+ "variants": ["ChartFilled", "ChartOutlined"]
178
+ },
179
+ {
180
+ "baseName": "ChatQuestion",
181
+ "variants": ["ChatQuestionFilled", "ChatQuestionOutlined"]
182
+ },
183
+ {
184
+ "baseName": "Chats",
185
+ "variants": ["ChatsFilled", "ChatsOutlined"]
186
+ },
187
+ {
188
+ "baseName": "ChatWarning",
189
+ "variants": ["ChatWarningFilled", "ChatWarningOutlined"]
190
+ },
191
+ {
192
+ "baseName": "Check",
193
+ "variants": ["CheckFilled", "CheckOutlined"]
194
+ },
195
+ {
196
+ "baseName": "CheckCircle",
197
+ "variants": ["CheckCircleFilled", "CheckCircleOutlined"]
198
+ },
199
+ {
200
+ "baseName": "Clipboard",
201
+ "variants": ["ClipboardFilled", "ClipboardOutlined"]
202
+ },
203
+ {
204
+ "baseName": "ClipboardCheck",
205
+ "variants": ["ClipboardCheckFilled", "ClipboardCheckOutlined"]
206
+ },
207
+ {
208
+ "baseName": "ClockClockwise",
209
+ "variants": ["ClockClockwiseFilled", "ClockClockwiseOutlined"]
210
+ },
211
+ {
212
+ "baseName": "ClockCountdown",
213
+ "variants": ["ClockCountdownFilled", "ClockCountdownOutlined"]
214
+ },
215
+ {
216
+ "baseName": "ClockCounterClockwise",
217
+ "variants": [
218
+ "ClockCounterClockwiseFilled",
219
+ "ClockCounterClockwiseOutlined"
220
+ ]
221
+ },
222
+ {
223
+ "baseName": "Close",
224
+ "variants": ["CloseFilled", "CloseOutlined"]
225
+ },
226
+ {
227
+ "baseName": "CloseCircle",
228
+ "variants": ["CloseCircleFilled", "CloseCircleOutlined"]
229
+ },
230
+ {
231
+ "baseName": "CloudArrowDown",
232
+ "variants": ["CloudArrowDownFilled", "CloudArrowDownOutlined"]
233
+ },
234
+ {
235
+ "baseName": "CloudArrowUp",
236
+ "variants": ["CloudArrowUpFilled", "CloudArrowUpOutlined"]
237
+ },
238
+ {
239
+ "baseName": "CodeSimple",
240
+ "variants": ["CodeSimpleFilled", "CodeSimpleOutlined"]
241
+ },
242
+ {
243
+ "baseName": "Coins",
244
+ "variants": ["CoinsFilled", "CoinsOutlined"]
245
+ },
246
+ {
247
+ "baseName": "ContactlessPayment",
248
+ "variants": ["ContactlessPaymentFilled", "ContactlessPaymentOutlined"]
249
+ },
250
+ {
251
+ "baseName": "CopySimple",
252
+ "variants": ["CopySimpleFilled", "CopySimpleOutlined"]
253
+ },
254
+ {
255
+ "baseName": "CreditCard",
256
+ "variants": ["CreditCardFilled", "CreditCardOutlined"]
257
+ },
258
+ {
259
+ "baseName": "CreditCardPlus",
260
+ "variants": ["CreditCardPlusFilled", "CreditCardPlusOutlined"]
261
+ },
262
+ {
263
+ "baseName": "CurrencyEuro",
264
+ "variants": ["CurrencyEuroFilled", "CurrencyEuroOutlined"]
265
+ },
266
+ {
267
+ "baseName": "CurrencyPound",
268
+ "variants": ["CurrencyPoundFilled", "CurrencyPoundOutlined"]
269
+ },
270
+ {
271
+ "baseName": "Dashboard",
272
+ "variants": ["DashboardFilled", "DashboardOutlined"]
273
+ },
274
+ {
275
+ "baseName": "Devices",
276
+ "variants": ["DevicesFilled", "DevicesOutlined"]
277
+ },
278
+ {
279
+ "baseName": "DotsNine",
280
+ "variants": ["DotsNineFilled", "DotsNineOutlined"]
281
+ },
282
+ {
283
+ "baseName": "DotsSeven",
284
+ "variants": ["DotsSevenFilled", "DotsSevenOutlined"]
285
+ },
286
+ {
287
+ "baseName": "DotsThree",
288
+ "variants": ["DotsThreeFilled", "DotsThreeOutlined"]
289
+ },
290
+ {
291
+ "baseName": "DownloadSimple",
292
+ "variants": ["DownloadSimpleFilled", "DownloadSimpleOutlined"]
293
+ },
294
+ {
295
+ "baseName": "Envelope",
296
+ "variants": ["EnvelopeFilled", "EnvelopeOutlined"]
297
+ },
298
+ {
299
+ "baseName": "Eye",
300
+ "variants": ["EyeFilled", "EyeOutlined"]
301
+ },
302
+ {
303
+ "baseName": "EyeSlash",
304
+ "variants": ["EyeSlashFilled", "EyeSlashOutlined"]
305
+ },
306
+ {
307
+ "baseName": "File",
308
+ "variants": ["FileFilled", "FileOutlined"]
309
+ },
310
+ {
311
+ "baseName": "FileArchive",
312
+ "variants": ["FileArchiveFilled", "FileArchiveOutlined"]
313
+ },
314
+ {
315
+ "baseName": "FileCheck",
316
+ "variants": ["FileCheckFilled", "FileCheckOutlined"]
317
+ },
318
+ {
319
+ "baseName": "FilePaperclip",
320
+ "variants": ["FilePaperclipFilled", "FilePaperclipOutlined"]
321
+ },
322
+ {
323
+ "baseName": "FilePDF",
324
+ "variants": ["FilePDFFilled", "FilePDFOutlined"]
325
+ },
326
+ {
327
+ "baseName": "FilePlus",
328
+ "variants": ["FilePlusFilled", "FilePlusOutlined"]
329
+ },
330
+ {
331
+ "baseName": "FileSearch",
332
+ "variants": ["FileSearchFilled", "FileSearchOutlined"]
333
+ },
334
+ {
335
+ "baseName": "FileSheet",
336
+ "variants": ["FileSheetFilled", "FileSheetOutlined"]
337
+ },
338
+ {
339
+ "baseName": "FileSparkle",
340
+ "variants": ["FileSparkleFilled", "FileSparkleOutlined"]
341
+ },
342
+ {
343
+ "baseName": "FingerPrint",
344
+ "variants": ["FingerPrintFilled", "FingerPrintOutlined"]
345
+ },
346
+ {
347
+ "baseName": "FirstAidKit",
348
+ "variants": ["FirstAidKitFilled", "FirstAidKitOutlined"]
349
+ },
350
+ {
351
+ "baseName": "Flag",
352
+ "variants": ["FlagFilled", "FlagOutlined"]
353
+ },
354
+ {
355
+ "baseName": "Focus",
356
+ "variants": ["FocusFilled", "FocusOutlined"]
357
+ },
358
+ {
359
+ "baseName": "Folder",
360
+ "variants": ["FolderFilled", "FolderOutlined"]
361
+ },
362
+ {
363
+ "baseName": "FolderUser",
364
+ "variants": ["FolderUserFilled", "FolderUserOutlined"]
365
+ },
366
+ {
367
+ "baseName": "ForkKnife",
368
+ "variants": ["ForkKnifeFilled", "ForkKnifeOutlined"]
369
+ },
370
+ {
371
+ "baseName": "Gavel",
372
+ "variants": ["GavelFilled", "GavelOutlined"]
373
+ },
374
+ {
375
+ "baseName": "GearArrow",
376
+ "variants": ["GearArrowFilled", "GearArrowOutlined"]
377
+ },
378
+ {
379
+ "baseName": "GearSimple",
380
+ "variants": ["GearSimpleFilled", "GearSimpleOutlined"]
381
+ },
382
+ {
383
+ "baseName": "GearSparkle",
384
+ "variants": ["GearSparkleFilled", "GearSparkleOutlined"]
385
+ },
386
+ {
387
+ "baseName": "Gift",
388
+ "variants": ["GiftFilled", "GiftOutlined"]
389
+ },
390
+ {
391
+ "baseName": "GraduationCap",
392
+ "variants": ["GraduationCapFilled", "GraduationCapOutlined"]
393
+ },
394
+ {
395
+ "baseName": "GridFour",
396
+ "variants": ["GridFourFilled", "GridFourOutlined"]
397
+ },
398
+ {
399
+ "baseName": "HandCoins",
400
+ "variants": ["HandCoinsFilled", "HandCoinsOutlined"]
401
+ },
402
+ {
403
+ "baseName": "HandHeart",
404
+ "variants": ["HandHeartFilled", "HandHeartOutlined"]
405
+ },
406
+ {
407
+ "baseName": "Headset",
408
+ "variants": ["HeadsetFilled", "HeadsetOutlined"]
409
+ },
410
+ {
411
+ "baseName": "Heart",
412
+ "variants": ["HeartFilled", "HeartOutlined"]
413
+ },
414
+ {
415
+ "baseName": "Hourglass",
416
+ "variants": ["HourglassFilled", "HourglassOutlined"]
417
+ },
418
+ {
419
+ "baseName": "HourglassHigh",
420
+ "variants": ["HourglassHighFilled", "HourglassHighOutlined"]
421
+ },
422
+ {
423
+ "baseName": "House",
424
+ "variants": ["HouseFilled", "HouseOutlined"]
425
+ },
426
+ {
427
+ "baseName": "Image",
428
+ "variants": ["ImageFilled", "ImageOutlined"]
429
+ },
430
+ {
431
+ "baseName": "Info",
432
+ "variants": ["InfoFilled", "InfoOutlined"]
433
+ },
434
+ {
435
+ "baseName": "Island",
436
+ "variants": ["IslandFilled", "IslandOutlined"]
437
+ },
438
+ {
439
+ "baseName": "Layout",
440
+ "variants": ["LayoutFilled", "LayoutOutlined"]
441
+ },
442
+ {
443
+ "baseName": "LightbulbFilament",
444
+ "variants": ["LightbulbFilamentFilled", "LightbulbFilamentOutlined"]
445
+ },
446
+ {
447
+ "baseName": "Lightning",
448
+ "variants": ["LightningFilled", "LightningOutlined"]
449
+ },
450
+ {
451
+ "baseName": "List",
452
+ "variants": ["ListFilled", "ListOutlined"]
453
+ },
454
+ {
455
+ "baseName": "Lock",
456
+ "variants": ["LockFilled", "LockOutlined"]
457
+ },
458
+ {
459
+ "baseName": "MagnifyingGlass",
460
+ "variants": ["MagnifyingGlassFilled", "MagnifyingGlassOutlined"]
461
+ },
462
+ {
463
+ "baseName": "MapPin",
464
+ "variants": ["MapPinFilled", "MapPinOutlined"]
465
+ },
466
+ {
467
+ "baseName": "MathOperations",
468
+ "variants": ["MathOperationsFilled", "MathOperationsOutlined"]
469
+ },
470
+ {
471
+ "baseName": "Minus",
472
+ "variants": ["MinusFilled", "MinusOutlined"]
473
+ },
474
+ {
475
+ "baseName": "Money",
476
+ "variants": ["MoneyFilled", "MoneyOutlined"]
477
+ },
478
+ {
479
+ "baseName": "Moon",
480
+ "variants": ["MoonFilled", "MoonOutlined"]
481
+ },
482
+ {
483
+ "baseName": "Network",
484
+ "variants": ["NetworkFilled", "NetworkOutlined"]
485
+ },
486
+ {
487
+ "baseName": "Note",
488
+ "variants": ["NoteFilled", "NoteOutlined"]
489
+ },
490
+ {
491
+ "baseName": "NoteBlank",
492
+ "variants": ["NoteBlankFilled", "NoteBlankOutlined"]
493
+ },
494
+ {
495
+ "baseName": "OrganizationChart",
496
+ "variants": ["OrganizationChartFilled", "OrganizationChartOutlined"]
497
+ },
498
+ {
499
+ "baseName": "PageBreak",
500
+ "variants": ["PageBreakFilled", "PageBreakOutlined"]
501
+ },
502
+ {
503
+ "baseName": "Palm",
504
+ "variants": ["PalmFilled", "PalmOutlined"]
505
+ },
506
+ {
507
+ "baseName": "Paperclip",
508
+ "variants": ["PaperclipFilled", "PaperclipOutlined"]
509
+ },
510
+ {
511
+ "baseName": "PaperPlane",
512
+ "variants": ["PaperPlaneFilled", "PaperPlaneOutlined"]
513
+ },
514
+ {
515
+ "baseName": "PencilSimple",
516
+ "variants": ["PencilSimpleFilled", "PencilSimpleOutlined"]
517
+ },
518
+ {
519
+ "baseName": "People",
520
+ "variants": ["PeopleFilled", "PeopleOutlined"]
521
+ },
522
+ {
523
+ "baseName": "PersonArmsSpread",
524
+ "variants": ["PersonArmsSpreadFilled", "PersonArmsSpreadOutlined"]
525
+ },
526
+ {
527
+ "baseName": "Phone",
528
+ "variants": ["PhoneFilled", "PhoneOutlined"]
529
+ },
530
+ {
531
+ "baseName": "PieChart",
532
+ "variants": ["PieChartFilled", "PieChartOutlined"]
533
+ },
534
+ {
535
+ "baseName": "PiggyBank",
536
+ "variants": ["PiggyBankFilled", "PiggyBankOutlined"]
537
+ },
538
+ {
539
+ "baseName": "Plus",
540
+ "variants": ["PlusFilled", "PlusOutlined"]
541
+ },
542
+ {
543
+ "baseName": "PlusCircle",
544
+ "variants": ["PlusCircleFilled", "PlusCircleOutlined"]
545
+ },
546
+ {
547
+ "baseName": "PresentationChart",
548
+ "variants": ["PresentationChartFilled", "PresentationChartOutlined"]
549
+ },
550
+ {
551
+ "baseName": "PresentationTimeline",
552
+ "variants": ["PresentationTimelineFilled", "PresentationTimelineOutlined"]
553
+ },
554
+ {
555
+ "baseName": "Prohibit",
556
+ "variants": ["ProhibitFilled", "ProhibitOutlined"]
557
+ },
558
+ {
559
+ "baseName": "PuzzlePiece",
560
+ "variants": ["PuzzlePieceFilled", "PuzzlePieceOutlined"]
561
+ },
562
+ {
563
+ "baseName": "Question",
564
+ "variants": ["QuestionFilled", "QuestionOutlined"]
565
+ },
566
+ {
567
+ "baseName": "Receipt",
568
+ "variants": ["ReceiptFilled", "ReceiptOutlined"]
569
+ },
570
+ {
571
+ "baseName": "Recycle",
572
+ "variants": ["RecycleFilled", "RecycleOutlined"]
573
+ },
574
+ {
575
+ "baseName": "SealCheck",
576
+ "variants": ["SealCheckFilled", "SealCheckOutlined"]
577
+ },
578
+ {
579
+ "baseName": "ShareNetwork",
580
+ "variants": ["ShareNetworkFilled", "ShareNetworkOutlined"]
581
+ },
582
+ {
583
+ "baseName": "ShieldCheck",
584
+ "variants": ["ShieldCheckFilled", "ShieldCheckOutlined"]
585
+ },
586
+ {
587
+ "baseName": "ShieldChekered",
588
+ "variants": ["ShieldChekeredFilled", "ShieldChekeredOutlined"]
589
+ },
590
+ {
591
+ "baseName": "Signature",
592
+ "variants": ["SignatureFilled", "SignatureOutlined"]
593
+ },
594
+ {
595
+ "baseName": "SignIn",
596
+ "variants": ["SignInFilled", "SignInOutlined"]
597
+ },
598
+ {
599
+ "baseName": "SignOut",
600
+ "variants": ["SignOutFilled", "SignOutOutlined"]
601
+ },
602
+ {
603
+ "baseName": "SlidersHorizontal",
604
+ "variants": ["SlidersHorizontalFilled", "SlidersHorizontalOutlined"]
605
+ },
606
+ {
607
+ "baseName": "Spa",
608
+ "variants": ["SpaFilled", "SpaOutlined"]
609
+ },
610
+ {
611
+ "baseName": "Sparkle",
612
+ "variants": ["SparkleFilled", "SparkleOutlined"]
613
+ },
614
+ {
615
+ "baseName": "SpeedIndicator",
616
+ "variants": ["SpeedIndicatorFilled", "SpeedIndicatorOutlined"]
617
+ },
618
+ {
619
+ "baseName": "StackSimple",
620
+ "variants": ["StackSimpleFilled", "StackSimpleOutlined"]
621
+ },
622
+ {
623
+ "baseName": "Star",
624
+ "variants": ["StarFilled", "StarOutlined"]
625
+ },
626
+ {
627
+ "baseName": "Storefront",
628
+ "variants": ["StorefrontFilled", "StorefrontOutlined"]
629
+ },
630
+ {
631
+ "baseName": "Swap",
632
+ "variants": ["SwapFilled", "SwapOutlined"]
633
+ },
634
+ {
635
+ "baseName": "Tag",
636
+ "variants": ["TagFilled", "TagOutlined"]
637
+ },
638
+ {
639
+ "baseName": "ThumbsUp",
640
+ "variants": ["ThumbsUpFilled", "ThumbsUpOutlined"]
641
+ },
642
+ {
643
+ "baseName": "Ticket",
644
+ "variants": ["TicketFilled", "TicketOutlined"]
645
+ },
646
+ {
647
+ "baseName": "Timer",
648
+ "variants": ["TimerFilled", "TimerOutlined"]
649
+ },
650
+ {
651
+ "baseName": "Train",
652
+ "variants": ["TrainFilled", "TrainOutlined"]
653
+ },
654
+ {
655
+ "baseName": "Trash",
656
+ "variants": ["TrashFilled", "TrashOutlined"]
657
+ },
658
+ {
659
+ "baseName": "TrashSimple",
660
+ "variants": ["TrashSimpleFilled", "TrashSimpleOutlined"]
661
+ },
662
+ {
663
+ "baseName": "TrashX",
664
+ "variants": ["TrashXFilled", "TrashXOutlined"]
665
+ },
666
+ {
667
+ "baseName": "TreeStructure",
668
+ "variants": ["TreeStructureFilled", "TreeStructureOutlined"]
669
+ },
670
+ {
671
+ "baseName": "TrendDown",
672
+ "variants": ["TrendDownFilled", "TrendDownOutlined"]
673
+ },
674
+ {
675
+ "baseName": "TrendUp",
676
+ "variants": ["TrendUpFilled", "TrendUpOutlined"]
677
+ },
678
+ {
679
+ "baseName": "Umbrella",
680
+ "variants": ["UmbrellaFilled", "UmbrellaOutlined"]
681
+ },
682
+ {
683
+ "baseName": "UploadSimple",
684
+ "variants": ["UploadSimpleFilled", "UploadSimpleOutlined"]
685
+ },
686
+ {
687
+ "baseName": "User",
688
+ "variants": ["UserFilled", "UserOutlined"]
689
+ },
690
+ {
691
+ "baseName": "UserCircle",
692
+ "variants": ["UserCircleFilled", "UserCircleOutlined"]
693
+ },
694
+ {
695
+ "baseName": "UserContact",
696
+ "variants": ["UserContactFilled", "UserContactOutlined"]
697
+ },
698
+ {
699
+ "baseName": "UserFocus",
700
+ "variants": ["UserFocusFilled", "UserFocusOutlined"]
701
+ },
702
+ {
703
+ "baseName": "UserGreeting",
704
+ "variants": ["UserGreetingFilled", "UserGreetingOutlined"]
705
+ },
706
+ {
707
+ "baseName": "UserPlus",
708
+ "variants": ["UserPlusFilled", "UserPlusOutlined"]
709
+ },
710
+ {
711
+ "baseName": "UserRectangle",
712
+ "variants": ["UserRectangleFilled", "UserRectangleOutlined"]
713
+ },
714
+ {
715
+ "baseName": "Users",
716
+ "variants": ["UsersFilled", "UsersOutlined"]
717
+ },
718
+ {
719
+ "baseName": "UsersHeart",
720
+ "variants": ["UsersHeartFilled", "UsersHeartOutlined"]
721
+ },
722
+ {
723
+ "baseName": "UsersSwitch",
724
+ "variants": ["UsersSwitchFilled", "UsersSwitchOutlined"]
725
+ },
726
+ {
727
+ "baseName": "UsersThree",
728
+ "variants": ["UsersThreeFilled", "UsersThreeOutlined"]
729
+ },
730
+ {
731
+ "baseName": "Virus",
732
+ "variants": ["VirusFilled", "VirusOutlined"]
733
+ },
734
+ {
735
+ "baseName": "Wallet",
736
+ "variants": ["WalletFilled", "WalletOutlined"]
737
+ },
738
+ {
739
+ "baseName": "Warning",
740
+ "variants": ["WarningFilled", "WarningOutlined"]
741
+ },
742
+ {
743
+ "baseName": "WarningCircle",
744
+ "variants": ["WarningCircleFilled", "WarningCircleOutlined"]
745
+ },
746
+ {
747
+ "baseName": "WarningDiamond",
748
+ "variants": ["WarningDiamondFilled", "WarningDiamondOutlined"]
749
+ },
750
+ {
751
+ "baseName": "Wave",
752
+ "variants": ["WaveFilled", "WaveOutlined"]
753
+ },
754
+ {
755
+ "baseName": "WifiHigh",
756
+ "variants": ["WifiHighFilled", "WifiHighOutlined"]
757
+ },
758
+ {
759
+ "baseName": "WifiSlash",
760
+ "variants": ["WifiSlashFilled", "WifiSlashOutlined"]
761
+ }
762
+ ]
763
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "package": "@payfit/unity-icons",
3
+ "generatedBy": "@payfit/nx-tools:sync-unity-agent-references",
4
+ "references": [
5
+ {
6
+ "id": "icons",
7
+ "title": "Unity icon catalog",
8
+ "description": "Exact Unity icon names and Filled/Outlined variants.",
9
+ "format": "json",
10
+ "path": "./icons-catalog.json",
11
+ "contentType": "application/json",
12
+ "useFor": ["icon lookup", "icon usage"],
13
+ "sources": ["svg/*.svg"]
14
+ }
15
+ ]
16
+ }
@@ -1,8 +0,0 @@
1
- export declare const getIconBaseNames: (iconNames: string[]) => string[];
2
- export declare const generateIconsReference: (iconNames: string[]) => string;
3
- export declare const generateIconsAgentReferencesReadme: () => string;
4
- export declare const getIconNamesFromSvgDir: (svgDir: string) => string[];
5
- export declare const writeIconAgentReferences: ({ svgDir, outputDir, }: {
6
- svgDir: string;
7
- outputDir: string;
8
- }) => void;
@@ -1 +0,0 @@
1
- export {};
@@ -1,15 +0,0 @@
1
- {/* AUTO-GENERATED FILE. DO NOT EDIT.
2
- Generated by unity-icons:pre-build.
3
- Source: Unity SVG icon names.
4
- */}
5
- import { Meta } from '@storybook/addon-docs/blocks'
6
-
7
- <Meta title="Agent References/Icons Overview" />
8
-
9
- # Unity Icons Agent References
10
-
11
- This directory contains generated Storybook docs references for Unity icons. These files are intended for Storybook MCP, MCP indexers, and AI agents.
12
-
13
- Storybook includes these MDX files through the shared `../src/**/*.mdx` stories glob, and `@storybook/addon-mcp` exposes docs content to MCP clients.
14
-
15
- - [Icons](./icons.mdx)
@@ -1,13 +0,0 @@
1
- {/* AUTO-GENERATED FILE. DO NOT EDIT.
2
- Generated by unity-icons:pre-build.
3
- Source: Unity SVG icon names.
4
- */}
5
- import { Meta } from '@storybook/addon-docs/blocks'
6
-
7
- <Meta title="Agent References/Icons" />
8
-
9
- # Icons
10
-
11
- Agent reference. Use `<Icon src="<baseName><Outlined|Filled>" />` inside `UnityIconsProvider`; every base name has both variants.
12
-
13
- Base names: Airplane, Alarm, ArrowCircleRight, ArrowClockwise, ArrowDown, ArrowElbowRight, ArrowFatLineUp, ArrowLeft, ArrowRight, ArrowsOutSimple, ArrowSquareOut, ArrowUp, ArrowUpAndRight, ArrowUpRight, ArrowUUpLeft, At, Baby, BabyCarriage, Badge, Bank, Bell, BookOpenText, Briefcase, Browser, Buildings, Cake, Calculator, Calendar, CalendarBlank, CalendarCheck, CalendarEvent, CalendarMonth, CalendarPlus, CalendarX, Camera, CardsThree, CaretDoubleRight, CaretDown, CaretLeft, CaretRight, CaretUp, CaretUpDown, ChargingStation, Chart, ChatQuestion, Chats, ChatWarning, Check, CheckCircle, Clipboard, ClipboardCheck, ClockClockwise, ClockCountdown, ClockCounterClockwise, Close, CloseCircle, CloudArrowDown, CloudArrowUp, CodeSimple, Coins, ContactlessPayment, CopySimple, CreditCard, CreditCardPlus, CurrencyEuro, CurrencyPound, Dashboard, Devices, DotsNine, DotsSeven, DotsThree, DownloadSimple, Envelope, Eye, EyeSlash, File, FileArchive, FileCheck, FilePaperclip, FilePDF, FilePlus, FileSearch, FileSheet, FileSparkle, FingerPrint, FirstAidKit, Flag, Focus, Folder, FolderUser, ForkKnife, Gavel, GearArrow, GearSimple, GearSparkle, Gift, GraduationCap, GridFour, HandCoins, HandHeart, Headset, Heart, Hourglass, HourglassHigh, House, Image, Info, Island, Layout, LightbulbFilament, Lightning, List, Lock, MagnifyingGlass, MapPin, MathOperations, Minus, Money, Moon, Network, Note, NoteBlank, OrganizationChart, PageBreak, Palm, Paperclip, PaperPlane, PencilSimple, People, PersonArmsSpread, Phone, PieChart, PiggyBank, Plus, PlusCircle, PresentationChart, PresentationTimeline, Prohibit, PuzzlePiece, Question, Receipt, Recycle, SealCheck, ShareNetwork, ShieldCheck, ShieldChekered, Signature, SignIn, SignOut, SlidersHorizontal, Spa, Sparkle, SpeedIndicator, StackSimple, Star, Storefront, Swap, Tag, ThumbsUp, Ticket, Timer, Train, Trash, TrashSimple, TrashX, TreeStructure, TrendDown, TrendUp, Umbrella, UploadSimple, User, UserCircle, UserContact, UserFocus, UserGreeting, UserPlus, UserRectangle, Users, UsersHeart, UsersSwitch, UsersThree, Virus, Wallet, Warning, WarningCircle, WarningDiamond, Wave, WifiHigh, WifiSlash