meeting-scheduler-npm-package 1.0.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.
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # Meeting Scheduler
2
+
3
+ A reusable React / Next.js meeting scheduler component.
4
+
5
+ ## Requirements
6
+ - Next.js 13+
7
+ - React 18+
8
+ - Tailwind CSS
9
+ - SweetAlert2
10
+
11
+ ## Usage
12
+
13
+ ```tsx
14
+ import { MeetingScheduler } from "betopia-meeting-scheduler";
15
+
16
+ export default function Page() {
17
+ return <MeetingScheduler />;
18
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { MeetingSchedulerProps } from "./types";
3
+ declare const MeetingScheduler: React.FC<MeetingSchedulerProps>;
4
+ export default MeetingScheduler;
@@ -0,0 +1,16 @@
1
+ import * as React from "react";
2
+ type EmptyBDStyles = {
3
+ button?: React.CSSProperties;
4
+ form?: React.CSSProperties;
5
+ label?: React.CSSProperties;
6
+ input?: {
7
+ text?: React.CSSProperties;
8
+ select?: React.CSSProperties;
9
+ };
10
+ };
11
+ declare global {
12
+ interface Window {
13
+ renderEmptyBDForm: (selector: string, dataKey: string, styles?: EmptyBDStyles) => void;
14
+ }
15
+ }
16
+ export {};