asantibanez / livewire-calendar

Laravel Livewire component to show Events in a good looking monthly calendar
MIT License
879 stars 229 forks source link

livewire 3 #53

Open SerPalych opened 10 months ago

SerPalych commented 10 months ago

Uncaught TypeError: Cannot read properties of undefined (reading 'events')

jordivela007 commented 7 months ago

How to install with livewire version 3?

craig-stanfield commented 7 months ago

Same can this please be updated to work with Livewire 3. Out of 25 composer plugins I use on my currently developed app this is the only one which is not compatible.

jordivela007 commented 7 months ago

In composer.json add these lines: "repositories": [ { "type": "package", "canonical": false, "package": { "version": "master", "name": "asantibanez/livewire-calendar", "source": { "url":"https://github.com/craig-stanfield/livewire-calendar.git", "type": "git", "reference": "master" } } } ]

and then: composer require asantibanez/livewire-calendar:dev-master

joshtorres commented 6 months ago

You can use https://github.com/omnia-digital/livewire-calendar which is a fork of this calendar, but has been updated with some more features including support for livewire 3

blondie63 commented 3 months ago

You can use https://github.com/omnia-digital/livewire-calendar which is a fork of this calendar, but has been updated with some more features including support for livewire 3

How can i switch my app based on asantibanez to your omnia-digital/livewire-calendar ? Can i simply remove asantibanez and add omnia-digital ? :) UPDATE: Done :)

joshtorres commented 3 months ago

I would remove that line from your composer.json (or run composer remove asantibanez/livewire-calendar) and then run composer require omnia-digital/livewire-calendar because that way it will automatically pull the latest version for you.

But yes, it's a drop-in replacement.

blondie63 commented 3 months ago

do you have a list of new features?