Skip to content

Tags: robsontenorio/mary

Tags

1.41.8

Toggle 1.41.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
File/ImageLibrary: handle focus trap (#781)

Disable focus trap, once it uses `native` model.

1.41.7

Toggle 1.41.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
ThemeToggle: add `class` handle. (#780)

Fix #759

1.41.6

Toggle 1.41.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
WIP (#776)

1.41.5

Toggle 1.41.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added x-cloak to choices (#746)

* Added x-cloak directive to the choices options list.

* Same for ChoicesOffline.php

---------

Co-authored-by: Robson Tenório <[email protected]>

1.41.4

Toggle 1.41.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Calendar: add wire:key (#706)

Close #705

1.41.3

Toggle 1.41.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Toggle: allow to pass `id` (#704)

1.41.2

Toggle 1.41.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Choices/ChoicesOffline: large numbers (#691)

1.41.1

Toggle 1.41.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add API Docs (#671)

1.41.0

Toggle 1.41.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Choices/ChoicesOffline: add keyboard support (#647)

* Choice server add keyboard support

* Choice server add keyboard support

* merge to latest version

* use down key to trigger dropdown

* add keyboard support to choice offline

* bug fix error : filter backslashes on keyword

* WIP

---------

Co-authored-by: Robson Tenório <[email protected]>

1.40.3

Toggle 1.40.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: live mode for datepicker range mode (#653)

* feat: live mode for datepicker range mode

Using `wire:model.live` makes datepicker with mode set to `range` behave
unexpectedly as described in #649. This is due to livewire sending
update as long as the user selects the first date. I can't find anyway
to customize the behavior of livewire's `.live` modefier. My proposed
fix for instances when you want live update as long as the user selects
a range is to add a `live` attribute to datepicker. This will add a
change event listener using `x-on:change` which checks if the date is
complete by spliting it with `'to'` and checking if the resulting array
contains two items. The listener only gets attached if the mode is set
to range, hence making the live attribute range mode exclusive.

* feat: remove live attribute

This makes the `wire:model.live` work seemlessly if the `mode` is set
`range`. This implementation checks if `mode` is set to `range` and the
`wire:model.live` attribute is present, then it rewrites the attribute
but setting it back to `wire:model` and adding a new attribute called
`live` which is used to check weather or not to attach the `x-on:change`
listener since we will removed the `wire:model.live` in the setup
function.

* WIP

---------

Co-authored-by: Robson Tenório <[email protected]>