ultimate_turbo_modal 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d0ae24b41414e4d9419260f7de74789e488a6e0d0a961749e10c3f6ca70ecaf
4
- data.tar.gz: ef606673fe357af79d46760a2c59252da8052fcd6fdbce56fdf264cd015fe460
3
+ metadata.gz: 979f1d2dadd3743aee45d26edc2057af3f859c26d58117726c1c1b1919f07fda
4
+ data.tar.gz: 24160dc417e83b5ad8ee7bf055a71ef4e62f4ce18882c14b8e114cb6f1e292f9
5
5
  SHA512:
6
- metadata.gz: '08ded5bfa9b93dac612301c125c9acd95fae727856154c861971917f3751cd1e11d15f49c9a3b2c00c70ac468c0e19f92a5d69a59158c63d5a826c70322478b2'
7
- data.tar.gz: 23641e005618db6c5b09cfe64fbc8dad905930ae38bf04cfefcff722d681fc8423c7d39cb70d1cccb6d11743ff4cc9aa8c94c7b13a96d4e82b488d7e0a8fe240
6
+ metadata.gz: e27b7b9068f0c1c514746344aa68be336c799f7e1deea6d2d82ad124a0b6818b7fdded1e1a0070d628f936e28d764e10669d5b50d24b4297b9e11d4f3d0daa15
7
+ data.tar.gz: ebec1a181719537ab872b45d60896f18b7b586d12466cbae8dec1c04fa3f6a481351fdc563ba91051f41068e21bad65b8bc962758475423dd183946a7112cba4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [1.4.1] - 2023-11-26
2
+
3
+ - Make Tailwind transition smoother on pages with multiple z-index
4
+
1
5
  ## [1.4.0] - 2023-11-23
2
6
 
3
7
  - Added ability to specify custom `data-action` for the close button.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ultimate_turbo_modal (1.4.0)
4
+ ultimate_turbo_modal (1.4.1)
5
5
  phlex-rails (>= 1.0, < 2.0)
6
6
  rails (>= 7)
7
7
  stimulus-rails
@@ -2,9 +2,9 @@
2
2
 
3
3
  module UltimateTurboModal::Flavors
4
4
  class Tailwind < UltimateTurboModal::Base
5
- DIV_DIALOG_CLASSES = "relative group"
6
- DIV_OVERLAY_CLASSES = "fixed inset-0 bg-gray-900 bg-opacity-50 transition-opacity dark:bg-opacity-80 z-40"
7
- DIV_OUTER_CLASSES = "fixed inset-0 z-50 overflow-y-auto sm:max-w-[80%] md:max-w-3xl sm:mx-auto m-4"
5
+ DIV_DIALOG_CLASSES = "relative group z-50"
6
+ DIV_OVERLAY_CLASSES = "fixed inset-0 bg-gray-900 bg-opacity-50 transition-opacity dark:bg-opacity-80"
7
+ DIV_OUTER_CLASSES = "fixed inset-0 overflow-y-auto sm:max-w-[80%] md:max-w-3xl sm:mx-auto m-4"
8
8
  DIV_INNER_CLASSES = "flex min-h-full items-center justify-center p-1 sm:p-4"
9
9
  DIV_CONTENT_CLASSES = "relative transform overflow-hidden rounded-lg bg-white text-left shadow transition-all sm:my-8 sm:max-w-3xl dark:bg-gray-800 dark:text-white"
10
10
  DIV_MAIN_CLASSES = "group-data-[padding=true]:p-4 group-data-[padding=true]:pt-2"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module UltimateTurboModal
4
- VERSION = "1.4.0"
4
+ VERSION = "1.4.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultimate_turbo_modal
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carl Mercier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-24 00:00:00.000000000 Z
11
+ date: 2023-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex-rails