@stoker-platform/web-app 0.2.11 → 0.2.12
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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/Calendar.tsx +2 -0
- package/vite.config.ts +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/Calendar.tsx
CHANGED
|
@@ -1004,6 +1004,7 @@ export function Calendar({
|
|
|
1004
1004
|
<CardContent className="p-4 h-full">
|
|
1005
1005
|
{currentViewLarge && (
|
|
1006
1006
|
<FullCalendar
|
|
1007
|
+
schedulerLicenseKey={import.meta.env.STOKER_FULLCALENDAR_KEY}
|
|
1007
1008
|
initialDate={currentDateLarge}
|
|
1008
1009
|
initialView={currentViewLarge}
|
|
1009
1010
|
headerToolbar={{
|
|
@@ -1035,6 +1036,7 @@ export function Calendar({
|
|
|
1035
1036
|
<CardContent className="p-4 h-full">
|
|
1036
1037
|
{currentViewSmall && (
|
|
1037
1038
|
<FullCalendar
|
|
1039
|
+
schedulerLicenseKey={import.meta.env.STOKER_FULLCALENDAR_KEY}
|
|
1038
1040
|
initialDate={currentDateSmall}
|
|
1039
1041
|
initialView={currentViewSmall}
|
|
1040
1042
|
headerToolbar={{
|