@wavv/ui 2.4.18 → 2.4.22
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.
|
@@ -4,6 +4,7 @@ declare const icons: {
|
|
|
4
4
|
readonly 'activity-history': ComponentType<WrappedIconProps>;
|
|
5
5
|
readonly add: ComponentType<WrappedIconProps>;
|
|
6
6
|
readonly 'add-circle': ComponentType<WrappedIconProps>;
|
|
7
|
+
readonly announce: ComponentType<WrappedIconProps>;
|
|
7
8
|
readonly 'arrow-down': ComponentType<WrappedIconProps>;
|
|
8
9
|
readonly 'arrow-left': ComponentType<WrappedIconProps>;
|
|
9
10
|
readonly 'arrow-right': ComponentType<WrappedIconProps>;
|
|
@@ -54,6 +55,7 @@ declare const icons: {
|
|
|
54
55
|
readonly 'eye-off': ComponentType<WrappedIconProps>;
|
|
55
56
|
readonly 'eye-on': ComponentType<WrappedIconProps>;
|
|
56
57
|
readonly facebook: ComponentType<WrappedIconProps>;
|
|
58
|
+
readonly 'file-type': ComponentType<WrappedIconProps>;
|
|
57
59
|
readonly filter: ComponentType<WrappedIconProps>;
|
|
58
60
|
readonly flag: ComponentType<WrappedIconProps>;
|
|
59
61
|
readonly flask: ComponentType<WrappedIconProps>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { ArrowDown, ArrowDownWideNarrow, ArrowLeft, ArrowRight, ArrowRightLeft, ArrowUp, ArrowUpWideNarrow, BadgeCheck, Ban, Bell, BellDot, Bold, Bot, Braces, Bug, CalendarDays, Camera, ChartColumn, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronsLeft, ChevronsRight, ChevronsUpDown, Circle, CircleAlert, CircleCheck, CircleDotDashed, CirclePause, CirclePlay, CirclePlus, CircleQuestionMark, CircleStop, CircleUserRound, CircleX, Clapperboard, Clock, Copy, CopyCheck, CopyPlus, CreditCard, Delete, Download, Ear, EllipsisVertical, ExternalLink, Eye, EyeOff, Facebook, FileText, Flag, FlaskConical, Folder, FolderInput, FolderOutput, FolderPlus, FolderX, Frown, Funnel, Globe, GripVertical, Hash, Heading, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, Heart, Highlighter, Hourglass, House, IdCard, Info, Instagram, Italic, Kanban, Layers2, LayoutDashboard, Lightbulb, Link, Linkedin, List, ListChecks, ListFilter, ListOrdered, ListTodo, Loader, LockKeyhole, LockKeyholeOpen, LogIn, LogOut, MapPin, MapPinned, Maximize2, Meh, Menu, Merge, MessageSquareMore, Mic, MicOff, Minimize2, Minus, MonitorSmartphone, NotebookPen, Paperclip, Pause, Pencil, Percent, Pilcrow, Pin, PinOff, Play, Plus, Redo, RefreshCcwDot, RefreshCw, Rocket, RotateCw, Search, Send, Settings, Share, Share2, Shield, ShieldCheck, ShieldOff, ShieldPlus, ShoppingCart, Smartphone, Smile, Sparkles, Square, SquareKanban, SquarePen, SquareStack, Star, Strikethrough, Tag, TextQuote, Trash2, TriangleAlert, Trophy, Underline, Undo, Upload, UserRound, UserRoundCheck, UserRoundPlus, UserRoundX, Users, Video, Voicemail, Volume2, Workflow, X, Youtube } from "lucide-react";
|
|
1
|
+
import { ArrowDown, ArrowDownWideNarrow, ArrowLeft, ArrowRight, ArrowRightLeft, ArrowUp, ArrowUpWideNarrow, BadgeCheck, Ban, Bell, BellDot, Bold, Bot, Braces, Bug, CalendarDays, Camera, ChartColumn, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronsLeft, ChevronsRight, ChevronsUpDown, Circle, CircleAlert, CircleCheck, CircleDotDashed, CirclePause, CirclePlay, CirclePlus, CircleQuestionMark, CircleStop, CircleUserRound, CircleX, Clapperboard, Clock, Copy, CopyCheck, CopyPlus, CreditCard, Delete, Download, Ear, EllipsisVertical, ExternalLink, Eye, EyeOff, Facebook, FileText, FileType, Flag, FlaskConical, Folder, FolderInput, FolderOutput, FolderPlus, FolderX, Frown, Funnel, Globe, GripVertical, Hash, Heading, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, Heart, Highlighter, Hourglass, House, IdCard, Info, Instagram, Italic, Kanban, Layers2, LayoutDashboard, Lightbulb, Link, Linkedin, List, ListChecks, ListFilter, ListOrdered, ListTodo, Loader, LockKeyhole, LockKeyholeOpen, LogIn, LogOut, MapPin, MapPinned, Maximize2, Megaphone, Meh, Menu, Merge, MessageSquareMore, Mic, MicOff, Minimize2, Minus, MonitorSmartphone, NotebookPen, Paperclip, Pause, Pencil, Percent, Pilcrow, Pin, PinOff, Play, Plus, Redo, RefreshCcwDot, RefreshCw, Rocket, RotateCw, Search, Send, Settings, Share, Share2, Shield, ShieldCheck, ShieldOff, ShieldPlus, ShoppingCart, Smartphone, Smile, Sparkles, Square, SquareKanban, SquarePen, SquareStack, Star, Strikethrough, Tag, TextQuote, Trash2, TriangleAlert, Trophy, Underline, Undo, Upload, UserRound, UserRoundCheck, UserRoundPlus, UserRoundX, Users, Video, Voicemail, Volume2, Workflow, X, Youtube } from "lucide-react";
|
|
2
2
|
import createWrappedIcon from "./createWrappedIcon.js";
|
|
3
3
|
const icons = {
|
|
4
4
|
'activity-history': createWrappedIcon(IdCard),
|
|
5
5
|
add: createWrappedIcon(Plus),
|
|
6
6
|
'add-circle': createWrappedIcon(CirclePlus),
|
|
7
|
+
announce: createWrappedIcon(Megaphone),
|
|
7
8
|
'arrow-down': createWrappedIcon(ArrowDown),
|
|
8
9
|
'arrow-left': createWrappedIcon(ArrowLeft),
|
|
9
10
|
'arrow-right': createWrappedIcon(ArrowRight),
|
|
@@ -54,6 +55,7 @@ const icons = {
|
|
|
54
55
|
'eye-off': createWrappedIcon(EyeOff),
|
|
55
56
|
'eye-on': createWrappedIcon(Eye),
|
|
56
57
|
facebook: createWrappedIcon(Facebook),
|
|
58
|
+
'file-type': createWrappedIcon(FileType),
|
|
57
59
|
filter: createWrappedIcon(ListFilter),
|
|
58
60
|
flag: createWrappedIcon(Flag),
|
|
59
61
|
flask: createWrappedIcon(FlaskConical),
|
|
@@ -119,6 +119,7 @@ const ModalContainer = styled.div(({ theme, width, height, backgroundColor, bord
|
|
|
119
119
|
display: 'flex',
|
|
120
120
|
flexDirection: 'column',
|
|
121
121
|
backgroundColor: noBackground ? 'transparent' : backgroundColor || theme.modal.background,
|
|
122
|
+
border: noBackground ? void 0 : `1px solid ${theme.scale0}`,
|
|
122
123
|
color: theme.scale10,
|
|
123
124
|
boxShadow: noBackground ? void 0 : drawer ? 'left' === drawerDirection ? '8px 0 20px rgba(0, 0, 0, 0.2)' : '-8px 0 20px rgba(0, 0, 0, 0.2)' : theme.elevation3,
|
|
124
125
|
width: width || 'max-content',
|