@nuitee/booking-widget 1.0.0

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.
@@ -0,0 +1 @@
1
+ export class BookingWidget { constructor(options?: any); open(): void; close(): void; goToStep(step: string): void; }
@@ -0,0 +1,5 @@
1
+ // ESM entry point for vanilla JS
2
+ import './core/booking-api.js';
3
+ import BookingWidget from './booking-widget.js';
4
+ export default BookingWidget;
5
+ export { BookingWidget };
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ // Main entry point for vanilla JS
2
+ require('./core/booking-api.js');
3
+ const BookingWidget = require('./booking-widget.js');
4
+ module.exports = BookingWidget;
5
+ module.exports.default = BookingWidget;