@wavv/ui 2.3.16 → 2.3.18

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.
@@ -56,7 +56,7 @@ const PanelContainer = styled(DisclosurePanel, {
56
56
  opacity: 0
57
57
  },
58
58
  '&[aria-hidden="false"]': {
59
- padding: defaultPadding ? '4px 16px' : void 0
59
+ padding: defaultPadding ? '8px 16px' : void 0
60
60
  }
61
61
  }));
62
62
  Panel.displayName = 'Accordion.Panel';
@@ -14,7 +14,7 @@ const Focusable = ({ children, ref, ...props })=>{
14
14
  });
15
15
  };
16
16
  const Trigger = styled.span({
17
- display: 'grid'
17
+ display: 'inline-flex'
18
18
  });
19
19
  const components_Focusable = Focusable;
20
20
  export { components_Focusable as default };
@@ -20,6 +20,7 @@ declare const icons: {
20
20
  readonly calendar: ComponentType<WrappedIconProps>;
21
21
  readonly camera: ComponentType<WrappedIconProps>;
22
22
  readonly card: ComponentType<WrappedIconProps>;
23
+ readonly cart: ComponentType<WrappedIconProps>;
23
24
  readonly check: ComponentType<WrappedIconProps>;
24
25
  readonly 'check-badge': ComponentType<WrappedIconProps>;
25
26
  readonly 'check-circle': ComponentType<WrappedIconProps>;
@@ -1,4 +1,4 @@
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, CirclePause, CirclePlay, CirclePlus, CircleQuestionMark, CircleStop, CircleUserRound, CircleX, Clapperboard, Clock, Copy, CopyCheck, CopyPlus, CreditCard, Download, Ear, EllipsisVertical, ExternalLink, Eye, EyeOff, Facebook, FileText, Flag, FlaskConical, 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, LogIn, LogOut, MapPin, MapPinned, Maximize2, Meh, Menu, Merge, MessageSquareMore, Mic, MicOff, Minimize2, Minus, MonitorSmartphone, NotebookPen, Paperclip, Pause, Pencil, Pilcrow, Play, Plus, Redo, RefreshCcwDot, RefreshCw, Rocket, RotateCw, Search, Settings, Share, Share2, Shield, ShieldCheck, ShieldOff, ShieldPlus, Smartphone, Smile, Sparkles, Square, SquareStack, Star, Strikethrough, TextQuote, Trash2, TriangleAlert, Trophy, Underline, Undo, Upload, UserRound, UserRoundPlus, Users, Video, Voicemail, Volume2, 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, CirclePause, CirclePlay, CirclePlus, CircleQuestionMark, CircleStop, CircleUserRound, CircleX, Clapperboard, Clock, Copy, CopyCheck, CopyPlus, CreditCard, Download, Ear, EllipsisVertical, ExternalLink, Eye, EyeOff, Facebook, FileText, Flag, FlaskConical, 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, LogIn, LogOut, MapPin, MapPinned, Maximize2, Meh, Menu, Merge, MessageSquareMore, Mic, MicOff, Minimize2, Minus, MonitorSmartphone, NotebookPen, Paperclip, Pause, Pencil, Pilcrow, Play, Plus, Redo, RefreshCcwDot, RefreshCw, Rocket, RotateCw, Search, Settings, Share, Share2, Shield, ShieldCheck, ShieldOff, ShieldPlus, ShoppingCart, Smartphone, Smile, Sparkles, Square, SquareStack, Star, Strikethrough, TextQuote, Trash2, TriangleAlert, Trophy, Underline, Undo, Upload, UserRound, UserRoundPlus, Users, Video, Voicemail, Volume2, X, Youtube } from "lucide-react";
2
2
  import createWrappedIcon from "./createWrappedIcon.js";
3
3
  const icons = {
4
4
  'activity-history': createWrappedIcon(IdCard),
@@ -20,6 +20,7 @@ const icons = {
20
20
  calendar: createWrappedIcon(CalendarDays),
21
21
  camera: createWrappedIcon(Camera),
22
22
  card: createWrappedIcon(CreditCard),
23
+ cart: createWrappedIcon(ShoppingCart),
23
24
  check: createWrappedIcon(Check),
24
25
  'check-badge': createWrappedIcon(BadgeCheck),
25
26
  'check-circle': createWrappedIcon(CircleCheck),
@@ -31,7 +31,7 @@ const BodyEl = styled(TableBody)(({ theme, loading })=>({
31
31
  color: theme.table.color.body,
32
32
  fontSize: theme.font.size.sm,
33
33
  '& > tr:last-of-type > td:first-of-type': {
34
- paddingTop: loading ? void 0 : 16
34
+ padding: loading ? void 0 : '16px 0'
35
35
  }
36
36
  }
37
37
  }));
@@ -43,7 +43,7 @@ const SpinnerContainer = styled.div(({ theme })=>({
43
43
  justifyContent: 'center',
44
44
  alignItems: 'center',
45
45
  color: theme.scale6,
46
- paddingTop: 4
46
+ padding: '4px 0'
47
47
  }));
48
48
  const Table_Body = Body;
49
49
  export { Table_Body as default };
@@ -33,6 +33,7 @@ const Tooltip_Tooltip = ({ trigger, triggerProps, children, content, position, o
33
33
  textColor: color,
34
34
  className: className,
35
35
  triggerRef: triggerRef,
36
+ "data-react-aria-top-layer": true,
36
37
  children: [
37
38
  /*#__PURE__*/ jsx(OverlayArrow, {
38
39
  children: /*#__PURE__*/ jsx("svg", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavv/ui",
3
- "version": "2.3.16",
3
+ "version": "2.3.18",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {