@bigz-app/booking-widget 0.1.9 → 0.1.10
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/README.md +1 -4
- package/dist/booking-widget.js +679 -266
- package/dist/booking-widget.js.map +1 -1
- package/dist/components/BookingForm.d.ts.map +1 -1
- package/dist/components/EventInstanceSelection.d.ts.map +1 -1
- package/dist/components/Sidebar.d.ts +1 -1
- package/dist/components/Sidebar.d.ts.map +1 -1
- package/dist/components/UniversalBookingWidget.d.ts +4 -1
- package/dist/components/UniversalBookingWidget.d.ts.map +1 -1
- package/dist/index.cjs +680 -267
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +681 -268
- package/dist/index.esm.js.map +1 -1
- package/dist/styles/StyleProvider.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,9 +40,6 @@ The widget includes several built-in themes and can be deeply customized.
|
|
|
40
40
|
**Available Themes:**
|
|
41
41
|
`light-fresh`, `light-elegant`, `light-vibrant`, `light-professional`, `dark-modern`, `dark-forest`, `dark-matrix`, `dark-luxury`, `dark-energetic`.
|
|
42
42
|
|
|
43
|
-
**shadcn/ui Theme:**
|
|
44
|
-
Use `theme: "shadcn"` to automatically adopt your existing `shadcn/ui` CSS variables. It seamlessly adapts to your site's light/dark mode.
|
|
45
|
-
|
|
46
43
|
**Customizing a Theme:**
|
|
47
44
|
You can override any theme's colors, border radius, or font family.
|
|
48
45
|
|
|
@@ -76,7 +73,7 @@ interface UniversalBookingConfig {
|
|
|
76
73
|
eventTypeId?: number; // Show instances for a single event type
|
|
77
74
|
|
|
78
75
|
// --- Theming & Customization ---
|
|
79
|
-
theme?: 'light-fresh' | 'light-elegant' | '...'
|
|
76
|
+
theme?: 'light-fresh' | 'light-elegant' | '...' ;
|
|
80
77
|
colors?: {
|
|
81
78
|
highlight?: string; // Main action/accent color
|
|
82
79
|
background?: string; // Page background
|