turbo_reflex 0.0.28 → 0.0.29
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +23 -18
- data/README.md +1 -1
- data/app/assets/builds/turbo_reflex.js +6 -1
- data/app/assets/builds/turbo_reflex.js.map +4 -4
- data/app/javascript/index.js +4 -1
- data/lib/turbo_reflex/version.rb +1 -1
- data/package.json +7 -5
- data/tags +17624 -2047
- data/turbo_reflex.gemspec +1 -1
- data/yarn.lock +189 -157
- metadata +4 -4
data/app/javascript/index.js
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import 'turbo_ready'
|
1
2
|
import './turbo'
|
2
3
|
import schema from './schema'
|
3
4
|
import { dispatch, allEvents as events } from './events'
|
@@ -74,7 +75,7 @@ delegates.register('change', [
|
|
74
75
|
delegates.register('submit', [`form[${schema.reflexAttribute}]`])
|
75
76
|
delegates.register('click', [`[${schema.reflexAttribute}]`])
|
76
77
|
|
77
|
-
|
78
|
+
self.TurboReflex = {
|
78
79
|
logger,
|
79
80
|
schema,
|
80
81
|
registerEventDelegate: delegates.register,
|
@@ -92,3 +93,5 @@ export default self.TurboReflex = {
|
|
92
93
|
return state.delta
|
93
94
|
}
|
94
95
|
}
|
96
|
+
|
97
|
+
export default self.TurboReflex
|
data/lib/turbo_reflex/version.rb
CHANGED
data/package.json
CHANGED
@@ -1,23 +1,25 @@
|
|
1
1
|
{
|
2
2
|
"name": "turbo_reflex",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.28",
|
4
4
|
"description": "Reflexes for Turbo Frames that help you build robust reactive applications",
|
5
5
|
"main": "app/javascript/index.js",
|
6
6
|
"repository": "https://github.com/hopsoft/turbo_reflex",
|
7
7
|
"author": "Nate Hopkins (hopsoft) <natehop@gmail.com>",
|
8
8
|
"license": "MIT",
|
9
|
+
"dependencies": {
|
10
|
+
"turbo_ready": ">= 0.1.3"
|
11
|
+
},
|
9
12
|
"peerDependencies": {
|
10
|
-
"@hotwired/turbo-rails": ">= 7.
|
11
|
-
"turbo_ready": ">= 0.1"
|
13
|
+
"@hotwired/turbo-rails": ">= 7.2.0"
|
12
14
|
},
|
13
15
|
"devDependencies": {
|
14
|
-
"esbuild": "^0.
|
16
|
+
"esbuild": "^0.16.3",
|
15
17
|
"eslint": "^8.19.0",
|
16
18
|
"flowbite": "^1.5.3",
|
17
19
|
"prettier-standard": "^16.4.1",
|
18
20
|
"rustywind": "^0.15.1"
|
19
21
|
},
|
20
22
|
"scripts": {
|
21
|
-
"build": "esbuild app/javascript/index.js --bundle --minify --sourcemap --format=esm --outfile=app/assets/builds/turbo_reflex.js"
|
23
|
+
"build": "esbuild app/javascript/index.js --bundle --minify --sourcemap --format=esm --target=es2017 --analyze --outfile=app/assets/builds/turbo_reflex.js"
|
22
24
|
}
|
23
25
|
}
|