@bearmenu/ui 0.7.1 → 0.8.1

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.
Files changed (128) hide show
  1. package/dist/{chunk-4JOV7FXW.js → chunk-2DEIXTBN.js} +1 -1
  2. package/dist/{chunk-UUJVXN2O.js → chunk-66MAPLXS.js} +3 -1
  3. package/dist/{chunk-Y5D5LP4A.js → chunk-7BWTYWM3.js} +14 -3
  4. package/dist/{chunk-ZFNOCP6W.js → chunk-H3BV4VAG.js} +15 -1
  5. package/dist/{chunk-TL4YU2O5.js → chunk-UKBNQO6Q.js} +2 -2
  6. package/dist/{chunk-UX6SWAKH.js → chunk-UZ3PCIE5.js} +119 -28
  7. package/dist/{chunk-YLNYXPIH.js → chunk-VBA45GLP.js} +1 -1
  8. package/dist/{chunk-A5ONAJCE.js → chunk-VG3PND3D.js} +1 -1
  9. package/dist/{chunk-ZBBUKXM5.js → chunk-X3WMRKOW.js} +1 -1
  10. package/dist/{chunk-HCM6LKM5.js → chunk-XNA2INVQ.js} +2 -2
  11. package/dist/{chunk-AV777R4G.js → chunk-YYGB4G4Q.js} +1 -1
  12. package/dist/components/accordion.js +1 -1
  13. package/dist/components/alert-dialog.js +1 -1
  14. package/dist/components/alert.d.ts +2 -2
  15. package/dist/components/alert.js +1 -1
  16. package/dist/components/avatar.d.ts +10 -1
  17. package/dist/components/avatar.js +41 -14
  18. package/dist/components/badge.d.ts +11 -2
  19. package/dist/components/badge.js +1 -1
  20. package/dist/components/breadcrumb.js +1 -1
  21. package/dist/components/button.d.ts +1 -1
  22. package/dist/components/button.js +1 -1
  23. package/dist/components/calendar.js +3 -3
  24. package/dist/components/card.d.ts +2 -2
  25. package/dist/components/card.js +1 -1
  26. package/dist/components/carousel.js +1 -1
  27. package/dist/components/circular-progress.js +1 -1
  28. package/dist/components/combobox.js +3 -3
  29. package/dist/components/command.d.ts +15 -15
  30. package/dist/components/command.js +1 -1
  31. package/dist/components/currency-input.js +2 -2
  32. package/dist/components/date-input.d.ts +1 -1
  33. package/dist/components/date-input.js +1 -1
  34. package/dist/components/description-list.js +1 -1
  35. package/dist/components/dropdown-menu.js +1 -1
  36. package/dist/components/empty-state.js +2 -2
  37. package/dist/components/field.js +2 -2
  38. package/dist/components/filter-category-row.js +2 -2
  39. package/dist/components/form.js +1 -1
  40. package/dist/components/haptic-button.js +1 -1
  41. package/dist/components/input-group.js +1 -1
  42. package/dist/components/input.js +1 -1
  43. package/dist/components/item.d.ts +2 -2
  44. package/dist/components/item.js +1 -1
  45. package/dist/components/kbd.js +1 -1
  46. package/dist/components/label.js +1 -1
  47. package/dist/components/link-button.js +1 -1
  48. package/dist/components/multi-select-combobox.js +4 -4
  49. package/dist/components/pagination.js +1 -1
  50. package/dist/components/place-about-tab.d.ts +17 -1
  51. package/dist/components/place-about-tab.js +4 -4
  52. package/dist/components/place-card.js +2 -2
  53. package/dist/components/place-details-mobile.js +7 -7
  54. package/dist/components/place-schedule-week.js +2 -2
  55. package/dist/components/popover.js +1 -1
  56. package/dist/components/searchable-select.js +3 -3
  57. package/dist/components/select.js +2 -2
  58. package/dist/components/selection-bar.js +1 -1
  59. package/dist/components/sheet.d.ts +23 -0
  60. package/dist/components/sheet.js +51 -14
  61. package/dist/components/sliding-panels.js +5 -1
  62. package/dist/components/sonner.js +2 -2
  63. package/dist/components/spinner.d.ts +2 -2
  64. package/dist/components/stepper.js +4 -1
  65. package/dist/components/table.js +1 -1
  66. package/dist/components/tabs.js +1 -1
  67. package/dist/components/tag-group.js +1 -1
  68. package/dist/components/tag.d.ts +2 -2
  69. package/dist/components/tag.js +1 -1
  70. package/dist/components/text.d.ts +21 -3
  71. package/dist/components/text.js +1 -1
  72. package/dist/components/toggle-group.js +1 -1
  73. package/dist/components/toggle.js +1 -1
  74. package/dist/lib/card-hover.d.ts +75 -0
  75. package/dist/lib/card-hover.js +18 -0
  76. package/package.json +1 -1
  77. package/src/components/accordion.tsx +1 -1
  78. package/src/components/avatar.stories.tsx +59 -26
  79. package/src/components/avatar.test.tsx +129 -0
  80. package/src/components/avatar.tsx +93 -37
  81. package/src/components/badge.tsx +15 -3
  82. package/src/components/breadcrumb.tsx +1 -1
  83. package/src/components/button.tsx +16 -1
  84. package/src/components/calendar.tsx +2 -2
  85. package/src/components/circular-progress.tsx +1 -1
  86. package/src/components/command.tsx +2 -2
  87. package/src/components/currency-input.tsx +1 -1
  88. package/src/components/description-list.tsx +1 -1
  89. package/src/components/dropdown-menu.tsx +1 -1
  90. package/src/components/field.tsx +1 -1
  91. package/src/components/input-group.tsx +1 -1
  92. package/src/components/input.tsx +1 -1
  93. package/src/components/item.tsx +1 -1
  94. package/src/components/kbd.tsx +1 -1
  95. package/src/components/label.tsx +1 -1
  96. package/src/components/place-about-tab.tsx +131 -18
  97. package/src/components/place-card.tsx +1 -1
  98. package/src/components/place-details-mobile.tsx +2 -2
  99. package/src/components/popover.tsx +9 -1
  100. package/src/components/select.tsx +2 -2
  101. package/src/components/selection-bar.tsx +1 -1
  102. package/src/components/sheet.tsx +72 -12
  103. package/src/components/sliding-panels.stories.tsx +70 -0
  104. package/src/components/sliding-panels.test.tsx +116 -0
  105. package/src/components/sliding-panels.tsx +14 -0
  106. package/src/components/sonner.tsx +2 -2
  107. package/src/components/stepper.tsx +4 -1
  108. package/src/components/table.tsx +1 -1
  109. package/src/components/tabs.tsx +1 -1
  110. package/src/components/tag-group.tsx +1 -1
  111. package/src/components/tag.tsx +1 -1
  112. package/src/components/text.test.tsx +37 -3
  113. package/src/components/text.tsx +32 -3
  114. package/src/components/toggle.tsx +1 -1
  115. package/src/globals.css +53 -11
  116. package/src/lib/card-hover.ts +87 -0
  117. package/dist/chunk-EBAMCZDW.js +0 -112
  118. package/dist/chunk-VQNDZVI7.js +0 -106
  119. package/dist/components/toast.d.ts +0 -18
  120. package/dist/components/toast.js +0 -3
  121. package/dist/components/toaster.d.ts +0 -5
  122. package/dist/components/toaster.js +0 -25
  123. package/dist/components/use-toast.d.ts +0 -42
  124. package/dist/components/use-toast.js +0 -2
  125. package/src/components/toast.stories.tsx +0 -63
  126. package/src/components/toast.tsx +0 -130
  127. package/src/components/toaster.tsx +0 -31
  128. package/src/components/use-toast.ts +0 -180
@@ -1,4 +1,4 @@
1
- import { buttonVariants, Button } from '../chunk-ZFNOCP6W.js';
1
+ import { buttonVariants, Button } from '../chunk-H3BV4VAG.js';
2
2
  import '../chunk-R47NEOSI.js';
3
3
  import { cn } from '../chunk-FEK5XGZW.js';
4
4
  import { __objRest, __spreadValues, __spreadProps } from '../chunk-3GWWZKX7.js';
@@ -63,7 +63,7 @@ function Calendar(_a) {
63
63
  defaultClassNames.month_caption
64
64
  ),
65
65
  dropdowns: cn(
66
- "flex h-(--cell-size) w-full items-center justify-center gap-1.5 text-sm font-medium",
66
+ "flex h-(--cell-size) w-full items-center justify-center gap-1.5 text-sm font-semibold",
67
67
  defaultClassNames.dropdowns
68
68
  ),
69
69
  dropdown_root: cn(
@@ -72,7 +72,7 @@ function Calendar(_a) {
72
72
  ),
73
73
  dropdown: cn("absolute inset-0 bg-popover opacity-0", defaultClassNames.dropdown),
74
74
  caption_label: cn(
75
- "font-medium select-none",
75
+ "font-semibold select-none",
76
76
  captionLayout === "label" ? "text-sm" : "flex h-8 items-center gap-1 rounded-md pr-1 pl-2 text-sm [&>svg]:size-3.5 [&>svg]:text-muted-foreground",
77
77
  defaultClassNames.caption_label
78
78
  ),
@@ -3,12 +3,12 @@ import * as React from 'react';
3
3
  import { VariantProps } from 'class-variance-authority';
4
4
 
5
5
  declare const cardVariants: (props?: ({
6
- variant?: "outline" | "glass" | "muted" | "surface" | null | undefined;
6
+ variant?: "muted" | "outline" | "glass" | "surface" | null | undefined;
7
7
  size?: "default" | "sm" | "lg" | null | undefined;
8
8
  interactive?: boolean | null | undefined;
9
9
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10
10
  declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
11
- variant?: "outline" | "glass" | "muted" | "surface" | null | undefined;
11
+ variant?: "muted" | "outline" | "glass" | "surface" | null | undefined;
12
12
  size?: "default" | "sm" | "lg" | null | undefined;
13
13
  interactive?: boolean | null | undefined;
14
14
  } & class_variance_authority_types.ClassProp) | undefined) => string> & React.RefAttributes<HTMLDivElement>>;
@@ -1,4 +1,4 @@
1
- import { textVariants } from '../chunk-Y5D5LP4A.js';
1
+ import { textVariants } from '../chunk-7BWTYWM3.js';
2
2
  import { cn } from '../chunk-FEK5XGZW.js';
3
3
  import { __objRest, __spreadValues } from '../chunk-3GWWZKX7.js';
4
4
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- import { Button } from '../chunk-ZFNOCP6W.js';
1
+ import { Button } from '../chunk-H3BV4VAG.js';
2
2
  import '../chunk-R47NEOSI.js';
3
3
  import { cn } from '../chunk-FEK5XGZW.js';
4
4
  import { __objRest, __spreadProps, __spreadValues } from '../chunk-3GWWZKX7.js';
@@ -91,7 +91,7 @@ var CircularProgress = React.forwardRef(
91
91
  ]
92
92
  }
93
93
  ),
94
- showLabel && !indeterminate && /* @__PURE__ */ jsxs("span", { className: "absolute text-xs font-medium tabular-nums text-foreground", children: [
94
+ showLabel && !indeterminate && /* @__PURE__ */ jsxs("span", { className: "absolute text-xs font-semibold tabular-nums text-foreground", children: [
95
95
  Math.round(percent),
96
96
  "%"
97
97
  ] })
@@ -1,7 +1,7 @@
1
- import { Popover, PopoverTrigger, PopoverContent } from '../chunk-UUJVXN2O.js';
2
- import { Command, CommandInput, CommandList, CommandLoading, CommandEmpty, CommandGroup, CommandItem } from '../chunk-HCM6LKM5.js';
1
+ import { Popover, PopoverTrigger, PopoverContent } from '../chunk-66MAPLXS.js';
2
+ import { Command, CommandInput, CommandList, CommandLoading, CommandEmpty, CommandGroup, CommandItem } from '../chunk-XNA2INVQ.js';
3
3
  import '../chunk-FRPPIXMY.js';
4
- import { Button } from '../chunk-ZFNOCP6W.js';
4
+ import { Button } from '../chunk-H3BV4VAG.js';
5
5
  import '../chunk-R47NEOSI.js';
6
6
  import { cn } from '../chunk-FEK5XGZW.js';
7
7
  import '../chunk-3GWWZKX7.js';
@@ -4,11 +4,11 @@ import { DialogProps } from '@radix-ui/react-dialog';
4
4
 
5
5
  declare const Command: React.ForwardRefExoticComponent<Omit<{
6
6
  children?: React.ReactNode;
7
- } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
7
+ } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement> | "key"> & {
8
8
  ref?: React.Ref<HTMLDivElement>;
9
9
  } & {
10
10
  asChild?: boolean;
11
- }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
11
+ }, keyof React.HTMLAttributes<HTMLDivElement> | "asChild" | "key"> & {
12
12
  label?: string;
13
13
  shouldFilter?: boolean;
14
14
  filter?: (value: string, search: string, keywords?: string[]) => number;
@@ -28,61 +28,61 @@ declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<
28
28
  ref?: React.Ref<HTMLInputElement>;
29
29
  } & {
30
30
  asChild?: boolean;
31
- }, "key" | "asChild" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "type" | "value"> & {
31
+ }, "asChild" | "key" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "type" | "value"> & {
32
32
  value?: string;
33
33
  onValueChange?: (search: string) => void;
34
34
  } & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
35
35
  declare const CommandList: React.ForwardRefExoticComponent<Omit<{
36
36
  children?: React.ReactNode;
37
- } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
37
+ } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement> | "key"> & {
38
38
  ref?: React.Ref<HTMLDivElement>;
39
39
  } & {
40
40
  asChild?: boolean;
41
- }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
41
+ }, keyof React.HTMLAttributes<HTMLDivElement> | "asChild" | "key"> & {
42
42
  label?: string;
43
43
  } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
44
44
  declare const CommandEmpty: React.ForwardRefExoticComponent<Omit<{
45
45
  children?: React.ReactNode;
46
- } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
46
+ } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement> | "key"> & {
47
47
  ref?: React.Ref<HTMLDivElement>;
48
48
  } & {
49
49
  asChild?: boolean;
50
- }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
50
+ }, keyof React.HTMLAttributes<HTMLDivElement> | "asChild" | "key"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
51
51
  declare const CommandLoading: React.ForwardRefExoticComponent<Omit<{
52
52
  children?: React.ReactNode;
53
- } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
53
+ } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement> | "key"> & {
54
54
  ref?: React.Ref<HTMLDivElement>;
55
55
  } & {
56
56
  asChild?: boolean;
57
- }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
57
+ }, keyof React.HTMLAttributes<HTMLDivElement> | "asChild" | "key"> & {
58
58
  progress?: number;
59
59
  label?: string;
60
60
  } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
61
61
  declare const CommandGroup: React.ForwardRefExoticComponent<Omit<{
62
62
  children?: React.ReactNode;
63
- } & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
63
+ } & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement> | "key"> & {
64
64
  ref?: React.Ref<HTMLDivElement>;
65
65
  } & {
66
66
  asChild?: boolean;
67
- }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "heading" | "value"> & {
67
+ }, keyof React.HTMLAttributes<HTMLDivElement> | "asChild" | "key">, "heading" | "value"> & {
68
68
  heading?: React.ReactNode;
69
69
  value?: string;
70
70
  forceMount?: boolean;
71
71
  } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
72
- declare const CommandSeparator: React.ForwardRefExoticComponent<Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
72
+ declare const CommandSeparator: React.ForwardRefExoticComponent<Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement> | "key"> & {
73
73
  ref?: React.Ref<HTMLDivElement>;
74
74
  } & {
75
75
  asChild?: boolean;
76
- }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
76
+ }, keyof React.HTMLAttributes<HTMLDivElement> | "asChild" | "key"> & {
77
77
  alwaysRender?: boolean;
78
78
  } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
79
79
  declare const CommandItem: React.ForwardRefExoticComponent<Omit<{
80
80
  children?: React.ReactNode;
81
- } & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
81
+ } & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement> | "key"> & {
82
82
  ref?: React.Ref<HTMLDivElement>;
83
83
  } & {
84
84
  asChild?: boolean;
85
- }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
85
+ }, keyof React.HTMLAttributes<HTMLDivElement> | "asChild" | "key">, "onSelect" | "disabled" | "value"> & {
86
86
  disabled?: boolean;
87
87
  onSelect?: (value: string) => void;
88
88
  value?: string;
@@ -1,4 +1,4 @@
1
- export { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandLoading, CommandSeparator, CommandShortcut } from '../chunk-HCM6LKM5.js';
1
+ export { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandLoading, CommandSeparator, CommandShortcut } from '../chunk-XNA2INVQ.js';
2
2
  import '../chunk-FRPPIXMY.js';
3
3
  import '../chunk-FEK5XGZW.js';
4
4
  import '../chunk-3GWWZKX7.js';
@@ -1,4 +1,4 @@
1
- import { Input } from '../chunk-AV777R4G.js';
1
+ import { Input } from '../chunk-YYGB4G4Q.js';
2
2
  import { cn } from '../chunk-FEK5XGZW.js';
3
3
  import { __objRest, __spreadValues } from '../chunk-3GWWZKX7.js';
4
4
  import * as React from 'react';
@@ -109,7 +109,7 @@ var CurrencyInput = React.forwardRef(
109
109
  "span",
110
110
  {
111
111
  "aria-hidden": true,
112
- className: "pointer-events-none absolute left-3 top-1/2 -translate-y-1/2 text-sm font-medium text-muted-foreground",
112
+ className: "pointer-events-none absolute left-3 top-1/2 -translate-y-1/2 text-sm font-semibold text-muted-foreground",
113
113
  children: currency
114
114
  }
115
115
  ),
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
 
3
- declare const DateInput: React.ForwardRefExoticComponent<Omit<React.InputHTMLAttributes<HTMLInputElement>, "type" | "size"> & {
3
+ declare const DateInput: React.ForwardRefExoticComponent<Omit<React.InputHTMLAttributes<HTMLInputElement>, "size" | "type"> & {
4
4
  /** Native input type. Defaults to "date". */
5
5
  type?: "date" | "datetime-local" | "time" | "month" | "week";
6
6
  size?: "sm" | "default" | "lg";
@@ -1,4 +1,4 @@
1
- import { Input } from '../chunk-AV777R4G.js';
1
+ import { Input } from '../chunk-YYGB4G4Q.js';
2
2
  import { cn } from '../chunk-FEK5XGZW.js';
3
3
  import { __objRest, __spreadValues } from '../chunk-3GWWZKX7.js';
4
4
  import * as React from 'react';
@@ -43,7 +43,7 @@ var DescriptionTerm = React.forwardRef(
43
43
  __spreadValues({
44
44
  ref,
45
45
  "data-slot": "description-term",
46
- className: cn("text-xs font-medium uppercase tracking-wide text-muted-foreground", className)
46
+ className: cn("text-xs font-semibold uppercase tracking-wide text-muted-foreground", className)
47
47
  }, props)
48
48
  );
49
49
  }
@@ -147,7 +147,7 @@ function DropdownMenuLabel(_a) {
147
147
  __spreadValues({
148
148
  "data-slot": "dropdown-menu-label",
149
149
  "data-inset": inset,
150
- className: cn("px-2 py-1.5 text-sm font-medium data-[inset]:pl-8", className)
150
+ className: cn("px-2 py-1.5 text-sm font-semibold data-[inset]:pl-8", className)
151
151
  }, props)
152
152
  );
153
153
  }
@@ -1,6 +1,6 @@
1
- import { Button } from '../chunk-ZFNOCP6W.js';
1
+ import { Button } from '../chunk-H3BV4VAG.js';
2
2
  import '../chunk-R47NEOSI.js';
3
- import { Text } from '../chunk-Y5D5LP4A.js';
3
+ import { Text } from '../chunk-7BWTYWM3.js';
4
4
  import { cn } from '../chunk-FEK5XGZW.js';
5
5
  import { __objRest, __spreadProps, __spreadValues } from '../chunk-3GWWZKX7.js';
6
6
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- import { Label } from '../chunk-4JOV7FXW.js';
1
+ import { Label } from '../chunk-2DEIXTBN.js';
2
2
  import { cn } from '../chunk-FEK5XGZW.js';
3
3
  import { __objRest, __spreadProps, __spreadValues } from '../chunk-3GWWZKX7.js';
4
4
  import * as React from 'react';
@@ -120,7 +120,7 @@ var FieldLegend = React.forwardRef(
120
120
  __spreadValues({
121
121
  ref,
122
122
  "data-slot": "field-legend",
123
- className: cn("px-1 text-sm font-medium text-foreground", className)
123
+ className: cn("px-1 text-sm font-semibold text-foreground", className)
124
124
  }, props)
125
125
  );
126
126
  }
@@ -1,5 +1,5 @@
1
- import { Text } from '../chunk-Y5D5LP4A.js';
2
- import { Badge } from '../chunk-TL4YU2O5.js';
1
+ import { Text } from '../chunk-7BWTYWM3.js';
2
+ import { Badge } from '../chunk-UKBNQO6Q.js';
3
3
  import '../chunk-FEK5XGZW.js';
4
4
  import '../chunk-3GWWZKX7.js';
5
5
  import { ChevronRight } from 'lucide-react';
@@ -1,4 +1,4 @@
1
- import { Label } from '../chunk-4JOV7FXW.js';
1
+ import { Label } from '../chunk-2DEIXTBN.js';
2
2
  import { cn } from '../chunk-FEK5XGZW.js';
3
3
  import { __objRest, __spreadValues, __spreadProps } from '../chunk-3GWWZKX7.js';
4
4
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- import { Button } from '../chunk-ZFNOCP6W.js';
1
+ import { Button } from '../chunk-H3BV4VAG.js';
2
2
  import { useHaptic } from '../chunk-R47NEOSI.js';
3
3
  import '../chunk-FEK5XGZW.js';
4
4
  import { __objRest, __spreadProps, __spreadValues } from '../chunk-3GWWZKX7.js';
@@ -85,7 +85,7 @@ var InputGroupButton = React.forwardRef(
85
85
  type,
86
86
  "data-slot": "input-group-button",
87
87
  className: cn(
88
- "inline-flex h-7 min-w-7 cursor-pointer items-center justify-center gap-1 rounded-md px-2 text-xs font-medium text-muted-foreground transition-colors hover:bg-accent hover:text-accent-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&:has(svg:only-child)]:w-7 [&:has(svg:only-child)]:px-0 [&_svg]:size-4",
88
+ "inline-flex h-7 min-w-7 cursor-pointer items-center justify-center gap-1 rounded-md px-2 text-xs font-semibold text-muted-foreground transition-colors hover:bg-accent hover:text-accent-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&:has(svg:only-child)]:w-7 [&:has(svg:only-child)]:px-0 [&_svg]:size-4",
89
89
  className
90
90
  )
91
91
  }, props)
@@ -1,3 +1,3 @@
1
- export { Input, inputVariants } from '../chunk-AV777R4G.js';
1
+ export { Input, inputVariants } from '../chunk-YYGB4G4Q.js';
2
2
  import '../chunk-FEK5XGZW.js';
3
3
  import '../chunk-3GWWZKX7.js';
@@ -3,12 +3,12 @@ import * as React from 'react';
3
3
  import { VariantProps } from 'class-variance-authority';
4
4
 
5
5
  declare const itemVariants: (props?: ({
6
- variant?: "default" | "outline" | "muted" | null | undefined;
6
+ variant?: "default" | "muted" | "outline" | null | undefined;
7
7
  size?: "default" | "sm" | "lg" | null | undefined;
8
8
  interactive?: boolean | null | undefined;
9
9
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10
10
  declare const Item: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
11
- variant?: "default" | "outline" | "muted" | null | undefined;
11
+ variant?: "default" | "muted" | "outline" | null | undefined;
12
12
  size?: "default" | "sm" | "lg" | null | undefined;
13
13
  interactive?: boolean | null | undefined;
14
14
  } & class_variance_authority_types.ClassProp) | undefined) => string> & {
@@ -82,7 +82,7 @@ var ItemTitle = React.forwardRef(
82
82
  __spreadValues({
83
83
  ref,
84
84
  "data-slot": "item-title",
85
- className: cn("truncate text-sm font-medium text-foreground", className)
85
+ className: cn("truncate text-sm font-semibold text-foreground", className)
86
86
  }, props)
87
87
  );
88
88
  }
@@ -5,7 +5,7 @@ import { cva } from 'class-variance-authority';
5
5
  import { jsx } from 'react/jsx-runtime';
6
6
 
7
7
  var kbdVariants = cva(
8
- "inline-flex select-none items-center justify-center gap-1 rounded-md border border-border bg-muted font-mono font-medium text-muted-foreground shadow-[0_1px_0_0_var(--border)]",
8
+ "inline-flex select-none items-center justify-center gap-1 rounded-md border border-border bg-muted font-mono font-semibold text-muted-foreground shadow-[0_1px_0_0_var(--border)]",
9
9
  {
10
10
  variants: {
11
11
  size: {
@@ -1,3 +1,3 @@
1
- export { Label } from '../chunk-4JOV7FXW.js';
1
+ export { Label } from '../chunk-2DEIXTBN.js';
2
2
  import '../chunk-FEK5XGZW.js';
3
3
  import '../chunk-3GWWZKX7.js';
@@ -1,4 +1,4 @@
1
- import { Button } from '../chunk-ZFNOCP6W.js';
1
+ import { Button } from '../chunk-H3BV4VAG.js';
2
2
  import '../chunk-R47NEOSI.js';
3
3
  import '../chunk-FEK5XGZW.js';
4
4
  import { __objRest, __spreadProps, __spreadValues } from '../chunk-3GWWZKX7.js';
@@ -1,10 +1,10 @@
1
1
  import { Checkbox } from '../chunk-D5QHEHXJ.js';
2
- import { Popover, PopoverTrigger, PopoverContent } from '../chunk-UUJVXN2O.js';
3
- import { Command, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem } from '../chunk-HCM6LKM5.js';
2
+ import { Popover, PopoverTrigger, PopoverContent } from '../chunk-66MAPLXS.js';
3
+ import { Command, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem } from '../chunk-XNA2INVQ.js';
4
4
  import '../chunk-FRPPIXMY.js';
5
- import { Button } from '../chunk-ZFNOCP6W.js';
5
+ import { Button } from '../chunk-H3BV4VAG.js';
6
6
  import '../chunk-R47NEOSI.js';
7
- import { Badge } from '../chunk-TL4YU2O5.js';
7
+ import { Badge } from '../chunk-UKBNQO6Q.js';
8
8
  import { cn } from '../chunk-FEK5XGZW.js';
9
9
  import '../chunk-3GWWZKX7.js';
10
10
  import * as React from 'react';
@@ -1,4 +1,4 @@
1
- import { buttonVariants } from '../chunk-ZFNOCP6W.js';
1
+ import { buttonVariants } from '../chunk-H3BV4VAG.js';
2
2
  import '../chunk-R47NEOSI.js';
3
3
  import { cn } from '../chunk-FEK5XGZW.js';
4
4
  import { __objRest, __spreadValues, __spreadProps } from '../chunk-3GWWZKX7.js';
@@ -8,10 +8,26 @@ interface PlaceAboutTabProps {
8
8
  mapSlot?: React.ReactNode;
9
9
  /** Slot for an embedded busyness chart. Rendered only when both this prop and `place.busyness` are present. */
10
10
  busynessSlot?: React.ReactNode;
11
+ /**
12
+ * Slot for "how to order from here" — delivery platforms and the like.
13
+ * Sits directly after contact, because it answers the same question contact
14
+ * does (how do I transact with this venue) and is the most actionable thing
15
+ * the sheet carries.
16
+ *
17
+ * Named for its MEANING, not its position, so a later reordering doesn't turn
18
+ * the prop name into a lie.
19
+ */
20
+ orderingSlot?: React.ReactNode;
21
+ /**
22
+ * Slot for "what the rest of the web says / where else this venue lives" —
23
+ * third-party ratings and the venue's own profiles. Sits after the practical
24
+ * block: it is corroboration, wanted after the facts, not before them.
25
+ */
26
+ reputationSlot?: React.ReactNode;
11
27
  /** Fires when the user clicks a contact link (phone/website/social). */
12
28
  onLinkClick?: (kind: PlaceLinkKind, url: string) => void;
13
29
  className?: string;
14
30
  }
15
- declare function PlaceAboutTab({ place, labels, mapSlot, busynessSlot, onLinkClick, className, }: PlaceAboutTabProps): react_jsx_runtime.JSX.Element;
31
+ declare function PlaceAboutTab({ place, labels, mapSlot, busynessSlot, orderingSlot, reputationSlot, onLinkClick, className, }: PlaceAboutTabProps): react_jsx_runtime.JSX.Element;
16
32
 
17
33
  export { PlaceAboutTab, type PlaceAboutTabProps };
@@ -1,7 +1,7 @@
1
- export { PlaceAboutTab } from '../chunk-UX6SWAKH.js';
2
- import '../chunk-YLNYXPIH.js';
1
+ export { PlaceAboutTab } from '../chunk-UZ3PCIE5.js';
2
+ import '../chunk-VBA45GLP.js';
3
3
  import '../chunk-WSRWFA6K.js';
4
- import '../chunk-A5ONAJCE.js';
5
- import '../chunk-Y5D5LP4A.js';
4
+ import '../chunk-VG3PND3D.js';
5
+ import '../chunk-7BWTYWM3.js';
6
6
  import '../chunk-FEK5XGZW.js';
7
7
  import '../chunk-3GWWZKX7.js';
@@ -1,4 +1,4 @@
1
- import { Text } from '../chunk-Y5D5LP4A.js';
1
+ import { Text } from '../chunk-7BWTYWM3.js';
2
2
  import { cn } from '../chunk-FEK5XGZW.js';
3
3
  import '../chunk-3GWWZKX7.js';
4
4
  import { memo, useState } from 'react';
@@ -61,7 +61,7 @@ var PlaceCard = memo(function PlaceCard2({
61
61
  /* @__PURE__ */ jsx(Text, { as: "h3", weight: "bold", leading: "tight", color: "default", className: "text-lg mb-2", children: place.name }),
62
62
  ratingDisplay !== null && /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1", children: [
63
63
  /* @__PURE__ */ jsx(Star, { className: "w-4 h-4 fill-primary text-primary", "aria-hidden": "true" }),
64
- /* @__PURE__ */ jsx("span", { className: "font-medium text-sm", children: ratingDisplay }),
64
+ /* @__PURE__ */ jsx("span", { className: "font-semibold text-sm", children: ratingDisplay }),
65
65
  reviewCount !== void 0 && reviewCount !== null && /* @__PURE__ */ jsxs("span", { className: "text-xs text-muted-foreground", children: [
66
66
  "(",
67
67
  reviewCount,
@@ -1,9 +1,9 @@
1
- import { PlaceAboutTab } from '../chunk-UX6SWAKH.js';
2
- import '../chunk-YLNYXPIH.js';
1
+ import { PlaceAboutTab } from '../chunk-UZ3PCIE5.js';
2
+ import '../chunk-VBA45GLP.js';
3
3
  import '../chunk-WSRWFA6K.js';
4
- import '../chunk-A5ONAJCE.js';
5
- import { Text } from '../chunk-Y5D5LP4A.js';
6
- import { Badge } from '../chunk-TL4YU2O5.js';
4
+ import '../chunk-VG3PND3D.js';
5
+ import { Text } from '../chunk-7BWTYWM3.js';
6
+ import { Badge } from '../chunk-UKBNQO6Q.js';
7
7
  import { cn } from '../chunk-FEK5XGZW.js';
8
8
  import '../chunk-3GWWZKX7.js';
9
9
  import { useState } from 'react';
@@ -55,7 +55,7 @@ function PlaceDetailsMobile({
55
55
  return /* @__PURE__ */ jsxs("div", { className: cn("flex flex-col bg-background", className), children: [
56
56
  /* @__PURE__ */ jsxs("div", { className: "px-4 pt-4", children: [
57
57
  /* @__PURE__ */ jsx("div", { className: "rounded-[22px] overflow-hidden relative", children: /* @__PURE__ */ jsxs("div", { className: "h-44 flex items-center justify-center relative overflow-hidden", children: [
58
- /* @__PURE__ */ jsxs("div", { className: "absolute bottom-2 right-2 z-20 flex items-center gap-1.5 bg-surface border border-border px-2.5 h-7 rounded-[12px] text-[11px] font-medium text-foreground", children: [
58
+ /* @__PURE__ */ jsxs("div", { className: "absolute bottom-2 right-2 z-20 flex items-center gap-1.5 bg-surface border border-border px-2.5 h-7 rounded-[12px] text-[11px] font-semibold text-foreground", children: [
59
59
  /* @__PURE__ */ jsx(
60
60
  "span",
61
61
  {
@@ -174,7 +174,7 @@ function MobileTabPlaceholder({
174
174
  "div",
175
175
  {
176
176
  className: cn(
177
- "flex flex-1 min-w-0 items-center justify-center gap-1 px-1 py-2.5 text-[12px] font-medium border-b-2 -mb-px",
177
+ "flex flex-1 min-w-0 items-center justify-center gap-1 px-1 py-2.5 text-[12px] font-semibold border-b-2 -mb-px",
178
178
  active ? "border-primary text-foreground" : "border-transparent text-muted-foreground"
179
179
  ),
180
180
  "aria-hidden": true,
@@ -1,4 +1,4 @@
1
- export { PlaceScheduleWeek } from '../chunk-A5ONAJCE.js';
2
- import '../chunk-Y5D5LP4A.js';
1
+ export { PlaceScheduleWeek } from '../chunk-VG3PND3D.js';
2
+ import '../chunk-7BWTYWM3.js';
3
3
  import '../chunk-FEK5XGZW.js';
4
4
  import '../chunk-3GWWZKX7.js';
@@ -1,3 +1,3 @@
1
- export { Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from '../chunk-UUJVXN2O.js';
1
+ export { Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from '../chunk-66MAPLXS.js';
2
2
  import '../chunk-FEK5XGZW.js';
3
3
  import '../chunk-3GWWZKX7.js';
@@ -1,7 +1,7 @@
1
- import { Popover, PopoverTrigger, PopoverContent } from '../chunk-UUJVXN2O.js';
2
- import { Command, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem } from '../chunk-HCM6LKM5.js';
1
+ import { Popover, PopoverTrigger, PopoverContent } from '../chunk-66MAPLXS.js';
2
+ import { Command, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem } from '../chunk-XNA2INVQ.js';
3
3
  import '../chunk-FRPPIXMY.js';
4
- import { Button } from '../chunk-ZFNOCP6W.js';
4
+ import { Button } from '../chunk-H3BV4VAG.js';
5
5
  import '../chunk-R47NEOSI.js';
6
6
  import { cn } from '../chunk-FEK5XGZW.js';
7
7
  import '../chunk-3GWWZKX7.js';
@@ -10,7 +10,7 @@ var Select = SelectPrimitive.Root;
10
10
  var SelectGroup = SelectPrimitive.Group;
11
11
  var SelectValue = SelectPrimitive.Value;
12
12
  var selectTriggerVariants = cva(
13
- "flex w-full items-center justify-between rounded-xl bg-background border border-border text-sm font-medium text-foreground transition-colors focus:outline-none focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[placeholder]:text-muted-foreground [&>span]:line-clamp-1 hover:border-foreground/30 aria-invalid:border-destructive aria-invalid:focus-visible:ring-destructive/40",
13
+ "flex w-full items-center justify-between rounded-xl bg-background border border-border text-sm font-semibold text-foreground transition-colors focus:outline-none focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[placeholder]:text-muted-foreground [&>span]:line-clamp-1 hover:border-foreground/30 aria-invalid:border-destructive aria-invalid:focus-visible:ring-destructive/40",
14
14
  {
15
15
  variants: {
16
16
  size: {
@@ -118,7 +118,7 @@ var SelectItem = React.forwardRef((_a, ref) => {
118
118
  ref,
119
119
  "data-slot": "select-item",
120
120
  className: cn(
121
- "relative flex w-full cursor-default select-none items-center rounded-md py-2 pl-8 pr-2 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-accent data-[highlighted]:text-accent-foreground data-[state=checked]:font-medium",
121
+ "relative flex w-full cursor-default select-none items-center rounded-md py-2 pl-8 pr-2 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-accent data-[highlighted]:text-accent-foreground data-[state=checked]:font-semibold",
122
122
  className
123
123
  )
124
124
  }, props), {
@@ -36,7 +36,7 @@ var SelectionBar = React.forwardRef(
36
36
  )
37
37
  }, props), {
38
38
  children: [
39
- /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 text-sm font-medium text-foreground", children: [
39
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 text-sm font-semibold text-foreground", children: [
40
40
  onClear && /* @__PURE__ */ jsx(
41
41
  "button",
42
42
  {
@@ -9,10 +9,33 @@ declare const SheetTrigger: React.ForwardRefExoticComponent<DialogPrimitive.Dial
9
9
  declare const SheetClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
10
10
  declare const SheetPortal: React.FC<DialogPrimitive.DialogPortalProps>;
11
11
  declare const SheetOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
12
+ /**
13
+ * `attachment` controls whether the panel is welded to the viewport edge or
14
+ * floats clear of it.
15
+ *
16
+ * - `edge` (default) — the classic sheet: full bleed against its side, only the
17
+ * two corners facing inward rounded. Every existing consumer gets this, so
18
+ * adding `inset` changes nothing already shipped.
19
+ * - `inset` — a floating panel: held off all four edges, rounded on every
20
+ * corner, page visible around it. Reads as a surface laid ON the page rather
21
+ * than one grafted to it, which is what detail surfaces want — the content
22
+ * behind stays legible as context instead of being cropped away.
23
+ *
24
+ * `inset` deliberately drops the border. At an edge the border is the seam
25
+ * between panel and viewport and has work to do; floating, the shadow already
26
+ * separates the two and a border only draws a hard line around the radius.
27
+ */
12
28
  declare const sheetVariants: (props?: ({
13
29
  side?: "left" | "right" | "bottom" | "top" | null | undefined;
30
+ attachment?: "inset" | "edge" | null | undefined;
14
31
  } & class_variance_authority_types.ClassProp) | undefined) => string;
15
32
  interface SheetContentProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
33
+ /**
34
+ * Suppress the built-in floating close button. Use when the panel renders its
35
+ * own header row with a close control, which would otherwise stack two close
36
+ * buttons in the same corner.
37
+ */
38
+ hideClose?: boolean;
16
39
  }
17
40
  declare const SheetContent: React.ForwardRefExoticComponent<SheetContentProps & React.RefAttributes<HTMLDivElement>>;
18
41
  declare const SheetHeader: {