@ticketboothapp/booking 0.1.15 → 0.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ticketboothapp/booking",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "private": false,
5
5
  "sideEffects": false,
6
6
  "publishConfig": {
@@ -11,7 +11,12 @@
11
11
  "typecheck": "tsc -p tsconfig.json --noEmit"
12
12
  },
13
13
  "exports": {
14
- ".": "./src/index.ts"
14
+ ".": "./src/index.ts",
15
+ "./styles/booking-flow.css": "./src/components/booking/booking-flow.css",
16
+ "./styles/text-style.css": "./src/text-style.css",
17
+ "./styles/colours.css": "./src/colours.css",
18
+ "./styles/spacing.css": "./src/spacing.css",
19
+ "./styles/radius.css": "./src/radius.css"
15
20
  },
16
21
  "dependencies": {
17
22
  "@radix-ui/react-select": "^2.2.6",
@@ -381,7 +381,7 @@
381
381
  flex-direction: column;
382
382
  align-items: center;
383
383
  justify-content: center;
384
- min-height: 5.5rem; /* Desktop: enough room for time pills */
384
+ min-height: 5.75rem; /* Desktop: slightly taller for availability-mode readability */
385
385
  cursor: pointer;
386
386
  }
387
387
 
@@ -890,7 +890,7 @@ function PickupLocationSelectorWithMap(props: PickupLocationSelectorProps) {
890
890
 
891
891
  {/* Input with search icon inside - padding ensures text stays to the right of icon */}
892
892
  <div className="relative">
893
- <div className="absolute inset-y-0 left-0 pl-4 flex items-center pointer-events-none text-stone-400">
893
+ <div className="absolute left-0 top-1/2 -translate-y-1/2 pl-4 flex items-center pointer-events-none text-stone-400">
894
894
  <svg className="h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
895
895
  <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
896
896
  </svg>