@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stoker-platform/web-app
2
2
 
3
+ ## 0.2.12
4
+
5
+ ### Patch Changes
6
+
7
+ - feat: add FullCalendar license key env var
8
+
3
9
  ## 0.2.11
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/web-app",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
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={{
package/vite.config.ts CHANGED
@@ -14,7 +14,7 @@ export default defineConfig(async () => {
14
14
 
15
15
  return {
16
16
  plugins: [
17
- // eslint(),
17
+ eslint(),
18
18
  react(),
19
19
  VitePWA({
20
20
  registerType: "autoUpdate",