@alveole/components 0.18.4 → 0.18.6
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/ui/LucideIcon/LucideIcon.d.ts.map +1 -1
- package/dist/ui/LucideIcon/LucideIcon.js +3 -2
- package/dist/ui/LucideIcon/LucideIcon.props.d.ts +90 -6
- package/dist/ui/LucideIcon/LucideIcon.props.d.ts.map +1 -1
- package/dist/ui/LucideIcon/LucideIcon.props.js +3 -3
- package/dist/ui/LucideIcon/LucideIcon.stories.d.ts +44 -2
- package/dist/ui/LucideIcon/LucideIcon.stories.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LucideIcon.d.ts","sourceRoot":"","sources":["../../../src/ui/LucideIcon/LucideIcon.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"LucideIcon.d.ts","sourceRoot":"","sources":["../../../src/ui/LucideIcon/LucideIcon.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAoC,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAEvF,eAAO,MAAM,WAAW,MAAM,CAAC;AAE/B,MAAM,MAAM,SAAS,GAAG,eAAe,CAAC;AAExC,eAAO,MAAM,UAAU,GAAI,OAAO,SAAS,4CAqC1C,CAAC"}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import * as LabIcons from '@lucide/lab';
|
|
3
|
-
import { Icon as BaseIcon
|
|
3
|
+
import { Icon as BaseIcon } from 'lucide-react-native';
|
|
4
|
+
import * as LucideIcons from 'lucide-react-native/icons';
|
|
4
5
|
import { isLucideIconName } from './LucideIcon.props';
|
|
5
6
|
export const strokeWidth = 1.5;
|
|
6
7
|
export const LucideIcon = (props) => {
|
|
7
8
|
const { style, size, color } = props;
|
|
8
|
-
const iconMap =
|
|
9
|
+
const iconMap = LucideIcons;
|
|
9
10
|
const sizeMap = {
|
|
10
11
|
xs: 12,
|
|
11
12
|
sm: 16,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Color, StyleValue } from '@alveole/theme';
|
|
2
2
|
import * as LabIcons from '@lucide/lab';
|
|
3
|
-
import
|
|
3
|
+
import * as LucideIcons from 'lucide-react-native/icons';
|
|
4
4
|
import { z } from 'zod';
|
|
5
|
-
export type LucideIconName = keyof typeof
|
|
5
|
+
export type LucideIconName = keyof typeof LucideIcons;
|
|
6
6
|
export type LabIconName = keyof typeof LabIcons;
|
|
7
7
|
export type IconName = LucideIconName | LabIconName;
|
|
8
8
|
export declare const isLucideIconName: (name: string) => name is LucideIconName;
|
|
@@ -298,6 +298,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
298
298
|
CandyCane: "CandyCane";
|
|
299
299
|
CandyOff: "CandyOff";
|
|
300
300
|
Cannabis: "Cannabis";
|
|
301
|
+
CannabisOff: "CannabisOff";
|
|
301
302
|
Captions: "Captions";
|
|
302
303
|
CaptionsOff: "CaptionsOff";
|
|
303
304
|
Car: "Car";
|
|
@@ -527,6 +528,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
527
528
|
Dam: "Dam";
|
|
528
529
|
Database: "Database";
|
|
529
530
|
DatabaseBackup: "DatabaseBackup";
|
|
531
|
+
DatabaseSearch: "DatabaseSearch";
|
|
530
532
|
DatabaseZap: "DatabaseZap";
|
|
531
533
|
DecimalsArrowLeft: "DecimalsArrowLeft";
|
|
532
534
|
DecimalsArrowRight: "DecimalsArrowRight";
|
|
@@ -580,6 +582,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
580
582
|
Egg: "Egg";
|
|
581
583
|
EggFried: "EggFried";
|
|
582
584
|
EggOff: "EggOff";
|
|
585
|
+
Ellipse: "Ellipse";
|
|
583
586
|
Ellipsis: "Ellipsis";
|
|
584
587
|
EllipsisVertical: "EllipsisVertical";
|
|
585
588
|
Equal: "Equal";
|
|
@@ -664,6 +667,8 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
664
667
|
Fish: "Fish";
|
|
665
668
|
FishOff: "FishOff";
|
|
666
669
|
FishSymbol: "FishSymbol";
|
|
670
|
+
FishingHook: "FishingHook";
|
|
671
|
+
FishingRod: "FishingRod";
|
|
667
672
|
Flag: "Flag";
|
|
668
673
|
FlagOff: "FlagOff";
|
|
669
674
|
FlagTriangleLeft: "FlagTriangleLeft";
|
|
@@ -675,9 +680,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
675
680
|
FlaskConical: "FlaskConical";
|
|
676
681
|
FlaskConicalOff: "FlaskConicalOff";
|
|
677
682
|
FlaskRound: "FlaskRound";
|
|
678
|
-
FlipHorizontal: "FlipHorizontal";
|
|
679
683
|
FlipHorizontal2: "FlipHorizontal2";
|
|
680
|
-
FlipVertical: "FlipVertical";
|
|
681
684
|
FlipVertical2: "FlipVertical2";
|
|
682
685
|
Flower: "Flower";
|
|
683
686
|
Flower2: "Flower2";
|
|
@@ -751,6 +754,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
751
754
|
GitFork: "GitFork";
|
|
752
755
|
GitGraph: "GitGraph";
|
|
753
756
|
GitMerge: "GitMerge";
|
|
757
|
+
GitMergeConflict: "GitMergeConflict";
|
|
754
758
|
GitPullRequest: "GitPullRequest";
|
|
755
759
|
GitPullRequestArrow: "GitPullRequestArrow";
|
|
756
760
|
GitPullRequestClosed: "GitPullRequestClosed";
|
|
@@ -763,6 +767,8 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
763
767
|
Glasses: "Glasses";
|
|
764
768
|
Globe: "Globe";
|
|
765
769
|
GlobeLock: "GlobeLock";
|
|
770
|
+
GlobeOff: "GlobeOff";
|
|
771
|
+
GlobeX: "GlobeX";
|
|
766
772
|
Goal: "Goal";
|
|
767
773
|
Gpu: "Gpu";
|
|
768
774
|
GraduationCap: "GraduationCap";
|
|
@@ -798,6 +804,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
798
804
|
Hash: "Hash";
|
|
799
805
|
HatGlasses: "HatGlasses";
|
|
800
806
|
Haze: "Haze";
|
|
807
|
+
Hd: "Hd";
|
|
801
808
|
HdmiPort: "HdmiPort";
|
|
802
809
|
Heading: "Heading";
|
|
803
810
|
Heading1: "Heading1";
|
|
@@ -890,12 +897,15 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
890
897
|
Leaf: "Leaf";
|
|
891
898
|
LeafyGreen: "LeafyGreen";
|
|
892
899
|
Lectern: "Lectern";
|
|
900
|
+
LensConcave: "LensConcave";
|
|
901
|
+
LensConvex: "LensConvex";
|
|
893
902
|
Library: "Library";
|
|
894
903
|
LibraryBig: "LibraryBig";
|
|
895
904
|
LifeBuoy: "LifeBuoy";
|
|
896
905
|
Ligature: "Ligature";
|
|
897
906
|
Lightbulb: "Lightbulb";
|
|
898
907
|
LightbulbOff: "LightbulbOff";
|
|
908
|
+
LineDotRightHorizontal: "LineDotRightHorizontal";
|
|
899
909
|
LineSquiggle: "LineSquiggle";
|
|
900
910
|
Link: "Link";
|
|
901
911
|
Link2: "Link2";
|
|
@@ -977,6 +987,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
977
987
|
MemoryStick: "MemoryStick";
|
|
978
988
|
Merge: "Merge";
|
|
979
989
|
MessageCircle: "MessageCircle";
|
|
990
|
+
MessageCircleCheck: "MessageCircleCheck";
|
|
980
991
|
MessageCircleCode: "MessageCircleCode";
|
|
981
992
|
MessageCircleDashed: "MessageCircleDashed";
|
|
982
993
|
MessageCircleHeart: "MessageCircleHeart";
|
|
@@ -988,6 +999,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
988
999
|
MessageCircleWarning: "MessageCircleWarning";
|
|
989
1000
|
MessageCircleX: "MessageCircleX";
|
|
990
1001
|
MessageSquare: "MessageSquare";
|
|
1002
|
+
MessageSquareCheck: "MessageSquareCheck";
|
|
991
1003
|
MessageSquareCode: "MessageSquareCode";
|
|
992
1004
|
MessageSquareDashed: "MessageSquareDashed";
|
|
993
1005
|
MessageSquareDiff: "MessageSquareDiff";
|
|
@@ -1004,6 +1016,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1004
1016
|
MessageSquareWarning: "MessageSquareWarning";
|
|
1005
1017
|
MessageSquareX: "MessageSquareX";
|
|
1006
1018
|
MessagesSquare: "MessagesSquare";
|
|
1019
|
+
Metronome: "Metronome";
|
|
1007
1020
|
Mic: "Mic";
|
|
1008
1021
|
MicOff: "MicOff";
|
|
1009
1022
|
MicVocal: "MicVocal";
|
|
@@ -1016,6 +1029,8 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1016
1029
|
Minimize: "Minimize";
|
|
1017
1030
|
Minimize2: "Minimize2";
|
|
1018
1031
|
Minus: "Minus";
|
|
1032
|
+
MirrorRectangular: "MirrorRectangular";
|
|
1033
|
+
MirrorRound: "MirrorRound";
|
|
1019
1034
|
Monitor: "Monitor";
|
|
1020
1035
|
MonitorCheck: "MonitorCheck";
|
|
1021
1036
|
MonitorCloud: "MonitorCloud";
|
|
@@ -1036,12 +1051,14 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1036
1051
|
Mountain: "Mountain";
|
|
1037
1052
|
MountainSnow: "MountainSnow";
|
|
1038
1053
|
Mouse: "Mouse";
|
|
1054
|
+
MouseLeft: "MouseLeft";
|
|
1039
1055
|
MouseOff: "MouseOff";
|
|
1040
1056
|
MousePointer: "MousePointer";
|
|
1041
1057
|
MousePointer2: "MousePointer2";
|
|
1042
1058
|
MousePointer2Off: "MousePointer2Off";
|
|
1043
1059
|
MousePointerBan: "MousePointerBan";
|
|
1044
1060
|
MousePointerClick: "MousePointerClick";
|
|
1061
|
+
MouseRight: "MouseRight";
|
|
1045
1062
|
Move: "Move";
|
|
1046
1063
|
Move3d: "Move3d";
|
|
1047
1064
|
MoveDiagonal: "MoveDiagonal";
|
|
@@ -1182,6 +1199,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1182
1199
|
Presentation: "Presentation";
|
|
1183
1200
|
Printer: "Printer";
|
|
1184
1201
|
PrinterCheck: "PrinterCheck";
|
|
1202
|
+
PrinterX: "PrinterX";
|
|
1185
1203
|
Projector: "Projector";
|
|
1186
1204
|
Proportions: "Proportions";
|
|
1187
1205
|
Puzzle: "Puzzle";
|
|
@@ -1307,6 +1325,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1307
1325
|
Share2: "Share2";
|
|
1308
1326
|
Sheet: "Sheet";
|
|
1309
1327
|
Shell: "Shell";
|
|
1328
|
+
ShelvingUnit: "ShelvingUnit";
|
|
1310
1329
|
Shield: "Shield";
|
|
1311
1330
|
ShieldAlert: "ShieldAlert";
|
|
1312
1331
|
ShieldBan: "ShieldBan";
|
|
@@ -1387,11 +1406,15 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1387
1406
|
SquareArrowOutUpLeft: "SquareArrowOutUpLeft";
|
|
1388
1407
|
SquareArrowOutUpRight: "SquareArrowOutUpRight";
|
|
1389
1408
|
SquareArrowRight: "SquareArrowRight";
|
|
1409
|
+
SquareArrowRightEnter: "SquareArrowRightEnter";
|
|
1410
|
+
SquareArrowRightExit: "SquareArrowRightExit";
|
|
1390
1411
|
SquareArrowUp: "SquareArrowUp";
|
|
1391
1412
|
SquareArrowUpLeft: "SquareArrowUpLeft";
|
|
1392
1413
|
SquareArrowUpRight: "SquareArrowUpRight";
|
|
1393
1414
|
SquareAsterisk: "SquareAsterisk";
|
|
1394
1415
|
SquareBottomDashedScissors: "SquareBottomDashedScissors";
|
|
1416
|
+
SquareCenterlineDashedHorizontal: "SquareCenterlineDashedHorizontal";
|
|
1417
|
+
SquareCenterlineDashedVertical: "SquareCenterlineDashedVertical";
|
|
1395
1418
|
SquareChartGantt: "SquareChartGantt";
|
|
1396
1419
|
SquareCheck: "SquareCheck";
|
|
1397
1420
|
SquareCheckBig: "SquareCheckBig";
|
|
@@ -1457,6 +1480,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1457
1480
|
Stethoscope: "Stethoscope";
|
|
1458
1481
|
Sticker: "Sticker";
|
|
1459
1482
|
StickyNote: "StickyNote";
|
|
1483
|
+
Stone: "Stone";
|
|
1460
1484
|
Store: "Store";
|
|
1461
1485
|
StretchHorizontal: "StretchHorizontal";
|
|
1462
1486
|
StretchVertical: "StretchVertical";
|
|
@@ -1536,10 +1560,12 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1536
1560
|
ToggleRight: "ToggleRight";
|
|
1537
1561
|
Toilet: "Toilet";
|
|
1538
1562
|
ToolCase: "ToolCase";
|
|
1563
|
+
Toolbox: "Toolbox";
|
|
1539
1564
|
Tornado: "Tornado";
|
|
1540
1565
|
Torus: "Torus";
|
|
1541
1566
|
Touchpad: "Touchpad";
|
|
1542
1567
|
TouchpadOff: "TouchpadOff";
|
|
1568
|
+
TowelRack: "TowelRack";
|
|
1543
1569
|
TowerControl: "TowerControl";
|
|
1544
1570
|
ToyBrick: "ToyBrick";
|
|
1545
1571
|
Tractor: "Tractor";
|
|
@@ -1594,6 +1620,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1594
1620
|
User: "User";
|
|
1595
1621
|
UserCheck: "UserCheck";
|
|
1596
1622
|
UserCog: "UserCog";
|
|
1623
|
+
UserKey: "UserKey";
|
|
1597
1624
|
UserLock: "UserLock";
|
|
1598
1625
|
UserMinus: "UserMinus";
|
|
1599
1626
|
UserPen: "UserPen";
|
|
@@ -1601,6 +1628,7 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1601
1628
|
UserRound: "UserRound";
|
|
1602
1629
|
UserRoundCheck: "UserRoundCheck";
|
|
1603
1630
|
UserRoundCog: "UserRoundCog";
|
|
1631
|
+
UserRoundKey: "UserRoundKey";
|
|
1604
1632
|
UserRoundMinus: "UserRoundMinus";
|
|
1605
1633
|
UserRoundPen: "UserRoundPen";
|
|
1606
1634
|
UserRoundPlus: "UserRoundPlus";
|
|
@@ -1674,9 +1702,23 @@ declare const PublicPropsSchema: z.ZodObject<{
|
|
|
1674
1702
|
Worm: "Worm";
|
|
1675
1703
|
Wrench: "Wrench";
|
|
1676
1704
|
X: "X";
|
|
1705
|
+
XLineTop: "XLineTop";
|
|
1677
1706
|
Youtube: "Youtube";
|
|
1678
1707
|
Zap: "Zap";
|
|
1679
1708
|
ZapOff: "ZapOff";
|
|
1709
|
+
ZodiacAquarius: "ZodiacAquarius";
|
|
1710
|
+
ZodiacAries: "ZodiacAries";
|
|
1711
|
+
ZodiacCancer: "ZodiacCancer";
|
|
1712
|
+
ZodiacCapricorn: "ZodiacCapricorn";
|
|
1713
|
+
ZodiacGemini: "ZodiacGemini";
|
|
1714
|
+
ZodiacLeo: "ZodiacLeo";
|
|
1715
|
+
ZodiacLibra: "ZodiacLibra";
|
|
1716
|
+
ZodiacOphiuchus: "ZodiacOphiuchus";
|
|
1717
|
+
ZodiacPisces: "ZodiacPisces";
|
|
1718
|
+
ZodiacSagittarius: "ZodiacSagittarius";
|
|
1719
|
+
ZodiacScorpio: "ZodiacScorpio";
|
|
1720
|
+
ZodiacTaurus: "ZodiacTaurus";
|
|
1721
|
+
ZodiacVirgo: "ZodiacVirgo";
|
|
1680
1722
|
ZoomIn: "ZoomIn";
|
|
1681
1723
|
ZoomOut: "ZoomOut";
|
|
1682
1724
|
ampersandSquare: "ampersandSquare";
|
|
@@ -2363,6 +2405,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
2363
2405
|
CandyCane: "CandyCane";
|
|
2364
2406
|
CandyOff: "CandyOff";
|
|
2365
2407
|
Cannabis: "Cannabis";
|
|
2408
|
+
CannabisOff: "CannabisOff";
|
|
2366
2409
|
Captions: "Captions";
|
|
2367
2410
|
CaptionsOff: "CaptionsOff";
|
|
2368
2411
|
Car: "Car";
|
|
@@ -2592,6 +2635,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
2592
2635
|
Dam: "Dam";
|
|
2593
2636
|
Database: "Database";
|
|
2594
2637
|
DatabaseBackup: "DatabaseBackup";
|
|
2638
|
+
DatabaseSearch: "DatabaseSearch";
|
|
2595
2639
|
DatabaseZap: "DatabaseZap";
|
|
2596
2640
|
DecimalsArrowLeft: "DecimalsArrowLeft";
|
|
2597
2641
|
DecimalsArrowRight: "DecimalsArrowRight";
|
|
@@ -2645,6 +2689,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
2645
2689
|
Egg: "Egg";
|
|
2646
2690
|
EggFried: "EggFried";
|
|
2647
2691
|
EggOff: "EggOff";
|
|
2692
|
+
Ellipse: "Ellipse";
|
|
2648
2693
|
Ellipsis: "Ellipsis";
|
|
2649
2694
|
EllipsisVertical: "EllipsisVertical";
|
|
2650
2695
|
Equal: "Equal";
|
|
@@ -2729,6 +2774,8 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
2729
2774
|
Fish: "Fish";
|
|
2730
2775
|
FishOff: "FishOff";
|
|
2731
2776
|
FishSymbol: "FishSymbol";
|
|
2777
|
+
FishingHook: "FishingHook";
|
|
2778
|
+
FishingRod: "FishingRod";
|
|
2732
2779
|
Flag: "Flag";
|
|
2733
2780
|
FlagOff: "FlagOff";
|
|
2734
2781
|
FlagTriangleLeft: "FlagTriangleLeft";
|
|
@@ -2740,9 +2787,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
2740
2787
|
FlaskConical: "FlaskConical";
|
|
2741
2788
|
FlaskConicalOff: "FlaskConicalOff";
|
|
2742
2789
|
FlaskRound: "FlaskRound";
|
|
2743
|
-
FlipHorizontal: "FlipHorizontal";
|
|
2744
2790
|
FlipHorizontal2: "FlipHorizontal2";
|
|
2745
|
-
FlipVertical: "FlipVertical";
|
|
2746
2791
|
FlipVertical2: "FlipVertical2";
|
|
2747
2792
|
Flower: "Flower";
|
|
2748
2793
|
Flower2: "Flower2";
|
|
@@ -2816,6 +2861,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
2816
2861
|
GitFork: "GitFork";
|
|
2817
2862
|
GitGraph: "GitGraph";
|
|
2818
2863
|
GitMerge: "GitMerge";
|
|
2864
|
+
GitMergeConflict: "GitMergeConflict";
|
|
2819
2865
|
GitPullRequest: "GitPullRequest";
|
|
2820
2866
|
GitPullRequestArrow: "GitPullRequestArrow";
|
|
2821
2867
|
GitPullRequestClosed: "GitPullRequestClosed";
|
|
@@ -2828,6 +2874,8 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
2828
2874
|
Glasses: "Glasses";
|
|
2829
2875
|
Globe: "Globe";
|
|
2830
2876
|
GlobeLock: "GlobeLock";
|
|
2877
|
+
GlobeOff: "GlobeOff";
|
|
2878
|
+
GlobeX: "GlobeX";
|
|
2831
2879
|
Goal: "Goal";
|
|
2832
2880
|
Gpu: "Gpu";
|
|
2833
2881
|
GraduationCap: "GraduationCap";
|
|
@@ -2863,6 +2911,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
2863
2911
|
Hash: "Hash";
|
|
2864
2912
|
HatGlasses: "HatGlasses";
|
|
2865
2913
|
Haze: "Haze";
|
|
2914
|
+
Hd: "Hd";
|
|
2866
2915
|
HdmiPort: "HdmiPort";
|
|
2867
2916
|
Heading: "Heading";
|
|
2868
2917
|
Heading1: "Heading1";
|
|
@@ -2955,12 +3004,15 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
2955
3004
|
Leaf: "Leaf";
|
|
2956
3005
|
LeafyGreen: "LeafyGreen";
|
|
2957
3006
|
Lectern: "Lectern";
|
|
3007
|
+
LensConcave: "LensConcave";
|
|
3008
|
+
LensConvex: "LensConvex";
|
|
2958
3009
|
Library: "Library";
|
|
2959
3010
|
LibraryBig: "LibraryBig";
|
|
2960
3011
|
LifeBuoy: "LifeBuoy";
|
|
2961
3012
|
Ligature: "Ligature";
|
|
2962
3013
|
Lightbulb: "Lightbulb";
|
|
2963
3014
|
LightbulbOff: "LightbulbOff";
|
|
3015
|
+
LineDotRightHorizontal: "LineDotRightHorizontal";
|
|
2964
3016
|
LineSquiggle: "LineSquiggle";
|
|
2965
3017
|
Link: "Link";
|
|
2966
3018
|
Link2: "Link2";
|
|
@@ -3042,6 +3094,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3042
3094
|
MemoryStick: "MemoryStick";
|
|
3043
3095
|
Merge: "Merge";
|
|
3044
3096
|
MessageCircle: "MessageCircle";
|
|
3097
|
+
MessageCircleCheck: "MessageCircleCheck";
|
|
3045
3098
|
MessageCircleCode: "MessageCircleCode";
|
|
3046
3099
|
MessageCircleDashed: "MessageCircleDashed";
|
|
3047
3100
|
MessageCircleHeart: "MessageCircleHeart";
|
|
@@ -3053,6 +3106,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3053
3106
|
MessageCircleWarning: "MessageCircleWarning";
|
|
3054
3107
|
MessageCircleX: "MessageCircleX";
|
|
3055
3108
|
MessageSquare: "MessageSquare";
|
|
3109
|
+
MessageSquareCheck: "MessageSquareCheck";
|
|
3056
3110
|
MessageSquareCode: "MessageSquareCode";
|
|
3057
3111
|
MessageSquareDashed: "MessageSquareDashed";
|
|
3058
3112
|
MessageSquareDiff: "MessageSquareDiff";
|
|
@@ -3069,6 +3123,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3069
3123
|
MessageSquareWarning: "MessageSquareWarning";
|
|
3070
3124
|
MessageSquareX: "MessageSquareX";
|
|
3071
3125
|
MessagesSquare: "MessagesSquare";
|
|
3126
|
+
Metronome: "Metronome";
|
|
3072
3127
|
Mic: "Mic";
|
|
3073
3128
|
MicOff: "MicOff";
|
|
3074
3129
|
MicVocal: "MicVocal";
|
|
@@ -3081,6 +3136,8 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3081
3136
|
Minimize: "Minimize";
|
|
3082
3137
|
Minimize2: "Minimize2";
|
|
3083
3138
|
Minus: "Minus";
|
|
3139
|
+
MirrorRectangular: "MirrorRectangular";
|
|
3140
|
+
MirrorRound: "MirrorRound";
|
|
3084
3141
|
Monitor: "Monitor";
|
|
3085
3142
|
MonitorCheck: "MonitorCheck";
|
|
3086
3143
|
MonitorCloud: "MonitorCloud";
|
|
@@ -3101,12 +3158,14 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3101
3158
|
Mountain: "Mountain";
|
|
3102
3159
|
MountainSnow: "MountainSnow";
|
|
3103
3160
|
Mouse: "Mouse";
|
|
3161
|
+
MouseLeft: "MouseLeft";
|
|
3104
3162
|
MouseOff: "MouseOff";
|
|
3105
3163
|
MousePointer: "MousePointer";
|
|
3106
3164
|
MousePointer2: "MousePointer2";
|
|
3107
3165
|
MousePointer2Off: "MousePointer2Off";
|
|
3108
3166
|
MousePointerBan: "MousePointerBan";
|
|
3109
3167
|
MousePointerClick: "MousePointerClick";
|
|
3168
|
+
MouseRight: "MouseRight";
|
|
3110
3169
|
Move: "Move";
|
|
3111
3170
|
Move3d: "Move3d";
|
|
3112
3171
|
MoveDiagonal: "MoveDiagonal";
|
|
@@ -3247,6 +3306,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3247
3306
|
Presentation: "Presentation";
|
|
3248
3307
|
Printer: "Printer";
|
|
3249
3308
|
PrinterCheck: "PrinterCheck";
|
|
3309
|
+
PrinterX: "PrinterX";
|
|
3250
3310
|
Projector: "Projector";
|
|
3251
3311
|
Proportions: "Proportions";
|
|
3252
3312
|
Puzzle: "Puzzle";
|
|
@@ -3372,6 +3432,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3372
3432
|
Share2: "Share2";
|
|
3373
3433
|
Sheet: "Sheet";
|
|
3374
3434
|
Shell: "Shell";
|
|
3435
|
+
ShelvingUnit: "ShelvingUnit";
|
|
3375
3436
|
Shield: "Shield";
|
|
3376
3437
|
ShieldAlert: "ShieldAlert";
|
|
3377
3438
|
ShieldBan: "ShieldBan";
|
|
@@ -3452,11 +3513,15 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3452
3513
|
SquareArrowOutUpLeft: "SquareArrowOutUpLeft";
|
|
3453
3514
|
SquareArrowOutUpRight: "SquareArrowOutUpRight";
|
|
3454
3515
|
SquareArrowRight: "SquareArrowRight";
|
|
3516
|
+
SquareArrowRightEnter: "SquareArrowRightEnter";
|
|
3517
|
+
SquareArrowRightExit: "SquareArrowRightExit";
|
|
3455
3518
|
SquareArrowUp: "SquareArrowUp";
|
|
3456
3519
|
SquareArrowUpLeft: "SquareArrowUpLeft";
|
|
3457
3520
|
SquareArrowUpRight: "SquareArrowUpRight";
|
|
3458
3521
|
SquareAsterisk: "SquareAsterisk";
|
|
3459
3522
|
SquareBottomDashedScissors: "SquareBottomDashedScissors";
|
|
3523
|
+
SquareCenterlineDashedHorizontal: "SquareCenterlineDashedHorizontal";
|
|
3524
|
+
SquareCenterlineDashedVertical: "SquareCenterlineDashedVertical";
|
|
3460
3525
|
SquareChartGantt: "SquareChartGantt";
|
|
3461
3526
|
SquareCheck: "SquareCheck";
|
|
3462
3527
|
SquareCheckBig: "SquareCheckBig";
|
|
@@ -3522,6 +3587,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3522
3587
|
Stethoscope: "Stethoscope";
|
|
3523
3588
|
Sticker: "Sticker";
|
|
3524
3589
|
StickyNote: "StickyNote";
|
|
3590
|
+
Stone: "Stone";
|
|
3525
3591
|
Store: "Store";
|
|
3526
3592
|
StretchHorizontal: "StretchHorizontal";
|
|
3527
3593
|
StretchVertical: "StretchVertical";
|
|
@@ -3601,10 +3667,12 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3601
3667
|
ToggleRight: "ToggleRight";
|
|
3602
3668
|
Toilet: "Toilet";
|
|
3603
3669
|
ToolCase: "ToolCase";
|
|
3670
|
+
Toolbox: "Toolbox";
|
|
3604
3671
|
Tornado: "Tornado";
|
|
3605
3672
|
Torus: "Torus";
|
|
3606
3673
|
Touchpad: "Touchpad";
|
|
3607
3674
|
TouchpadOff: "TouchpadOff";
|
|
3675
|
+
TowelRack: "TowelRack";
|
|
3608
3676
|
TowerControl: "TowerControl";
|
|
3609
3677
|
ToyBrick: "ToyBrick";
|
|
3610
3678
|
Tractor: "Tractor";
|
|
@@ -3659,6 +3727,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3659
3727
|
User: "User";
|
|
3660
3728
|
UserCheck: "UserCheck";
|
|
3661
3729
|
UserCog: "UserCog";
|
|
3730
|
+
UserKey: "UserKey";
|
|
3662
3731
|
UserLock: "UserLock";
|
|
3663
3732
|
UserMinus: "UserMinus";
|
|
3664
3733
|
UserPen: "UserPen";
|
|
@@ -3666,6 +3735,7 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3666
3735
|
UserRound: "UserRound";
|
|
3667
3736
|
UserRoundCheck: "UserRoundCheck";
|
|
3668
3737
|
UserRoundCog: "UserRoundCog";
|
|
3738
|
+
UserRoundKey: "UserRoundKey";
|
|
3669
3739
|
UserRoundMinus: "UserRoundMinus";
|
|
3670
3740
|
UserRoundPen: "UserRoundPen";
|
|
3671
3741
|
UserRoundPlus: "UserRoundPlus";
|
|
@@ -3739,9 +3809,23 @@ export declare const LucideIconPropsJSON: z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
3739
3809
|
Worm: "Worm";
|
|
3740
3810
|
Wrench: "Wrench";
|
|
3741
3811
|
X: "X";
|
|
3812
|
+
XLineTop: "XLineTop";
|
|
3742
3813
|
Youtube: "Youtube";
|
|
3743
3814
|
Zap: "Zap";
|
|
3744
3815
|
ZapOff: "ZapOff";
|
|
3816
|
+
ZodiacAquarius: "ZodiacAquarius";
|
|
3817
|
+
ZodiacAries: "ZodiacAries";
|
|
3818
|
+
ZodiacCancer: "ZodiacCancer";
|
|
3819
|
+
ZodiacCapricorn: "ZodiacCapricorn";
|
|
3820
|
+
ZodiacGemini: "ZodiacGemini";
|
|
3821
|
+
ZodiacLeo: "ZodiacLeo";
|
|
3822
|
+
ZodiacLibra: "ZodiacLibra";
|
|
3823
|
+
ZodiacOphiuchus: "ZodiacOphiuchus";
|
|
3824
|
+
ZodiacPisces: "ZodiacPisces";
|
|
3825
|
+
ZodiacSagittarius: "ZodiacSagittarius";
|
|
3826
|
+
ZodiacScorpio: "ZodiacScorpio";
|
|
3827
|
+
ZodiacTaurus: "ZodiacTaurus";
|
|
3828
|
+
ZodiacVirgo: "ZodiacVirgo";
|
|
3745
3829
|
ZoomIn: "ZoomIn";
|
|
3746
3830
|
ZoomOut: "ZoomOut";
|
|
3747
3831
|
ampersandSquare: "ampersandSquare";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LucideIcon.props.d.ts","sourceRoot":"","sources":["../../../src/ui/LucideIcon/LucideIcon.props.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,KAAK,QAAQ,MAAM,aAAa,CAAC;AACxC,OAAO,
|
|
1
|
+
{"version":3,"file":"LucideIcon.props.d.ts","sourceRoot":"","sources":["../../../src/ui/LucideIcon/LucideIcon.props.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,KAAK,QAAQ,MAAM,aAAa,CAAC;AACxC,OAAO,KAAK,WAAW,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,MAAM,cAAc,GAAG,MAAM,OAAO,WAAW,CAAC;AACtD,MAAM,MAAM,WAAW,GAAG,MAAM,OAAO,QAAQ,CAAC;AAGhD,MAAM,MAAM,QAAQ,GAAG,cAAc,GAAG,WAAW,CAAC;AAEpD,eAAO,MAAM,gBAAgB,GAAI,MAAM,MAAM,KAAG,IAAI,IAAI,cAAyD,CAAC;AAElH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAGrB,CAAC;AAEH,KAAK,YAAY,GAAG;IAClB,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC;CACf,CAAC;AAGF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,GAAG,YAAY,CAAC;AAC/E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAoC,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as LucideIcons from 'lucide-react-native/icons';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
const IconSizes = ['xs', 'sm', 'md', 'lg', 'xl'];
|
|
4
|
-
export const isLucideIconName = (name) => Object.keys(
|
|
4
|
+
export const isLucideIconName = (name) => Object.keys(LucideIcons).includes(name);
|
|
5
5
|
const PublicPropsSchema = z.object({
|
|
6
6
|
size: z.enum(IconSizes).describe("Taille de l'icon"),
|
|
7
|
-
name: z.enum([...Object.keys(
|
|
7
|
+
name: z.enum([...Object.keys(LucideIcons)]).describe('Nom de l’icon Lucide'),
|
|
8
8
|
});
|
|
9
9
|
export const LucideIconPropsJSON = z.toJSONSchema(PublicPropsSchema);
|
|
@@ -296,6 +296,7 @@ declare const _default: {
|
|
|
296
296
|
CandyCane: "CandyCane";
|
|
297
297
|
CandyOff: "CandyOff";
|
|
298
298
|
Cannabis: "Cannabis";
|
|
299
|
+
CannabisOff: "CannabisOff";
|
|
299
300
|
Captions: "Captions";
|
|
300
301
|
CaptionsOff: "CaptionsOff";
|
|
301
302
|
Car: "Car";
|
|
@@ -525,6 +526,7 @@ declare const _default: {
|
|
|
525
526
|
Dam: "Dam";
|
|
526
527
|
Database: "Database";
|
|
527
528
|
DatabaseBackup: "DatabaseBackup";
|
|
529
|
+
DatabaseSearch: "DatabaseSearch";
|
|
528
530
|
DatabaseZap: "DatabaseZap";
|
|
529
531
|
DecimalsArrowLeft: "DecimalsArrowLeft";
|
|
530
532
|
DecimalsArrowRight: "DecimalsArrowRight";
|
|
@@ -578,6 +580,7 @@ declare const _default: {
|
|
|
578
580
|
Egg: "Egg";
|
|
579
581
|
EggFried: "EggFried";
|
|
580
582
|
EggOff: "EggOff";
|
|
583
|
+
Ellipse: "Ellipse";
|
|
581
584
|
Ellipsis: "Ellipsis";
|
|
582
585
|
EllipsisVertical: "EllipsisVertical";
|
|
583
586
|
Equal: "Equal";
|
|
@@ -662,6 +665,8 @@ declare const _default: {
|
|
|
662
665
|
Fish: "Fish";
|
|
663
666
|
FishOff: "FishOff";
|
|
664
667
|
FishSymbol: "FishSymbol";
|
|
668
|
+
FishingHook: "FishingHook";
|
|
669
|
+
FishingRod: "FishingRod";
|
|
665
670
|
Flag: "Flag";
|
|
666
671
|
FlagOff: "FlagOff";
|
|
667
672
|
FlagTriangleLeft: "FlagTriangleLeft";
|
|
@@ -673,9 +678,7 @@ declare const _default: {
|
|
|
673
678
|
FlaskConical: "FlaskConical";
|
|
674
679
|
FlaskConicalOff: "FlaskConicalOff";
|
|
675
680
|
FlaskRound: "FlaskRound";
|
|
676
|
-
FlipHorizontal: "FlipHorizontal";
|
|
677
681
|
FlipHorizontal2: "FlipHorizontal2";
|
|
678
|
-
FlipVertical: "FlipVertical";
|
|
679
682
|
FlipVertical2: "FlipVertical2";
|
|
680
683
|
Flower: "Flower";
|
|
681
684
|
Flower2: "Flower2";
|
|
@@ -749,6 +752,7 @@ declare const _default: {
|
|
|
749
752
|
GitFork: "GitFork";
|
|
750
753
|
GitGraph: "GitGraph";
|
|
751
754
|
GitMerge: "GitMerge";
|
|
755
|
+
GitMergeConflict: "GitMergeConflict";
|
|
752
756
|
GitPullRequest: "GitPullRequest";
|
|
753
757
|
GitPullRequestArrow: "GitPullRequestArrow";
|
|
754
758
|
GitPullRequestClosed: "GitPullRequestClosed";
|
|
@@ -761,6 +765,8 @@ declare const _default: {
|
|
|
761
765
|
Glasses: "Glasses";
|
|
762
766
|
Globe: "Globe";
|
|
763
767
|
GlobeLock: "GlobeLock";
|
|
768
|
+
GlobeOff: "GlobeOff";
|
|
769
|
+
GlobeX: "GlobeX";
|
|
764
770
|
Goal: "Goal";
|
|
765
771
|
Gpu: "Gpu";
|
|
766
772
|
GraduationCap: "GraduationCap";
|
|
@@ -796,6 +802,7 @@ declare const _default: {
|
|
|
796
802
|
Hash: "Hash";
|
|
797
803
|
HatGlasses: "HatGlasses";
|
|
798
804
|
Haze: "Haze";
|
|
805
|
+
Hd: "Hd";
|
|
799
806
|
HdmiPort: "HdmiPort";
|
|
800
807
|
Heading: "Heading";
|
|
801
808
|
Heading1: "Heading1";
|
|
@@ -888,12 +895,15 @@ declare const _default: {
|
|
|
888
895
|
Leaf: "Leaf";
|
|
889
896
|
LeafyGreen: "LeafyGreen";
|
|
890
897
|
Lectern: "Lectern";
|
|
898
|
+
LensConcave: "LensConcave";
|
|
899
|
+
LensConvex: "LensConvex";
|
|
891
900
|
Library: "Library";
|
|
892
901
|
LibraryBig: "LibraryBig";
|
|
893
902
|
LifeBuoy: "LifeBuoy";
|
|
894
903
|
Ligature: "Ligature";
|
|
895
904
|
Lightbulb: "Lightbulb";
|
|
896
905
|
LightbulbOff: "LightbulbOff";
|
|
906
|
+
LineDotRightHorizontal: "LineDotRightHorizontal";
|
|
897
907
|
LineSquiggle: "LineSquiggle";
|
|
898
908
|
Link: "Link";
|
|
899
909
|
Link2: "Link2";
|
|
@@ -975,6 +985,7 @@ declare const _default: {
|
|
|
975
985
|
MemoryStick: "MemoryStick";
|
|
976
986
|
Merge: "Merge";
|
|
977
987
|
MessageCircle: "MessageCircle";
|
|
988
|
+
MessageCircleCheck: "MessageCircleCheck";
|
|
978
989
|
MessageCircleCode: "MessageCircleCode";
|
|
979
990
|
MessageCircleDashed: "MessageCircleDashed";
|
|
980
991
|
MessageCircleHeart: "MessageCircleHeart";
|
|
@@ -986,6 +997,7 @@ declare const _default: {
|
|
|
986
997
|
MessageCircleWarning: "MessageCircleWarning";
|
|
987
998
|
MessageCircleX: "MessageCircleX";
|
|
988
999
|
MessageSquare: "MessageSquare";
|
|
1000
|
+
MessageSquareCheck: "MessageSquareCheck";
|
|
989
1001
|
MessageSquareCode: "MessageSquareCode";
|
|
990
1002
|
MessageSquareDashed: "MessageSquareDashed";
|
|
991
1003
|
MessageSquareDiff: "MessageSquareDiff";
|
|
@@ -1002,6 +1014,7 @@ declare const _default: {
|
|
|
1002
1014
|
MessageSquareWarning: "MessageSquareWarning";
|
|
1003
1015
|
MessageSquareX: "MessageSquareX";
|
|
1004
1016
|
MessagesSquare: "MessagesSquare";
|
|
1017
|
+
Metronome: "Metronome";
|
|
1005
1018
|
Mic: "Mic";
|
|
1006
1019
|
MicOff: "MicOff";
|
|
1007
1020
|
MicVocal: "MicVocal";
|
|
@@ -1014,6 +1027,8 @@ declare const _default: {
|
|
|
1014
1027
|
Minimize: "Minimize";
|
|
1015
1028
|
Minimize2: "Minimize2";
|
|
1016
1029
|
Minus: "Minus";
|
|
1030
|
+
MirrorRectangular: "MirrorRectangular";
|
|
1031
|
+
MirrorRound: "MirrorRound";
|
|
1017
1032
|
Monitor: "Monitor";
|
|
1018
1033
|
MonitorCheck: "MonitorCheck";
|
|
1019
1034
|
MonitorCloud: "MonitorCloud";
|
|
@@ -1034,12 +1049,14 @@ declare const _default: {
|
|
|
1034
1049
|
Mountain: "Mountain";
|
|
1035
1050
|
MountainSnow: "MountainSnow";
|
|
1036
1051
|
Mouse: "Mouse";
|
|
1052
|
+
MouseLeft: "MouseLeft";
|
|
1037
1053
|
MouseOff: "MouseOff";
|
|
1038
1054
|
MousePointer: "MousePointer";
|
|
1039
1055
|
MousePointer2: "MousePointer2";
|
|
1040
1056
|
MousePointer2Off: "MousePointer2Off";
|
|
1041
1057
|
MousePointerBan: "MousePointerBan";
|
|
1042
1058
|
MousePointerClick: "MousePointerClick";
|
|
1059
|
+
MouseRight: "MouseRight";
|
|
1043
1060
|
Move: "Move";
|
|
1044
1061
|
Move3d: "Move3d";
|
|
1045
1062
|
MoveDiagonal: "MoveDiagonal";
|
|
@@ -1180,6 +1197,7 @@ declare const _default: {
|
|
|
1180
1197
|
Presentation: "Presentation";
|
|
1181
1198
|
Printer: "Printer";
|
|
1182
1199
|
PrinterCheck: "PrinterCheck";
|
|
1200
|
+
PrinterX: "PrinterX";
|
|
1183
1201
|
Projector: "Projector";
|
|
1184
1202
|
Proportions: "Proportions";
|
|
1185
1203
|
Puzzle: "Puzzle";
|
|
@@ -1305,6 +1323,7 @@ declare const _default: {
|
|
|
1305
1323
|
Share2: "Share2";
|
|
1306
1324
|
Sheet: "Sheet";
|
|
1307
1325
|
Shell: "Shell";
|
|
1326
|
+
ShelvingUnit: "ShelvingUnit";
|
|
1308
1327
|
Shield: "Shield";
|
|
1309
1328
|
ShieldAlert: "ShieldAlert";
|
|
1310
1329
|
ShieldBan: "ShieldBan";
|
|
@@ -1385,11 +1404,15 @@ declare const _default: {
|
|
|
1385
1404
|
SquareArrowOutUpLeft: "SquareArrowOutUpLeft";
|
|
1386
1405
|
SquareArrowOutUpRight: "SquareArrowOutUpRight";
|
|
1387
1406
|
SquareArrowRight: "SquareArrowRight";
|
|
1407
|
+
SquareArrowRightEnter: "SquareArrowRightEnter";
|
|
1408
|
+
SquareArrowRightExit: "SquareArrowRightExit";
|
|
1388
1409
|
SquareArrowUp: "SquareArrowUp";
|
|
1389
1410
|
SquareArrowUpLeft: "SquareArrowUpLeft";
|
|
1390
1411
|
SquareArrowUpRight: "SquareArrowUpRight";
|
|
1391
1412
|
SquareAsterisk: "SquareAsterisk";
|
|
1392
1413
|
SquareBottomDashedScissors: "SquareBottomDashedScissors";
|
|
1414
|
+
SquareCenterlineDashedHorizontal: "SquareCenterlineDashedHorizontal";
|
|
1415
|
+
SquareCenterlineDashedVertical: "SquareCenterlineDashedVertical";
|
|
1393
1416
|
SquareChartGantt: "SquareChartGantt";
|
|
1394
1417
|
SquareCheck: "SquareCheck";
|
|
1395
1418
|
SquareCheckBig: "SquareCheckBig";
|
|
@@ -1455,6 +1478,7 @@ declare const _default: {
|
|
|
1455
1478
|
Stethoscope: "Stethoscope";
|
|
1456
1479
|
Sticker: "Sticker";
|
|
1457
1480
|
StickyNote: "StickyNote";
|
|
1481
|
+
Stone: "Stone";
|
|
1458
1482
|
Store: "Store";
|
|
1459
1483
|
StretchHorizontal: "StretchHorizontal";
|
|
1460
1484
|
StretchVertical: "StretchVertical";
|
|
@@ -1534,10 +1558,12 @@ declare const _default: {
|
|
|
1534
1558
|
ToggleRight: "ToggleRight";
|
|
1535
1559
|
Toilet: "Toilet";
|
|
1536
1560
|
ToolCase: "ToolCase";
|
|
1561
|
+
Toolbox: "Toolbox";
|
|
1537
1562
|
Tornado: "Tornado";
|
|
1538
1563
|
Torus: "Torus";
|
|
1539
1564
|
Touchpad: "Touchpad";
|
|
1540
1565
|
TouchpadOff: "TouchpadOff";
|
|
1566
|
+
TowelRack: "TowelRack";
|
|
1541
1567
|
TowerControl: "TowerControl";
|
|
1542
1568
|
ToyBrick: "ToyBrick";
|
|
1543
1569
|
Tractor: "Tractor";
|
|
@@ -1592,6 +1618,7 @@ declare const _default: {
|
|
|
1592
1618
|
User: "User";
|
|
1593
1619
|
UserCheck: "UserCheck";
|
|
1594
1620
|
UserCog: "UserCog";
|
|
1621
|
+
UserKey: "UserKey";
|
|
1595
1622
|
UserLock: "UserLock";
|
|
1596
1623
|
UserMinus: "UserMinus";
|
|
1597
1624
|
UserPen: "UserPen";
|
|
@@ -1599,6 +1626,7 @@ declare const _default: {
|
|
|
1599
1626
|
UserRound: "UserRound";
|
|
1600
1627
|
UserRoundCheck: "UserRoundCheck";
|
|
1601
1628
|
UserRoundCog: "UserRoundCog";
|
|
1629
|
+
UserRoundKey: "UserRoundKey";
|
|
1602
1630
|
UserRoundMinus: "UserRoundMinus";
|
|
1603
1631
|
UserRoundPen: "UserRoundPen";
|
|
1604
1632
|
UserRoundPlus: "UserRoundPlus";
|
|
@@ -1672,9 +1700,23 @@ declare const _default: {
|
|
|
1672
1700
|
Worm: "Worm";
|
|
1673
1701
|
Wrench: "Wrench";
|
|
1674
1702
|
X: "X";
|
|
1703
|
+
XLineTop: "XLineTop";
|
|
1675
1704
|
Youtube: "Youtube";
|
|
1676
1705
|
Zap: "Zap";
|
|
1677
1706
|
ZapOff: "ZapOff";
|
|
1707
|
+
ZodiacAquarius: "ZodiacAquarius";
|
|
1708
|
+
ZodiacAries: "ZodiacAries";
|
|
1709
|
+
ZodiacCancer: "ZodiacCancer";
|
|
1710
|
+
ZodiacCapricorn: "ZodiacCapricorn";
|
|
1711
|
+
ZodiacGemini: "ZodiacGemini";
|
|
1712
|
+
ZodiacLeo: "ZodiacLeo";
|
|
1713
|
+
ZodiacLibra: "ZodiacLibra";
|
|
1714
|
+
ZodiacOphiuchus: "ZodiacOphiuchus";
|
|
1715
|
+
ZodiacPisces: "ZodiacPisces";
|
|
1716
|
+
ZodiacSagittarius: "ZodiacSagittarius";
|
|
1717
|
+
ZodiacScorpio: "ZodiacScorpio";
|
|
1718
|
+
ZodiacTaurus: "ZodiacTaurus";
|
|
1719
|
+
ZodiacVirgo: "ZodiacVirgo";
|
|
1678
1720
|
ZoomIn: "ZoomIn";
|
|
1679
1721
|
ZoomOut: "ZoomOut";
|
|
1680
1722
|
ampersandSquare: "ampersandSquare";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LucideIcon.stories.d.ts","sourceRoot":"","sources":["../../../src/ui/LucideIcon/LucideIcon.stories.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"LucideIcon.stories.d.ts","sourceRoot":"","sources":["../../../src/ui/LucideIcon/LucideIcon.stories.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKA,wBASkB;AAElB,eAAO,MAAM,OAAO,+CAOnB,CAAC;AAEF,eAAO,MAAM,OAAO,+CAAgE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alveole/components",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.6",
|
|
4
4
|
"description": "Shared UI components.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"react": "*",
|
|
53
53
|
"react-native": "*",
|
|
54
54
|
"react-native-svg": "^15.0.0",
|
|
55
|
-
"lucide-react-native": "0.
|
|
55
|
+
"lucide-react-native": ">=0.570.0",
|
|
56
56
|
"@lucide/lab": "*",
|
|
57
57
|
"react-native-webview": ">=13",
|
|
58
58
|
"expo-application": "*",
|