stimulus_reflex 3.4.0.pre5 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stimulus_reflex might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +78 -2
- data/Gemfile.lock +76 -73
- data/README.md +5 -8
- data/Rakefile +5 -5
- data/app/channels/stimulus_reflex/channel.rb +22 -0
- data/bin/console +1 -0
- data/lib/generators/stimulus_reflex/templates/app/javascript/controllers/%file_name%_controller.js.tt +14 -2
- data/lib/generators/stimulus_reflex/templates/app/javascript/controllers/application_controller.js.tt +10 -2
- data/lib/generators/stimulus_reflex/templates/app/reflexes/%file_name%_reflex.rb.tt +19 -9
- data/lib/generators/stimulus_reflex/templates/app/reflexes/application_reflex.rb.tt +2 -2
- data/lib/generators/stimulus_reflex/templates/config/initializers/stimulus_reflex.rb +10 -1
- data/lib/stimulus_reflex.rb +2 -1
- data/lib/stimulus_reflex/broadcasters/broadcaster.rb +2 -4
- data/lib/stimulus_reflex/broadcasters/page_broadcaster.rb +2 -1
- data/lib/stimulus_reflex/broadcasters/selector_broadcaster.rb +2 -2
- data/lib/stimulus_reflex/cable_ready_channels.rb +21 -0
- data/lib/stimulus_reflex/configuration.rb +2 -1
- data/lib/stimulus_reflex/reflex.rb +16 -6
- data/lib/stimulus_reflex/sanity_checker.rb +18 -4
- data/lib/stimulus_reflex/version.rb +1 -1
- data/lib/tasks/stimulus_reflex/install.rake +8 -3
- data/package.json +3 -3
- data/stimulus_reflex.gemspec +3 -1
- data/tags +95 -37
- data/test/broadcasters/broadcaster_test.rb +3 -6
- data/test/broadcasters/broadcaster_test_case.rb +15 -0
- data/test/broadcasters/nothing_broadcaster_test.rb +27 -26
- data/test/broadcasters/page_broadcaster_test.rb +56 -50
- data/test/broadcasters/selector_broadcaster_test.rb +57 -83
- data/test/reflex_test.rb +32 -0
- data/test/test_helper.rb +43 -2
- data/test/tmp/app/reflexes/application_reflex.rb +2 -2
- data/test/tmp/app/reflexes/demo_reflex.rb +34 -0
- data/yarn.lock +199 -226
- metadata +13 -8
- data/test/tmp/app/reflexes/posts_reflex.rb +0 -24
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
class DemoReflex < ApplicationReflex
|
4
|
+
# Add Reflex methods in this file.
|
5
|
+
#
|
6
|
+
# All Reflex instances include CableReady::Broadcaster and expose the following properties:
|
7
|
+
#
|
8
|
+
# - connection - the ActionCable connection
|
9
|
+
# - channel - the ActionCable channel
|
10
|
+
# - request - an ActionDispatch::Request proxy for the socket connection
|
11
|
+
# - session - the ActionDispatch::Session store for the current visitor
|
12
|
+
# - flash - the ActionDispatch::Flash::FlashHash for the current request
|
13
|
+
# - url - the URL of the page that triggered the reflex
|
14
|
+
# - params - parameters from the element's closest form (if any)
|
15
|
+
# - element - a Hash like object that represents the HTML element that triggered the reflex
|
16
|
+
# - signed - use a signed Global ID to map dataset attribute to a model eg. element.signed[:foo]
|
17
|
+
# - unsigned - use an unsigned Global ID to map dataset attribute to a model eg. element.unsigned[:foo]
|
18
|
+
# - cable_ready - a special cable_ready that can broadcast to the current visitor (no brackets needed)
|
19
|
+
# - reflex_id - a UUIDv4 that uniquely identies each Reflex
|
20
|
+
#
|
21
|
+
# Example:
|
22
|
+
#
|
23
|
+
# before_reflex do
|
24
|
+
# # throw :abort # this will prevent the Reflex from continuing
|
25
|
+
# # learn more about callbacks at https://docs.stimulusreflex.com/lifecycle
|
26
|
+
# end
|
27
|
+
#
|
28
|
+
# def example(argument=true)
|
29
|
+
# # Your logic here...
|
30
|
+
# # Any declared instance variables will be made available to the Rails controller and view.
|
31
|
+
# end
|
32
|
+
#
|
33
|
+
# Learn more at: https://docs.stimulusreflex.com/reflexes#reflex-classes
|
34
|
+
end
|
data/yarn.lock
CHANGED
@@ -17,9 +17,9 @@
|
|
17
17
|
"@babel/highlight" "^7.8.3"
|
18
18
|
|
19
19
|
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
|
20
|
-
version "7.
|
21
|
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.
|
22
|
-
integrity sha512-
|
20
|
+
version "7.12.11"
|
21
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
|
22
|
+
integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
|
23
23
|
dependencies:
|
24
24
|
"@babel/highlight" "^7.10.4"
|
25
25
|
|
@@ -29,42 +29,41 @@
|
|
29
29
|
integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==
|
30
30
|
|
31
31
|
"@babel/core@^7.6.2":
|
32
|
-
version "7.12.
|
33
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.
|
34
|
-
integrity sha512-
|
32
|
+
version "7.12.10"
|
33
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.10.tgz#b79a2e1b9f70ed3d84bbfb6d8c4ef825f606bccd"
|
34
|
+
integrity sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==
|
35
35
|
dependencies:
|
36
36
|
"@babel/code-frame" "^7.10.4"
|
37
|
-
"@babel/generator" "^7.12.
|
37
|
+
"@babel/generator" "^7.12.10"
|
38
38
|
"@babel/helper-module-transforms" "^7.12.1"
|
39
39
|
"@babel/helpers" "^7.12.5"
|
40
|
-
"@babel/parser" "^7.12.
|
40
|
+
"@babel/parser" "^7.12.10"
|
41
41
|
"@babel/template" "^7.12.7"
|
42
|
-
"@babel/traverse" "^7.12.
|
43
|
-
"@babel/types" "^7.12.
|
42
|
+
"@babel/traverse" "^7.12.10"
|
43
|
+
"@babel/types" "^7.12.10"
|
44
44
|
convert-source-map "^1.7.0"
|
45
45
|
debug "^4.1.0"
|
46
46
|
gensync "^1.0.0-beta.1"
|
47
47
|
json5 "^2.1.2"
|
48
48
|
lodash "^4.17.19"
|
49
|
-
resolve "^1.3.2"
|
50
49
|
semver "^5.4.1"
|
51
50
|
source-map "^0.5.0"
|
52
51
|
|
53
|
-
"@babel/generator@^7.12.
|
54
|
-
version "7.12.
|
55
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.
|
56
|
-
integrity sha512-
|
52
|
+
"@babel/generator@^7.12.10":
|
53
|
+
version "7.12.11"
|
54
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.11.tgz#98a7df7b8c358c9a37ab07a24056853016aba3af"
|
55
|
+
integrity sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==
|
57
56
|
dependencies:
|
58
|
-
"@babel/types" "^7.12.
|
57
|
+
"@babel/types" "^7.12.11"
|
59
58
|
jsesc "^2.5.1"
|
60
59
|
source-map "^0.5.0"
|
61
60
|
|
62
61
|
"@babel/helper-annotate-as-pure@^7.10.4":
|
63
|
-
version "7.10
|
64
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.
|
65
|
-
integrity sha512-
|
62
|
+
version "7.12.10"
|
63
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz#54ab9b000e60a93644ce17b3f37d313aaf1d115d"
|
64
|
+
integrity sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==
|
66
65
|
dependencies:
|
67
|
-
"@babel/types" "^7.10
|
66
|
+
"@babel/types" "^7.12.10"
|
68
67
|
|
69
68
|
"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
|
70
69
|
version "7.10.4"
|
@@ -120,20 +119,20 @@
|
|
120
119
|
"@babel/types" "^7.12.1"
|
121
120
|
|
122
121
|
"@babel/helper-function-name@^7.10.4":
|
123
|
-
version "7.
|
124
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.
|
125
|
-
integrity sha512-
|
122
|
+
version "7.12.11"
|
123
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz#1fd7738aee5dcf53c3ecff24f1da9c511ec47b42"
|
124
|
+
integrity sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==
|
126
125
|
dependencies:
|
127
|
-
"@babel/helper-get-function-arity" "^7.10
|
128
|
-
"@babel/template" "^7.
|
129
|
-
"@babel/types" "^7.
|
126
|
+
"@babel/helper-get-function-arity" "^7.12.10"
|
127
|
+
"@babel/template" "^7.12.7"
|
128
|
+
"@babel/types" "^7.12.11"
|
130
129
|
|
131
|
-
"@babel/helper-get-function-arity@^7.10
|
132
|
-
version "7.10
|
133
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.
|
134
|
-
integrity sha512-
|
130
|
+
"@babel/helper-get-function-arity@^7.12.10":
|
131
|
+
version "7.12.10"
|
132
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz#b158817a3165b5faa2047825dfa61970ddcc16cf"
|
133
|
+
integrity sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==
|
135
134
|
dependencies:
|
136
|
-
"@babel/types" "^7.10
|
135
|
+
"@babel/types" "^7.12.10"
|
137
136
|
|
138
137
|
"@babel/helper-hoist-variables@^7.10.4":
|
139
138
|
version "7.10.4"
|
@@ -142,7 +141,7 @@
|
|
142
141
|
dependencies:
|
143
142
|
"@babel/types" "^7.10.4"
|
144
143
|
|
145
|
-
"@babel/helper-member-expression-to-functions@^7.12.1":
|
144
|
+
"@babel/helper-member-expression-to-functions@^7.12.1", "@babel/helper-member-expression-to-functions@^7.12.7":
|
146
145
|
version "7.12.7"
|
147
146
|
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855"
|
148
147
|
integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==
|
@@ -171,12 +170,12 @@
|
|
171
170
|
"@babel/types" "^7.12.1"
|
172
171
|
lodash "^4.17.19"
|
173
172
|
|
174
|
-
"@babel/helper-optimise-call-expression@^7.10.4":
|
175
|
-
version "7.12.
|
176
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.
|
177
|
-
integrity sha512-
|
173
|
+
"@babel/helper-optimise-call-expression@^7.10.4", "@babel/helper-optimise-call-expression@^7.12.10":
|
174
|
+
version "7.12.10"
|
175
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz#94ca4e306ee11a7dd6e9f42823e2ac6b49881e2d"
|
176
|
+
integrity sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==
|
178
177
|
dependencies:
|
179
|
-
"@babel/types" "^7.12.
|
178
|
+
"@babel/types" "^7.12.10"
|
180
179
|
|
181
180
|
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
|
182
181
|
version "7.10.4"
|
@@ -193,14 +192,14 @@
|
|
193
192
|
"@babel/types" "^7.12.1"
|
194
193
|
|
195
194
|
"@babel/helper-replace-supers@^7.12.1":
|
196
|
-
version "7.12.
|
197
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.
|
198
|
-
integrity sha512-
|
195
|
+
version "7.12.11"
|
196
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz#ea511658fc66c7908f923106dd88e08d1997d60d"
|
197
|
+
integrity sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==
|
199
198
|
dependencies:
|
200
|
-
"@babel/helper-member-expression-to-functions" "^7.12.
|
201
|
-
"@babel/helper-optimise-call-expression" "^7.10
|
202
|
-
"@babel/traverse" "^7.12.
|
203
|
-
"@babel/types" "^7.12.
|
199
|
+
"@babel/helper-member-expression-to-functions" "^7.12.7"
|
200
|
+
"@babel/helper-optimise-call-expression" "^7.12.10"
|
201
|
+
"@babel/traverse" "^7.12.10"
|
202
|
+
"@babel/types" "^7.12.11"
|
204
203
|
|
205
204
|
"@babel/helper-simple-access@^7.12.1":
|
206
205
|
version "7.12.1"
|
@@ -217,21 +216,21 @@
|
|
217
216
|
"@babel/types" "^7.12.1"
|
218
217
|
|
219
218
|
"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0":
|
220
|
-
version "7.11
|
221
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.
|
222
|
-
integrity sha512-
|
219
|
+
version "7.12.11"
|
220
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz#1b4cc424458643c47d37022223da33d76ea4603a"
|
221
|
+
integrity sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==
|
223
222
|
dependencies:
|
224
|
-
"@babel/types" "^7.11
|
223
|
+
"@babel/types" "^7.12.11"
|
225
224
|
|
226
|
-
"@babel/helper-validator-identifier@^7.10.4":
|
227
|
-
version "7.
|
228
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.
|
229
|
-
integrity sha512-
|
225
|
+
"@babel/helper-validator-identifier@^7.10.4", "@babel/helper-validator-identifier@^7.12.11":
|
226
|
+
version "7.12.11"
|
227
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed"
|
228
|
+
integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
|
230
229
|
|
231
|
-
"@babel/helper-validator-option@^7.12.1":
|
232
|
-
version "7.12.
|
233
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.
|
234
|
-
integrity sha512-
|
230
|
+
"@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.11":
|
231
|
+
version "7.12.11"
|
232
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz#d66cb8b7a3e7fe4c6962b32020a131ecf0847f4f"
|
233
|
+
integrity sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==
|
235
234
|
|
236
235
|
"@babel/helper-wrap-function@^7.10.4":
|
237
236
|
version "7.12.3"
|
@@ -266,10 +265,10 @@
|
|
266
265
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
|
267
266
|
integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
|
268
267
|
|
269
|
-
"@babel/parser@^7.12.7":
|
270
|
-
version "7.12.
|
271
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.
|
272
|
-
integrity sha512-
|
268
|
+
"@babel/parser@^7.12.10", "@babel/parser@^7.12.7":
|
269
|
+
version "7.12.11"
|
270
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.11.tgz#9ce3595bcd74bc5c466905e86c535b8b25011e79"
|
271
|
+
integrity sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==
|
273
272
|
|
274
273
|
"@babel/plugin-proposal-async-generator-functions@^7.12.1":
|
275
274
|
version "7.12.1"
|
@@ -485,10 +484,10 @@
|
|
485
484
|
dependencies:
|
486
485
|
"@babel/helper-plugin-utils" "^7.10.4"
|
487
486
|
|
488
|
-
"@babel/plugin-transform-block-scoping@^7.12.
|
489
|
-
version "7.12.
|
490
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.
|
491
|
-
integrity sha512-
|
487
|
+
"@babel/plugin-transform-block-scoping@^7.12.11":
|
488
|
+
version "7.12.11"
|
489
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.11.tgz#83ae92a104dbb93a7d6c6dd1844f351083c46b4f"
|
490
|
+
integrity sha512-atR1Rxc3hM+VPg/NvNvfYw0npQEAcHuJ+MGZnFn6h3bo+1U3BWXMdFMlvVRApBTWKQMX7SOwRJZA5FBF/JQbvA==
|
492
491
|
dependencies:
|
493
492
|
"@babel/helper-plugin-utils" "^7.10.4"
|
494
493
|
|
@@ -689,10 +688,10 @@
|
|
689
688
|
dependencies:
|
690
689
|
"@babel/helper-plugin-utils" "^7.10.4"
|
691
690
|
|
692
|
-
"@babel/plugin-transform-typeof-symbol@^7.12.
|
693
|
-
version "7.12.
|
694
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.
|
695
|
-
integrity sha512-
|
691
|
+
"@babel/plugin-transform-typeof-symbol@^7.12.10":
|
692
|
+
version "7.12.10"
|
693
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz#de01c4c8f96580bd00f183072b0d0ecdcf0dec4b"
|
694
|
+
integrity sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==
|
696
695
|
dependencies:
|
697
696
|
"@babel/helper-plugin-utils" "^7.10.4"
|
698
697
|
|
@@ -712,15 +711,15 @@
|
|
712
711
|
"@babel/helper-plugin-utils" "^7.10.4"
|
713
712
|
|
714
713
|
"@babel/preset-env@^7.6.2":
|
715
|
-
version "7.12.
|
716
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.
|
717
|
-
integrity sha512-
|
714
|
+
version "7.12.11"
|
715
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.11.tgz#55d5f7981487365c93dbbc84507b1c7215e857f9"
|
716
|
+
integrity sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw==
|
718
717
|
dependencies:
|
719
718
|
"@babel/compat-data" "^7.12.7"
|
720
719
|
"@babel/helper-compilation-targets" "^7.12.5"
|
721
720
|
"@babel/helper-module-imports" "^7.12.5"
|
722
721
|
"@babel/helper-plugin-utils" "^7.10.4"
|
723
|
-
"@babel/helper-validator-option" "^7.12.
|
722
|
+
"@babel/helper-validator-option" "^7.12.11"
|
724
723
|
"@babel/plugin-proposal-async-generator-functions" "^7.12.1"
|
725
724
|
"@babel/plugin-proposal-class-properties" "^7.12.1"
|
726
725
|
"@babel/plugin-proposal-dynamic-import" "^7.12.1"
|
@@ -749,7 +748,7 @@
|
|
749
748
|
"@babel/plugin-transform-arrow-functions" "^7.12.1"
|
750
749
|
"@babel/plugin-transform-async-to-generator" "^7.12.1"
|
751
750
|
"@babel/plugin-transform-block-scoped-functions" "^7.12.1"
|
752
|
-
"@babel/plugin-transform-block-scoping" "^7.12.
|
751
|
+
"@babel/plugin-transform-block-scoping" "^7.12.11"
|
753
752
|
"@babel/plugin-transform-classes" "^7.12.1"
|
754
753
|
"@babel/plugin-transform-computed-properties" "^7.12.1"
|
755
754
|
"@babel/plugin-transform-destructuring" "^7.12.1"
|
@@ -775,12 +774,12 @@
|
|
775
774
|
"@babel/plugin-transform-spread" "^7.12.1"
|
776
775
|
"@babel/plugin-transform-sticky-regex" "^7.12.7"
|
777
776
|
"@babel/plugin-transform-template-literals" "^7.12.1"
|
778
|
-
"@babel/plugin-transform-typeof-symbol" "^7.12.
|
777
|
+
"@babel/plugin-transform-typeof-symbol" "^7.12.10"
|
779
778
|
"@babel/plugin-transform-unicode-escapes" "^7.12.1"
|
780
779
|
"@babel/plugin-transform-unicode-regex" "^7.12.1"
|
781
780
|
"@babel/preset-modules" "^0.1.3"
|
782
|
-
"@babel/types" "^7.12.
|
783
|
-
core-js-compat "^3.
|
781
|
+
"@babel/types" "^7.12.11"
|
782
|
+
core-js-compat "^3.8.0"
|
784
783
|
semver "^5.5.0"
|
785
784
|
|
786
785
|
"@babel/preset-modules@^0.1.3":
|
@@ -795,9 +794,9 @@
|
|
795
794
|
esutils "^2.0.2"
|
796
795
|
|
797
796
|
"@babel/register@^7.6.2":
|
798
|
-
version "7.12.
|
799
|
-
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.12.
|
800
|
-
integrity sha512-
|
797
|
+
version "7.12.10"
|
798
|
+
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.12.10.tgz#19b87143f17128af4dbe7af54c735663b3999f60"
|
799
|
+
integrity sha512-EvX/BvMMJRAA3jZgILWgbsrHwBQvllC5T8B29McyME8DvkdOxk4ujESfrMvME8IHSDvWXrmMXxPvA/lx2gqPLQ==
|
801
800
|
dependencies:
|
802
801
|
find-cache-dir "^2.0.0"
|
803
802
|
lodash "^4.17.19"
|
@@ -821,27 +820,27 @@
|
|
821
820
|
"@babel/parser" "^7.12.7"
|
822
821
|
"@babel/types" "^7.12.7"
|
823
822
|
|
824
|
-
"@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.
|
825
|
-
version "7.12.
|
826
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.
|
827
|
-
integrity sha512-
|
823
|
+
"@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.10", "@babel/traverse@^7.12.5":
|
824
|
+
version "7.12.10"
|
825
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.10.tgz#2d1f4041e8bf42ea099e5b2dc48d6a594c00017a"
|
826
|
+
integrity sha512-6aEtf0IeRgbYWzta29lePeYSk+YAFIC3kyqESeft8o5CkFlYIMX+EQDDWEiAQ9LHOA3d0oHdgrSsID/CKqXJlg==
|
828
827
|
dependencies:
|
829
828
|
"@babel/code-frame" "^7.10.4"
|
830
|
-
"@babel/generator" "^7.12.
|
829
|
+
"@babel/generator" "^7.12.10"
|
831
830
|
"@babel/helper-function-name" "^7.10.4"
|
832
831
|
"@babel/helper-split-export-declaration" "^7.11.0"
|
833
|
-
"@babel/parser" "^7.12.
|
834
|
-
"@babel/types" "^7.12.
|
832
|
+
"@babel/parser" "^7.12.10"
|
833
|
+
"@babel/types" "^7.12.10"
|
835
834
|
debug "^4.1.0"
|
836
835
|
globals "^11.1.0"
|
837
836
|
lodash "^4.17.19"
|
838
837
|
|
839
|
-
"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.
|
840
|
-
version "7.12.
|
841
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.
|
842
|
-
integrity sha512-
|
838
|
+
"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.12.1", "@babel/types@^7.12.10", "@babel/types@^7.12.11", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4":
|
839
|
+
version "7.12.11"
|
840
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.11.tgz#a86e4d71e30a9b6ee102590446c98662589283ce"
|
841
|
+
integrity sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==
|
843
842
|
dependencies:
|
844
|
-
"@babel/helper-validator-identifier" "^7.
|
843
|
+
"@babel/helper-validator-identifier" "^7.12.11"
|
845
844
|
lodash "^4.17.19"
|
846
845
|
to-fast-properties "^2.0.0"
|
847
846
|
|
@@ -892,9 +891,9 @@
|
|
892
891
|
fastq "^1.6.0"
|
893
892
|
|
894
893
|
"@rails/actioncable@>= 6.0":
|
895
|
-
version "6.0
|
896
|
-
resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.0.
|
897
|
-
integrity sha512-
|
894
|
+
version "6.1.0"
|
895
|
+
resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.1.0.tgz#f336f25450b1bc43b99bc60557a70b6e6bb1d3d2"
|
896
|
+
integrity sha512-eDgy+vcKN9RIzxmMBfSAe77rTj2cp6kJALiVQyKrW2O9EK2MdostOmP+99At/Dit3ur5+77NVnruxD7y14ZYFA==
|
898
897
|
|
899
898
|
"@samverschueren/stream-to-observable@^0.3.0":
|
900
899
|
version "0.3.1"
|
@@ -903,29 +902,29 @@
|
|
903
902
|
dependencies:
|
904
903
|
any-observable "^0.3.0"
|
905
904
|
|
906
|
-
"@stimulus/core@^
|
907
|
-
version "
|
908
|
-
resolved "https://registry.yarnpkg.com/@stimulus/core/-/core-
|
909
|
-
integrity sha512-
|
905
|
+
"@stimulus/core@^2.0.0":
|
906
|
+
version "2.0.0"
|
907
|
+
resolved "https://registry.yarnpkg.com/@stimulus/core/-/core-2.0.0.tgz#140c85318d6a8a8210c0faf182223b8459348877"
|
908
|
+
integrity sha512-ff70GafKtzc8zQ1/cG+UvL06GcifPWovf2wBEdjLMh9xO2GOYURO3y2RYgzIGYUIBefQwyfX2CLfJdZFJrEPTw==
|
910
909
|
dependencies:
|
911
|
-
"@stimulus/mutation-observers" "^
|
910
|
+
"@stimulus/mutation-observers" "^2.0.0"
|
912
911
|
|
913
|
-
"@stimulus/multimap@^
|
914
|
-
version "
|
915
|
-
resolved "https://registry.yarnpkg.com/@stimulus/multimap/-/multimap-
|
916
|
-
integrity sha512-
|
912
|
+
"@stimulus/multimap@^2.0.0":
|
913
|
+
version "2.0.0"
|
914
|
+
resolved "https://registry.yarnpkg.com/@stimulus/multimap/-/multimap-2.0.0.tgz#420cfa096ed6538df4a91dbd2b2842c1779952b2"
|
915
|
+
integrity sha512-pMBCewkZCFVB3e5mEMoyO9+9aKzHDITmf3OnPun51YWxlcPdHcwbjqm1ylK63fsoduIE+RowBpFwFqd3poEz4w==
|
917
916
|
|
918
|
-
"@stimulus/mutation-observers@^
|
919
|
-
version "
|
920
|
-
resolved "https://registry.yarnpkg.com/@stimulus/mutation-observers/-/mutation-observers-
|
921
|
-
integrity sha512
|
917
|
+
"@stimulus/mutation-observers@^2.0.0":
|
918
|
+
version "2.0.0"
|
919
|
+
resolved "https://registry.yarnpkg.com/@stimulus/mutation-observers/-/mutation-observers-2.0.0.tgz#3dbe37453bda47a6c795a90204ee8d77a799fb87"
|
920
|
+
integrity sha512-kx4VAJdPhIGBQKGIoUDC2tupEKorG3A+ckc2b1UiwInKTMAC1axOHU8ebcwhaJIxRqIrs8//4SJo9YAAOx6FEg==
|
922
921
|
dependencies:
|
923
|
-
"@stimulus/multimap" "^
|
922
|
+
"@stimulus/multimap" "^2.0.0"
|
924
923
|
|
925
|
-
"@stimulus/webpack-helpers@^
|
926
|
-
version "
|
927
|
-
resolved "https://registry.yarnpkg.com/@stimulus/webpack-helpers/-/webpack-helpers-
|
928
|
-
integrity sha512-
|
924
|
+
"@stimulus/webpack-helpers@^2.0.0":
|
925
|
+
version "2.0.0"
|
926
|
+
resolved "https://registry.yarnpkg.com/@stimulus/webpack-helpers/-/webpack-helpers-2.0.0.tgz#54296d2a2dffd4f962d2e802d99a3fdd84b8845f"
|
927
|
+
integrity sha512-D6tJWsAC024MwGEIKlUVYU8Ln87mlrmiwHvYAjipg+s8H4eLxUMQ3PZkWyPevfipH+oR3leuHsjYsK1gN5ViQA==
|
929
928
|
|
930
929
|
"@types/glob@^7.1.1":
|
931
930
|
version "7.1.3"
|
@@ -941,9 +940,9 @@
|
|
941
940
|
integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
|
942
941
|
|
943
942
|
"@types/node@*":
|
944
|
-
version "14.14.
|
945
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.
|
946
|
-
integrity sha512-
|
943
|
+
version "14.14.14"
|
944
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.14.tgz#f7fd5f3cc8521301119f63910f0fb965c7d761ae"
|
945
|
+
integrity sha512-UHnOPWVWV1z+VV8k6L1HhG7UbGBgIdghqF3l9Ny9ApPghbjICXkUJSd/b9gOgQfjM1r+37cipdw/HJ3F6ICEnQ==
|
947
946
|
|
948
947
|
"@types/unist@^2.0.0", "@types/unist@^2.0.2":
|
949
948
|
version "2.0.3"
|
@@ -1168,7 +1167,7 @@ asynckit@^0.4.0:
|
|
1168
1167
|
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
1169
1168
|
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
|
1170
1169
|
|
1171
|
-
available-typed-arrays@^1.0.
|
1170
|
+
available-typed-arrays@^1.0.2:
|
1172
1171
|
version "1.0.2"
|
1173
1172
|
resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz#6b098ca9d8039079ee3f77f7b783c4480ba513f5"
|
1174
1173
|
integrity sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==
|
@@ -1239,26 +1238,26 @@ browser-stdout@1.3.1:
|
|
1239
1238
|
resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
|
1240
1239
|
integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
|
1241
1240
|
|
1242
|
-
browserslist@^4.14.5, browserslist@^4.
|
1243
|
-
version "4.
|
1244
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
1245
|
-
integrity sha512
|
1241
|
+
browserslist@^4.14.5, browserslist@^4.15.0:
|
1242
|
+
version "4.16.0"
|
1243
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.0.tgz#410277627500be3cb28a1bfe037586fbedf9488b"
|
1244
|
+
integrity sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ==
|
1246
1245
|
dependencies:
|
1247
|
-
caniuse-lite "^1.0.
|
1246
|
+
caniuse-lite "^1.0.30001165"
|
1248
1247
|
colorette "^1.2.1"
|
1249
|
-
electron-to-chromium "^1.3.
|
1248
|
+
electron-to-chromium "^1.3.621"
|
1250
1249
|
escalade "^3.1.1"
|
1251
|
-
node-releases "^1.1.
|
1250
|
+
node-releases "^1.1.67"
|
1252
1251
|
|
1253
1252
|
buffer-from@^1.0.0:
|
1254
1253
|
version "1.1.1"
|
1255
1254
|
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
|
1256
1255
|
integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
|
1257
1256
|
|
1258
|
-
"cable_ready@>= 4.
|
1259
|
-
version "4.4.
|
1260
|
-
resolved "https://registry.yarnpkg.com/cable_ready/-/cable_ready-4.4.
|
1261
|
-
integrity sha512-
|
1257
|
+
"cable_ready@>= 4.4":
|
1258
|
+
version "4.4.6"
|
1259
|
+
resolved "https://registry.yarnpkg.com/cable_ready/-/cable_ready-4.4.6.tgz#a46c879ec48b722d78cb1fbe0c1850d2f6b2762a"
|
1260
|
+
integrity sha512-nqo50yrnOlV0CKc+ysXnIzwulk7q54hGYUwbJb1s0pBY0eu1yjDhgdU8g9dxfO5xapK6S7oceuEnZ4FQawbU5g==
|
1262
1261
|
dependencies:
|
1263
1262
|
morphdom "^2.6.1"
|
1264
1263
|
|
@@ -1304,10 +1303,10 @@ camelcase@^6.0.0:
|
|
1304
1303
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
|
1305
1304
|
integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
|
1306
1305
|
|
1307
|
-
caniuse-lite@^1.0.
|
1308
|
-
version "1.0.
|
1309
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1310
|
-
integrity sha512-
|
1306
|
+
caniuse-lite@^1.0.30001165:
|
1307
|
+
version "1.0.30001168"
|
1308
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001168.tgz#6fcd098c139d003b9bd484cbb9ca26cb89907f9a"
|
1309
|
+
integrity sha512-P2zmX7swIXKu+GMMR01TWa4csIKELTNnZKc+f1CjebmZJQtTAEXmpQSoKVJVVcvPGAA0TEYTOUp3VehavZSFPQ==
|
1311
1310
|
|
1312
1311
|
caseless@~0.12.0:
|
1313
1312
|
version "0.12.0"
|
@@ -1507,12 +1506,12 @@ convert-source-map@^1.7.0:
|
|
1507
1506
|
dependencies:
|
1508
1507
|
safe-buffer "~5.1.1"
|
1509
1508
|
|
1510
|
-
core-js-compat@^3.
|
1511
|
-
version "3.
|
1512
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.
|
1513
|
-
integrity sha512-
|
1509
|
+
core-js-compat@^3.8.0:
|
1510
|
+
version "3.8.1"
|
1511
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.1.tgz#8d1ddd341d660ba6194cbe0ce60f4c794c87a36e"
|
1512
|
+
integrity sha512-a16TLmy9NVD1rkjUGbwuyWkiDoN0FDpAwrfLONvHFQx0D9k7J9y0srwMT8QP/Z6HE3MIFaVynEeYwZwPX1o5RQ==
|
1514
1513
|
dependencies:
|
1515
|
-
browserslist "^4.
|
1514
|
+
browserslist "^4.15.0"
|
1516
1515
|
semver "7.0.0"
|
1517
1516
|
|
1518
1517
|
core-util-is@1.0.2:
|
@@ -1712,10 +1711,10 @@ editorconfig@0.15.3:
|
|
1712
1711
|
semver "^5.6.0"
|
1713
1712
|
sigmund "^1.0.1"
|
1714
1713
|
|
1715
|
-
electron-to-chromium@^1.3.
|
1716
|
-
version "1.3.
|
1717
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
1718
|
-
integrity sha512-
|
1714
|
+
electron-to-chromium@^1.3.621:
|
1715
|
+
version "1.3.629"
|
1716
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.629.tgz#a08d13b64d90e3c77ec5b9bffa3efbc5b4a00969"
|
1717
|
+
integrity sha512-iSPPJtPvHrMAvYOt+9cdbDmTasPqwnwz4lkP8Dn200gDNUBQOLQ96xUsWXBwXslAo5XxdoXAoQQ3RAy4uao9IQ==
|
1719
1718
|
|
1720
1719
|
elegant-spinner@^1.0.1:
|
1721
1720
|
version "1.0.1"
|
@@ -1746,23 +1745,6 @@ error-ex@^1.3.1:
|
|
1746
1745
|
dependencies:
|
1747
1746
|
is-arrayish "^0.2.1"
|
1748
1747
|
|
1749
|
-
es-abstract@^1.17.4, es-abstract@^1.17.5:
|
1750
|
-
version "1.17.7"
|
1751
|
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c"
|
1752
|
-
integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==
|
1753
|
-
dependencies:
|
1754
|
-
es-to-primitive "^1.2.1"
|
1755
|
-
function-bind "^1.1.1"
|
1756
|
-
has "^1.0.3"
|
1757
|
-
has-symbols "^1.0.1"
|
1758
|
-
is-callable "^1.2.2"
|
1759
|
-
is-regex "^1.1.1"
|
1760
|
-
object-inspect "^1.8.0"
|
1761
|
-
object-keys "^1.1.1"
|
1762
|
-
object.assign "^4.1.1"
|
1763
|
-
string.prototype.trimend "^1.0.1"
|
1764
|
-
string.prototype.trimstart "^1.0.1"
|
1765
|
-
|
1766
1748
|
es-abstract@^1.18.0-next.1:
|
1767
1749
|
version "1.18.0-next.1"
|
1768
1750
|
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68"
|
@@ -2168,9 +2150,9 @@ get-caller-file@^2.0.1:
|
|
2168
2150
|
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
|
2169
2151
|
|
2170
2152
|
get-intrinsic@^1.0.0:
|
2171
|
-
version "1.0.
|
2172
|
-
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.
|
2173
|
-
integrity sha512-
|
2153
|
+
version "1.0.2"
|
2154
|
+
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.2.tgz#6820da226e50b24894e08859469dc68361545d49"
|
2155
|
+
integrity sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==
|
2174
2156
|
dependencies:
|
2175
2157
|
function-bind "^1.1.1"
|
2176
2158
|
has "^1.0.3"
|
@@ -2484,9 +2466,11 @@ is-alphanumerical@^1.0.0:
|
|
2484
2466
|
is-decimal "^1.0.0"
|
2485
2467
|
|
2486
2468
|
is-arguments@^1.0.4:
|
2487
|
-
version "1.0
|
2488
|
-
resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.
|
2489
|
-
integrity sha512-
|
2469
|
+
version "1.1.0"
|
2470
|
+
resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9"
|
2471
|
+
integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==
|
2472
|
+
dependencies:
|
2473
|
+
call-bind "^1.0.0"
|
2490
2474
|
|
2491
2475
|
is-arrayish@^0.2.1:
|
2492
2476
|
version "0.2.1"
|
@@ -2517,13 +2501,6 @@ is-ci@2.0.0:
|
|
2517
2501
|
dependencies:
|
2518
2502
|
ci-info "^2.0.0"
|
2519
2503
|
|
2520
|
-
is-core-module@^2.1.0:
|
2521
|
-
version "2.1.0"
|
2522
|
-
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz#a4cc031d9b1aca63eecbd18a650e13cb4eeab946"
|
2523
|
-
integrity sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==
|
2524
|
-
dependencies:
|
2525
|
-
has "^1.0.3"
|
2526
|
-
|
2527
2504
|
is-date-object@^1.0.1:
|
2528
2505
|
version "1.0.2"
|
2529
2506
|
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
|
@@ -2562,9 +2539,9 @@ is-fullwidth-code-point@^3.0.0:
|
|
2562
2539
|
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
2563
2540
|
|
2564
2541
|
is-generator-function@^1.0.7:
|
2565
|
-
version "1.0.
|
2566
|
-
resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.
|
2567
|
-
integrity sha512-
|
2542
|
+
version "1.0.8"
|
2543
|
+
resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.8.tgz#dfb5c2b120e02b0a8d9d2c6806cd5621aa922f7b"
|
2544
|
+
integrity sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==
|
2568
2545
|
|
2569
2546
|
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
|
2570
2547
|
version "4.0.1"
|
@@ -2586,9 +2563,9 @@ is-nan@^1.2.1:
|
|
2586
2563
|
define-properties "^1.1.3"
|
2587
2564
|
|
2588
2565
|
is-negative-zero@^2.0.0:
|
2589
|
-
version "2.0.
|
2590
|
-
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.
|
2591
|
-
integrity
|
2566
|
+
version "2.0.1"
|
2567
|
+
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
|
2568
|
+
integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
|
2592
2569
|
|
2593
2570
|
is-number@^7.0.0:
|
2594
2571
|
version "7.0.0"
|
@@ -2662,12 +2639,13 @@ is-symbol@^1.0.2:
|
|
2662
2639
|
has-symbols "^1.0.1"
|
2663
2640
|
|
2664
2641
|
is-typed-array@^1.1.3:
|
2665
|
-
version "1.1.
|
2666
|
-
resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.
|
2667
|
-
integrity sha512-
|
2642
|
+
version "1.1.4"
|
2643
|
+
resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.4.tgz#1f66f34a283a3c94a4335434661ca53fff801120"
|
2644
|
+
integrity sha512-ILaRgn4zaSrVNXNGtON6iFNotXW3hAPF3+0fB1usg2jFlWqo5fEDdmJkz0zBfoi7Dgskr8Khi2xZ8cXqZEfXNA==
|
2668
2645
|
dependencies:
|
2669
|
-
available-typed-arrays "^1.0.
|
2670
|
-
|
2646
|
+
available-typed-arrays "^1.0.2"
|
2647
|
+
call-bind "^1.0.0"
|
2648
|
+
es-abstract "^1.18.0-next.1"
|
2671
2649
|
foreach "^2.0.5"
|
2672
2650
|
has-symbols "^1.0.1"
|
2673
2651
|
|
@@ -2718,7 +2696,7 @@ js-tokens@^4.0.0:
|
|
2718
2696
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
2719
2697
|
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
2720
2698
|
|
2721
|
-
js-yaml@3.14.0
|
2699
|
+
js-yaml@3.14.0:
|
2722
2700
|
version "3.14.0"
|
2723
2701
|
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482"
|
2724
2702
|
integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==
|
@@ -2726,6 +2704,14 @@ js-yaml@3.14.0, js-yaml@^3.13.1:
|
|
2726
2704
|
argparse "^1.0.7"
|
2727
2705
|
esprima "^4.0.0"
|
2728
2706
|
|
2707
|
+
js-yaml@^3.13.1:
|
2708
|
+
version "3.14.1"
|
2709
|
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
|
2710
|
+
integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
|
2711
|
+
dependencies:
|
2712
|
+
argparse "^1.0.7"
|
2713
|
+
esprima "^4.0.0"
|
2714
|
+
|
2729
2715
|
jsbn@~0.1.0:
|
2730
2716
|
version "0.1.1"
|
2731
2717
|
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
|
@@ -3178,7 +3164,7 @@ node-modules-regexp@^1.0.0:
|
|
3178
3164
|
resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
|
3179
3165
|
integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
|
3180
3166
|
|
3181
|
-
node-releases@^1.1.
|
3167
|
+
node-releases@^1.1.67:
|
3182
3168
|
version "1.1.67"
|
3183
3169
|
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12"
|
3184
3170
|
integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==
|
@@ -3216,17 +3202,17 @@ object-assign@^4.0.1, object-assign@^4.1.0:
|
|
3216
3202
|
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
|
3217
3203
|
|
3218
3204
|
object-inspect@^1.8.0:
|
3219
|
-
version "1.
|
3220
|
-
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.
|
3221
|
-
integrity sha512-
|
3205
|
+
version "1.9.0"
|
3206
|
+
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a"
|
3207
|
+
integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==
|
3222
3208
|
|
3223
3209
|
object-is@^1.0.1:
|
3224
|
-
version "1.1.
|
3225
|
-
resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.
|
3226
|
-
integrity sha512-
|
3210
|
+
version "1.1.4"
|
3211
|
+
resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.4.tgz#63d6c83c00a43f4cbc9434eb9757c8a5b8565068"
|
3212
|
+
integrity sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==
|
3227
3213
|
dependencies:
|
3214
|
+
call-bind "^1.0.0"
|
3228
3215
|
define-properties "^1.1.3"
|
3229
|
-
es-abstract "^1.18.0-next.1"
|
3230
3216
|
|
3231
3217
|
object-keys@^1.0.12, object-keys@^1.1.1:
|
3232
3218
|
version "1.1.1"
|
@@ -3756,11 +3742,6 @@ repeat-string@^1.5.4:
|
|
3756
3742
|
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
|
3757
3743
|
integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
|
3758
3744
|
|
3759
|
-
replace-ext@1.0.0:
|
3760
|
-
version "1.0.0"
|
3761
|
-
resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
|
3762
|
-
integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
|
3763
|
-
|
3764
3745
|
request-promise-core@1.1.4:
|
3765
3746
|
version "1.1.4"
|
3766
3747
|
resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f"
|
@@ -3830,14 +3811,6 @@ resolve@1.15.1:
|
|
3830
3811
|
dependencies:
|
3831
3812
|
path-parse "^1.0.6"
|
3832
3813
|
|
3833
|
-
resolve@^1.3.2:
|
3834
|
-
version "1.19.0"
|
3835
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c"
|
3836
|
-
integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
|
3837
|
-
dependencies:
|
3838
|
-
is-core-module "^2.1.0"
|
3839
|
-
path-parse "^1.0.6"
|
3840
|
-
|
3841
3814
|
restore-cursor@^2.0.0:
|
3842
3815
|
version "2.0.0"
|
3843
3816
|
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
|
@@ -4050,13 +4023,13 @@ stealthy-require@^1.1.1:
|
|
4050
4023
|
resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
|
4051
4024
|
integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
|
4052
4025
|
|
4053
|
-
stimulus
|
4054
|
-
version "
|
4055
|
-
resolved "https://registry.yarnpkg.com/stimulus/-/stimulus-
|
4056
|
-
integrity sha512-
|
4026
|
+
"stimulus@>= 1.1":
|
4027
|
+
version "2.0.0"
|
4028
|
+
resolved "https://registry.yarnpkg.com/stimulus/-/stimulus-2.0.0.tgz#713c8b91a72ef90914b90955f0e705f004403047"
|
4029
|
+
integrity sha512-xipy7BS5TVpg4fX6S8LhrYZp7cmHGjmk09WSAiVx1gF5S5g43IWsuetfUhIk8HfHUG+4MQ9nY0FQz4dRFLs/8w==
|
4057
4030
|
dependencies:
|
4058
|
-
"@stimulus/core" "^
|
4059
|
-
"@stimulus/webpack-helpers" "^
|
4031
|
+
"@stimulus/core" "^2.0.0"
|
4032
|
+
"@stimulus/webpack-helpers" "^2.0.0"
|
4060
4033
|
|
4061
4034
|
string-argv@^0.3.0:
|
4062
4035
|
version "0.3.1"
|
@@ -4324,9 +4297,9 @@ type-fest@^0.8.1:
|
|
4324
4297
|
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
|
4325
4298
|
|
4326
4299
|
uglify-js@^3.1.4:
|
4327
|
-
version "3.12.
|
4328
|
-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.
|
4329
|
-
integrity sha512-
|
4300
|
+
version "3.12.2"
|
4301
|
+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.2.tgz#c7ae89da0ed1bb58999c7fce07190b347fdbdaba"
|
4302
|
+
integrity sha512-rWYleAvfJPjduYCt+ELvzybNah/zIkRteGXIBO8X0lteRZPGladF61hFi8tU7qKTsF7u6DUQCtT9k00VlFOgkg==
|
4330
4303
|
|
4331
4304
|
unherit@^1.0.4:
|
4332
4305
|
version "1.1.3"
|
@@ -4474,13 +4447,12 @@ vfile-message@^2.0.0:
|
|
4474
4447
|
unist-util-stringify-position "^2.0.0"
|
4475
4448
|
|
4476
4449
|
vfile@^4.0.0:
|
4477
|
-
version "4.2.
|
4478
|
-
resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.
|
4479
|
-
integrity sha512-
|
4450
|
+
version "4.2.1"
|
4451
|
+
resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624"
|
4452
|
+
integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==
|
4480
4453
|
dependencies:
|
4481
4454
|
"@types/unist" "^2.0.0"
|
4482
4455
|
is-buffer "^2.0.0"
|
4483
|
-
replace-ext "1.0.0"
|
4484
4456
|
unist-util-stringify-position "^2.0.0"
|
4485
4457
|
vfile-message "^2.0.0"
|
4486
4458
|
|
@@ -4544,12 +4516,13 @@ which-module@^2.0.0:
|
|
4544
4516
|
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
|
4545
4517
|
|
4546
4518
|
which-typed-array@^1.1.2:
|
4547
|
-
version "1.1.
|
4548
|
-
resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.
|
4549
|
-
integrity sha512-
|
4519
|
+
version "1.1.4"
|
4520
|
+
resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.4.tgz#8fcb7d3ee5adf2d771066fba7cf37e32fe8711ff"
|
4521
|
+
integrity sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==
|
4550
4522
|
dependencies:
|
4551
4523
|
available-typed-arrays "^1.0.2"
|
4552
|
-
|
4524
|
+
call-bind "^1.0.0"
|
4525
|
+
es-abstract "^1.18.0-next.1"
|
4553
4526
|
foreach "^2.0.5"
|
4554
4527
|
function-bind "^1.1.1"
|
4555
4528
|
has-symbols "^1.0.1"
|
@@ -4621,9 +4594,9 @@ write@1.0.3:
|
|
4621
4594
|
mkdirp "^0.5.1"
|
4622
4595
|
|
4623
4596
|
ws@^7.2.3:
|
4624
|
-
version "7.4.
|
4625
|
-
resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.
|
4626
|
-
integrity sha512-
|
4597
|
+
version "7.4.1"
|
4598
|
+
resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.1.tgz#a333be02696bd0e54cea0434e21dcc8a9ac294bb"
|
4599
|
+
integrity sha512-pTsP8UAfhy3sk1lSk/O/s4tjD0CRwvMnzvwr4OKGX7ZvqZtUyx4KIJB5JWbkykPoc55tixMGgTNoh3k4FkNGFQ==
|
4627
4600
|
|
4628
4601
|
xml-name-validator@^3.0.0:
|
4629
4602
|
version "3.0.0"
|
@@ -4641,9 +4614,9 @@ xtend@^4.0.0, xtend@^4.0.1:
|
|
4641
4614
|
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
|
4642
4615
|
|
4643
4616
|
y18n@^4.0.0:
|
4644
|
-
version "4.0.
|
4645
|
-
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.
|
4646
|
-
integrity sha512-
|
4617
|
+
version "4.0.1"
|
4618
|
+
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4"
|
4619
|
+
integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==
|
4647
4620
|
|
4648
4621
|
yallist@^2.1.2:
|
4649
4622
|
version "2.1.2"
|