meeting-scheduler-npm-package 1.0.3 → 1.0.5
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 -1
- package/dist/config.d.ts +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -487,7 +487,7 @@ function IoIosArrowBack (props) {
|
|
|
487
487
|
}
|
|
488
488
|
|
|
489
489
|
const daysOfWeek = ["SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"];
|
|
490
|
-
const MeetingScheduler = ({ userId = 1, availabilityId = 1, authToken: propAuthToken, email = "superadmin1@
|
|
490
|
+
const MeetingScheduler = ({ userId = 1, availabilityId = 1, authToken: propAuthToken, email = "superadmin1@example.com", password = "password", apiBase, onSuccess, onError, }) => {
|
|
491
491
|
const [currentMonth, setCurrentMonth] = useState(new Date());
|
|
492
492
|
const [selectedDate, setSelectedDate] = useState(null);
|
|
493
493
|
const [availableSlots, setAvailableSlots] = useState([]);
|