avo 3.0.6 → 3.0.7
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of avo might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/avo.gemspec +1 -1
- data/config/master.key +1 -0
- data/lib/avo/version.rb +1 -1
- data/public/avo-assets/avo.base.css +232 -0
- data/{app/assets/builds/avo.base.css → public/avo-assets/avo.css} +638 -815
- data/public/avo-assets/avo.js +513 -0
- data/public/avo-assets/avo.js.map +7 -0
- metadata +6 -8
- data/app/assets/builds/application.js +0 -2
- data/app/assets/builds/application.js.map +0 -7
- data/app/assets/builds/avo.base.js +0 -125190
- data/app/assets/builds/avo.base.js.map +0 -7
- data/app/javascript/js/application.js +0 -19
@@ -1,19 +0,0 @@
|
|
1
|
-
import 'mapkick/bundle'
|
2
|
-
|
3
|
-
import { Alert, Popover } from 'tailwindcss-stimulus-components'
|
4
|
-
import { Application } from '@hotwired/stimulus'
|
5
|
-
import TurboPower from 'turbo_power'
|
6
|
-
|
7
|
-
TurboPower.initialize(Turbo.StreamActions)
|
8
|
-
|
9
|
-
const application = Application.start()
|
10
|
-
|
11
|
-
// Configure Stimulus development experience
|
12
|
-
application.debug = window?.localStorage.getItem('avo.debug')
|
13
|
-
window.Stimulus = application
|
14
|
-
|
15
|
-
// Register stimulus-components controller
|
16
|
-
application.register('alert', Alert)
|
17
|
-
application.register('popover', Popover)
|
18
|
-
|
19
|
-
export { application }
|