trestle 0.10.0.pre → 0.10.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.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/release.yml +26 -0
  3. data/.github/workflows/rspec.yml +6 -2
  4. data/Gemfile +14 -5
  5. data/README.md +1 -1
  6. data/app/assets/bundle/trestle/admin.css +9 -9
  7. data/app/assets/bundle/trestle/admin.js +13 -13
  8. data/app/assets/bundle/trestle/fa-brands-400.ttf +0 -0
  9. data/app/assets/bundle/trestle/fa-brands-400.woff2 +0 -0
  10. data/app/assets/bundle/trestle/fa-regular-400.ttf +0 -0
  11. data/app/assets/bundle/trestle/fa-regular-400.woff2 +0 -0
  12. data/app/assets/bundle/trestle/fa-solid-900.ttf +0 -0
  13. data/app/assets/bundle/trestle/fa-solid-900.woff2 +0 -0
  14. data/app/assets/bundle/trestle/photoswipe-063ce7be40e10b3e6848.digested.js +6 -0
  15. data/app/assets/sprockets/trestle/icons/font-awesome.css.erb +1 -1
  16. data/app/controllers/concerns/trestle/controller/modal.rb +3 -1
  17. data/app/controllers/concerns/trestle/controller/turbo_stream.rb +12 -0
  18. data/app/controllers/concerns/trestle/resource/controller/actions.rb +3 -3
  19. data/app/controllers/trestle/application_controller.rb +1 -1
  20. data/app/helpers/trestle/modal_helper.rb +0 -5
  21. data/app/helpers/trestle/turbo/frame_helper.rb +29 -0
  22. data/app/helpers/trestle/turbo/stream_helper.rb +9 -0
  23. data/app/helpers/trestle/turbo/tag_builder.rb +21 -0
  24. data/app/helpers/trestle/url_helper.rb +2 -2
  25. data/app/views/layouts/trestle/admin.html.erb +1 -1
  26. data/app/views/layouts/trestle/admin.turbo_stream.erb +2 -9
  27. data/app/views/trestle/application/_header.html.erb +12 -10
  28. data/app/views/trestle/resource/create.turbo_stream.erb +1 -5
  29. data/app/views/trestle/resource/destroy.turbo_stream.erb +1 -1
  30. data/app/views/trestle/resource/edit.html.erb +2 -0
  31. data/app/views/trestle/resource/index.html.erb +5 -0
  32. data/app/views/trestle/resource/new.html.erb +5 -0
  33. data/app/views/trestle/resource/show.html.erb +2 -0
  34. data/app/views/trestle/resource/update.turbo_stream.erb +1 -5
  35. data/app/views/trestle/shared/_sidebar.html.erb +2 -2
  36. data/frontend/css/components/_alerts.scss +22 -20
  37. data/frontend/css/components/_avatar.scss +12 -12
  38. data/frontend/css/components/_background.scss +1 -1
  39. data/frontend/css/components/_breadcrumbs.scss +8 -29
  40. data/frontend/css/components/_buttons.scss +3 -3
  41. data/frontend/css/components/_datepicker.scss +3 -3
  42. data/frontend/css/components/_dropdown.scss +18 -26
  43. data/frontend/css/components/_forms.scss +4 -4
  44. data/frontend/css/components/_grid.scss +29 -0
  45. data/frontend/css/components/_media-grid.scss +1 -1
  46. data/frontend/css/components/_modal.scss +4 -4
  47. data/frontend/css/components/_pagination.scss +4 -8
  48. data/frontend/css/components/_popover.scss +1 -1
  49. data/frontend/css/components/_scopes.scss +4 -10
  50. data/frontend/css/components/_select.scss +8 -9
  51. data/frontend/css/components/_sort.scss +1 -1
  52. data/frontend/css/components/_table.scss +5 -5
  53. data/frontend/css/components/_tabs.scss +11 -18
  54. data/frontend/css/components/_tags.scss +16 -6
  55. data/frontend/css/components/_toolbars.scss +9 -9
  56. data/frontend/css/core/_functions.scss +0 -8
  57. data/frontend/css/core/_theme.scss +3 -0
  58. data/frontend/css/core/_typography.scss +12 -19
  59. data/frontend/css/index.scss +3 -1
  60. data/frontend/css/layout/_base.scss +4 -2
  61. data/frontend/css/layout/_content-header.scss +71 -0
  62. data/frontend/css/layout/_footer.scss +5 -7
  63. data/frontend/css/layout/_main-content.scss +107 -0
  64. data/frontend/css/layout/_navigation.scss +111 -49
  65. data/frontend/css/layout/_sidebar.scss +60 -34
  66. data/frontend/css/variables/_bootstrap.scss +30 -21
  67. data/frontend/css/variables/_trestle.scss +20 -17
  68. data/frontend/js/controllers/batch_action_controller.js +59 -0
  69. data/frontend/js/controllers/checkbox_select_controller.js +3 -0
  70. data/frontend/js/controllers/confirm_delete_controller.js +4 -4
  71. data/frontend/js/controllers/gallery_controller.js +2 -0
  72. data/frontend/js/controllers/lightbox_controller.js +0 -2
  73. data/lib/trestle/engine.rb +18 -16
  74. data/lib/trestle/form/renderer.rb +1 -1
  75. data/lib/trestle/resource/toolbar.rb +18 -8
  76. data/lib/trestle/sprockets_compressor.rb +16 -0
  77. data/lib/trestle/toolbar/context.rb +7 -4
  78. data/lib/trestle/toolbar/menu.rb +8 -5
  79. data/lib/trestle/version.rb +1 -1
  80. data/package.json +1 -1
  81. data/trestle.gemspec +5 -9
  82. data/yarn.lock +350 -363
  83. metadata +35 -70
  84. data/app/assets/bundle/trestle/photoswipe-7aa1aec9c3c1fd65c382.digested.js +0 -6
  85. data/app/controllers/concerns/trestle/controller/turbo.rb +0 -21
  86. data/app/helpers/trestle/turbo_frame_helper.rb +0 -34
  87. data/frontend/css/layout/_content.scss +0 -173
data/yarn.lock CHANGED
@@ -26,38 +26,38 @@
26
26
  "@babel/highlight" "^7.24.7"
27
27
  picocolors "^1.0.0"
28
28
 
29
- "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.24.7":
30
- version "7.24.7"
31
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.7.tgz#d23bbea508c3883ba8251fb4164982c36ea577ed"
32
- integrity sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==
29
+ "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.2":
30
+ version "7.25.2"
31
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.2.tgz#e41928bd33475305c586f6acbbb7e3ade7a6f7f5"
32
+ integrity sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==
33
33
 
34
34
  "@babel/core@^7.20.12":
35
- version "7.24.7"
36
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.7.tgz#b676450141e0b52a3d43bc91da86aa608f950ac4"
37
- integrity sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==
35
+ version "7.25.2"
36
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77"
37
+ integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==
38
38
  dependencies:
39
39
  "@ampproject/remapping" "^2.2.0"
40
40
  "@babel/code-frame" "^7.24.7"
41
- "@babel/generator" "^7.24.7"
42
- "@babel/helper-compilation-targets" "^7.24.7"
43
- "@babel/helper-module-transforms" "^7.24.7"
44
- "@babel/helpers" "^7.24.7"
45
- "@babel/parser" "^7.24.7"
46
- "@babel/template" "^7.24.7"
47
- "@babel/traverse" "^7.24.7"
48
- "@babel/types" "^7.24.7"
41
+ "@babel/generator" "^7.25.0"
42
+ "@babel/helper-compilation-targets" "^7.25.2"
43
+ "@babel/helper-module-transforms" "^7.25.2"
44
+ "@babel/helpers" "^7.25.0"
45
+ "@babel/parser" "^7.25.0"
46
+ "@babel/template" "^7.25.0"
47
+ "@babel/traverse" "^7.25.2"
48
+ "@babel/types" "^7.25.2"
49
49
  convert-source-map "^2.0.0"
50
50
  debug "^4.1.0"
51
51
  gensync "^1.0.0-beta.2"
52
52
  json5 "^2.2.3"
53
53
  semver "^6.3.1"
54
54
 
55
- "@babel/generator@^7.24.7":
56
- version "7.24.7"
57
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.7.tgz#1654d01de20ad66b4b4d99c135471bc654c55e6d"
58
- integrity sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==
55
+ "@babel/generator@^7.25.0":
56
+ version "7.25.0"
57
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.0.tgz#f858ddfa984350bc3d3b7f125073c9af6988f18e"
58
+ integrity sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==
59
59
  dependencies:
60
- "@babel/types" "^7.24.7"
60
+ "@babel/types" "^7.25.0"
61
61
  "@jridgewell/gen-mapping" "^0.3.5"
62
62
  "@jridgewell/trace-mapping" "^0.3.25"
63
63
  jsesc "^2.5.1"
@@ -77,42 +77,40 @@
77
77
  "@babel/traverse" "^7.24.7"
78
78
  "@babel/types" "^7.24.7"
79
79
 
80
- "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.24.7":
81
- version "7.24.7"
82
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz#4eb6c4a80d6ffeac25ab8cd9a21b5dfa48d503a9"
83
- integrity sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==
80
+ "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.24.7", "@babel/helper-compilation-targets@^7.24.8", "@babel/helper-compilation-targets@^7.25.2":
81
+ version "7.25.2"
82
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz#e1d9410a90974a3a5a66e84ff55ef62e3c02d06c"
83
+ integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==
84
84
  dependencies:
85
- "@babel/compat-data" "^7.24.7"
86
- "@babel/helper-validator-option" "^7.24.7"
87
- browserslist "^4.22.2"
85
+ "@babel/compat-data" "^7.25.2"
86
+ "@babel/helper-validator-option" "^7.24.8"
87
+ browserslist "^4.23.1"
88
88
  lru-cache "^5.1.1"
89
89
  semver "^6.3.1"
90
90
 
91
91
  "@babel/helper-create-class-features-plugin@^7.24.7":
92
- version "7.24.7"
93
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz#2eaed36b3a1c11c53bdf80d53838b293c52f5b3b"
94
- integrity sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==
92
+ version "7.25.0"
93
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.0.tgz#a109bf9c3d58dfed83aaf42e85633c89f43a6253"
94
+ integrity sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==
95
95
  dependencies:
96
96
  "@babel/helper-annotate-as-pure" "^7.24.7"
97
- "@babel/helper-environment-visitor" "^7.24.7"
98
- "@babel/helper-function-name" "^7.24.7"
99
- "@babel/helper-member-expression-to-functions" "^7.24.7"
97
+ "@babel/helper-member-expression-to-functions" "^7.24.8"
100
98
  "@babel/helper-optimise-call-expression" "^7.24.7"
101
- "@babel/helper-replace-supers" "^7.24.7"
99
+ "@babel/helper-replace-supers" "^7.25.0"
102
100
  "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
103
- "@babel/helper-split-export-declaration" "^7.24.7"
101
+ "@babel/traverse" "^7.25.0"
104
102
  semver "^6.3.1"
105
103
 
106
- "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.24.7":
107
- version "7.24.7"
108
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz#be4f435a80dc2b053c76eeb4b7d16dd22cfc89da"
109
- integrity sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==
104
+ "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.24.7", "@babel/helper-create-regexp-features-plugin@^7.25.0":
105
+ version "7.25.2"
106
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz#24c75974ed74183797ffd5f134169316cd1808d9"
107
+ integrity sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==
110
108
  dependencies:
111
109
  "@babel/helper-annotate-as-pure" "^7.24.7"
112
110
  regexpu-core "^5.3.1"
113
111
  semver "^6.3.1"
114
112
 
115
- "@babel/helper-define-polyfill-provider@^0.6.1", "@babel/helper-define-polyfill-provider@^0.6.2":
113
+ "@babel/helper-define-polyfill-provider@^0.6.2":
116
114
  version "0.6.2"
117
115
  resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d"
118
116
  integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==
@@ -123,13 +121,6 @@
123
121
  lodash.debounce "^4.0.8"
124
122
  resolve "^1.14.2"
125
123
 
126
- "@babel/helper-environment-visitor@^7.24.7":
127
- version "7.24.7"
128
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz#4b31ba9551d1f90781ba83491dd59cf9b269f7d9"
129
- integrity sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==
130
- dependencies:
131
- "@babel/types" "^7.24.7"
132
-
133
124
  "@babel/helper-explode-assignable-expression@^7.18.6":
134
125
  version "7.18.6"
135
126
  resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096"
@@ -137,28 +128,13 @@
137
128
  dependencies:
138
129
  "@babel/types" "^7.18.6"
139
130
 
140
- "@babel/helper-function-name@^7.24.7":
141
- version "7.24.7"
142
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz#75f1e1725742f39ac6584ee0b16d94513da38dd2"
143
- integrity sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==
144
- dependencies:
145
- "@babel/template" "^7.24.7"
146
- "@babel/types" "^7.24.7"
147
-
148
- "@babel/helper-hoist-variables@^7.24.7":
149
- version "7.24.7"
150
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz#b4ede1cde2fd89436397f30dc9376ee06b0f25ee"
151
- integrity sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==
152
- dependencies:
153
- "@babel/types" "^7.24.7"
154
-
155
- "@babel/helper-member-expression-to-functions@^7.24.7":
156
- version "7.24.7"
157
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz#67613d068615a70e4ed5101099affc7a41c5225f"
158
- integrity sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==
131
+ "@babel/helper-member-expression-to-functions@^7.24.8":
132
+ version "7.24.8"
133
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz#6155e079c913357d24a4c20480db7c712a5c3fb6"
134
+ integrity sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==
159
135
  dependencies:
160
- "@babel/traverse" "^7.24.7"
161
- "@babel/types" "^7.24.7"
136
+ "@babel/traverse" "^7.24.8"
137
+ "@babel/types" "^7.24.8"
162
138
 
163
139
  "@babel/helper-module-imports@^7.24.7":
164
140
  version "7.24.7"
@@ -168,16 +144,15 @@
168
144
  "@babel/traverse" "^7.24.7"
169
145
  "@babel/types" "^7.24.7"
170
146
 
171
- "@babel/helper-module-transforms@^7.24.7":
172
- version "7.24.7"
173
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz#31b6c9a2930679498db65b685b1698bfd6c7daf8"
174
- integrity sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==
147
+ "@babel/helper-module-transforms@^7.24.7", "@babel/helper-module-transforms@^7.24.8", "@babel/helper-module-transforms@^7.25.0", "@babel/helper-module-transforms@^7.25.2":
148
+ version "7.25.2"
149
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz#ee713c29768100f2776edf04d4eb23b8d27a66e6"
150
+ integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==
175
151
  dependencies:
176
- "@babel/helper-environment-visitor" "^7.24.7"
177
152
  "@babel/helper-module-imports" "^7.24.7"
178
153
  "@babel/helper-simple-access" "^7.24.7"
179
- "@babel/helper-split-export-declaration" "^7.24.7"
180
154
  "@babel/helper-validator-identifier" "^7.24.7"
155
+ "@babel/traverse" "^7.25.2"
181
156
 
182
157
  "@babel/helper-optimise-call-expression@^7.24.7":
183
158
  version "7.24.7"
@@ -186,28 +161,28 @@
186
161
  dependencies:
187
162
  "@babel/types" "^7.24.7"
188
163
 
189
- "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
190
- version "7.24.7"
191
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz#98c84fe6fe3d0d3ae7bfc3a5e166a46844feb2a0"
192
- integrity sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==
164
+ "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
165
+ version "7.24.8"
166
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz#94ee67e8ec0e5d44ea7baeb51e571bd26af07878"
167
+ integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==
193
168
 
194
- "@babel/helper-remap-async-to-generator@^7.24.7":
195
- version "7.24.7"
196
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz#b3f0f203628522713849d49403f1a414468be4c7"
197
- integrity sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==
169
+ "@babel/helper-remap-async-to-generator@^7.24.7", "@babel/helper-remap-async-to-generator@^7.25.0":
170
+ version "7.25.0"
171
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz#d2f0fbba059a42d68e5e378feaf181ef6055365e"
172
+ integrity sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==
198
173
  dependencies:
199
174
  "@babel/helper-annotate-as-pure" "^7.24.7"
200
- "@babel/helper-environment-visitor" "^7.24.7"
201
- "@babel/helper-wrap-function" "^7.24.7"
175
+ "@babel/helper-wrap-function" "^7.25.0"
176
+ "@babel/traverse" "^7.25.0"
202
177
 
203
- "@babel/helper-replace-supers@^7.24.7":
204
- version "7.24.7"
205
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz#f933b7eed81a1c0265740edc91491ce51250f765"
206
- integrity sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==
178
+ "@babel/helper-replace-supers@^7.24.7", "@babel/helper-replace-supers@^7.25.0":
179
+ version "7.25.0"
180
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz#ff44deac1c9f619523fe2ca1fd650773792000a9"
181
+ integrity sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==
207
182
  dependencies:
208
- "@babel/helper-environment-visitor" "^7.24.7"
209
- "@babel/helper-member-expression-to-functions" "^7.24.7"
183
+ "@babel/helper-member-expression-to-functions" "^7.24.8"
210
184
  "@babel/helper-optimise-call-expression" "^7.24.7"
185
+ "@babel/traverse" "^7.25.0"
211
186
 
212
187
  "@babel/helper-simple-access@^7.24.7":
213
188
  version "7.24.7"
@@ -225,50 +200,37 @@
225
200
  "@babel/traverse" "^7.24.7"
226
201
  "@babel/types" "^7.24.7"
227
202
 
228
- "@babel/helper-split-export-declaration@^7.24.7":
229
- version "7.24.7"
230
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz#83949436890e07fa3d6873c61a96e3bbf692d856"
231
- integrity sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==
232
- dependencies:
233
- "@babel/types" "^7.24.7"
234
-
235
- "@babel/helper-string-parser@^7.24.1":
236
- version "7.24.1"
237
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e"
238
- integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==
239
-
240
- "@babel/helper-string-parser@^7.24.7":
241
- version "7.24.7"
242
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz#4d2d0f14820ede3b9807ea5fc36dfc8cd7da07f2"
243
- integrity sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==
203
+ "@babel/helper-string-parser@^7.24.8":
204
+ version "7.24.8"
205
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d"
206
+ integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==
244
207
 
245
208
  "@babel/helper-validator-identifier@^7.24.5", "@babel/helper-validator-identifier@^7.24.7":
246
209
  version "7.24.7"
247
210
  resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db"
248
211
  integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==
249
212
 
250
- "@babel/helper-validator-option@^7.24.7":
251
- version "7.24.7"
252
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz#24c3bb77c7a425d1742eec8fb433b5a1b38e62f6"
253
- integrity sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==
213
+ "@babel/helper-validator-option@^7.24.8":
214
+ version "7.24.8"
215
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d"
216
+ integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==
254
217
 
255
- "@babel/helper-wrap-function@^7.24.7":
256
- version "7.24.7"
257
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz#52d893af7e42edca7c6d2c6764549826336aae1f"
258
- integrity sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==
218
+ "@babel/helper-wrap-function@^7.25.0":
219
+ version "7.25.0"
220
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz#dab12f0f593d6ca48c0062c28bcfb14ebe812f81"
221
+ integrity sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==
259
222
  dependencies:
260
- "@babel/helper-function-name" "^7.24.7"
261
- "@babel/template" "^7.24.7"
262
- "@babel/traverse" "^7.24.7"
263
- "@babel/types" "^7.24.7"
223
+ "@babel/template" "^7.25.0"
224
+ "@babel/traverse" "^7.25.0"
225
+ "@babel/types" "^7.25.0"
264
226
 
265
- "@babel/helpers@^7.24.7":
266
- version "7.24.7"
267
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.7.tgz#aa2ccda29f62185acb5d42fb4a3a1b1082107416"
268
- integrity sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==
227
+ "@babel/helpers@^7.25.0":
228
+ version "7.25.0"
229
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.0.tgz#e69beb7841cb93a6505531ede34f34e6a073650a"
230
+ integrity sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==
269
231
  dependencies:
270
- "@babel/template" "^7.24.7"
271
- "@babel/types" "^7.24.7"
232
+ "@babel/template" "^7.25.0"
233
+ "@babel/types" "^7.25.0"
272
234
 
273
235
  "@babel/highlight@^7.23.4":
274
236
  version "7.24.5"
@@ -290,25 +252,34 @@
290
252
  js-tokens "^4.0.0"
291
253
  picocolors "^1.0.0"
292
254
 
293
- "@babel/parser@^7.24.7":
294
- version "7.24.7"
295
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.7.tgz#9a5226f92f0c5c8ead550b750f5608e766c8ce85"
296
- integrity sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==
255
+ "@babel/parser@^7.25.0", "@babel/parser@^7.25.3":
256
+ version "7.25.3"
257
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.3.tgz#91fb126768d944966263f0657ab222a642b82065"
258
+ integrity sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==
259
+ dependencies:
260
+ "@babel/types" "^7.25.2"
297
261
 
298
- "@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.24.7":
299
- version "7.24.7"
300
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz#fd059fd27b184ea2b4c7e646868a9a381bbc3055"
301
- integrity sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==
262
+ "@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.3":
263
+ version "7.25.3"
264
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz#dca427b45a6c0f5c095a1c639dfe2476a3daba7f"
265
+ integrity sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==
302
266
  dependencies:
303
- "@babel/helper-environment-visitor" "^7.24.7"
304
- "@babel/helper-plugin-utils" "^7.24.7"
267
+ "@babel/helper-plugin-utils" "^7.24.8"
268
+ "@babel/traverse" "^7.25.3"
305
269
 
306
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.24.7":
307
- version "7.24.7"
308
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz#468096ca44bbcbe8fcc570574e12eb1950e18107"
309
- integrity sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==
270
+ "@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.0":
271
+ version "7.25.0"
272
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz#cd0c583e01369ef51676bdb3d7b603e17d2b3f73"
273
+ integrity sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==
310
274
  dependencies:
311
- "@babel/helper-plugin-utils" "^7.24.7"
275
+ "@babel/helper-plugin-utils" "^7.24.8"
276
+
277
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.0":
278
+ version "7.25.0"
279
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz#749bde80356b295390954643de7635e0dffabe73"
280
+ integrity sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==
281
+ dependencies:
282
+ "@babel/helper-plugin-utils" "^7.24.8"
312
283
 
313
284
  "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.7":
314
285
  version "7.24.7"
@@ -319,13 +290,13 @@
319
290
  "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
320
291
  "@babel/plugin-transform-optional-chaining" "^7.24.7"
321
292
 
322
- "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.24.7":
323
- version "7.24.7"
324
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz#71b21bb0286d5810e63a1538aa901c58e87375ec"
325
- integrity sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==
293
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.0":
294
+ version "7.25.0"
295
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz#3a82a70e7cb7294ad2559465ebcb871dfbf078fb"
296
+ integrity sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==
326
297
  dependencies:
327
- "@babel/helper-environment-visitor" "^7.24.7"
328
- "@babel/helper-plugin-utils" "^7.24.7"
298
+ "@babel/helper-plugin-utils" "^7.24.8"
299
+ "@babel/traverse" "^7.25.0"
329
300
 
330
301
  "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
331
302
  version "7.21.0-placeholder-for-preset-env.2"
@@ -466,15 +437,15 @@
466
437
  dependencies:
467
438
  "@babel/helper-plugin-utils" "^7.24.7"
468
439
 
469
- "@babel/plugin-transform-async-generator-functions@^7.24.7":
470
- version "7.24.7"
471
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz#7330a5c50e05181ca52351b8fd01642000c96cfd"
472
- integrity sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==
440
+ "@babel/plugin-transform-async-generator-functions@^7.25.0":
441
+ version "7.25.0"
442
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz#b785cf35d73437f6276b1e30439a57a50747bddf"
443
+ integrity sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==
473
444
  dependencies:
474
- "@babel/helper-environment-visitor" "^7.24.7"
475
- "@babel/helper-plugin-utils" "^7.24.7"
476
- "@babel/helper-remap-async-to-generator" "^7.24.7"
445
+ "@babel/helper-plugin-utils" "^7.24.8"
446
+ "@babel/helper-remap-async-to-generator" "^7.25.0"
477
447
  "@babel/plugin-syntax-async-generators" "^7.8.4"
448
+ "@babel/traverse" "^7.25.0"
478
449
 
479
450
  "@babel/plugin-transform-async-to-generator@^7.24.7":
480
451
  version "7.24.7"
@@ -492,12 +463,12 @@
492
463
  dependencies:
493
464
  "@babel/helper-plugin-utils" "^7.24.7"
494
465
 
495
- "@babel/plugin-transform-block-scoping@^7.24.7":
496
- version "7.24.7"
497
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz#42063e4deb850c7bd7c55e626bf4e7ab48e6ce02"
498
- integrity sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==
466
+ "@babel/plugin-transform-block-scoping@^7.25.0":
467
+ version "7.25.0"
468
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz#23a6ed92e6b006d26b1869b1c91d1b917c2ea2ac"
469
+ integrity sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==
499
470
  dependencies:
500
- "@babel/helper-plugin-utils" "^7.24.7"
471
+ "@babel/helper-plugin-utils" "^7.24.8"
501
472
 
502
473
  "@babel/plugin-transform-class-properties@^7.24.7":
503
474
  version "7.24.7"
@@ -516,18 +487,16 @@
516
487
  "@babel/helper-plugin-utils" "^7.24.7"
517
488
  "@babel/plugin-syntax-class-static-block" "^7.14.5"
518
489
 
519
- "@babel/plugin-transform-classes@^7.24.7":
520
- version "7.24.7"
521
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz#4ae6ef43a12492134138c1e45913f7c46c41b4bf"
522
- integrity sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==
490
+ "@babel/plugin-transform-classes@^7.25.0":
491
+ version "7.25.0"
492
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.0.tgz#63122366527d88e0ef61b612554fe3f8c793991e"
493
+ integrity sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==
523
494
  dependencies:
524
495
  "@babel/helper-annotate-as-pure" "^7.24.7"
525
- "@babel/helper-compilation-targets" "^7.24.7"
526
- "@babel/helper-environment-visitor" "^7.24.7"
527
- "@babel/helper-function-name" "^7.24.7"
528
- "@babel/helper-plugin-utils" "^7.24.7"
529
- "@babel/helper-replace-supers" "^7.24.7"
530
- "@babel/helper-split-export-declaration" "^7.24.7"
496
+ "@babel/helper-compilation-targets" "^7.24.8"
497
+ "@babel/helper-plugin-utils" "^7.24.8"
498
+ "@babel/helper-replace-supers" "^7.25.0"
499
+ "@babel/traverse" "^7.25.0"
531
500
  globals "^11.1.0"
532
501
 
533
502
  "@babel/plugin-transform-computed-properties@^7.24.7":
@@ -538,12 +507,12 @@
538
507
  "@babel/helper-plugin-utils" "^7.24.7"
539
508
  "@babel/template" "^7.24.7"
540
509
 
541
- "@babel/plugin-transform-destructuring@^7.24.7":
542
- version "7.24.7"
543
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz#a097f25292defb6e6cc16d6333a4cfc1e3c72d9e"
544
- integrity sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==
510
+ "@babel/plugin-transform-destructuring@^7.24.8":
511
+ version "7.24.8"
512
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz#c828e814dbe42a2718a838c2a2e16a408e055550"
513
+ integrity sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==
545
514
  dependencies:
546
- "@babel/helper-plugin-utils" "^7.24.7"
515
+ "@babel/helper-plugin-utils" "^7.24.8"
547
516
 
548
517
  "@babel/plugin-transform-dotall-regex@^7.24.7":
549
518
  version "7.24.7"
@@ -560,6 +529,14 @@
560
529
  dependencies:
561
530
  "@babel/helper-plugin-utils" "^7.24.7"
562
531
 
532
+ "@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.0":
533
+ version "7.25.0"
534
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz#809af7e3339466b49c034c683964ee8afb3e2604"
535
+ integrity sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==
536
+ dependencies:
537
+ "@babel/helper-create-regexp-features-plugin" "^7.25.0"
538
+ "@babel/helper-plugin-utils" "^7.24.8"
539
+
563
540
  "@babel/plugin-transform-dynamic-import@^7.24.7":
564
541
  version "7.24.7"
565
542
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz#4d8b95e3bae2b037673091aa09cd33fecd6419f4"
@@ -592,14 +569,14 @@
592
569
  "@babel/helper-plugin-utils" "^7.24.7"
593
570
  "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
594
571
 
595
- "@babel/plugin-transform-function-name@^7.24.7":
596
- version "7.24.7"
597
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz#6d8601fbffe665c894440ab4470bc721dd9131d6"
598
- integrity sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==
572
+ "@babel/plugin-transform-function-name@^7.25.1":
573
+ version "7.25.1"
574
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz#b85e773097526c1a4fc4ba27322748643f26fc37"
575
+ integrity sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==
599
576
  dependencies:
600
- "@babel/helper-compilation-targets" "^7.24.7"
601
- "@babel/helper-function-name" "^7.24.7"
602
- "@babel/helper-plugin-utils" "^7.24.7"
577
+ "@babel/helper-compilation-targets" "^7.24.8"
578
+ "@babel/helper-plugin-utils" "^7.24.8"
579
+ "@babel/traverse" "^7.25.1"
603
580
 
604
581
  "@babel/plugin-transform-json-strings@^7.24.7":
605
582
  version "7.24.7"
@@ -609,12 +586,12 @@
609
586
  "@babel/helper-plugin-utils" "^7.24.7"
610
587
  "@babel/plugin-syntax-json-strings" "^7.8.3"
611
588
 
612
- "@babel/plugin-transform-literals@^7.24.7":
613
- version "7.24.7"
614
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz#36b505c1e655151a9d7607799a9988fc5467d06c"
615
- integrity sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==
589
+ "@babel/plugin-transform-literals@^7.25.2":
590
+ version "7.25.2"
591
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz#deb1ad14fc5490b9a65ed830e025bca849d8b5f3"
592
+ integrity sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==
616
593
  dependencies:
617
- "@babel/helper-plugin-utils" "^7.24.7"
594
+ "@babel/helper-plugin-utils" "^7.24.8"
618
595
 
619
596
  "@babel/plugin-transform-logical-assignment-operators@^7.24.7":
620
597
  version "7.24.7"
@@ -639,24 +616,24 @@
639
616
  "@babel/helper-module-transforms" "^7.24.7"
640
617
  "@babel/helper-plugin-utils" "^7.24.7"
641
618
 
642
- "@babel/plugin-transform-modules-commonjs@^7.24.7":
643
- version "7.24.7"
644
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz#9fd5f7fdadee9085886b183f1ad13d1ab260f4ab"
645
- integrity sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==
619
+ "@babel/plugin-transform-modules-commonjs@^7.24.8":
620
+ version "7.24.8"
621
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz#ab6421e564b717cb475d6fff70ae7f103536ea3c"
622
+ integrity sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==
646
623
  dependencies:
647
- "@babel/helper-module-transforms" "^7.24.7"
648
- "@babel/helper-plugin-utils" "^7.24.7"
624
+ "@babel/helper-module-transforms" "^7.24.8"
625
+ "@babel/helper-plugin-utils" "^7.24.8"
649
626
  "@babel/helper-simple-access" "^7.24.7"
650
627
 
651
- "@babel/plugin-transform-modules-systemjs@^7.24.7":
652
- version "7.24.7"
653
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz#f8012316c5098f6e8dee6ecd58e2bc6f003d0ce7"
654
- integrity sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==
628
+ "@babel/plugin-transform-modules-systemjs@^7.25.0":
629
+ version "7.25.0"
630
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz#8f46cdc5f9e5af74f3bd019485a6cbe59685ea33"
631
+ integrity sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==
655
632
  dependencies:
656
- "@babel/helper-hoist-variables" "^7.24.7"
657
- "@babel/helper-module-transforms" "^7.24.7"
658
- "@babel/helper-plugin-utils" "^7.24.7"
633
+ "@babel/helper-module-transforms" "^7.25.0"
634
+ "@babel/helper-plugin-utils" "^7.24.8"
659
635
  "@babel/helper-validator-identifier" "^7.24.7"
636
+ "@babel/traverse" "^7.25.0"
660
637
 
661
638
  "@babel/plugin-transform-modules-umd@^7.24.7":
662
639
  version "7.24.7"
@@ -723,12 +700,12 @@
723
700
  "@babel/helper-plugin-utils" "^7.24.7"
724
701
  "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
725
702
 
726
- "@babel/plugin-transform-optional-chaining@^7.24.7":
727
- version "7.24.7"
728
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz#b8f6848a80cf2da98a8a204429bec04756c6d454"
729
- integrity sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==
703
+ "@babel/plugin-transform-optional-chaining@^7.24.7", "@babel/plugin-transform-optional-chaining@^7.24.8":
704
+ version "7.24.8"
705
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz#bb02a67b60ff0406085c13d104c99a835cdf365d"
706
+ integrity sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==
730
707
  dependencies:
731
- "@babel/helper-plugin-utils" "^7.24.7"
708
+ "@babel/helper-plugin-utils" "^7.24.8"
732
709
  "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
733
710
  "@babel/plugin-syntax-optional-chaining" "^7.8.3"
734
711
 
@@ -808,12 +785,12 @@
808
785
  dependencies:
809
786
  "@babel/helper-plugin-utils" "^7.24.7"
810
787
 
811
- "@babel/plugin-transform-typeof-symbol@^7.24.7":
812
- version "7.24.7"
813
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz#f074be466580d47d6e6b27473a840c9f9ca08fb0"
814
- integrity sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==
788
+ "@babel/plugin-transform-typeof-symbol@^7.24.8":
789
+ version "7.24.8"
790
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz#383dab37fb073f5bfe6e60c654caac309f92ba1c"
791
+ integrity sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==
815
792
  dependencies:
816
- "@babel/helper-plugin-utils" "^7.24.7"
793
+ "@babel/helper-plugin-utils" "^7.24.8"
817
794
 
818
795
  "@babel/plugin-transform-unicode-escapes@^7.24.7":
819
796
  version "7.24.7"
@@ -847,18 +824,19 @@
847
824
  "@babel/helper-plugin-utils" "^7.24.7"
848
825
 
849
826
  "@babel/preset-env@^7.20.2":
850
- version "7.24.7"
851
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.7.tgz#ff067b4e30ba4a72f225f12f123173e77b987f37"
852
- integrity sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==
853
- dependencies:
854
- "@babel/compat-data" "^7.24.7"
855
- "@babel/helper-compilation-targets" "^7.24.7"
856
- "@babel/helper-plugin-utils" "^7.24.7"
857
- "@babel/helper-validator-option" "^7.24.7"
858
- "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.24.7"
859
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.24.7"
827
+ version "7.25.3"
828
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.3.tgz#0bf4769d84ac51d1073ab4a86f00f30a3a83c67c"
829
+ integrity sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==
830
+ dependencies:
831
+ "@babel/compat-data" "^7.25.2"
832
+ "@babel/helper-compilation-targets" "^7.25.2"
833
+ "@babel/helper-plugin-utils" "^7.24.8"
834
+ "@babel/helper-validator-option" "^7.24.8"
835
+ "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.25.3"
836
+ "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.25.0"
837
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.25.0"
860
838
  "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.7"
861
- "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.24.7"
839
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.25.0"
862
840
  "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
863
841
  "@babel/plugin-syntax-async-generators" "^7.8.4"
864
842
  "@babel/plugin-syntax-class-properties" "^7.12.13"
@@ -879,29 +857,30 @@
879
857
  "@babel/plugin-syntax-top-level-await" "^7.14.5"
880
858
  "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
881
859
  "@babel/plugin-transform-arrow-functions" "^7.24.7"
882
- "@babel/plugin-transform-async-generator-functions" "^7.24.7"
860
+ "@babel/plugin-transform-async-generator-functions" "^7.25.0"
883
861
  "@babel/plugin-transform-async-to-generator" "^7.24.7"
884
862
  "@babel/plugin-transform-block-scoped-functions" "^7.24.7"
885
- "@babel/plugin-transform-block-scoping" "^7.24.7"
863
+ "@babel/plugin-transform-block-scoping" "^7.25.0"
886
864
  "@babel/plugin-transform-class-properties" "^7.24.7"
887
865
  "@babel/plugin-transform-class-static-block" "^7.24.7"
888
- "@babel/plugin-transform-classes" "^7.24.7"
866
+ "@babel/plugin-transform-classes" "^7.25.0"
889
867
  "@babel/plugin-transform-computed-properties" "^7.24.7"
890
- "@babel/plugin-transform-destructuring" "^7.24.7"
868
+ "@babel/plugin-transform-destructuring" "^7.24.8"
891
869
  "@babel/plugin-transform-dotall-regex" "^7.24.7"
892
870
  "@babel/plugin-transform-duplicate-keys" "^7.24.7"
871
+ "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.25.0"
893
872
  "@babel/plugin-transform-dynamic-import" "^7.24.7"
894
873
  "@babel/plugin-transform-exponentiation-operator" "^7.24.7"
895
874
  "@babel/plugin-transform-export-namespace-from" "^7.24.7"
896
875
  "@babel/plugin-transform-for-of" "^7.24.7"
897
- "@babel/plugin-transform-function-name" "^7.24.7"
876
+ "@babel/plugin-transform-function-name" "^7.25.1"
898
877
  "@babel/plugin-transform-json-strings" "^7.24.7"
899
- "@babel/plugin-transform-literals" "^7.24.7"
878
+ "@babel/plugin-transform-literals" "^7.25.2"
900
879
  "@babel/plugin-transform-logical-assignment-operators" "^7.24.7"
901
880
  "@babel/plugin-transform-member-expression-literals" "^7.24.7"
902
881
  "@babel/plugin-transform-modules-amd" "^7.24.7"
903
- "@babel/plugin-transform-modules-commonjs" "^7.24.7"
904
- "@babel/plugin-transform-modules-systemjs" "^7.24.7"
882
+ "@babel/plugin-transform-modules-commonjs" "^7.24.8"
883
+ "@babel/plugin-transform-modules-systemjs" "^7.25.0"
905
884
  "@babel/plugin-transform-modules-umd" "^7.24.7"
906
885
  "@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7"
907
886
  "@babel/plugin-transform-new-target" "^7.24.7"
@@ -910,7 +889,7 @@
910
889
  "@babel/plugin-transform-object-rest-spread" "^7.24.7"
911
890
  "@babel/plugin-transform-object-super" "^7.24.7"
912
891
  "@babel/plugin-transform-optional-catch-binding" "^7.24.7"
913
- "@babel/plugin-transform-optional-chaining" "^7.24.7"
892
+ "@babel/plugin-transform-optional-chaining" "^7.24.8"
914
893
  "@babel/plugin-transform-parameters" "^7.24.7"
915
894
  "@babel/plugin-transform-private-methods" "^7.24.7"
916
895
  "@babel/plugin-transform-private-property-in-object" "^7.24.7"
@@ -921,7 +900,7 @@
921
900
  "@babel/plugin-transform-spread" "^7.24.7"
922
901
  "@babel/plugin-transform-sticky-regex" "^7.24.7"
923
902
  "@babel/plugin-transform-template-literals" "^7.24.7"
924
- "@babel/plugin-transform-typeof-symbol" "^7.24.7"
903
+ "@babel/plugin-transform-typeof-symbol" "^7.24.8"
925
904
  "@babel/plugin-transform-unicode-escapes" "^7.24.7"
926
905
  "@babel/plugin-transform-unicode-property-regex" "^7.24.7"
927
906
  "@babel/plugin-transform-unicode-regex" "^7.24.7"
@@ -930,7 +909,7 @@
930
909
  babel-plugin-polyfill-corejs2 "^0.4.10"
931
910
  babel-plugin-polyfill-corejs3 "^0.10.4"
932
911
  babel-plugin-polyfill-regenerator "^0.6.1"
933
- core-js-compat "^3.31.0"
912
+ core-js-compat "^3.37.1"
934
913
  semver "^6.3.1"
935
914
 
936
915
  "@babel/preset-modules@0.1.6-no-external-plugins":
@@ -947,53 +926,57 @@
947
926
  resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
948
927
  integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
949
928
 
950
- "@babel/runtime@^7.23.9", "@babel/runtime@^7.8.4":
929
+ "@babel/runtime@^7.23.9":
951
930
  version "7.24.7"
952
931
  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.7.tgz#f4f0d5530e8dbdf59b3451b9b3e594b6ba082e12"
953
932
  integrity sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==
954
933
  dependencies:
955
934
  regenerator-runtime "^0.14.0"
956
935
 
957
- "@babel/template@^7.24.7":
958
- version "7.24.7"
959
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.7.tgz#02efcee317d0609d2c07117cb70ef8fb17ab7315"
960
- integrity sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==
936
+ "@babel/runtime@^7.8.4":
937
+ version "7.25.0"
938
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.0.tgz#3af9a91c1b739c569d5d80cc917280919c544ecb"
939
+ integrity sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==
940
+ dependencies:
941
+ regenerator-runtime "^0.14.0"
942
+
943
+ "@babel/template@^7.24.7", "@babel/template@^7.25.0":
944
+ version "7.25.0"
945
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a"
946
+ integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==
961
947
  dependencies:
962
948
  "@babel/code-frame" "^7.24.7"
963
- "@babel/parser" "^7.24.7"
964
- "@babel/types" "^7.24.7"
949
+ "@babel/parser" "^7.25.0"
950
+ "@babel/types" "^7.25.0"
965
951
 
966
- "@babel/traverse@^7.24.7":
967
- version "7.24.7"
968
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.7.tgz#de2b900163fa741721ba382163fe46a936c40cf5"
969
- integrity sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==
952
+ "@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.1", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.3":
953
+ version "7.25.3"
954
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.3.tgz#f1b901951c83eda2f3e29450ce92743783373490"
955
+ integrity sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==
970
956
  dependencies:
971
957
  "@babel/code-frame" "^7.24.7"
972
- "@babel/generator" "^7.24.7"
973
- "@babel/helper-environment-visitor" "^7.24.7"
974
- "@babel/helper-function-name" "^7.24.7"
975
- "@babel/helper-hoist-variables" "^7.24.7"
976
- "@babel/helper-split-export-declaration" "^7.24.7"
977
- "@babel/parser" "^7.24.7"
978
- "@babel/types" "^7.24.7"
958
+ "@babel/generator" "^7.25.0"
959
+ "@babel/parser" "^7.25.3"
960
+ "@babel/template" "^7.25.0"
961
+ "@babel/types" "^7.25.2"
979
962
  debug "^4.3.1"
980
963
  globals "^11.1.0"
981
964
 
982
- "@babel/types@^7.22.5":
983
- version "7.24.5"
984
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.5.tgz#7661930afc638a5383eb0c4aee59b74f38db84d7"
985
- integrity sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==
965
+ "@babel/types@^7.18.6":
966
+ version "7.24.9"
967
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.9.tgz#228ce953d7b0d16646e755acf204f4cf3d08cc73"
968
+ integrity sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==
986
969
  dependencies:
987
- "@babel/helper-string-parser" "^7.24.1"
988
- "@babel/helper-validator-identifier" "^7.24.5"
970
+ "@babel/helper-string-parser" "^7.24.8"
971
+ "@babel/helper-validator-identifier" "^7.24.7"
989
972
  to-fast-properties "^2.0.0"
990
973
 
991
- "@babel/types@^7.24.7", "@babel/types@^7.4.4":
992
- version "7.24.7"
993
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.7.tgz#6027fe12bc1aa724cd32ab113fb7f1988f1f66f2"
994
- integrity sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==
974
+ "@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.4.4":
975
+ version "7.25.2"
976
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.2.tgz#55fb231f7dc958cd69ea141a4c2997e819646125"
977
+ integrity sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==
995
978
  dependencies:
996
- "@babel/helper-string-parser" "^7.24.7"
979
+ "@babel/helper-string-parser" "^7.24.8"
997
980
  "@babel/helper-validator-identifier" "^7.24.7"
998
981
  to-fast-properties "^2.0.0"
999
982
 
@@ -1003,9 +986,9 @@
1003
986
  integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
1004
987
 
1005
988
  "@fortawesome/fontawesome-free@^6.2.1":
1006
- version "6.5.2"
1007
- resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.5.2.tgz#310fe90cb5a8dee9698833171b98e7835404293d"
1008
- integrity sha512-hRILoInAx8GNT5IMkrtIt9blOdrqHOnPBH+k70aWUAqPZPgopb9G5EQJFpaBx/S8zp2fC+mPW349Bziuk1o28Q==
989
+ version "6.6.0"
990
+ resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.6.0.tgz#0e984f0f2344ee513c185d87d77defac4c0c8224"
991
+ integrity sha512-60G28ke/sXdtS9KZCpZSHHkCbdsOGEhIUGlwq6yhY74UpTiToIh8np7A8yphhM4BWsvNFtIvLpi4co+h9Mr9Ow==
1009
992
 
1010
993
  "@hotwired/stimulus-webpack-helpers@^1.0.1":
1011
994
  version "1.0.1"
@@ -1018,9 +1001,9 @@
1018
1001
  integrity sha512-eGeIqNOQpXoPAIP7tC1+1Yc1yl1xnwYqg+3mzqxyrbE5pg5YFBZcA6YoTiByJB6DKAEsiWtl6tjTJS4IYtbB7A==
1019
1002
 
1020
1003
  "@hotwired/turbo@^8.0.2":
1021
- version "8.0.4"
1022
- resolved "https://registry.yarnpkg.com/@hotwired/turbo/-/turbo-8.0.4.tgz#5c5361c06a37cdf10dcba4223f1afd0ca1c75091"
1023
- integrity sha512-mlZEFUZrJnpfj+g/XeCWWuokvQyN68WvM78JM+0jfSFc98wegm259vCbC1zSllcspRwbgXK31ibehCy5PA78/Q==
1004
+ version "8.0.5"
1005
+ resolved "https://registry.yarnpkg.com/@hotwired/turbo/-/turbo-8.0.5.tgz#abae6dad018a891e4286e87fa0959217e3866d5a"
1006
+ integrity sha512-TdZDA7fxVQ2ZycygvpnzjGPmFq4sO/E2QVg+2em/sJ3YTSsIWVEis8HmWlumz+c9DjWcUkcCuB+muF08TInpAQ==
1024
1007
 
1025
1008
  "@jest/schemas@^29.6.0":
1026
1009
  version "29.6.0"
@@ -1069,9 +1052,9 @@
1069
1052
  "@jridgewell/trace-mapping" "^0.3.25"
1070
1053
 
1071
1054
  "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
1072
- version "1.4.15"
1073
- resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
1074
- integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
1055
+ version "1.5.0"
1056
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a"
1057
+ integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==
1075
1058
 
1076
1059
  "@jridgewell/trace-mapping@^0.3.18":
1077
1060
  version "0.3.19"
@@ -1139,9 +1122,9 @@
1139
1122
  "@types/estree" "*"
1140
1123
 
1141
1124
  "@types/eslint@*":
1142
- version "8.56.10"
1143
- resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.10.tgz#eb2370a73bf04a901eeba8f22595c7ee0f7eb58d"
1144
- integrity sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==
1125
+ version "9.6.0"
1126
+ resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-9.6.0.tgz#51d4fe4d0316da9e9f2c80884f2c20ed5fb022ff"
1127
+ integrity sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==
1145
1128
  dependencies:
1146
1129
  "@types/estree" "*"
1147
1130
  "@types/json-schema" "*"
@@ -1176,11 +1159,11 @@
1176
1159
  integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
1177
1160
 
1178
1161
  "@types/node@*":
1179
- version "20.14.9"
1180
- resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.9.tgz#12e8e765ab27f8c421a1820c99f5f313a933b420"
1181
- integrity sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==
1162
+ version "22.2.0"
1163
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-22.2.0.tgz#7cf046a99f0ba4d628ad3088cb21f790df9b0c5b"
1164
+ integrity sha512-bm6EG6/pCpkxDf/0gDNDdtDILMOHgaQBVOJGdwsqClnxA3xL6jtMv76rLBc006RVMWbmaf0xbmom4Z/5o2nRkQ==
1182
1165
  dependencies:
1183
- undici-types "~5.26.4"
1166
+ undici-types "~6.13.0"
1184
1167
 
1185
1168
  "@types/yargs-parser@*":
1186
1169
  version "21.0.0"
@@ -1356,9 +1339,9 @@ acorn@^8.0.4:
1356
1339
  integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==
1357
1340
 
1358
1341
  acorn@^8.7.1, acorn@^8.8.2:
1359
- version "8.12.0"
1360
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.0.tgz#1627bfa2e058148036133b8d9b51a700663c294c"
1361
- integrity sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==
1342
+ version "8.12.1"
1343
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248"
1344
+ integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==
1362
1345
 
1363
1346
  ajv-formats@^2.1.1:
1364
1347
  version "2.1.1"
@@ -1427,15 +1410,15 @@ argparse@^2.0.1:
1427
1410
  integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
1428
1411
 
1429
1412
  autoprefixer@^10.4.13:
1430
- version "10.4.19"
1431
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.19.tgz#ad25a856e82ee9d7898c59583c1afeb3fa65f89f"
1432
- integrity sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==
1413
+ version "10.4.20"
1414
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b"
1415
+ integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==
1433
1416
  dependencies:
1434
- browserslist "^4.23.0"
1435
- caniuse-lite "^1.0.30001599"
1417
+ browserslist "^4.23.3"
1418
+ caniuse-lite "^1.0.30001646"
1436
1419
  fraction.js "^4.3.7"
1437
1420
  normalize-range "^0.1.2"
1438
- picocolors "^1.0.0"
1421
+ picocolors "^1.0.1"
1439
1422
  postcss-value-parser "^4.2.0"
1440
1423
 
1441
1424
  babel-loader@^9.1.2:
@@ -1456,12 +1439,12 @@ babel-plugin-polyfill-corejs2@^0.4.10:
1456
1439
  semver "^6.3.1"
1457
1440
 
1458
1441
  babel-plugin-polyfill-corejs3@^0.10.4:
1459
- version "0.10.4"
1460
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz#789ac82405ad664c20476d0233b485281deb9c77"
1461
- integrity sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==
1442
+ version "0.10.6"
1443
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz#2deda57caef50f59c525aeb4964d3b2f867710c7"
1444
+ integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==
1462
1445
  dependencies:
1463
- "@babel/helper-define-polyfill-provider" "^0.6.1"
1464
- core-js-compat "^3.36.1"
1446
+ "@babel/helper-define-polyfill-provider" "^0.6.2"
1447
+ core-js-compat "^3.38.0"
1465
1448
 
1466
1449
  babel-plugin-polyfill-regenerator@^0.6.1:
1467
1450
  version "0.6.2"
@@ -1519,15 +1502,15 @@ browserslist@^4.0.0, browserslist@^4.21.4:
1519
1502
  node-releases "^2.0.13"
1520
1503
  update-browserslist-db "^1.0.11"
1521
1504
 
1522
- browserslist@^4.21.10, browserslist@^4.22.2, browserslist@^4.23.0:
1523
- version "4.23.1"
1524
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.1.tgz#ce4af0534b3d37db5c1a4ca98b9080f985041e96"
1525
- integrity sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==
1505
+ browserslist@^4.21.10, browserslist@^4.23.1, browserslist@^4.23.3:
1506
+ version "4.23.3"
1507
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.3.tgz#debb029d3c93ebc97ffbc8d9cbb03403e227c800"
1508
+ integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==
1526
1509
  dependencies:
1527
- caniuse-lite "^1.0.30001629"
1528
- electron-to-chromium "^1.4.796"
1529
- node-releases "^2.0.14"
1530
- update-browserslist-db "^1.0.16"
1510
+ caniuse-lite "^1.0.30001646"
1511
+ electron-to-chromium "^1.5.4"
1512
+ node-releases "^2.0.18"
1513
+ update-browserslist-db "^1.1.0"
1531
1514
 
1532
1515
  buffer-from@^1.0.0:
1533
1516
  version "1.1.2"
@@ -1549,25 +1532,15 @@ caniuse-api@^3.0.0:
1549
1532
  lodash.memoize "^4.1.2"
1550
1533
  lodash.uniq "^4.5.0"
1551
1534
 
1552
- caniuse-lite@^1.0.0:
1553
- version "1.0.30001520"
1554
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz#62e2b7a1c7b35269594cf296a80bdf8cb9565006"
1555
- integrity sha512-tahF5O9EiiTzwTUqAeFjIZbn4Dnqxzz7ktrgGlMYNLH43Ul26IgTMH/zvL3DG0lZxBYnlT04axvInszUsZULdA==
1556
-
1557
- caniuse-lite@^1.0.30001517:
1558
- version "1.0.30001585"
1559
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001585.tgz#0b4e848d84919c783b2a41c13f7de8ce96744401"
1560
- integrity sha512-yr2BWR1yLXQ8fMpdS/4ZZXpseBgE7o4g41x3a6AJOqZuOi+iE/WdJYAuZ6Y95i4Ohd2Y+9MzIWRR+uGABH4s3Q==
1561
-
1562
- caniuse-lite@^1.0.30001599:
1563
- version "1.0.30001621"
1564
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001621.tgz#4adcb443c8b9c8303e04498318f987616b8fea2e"
1565
- integrity sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA==
1535
+ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001517:
1536
+ version "1.0.30001643"
1537
+ resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001643.tgz"
1538
+ integrity sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==
1566
1539
 
1567
- caniuse-lite@^1.0.30001629:
1568
- version "1.0.30001638"
1569
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001638.tgz#598e1f0c2ac36f37ebc3f5b8887a32ca558e5d56"
1570
- integrity sha512-5SuJUJ7cZnhPpeLHaH0c/HPAnAHZvS6ElWyHK9GSIbVOQABLzowiI2pjmpvZ1WEbkyz46iFd4UXlOHR5SqgfMQ==
1540
+ caniuse-lite@^1.0.30001646:
1541
+ version "1.0.30001651"
1542
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz#52de59529e8b02b1aedcaaf5c05d9e23c0c28138"
1543
+ integrity sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==
1571
1544
 
1572
1545
  chalk@^2.4.2:
1573
1546
  version "2.4.2"
@@ -1691,12 +1664,12 @@ copy-webpack-plugin@^11.0.0:
1691
1664
  schema-utils "^4.0.0"
1692
1665
  serialize-javascript "^6.0.0"
1693
1666
 
1694
- core-js-compat@^3.31.0, core-js-compat@^3.36.1:
1695
- version "3.37.1"
1696
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.37.1.tgz#c844310c7852f4bdf49b8d339730b97e17ff09ee"
1697
- integrity sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==
1667
+ core-js-compat@^3.37.1, core-js-compat@^3.38.0:
1668
+ version "3.38.0"
1669
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.38.0.tgz#d93393b1aa346b6ee683377b0c31172ccfe607aa"
1670
+ integrity sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==
1698
1671
  dependencies:
1699
- browserslist "^4.23.0"
1672
+ browserslist "^4.23.3"
1700
1673
 
1701
1674
  cosmiconfig@^8.3.5:
1702
1675
  version "8.3.6"
@@ -1846,9 +1819,9 @@ debounce@^1.2.1:
1846
1819
  integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
1847
1820
 
1848
1821
  debug@^4.1.0, debug@^4.1.1, debug@^4.3.1:
1849
- version "4.3.5"
1850
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e"
1851
- integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==
1822
+ version "4.3.6"
1823
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b"
1824
+ integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==
1852
1825
  dependencies:
1853
1826
  ms "2.1.2"
1854
1827
 
@@ -1899,15 +1872,15 @@ electron-to-chromium@^1.4.477:
1899
1872
  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.665.tgz#681700bd590b0e5a3be66e3e2874ce62abcf5da5"
1900
1873
  integrity sha512-UpyCWObBoD+nSZgOC2ToaIdZB0r9GhqT2WahPKiSki6ckkSuKhQNso8V2PrFcHBMleI/eqbKgVQgVC4Wni4ilw==
1901
1874
 
1902
- electron-to-chromium@^1.4.796:
1903
- version "1.4.814"
1904
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.814.tgz#176535a0b899c9c473464502ab77576aa8bb1cbe"
1905
- integrity sha512-GVulpHjFu1Y9ZvikvbArHmAhZXtm3wHlpjTMcXNGKl4IQ4jMQjlnz8yMQYYqdLHKi/jEL2+CBC2akWVCoIGUdw==
1875
+ electron-to-chromium@^1.5.4:
1876
+ version "1.5.6"
1877
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.6.tgz#c81d9938b5a877314ad370feb73b4e5409b36abd"
1878
+ integrity sha512-jwXWsM5RPf6j9dPYzaorcBSUg6AiqocPEyMpkchkvntaH9HGfOOMZwxMJjDY/XEs3T5dM7uyH1VhRMkqUU9qVw==
1906
1879
 
1907
1880
  enhanced-resolve@^5.17.0:
1908
- version "5.17.0"
1909
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz#d037603789dd9555b89aaec7eb78845c49089bc5"
1910
- integrity sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==
1881
+ version "5.17.1"
1882
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz#67bfbbcc2f81d511be77d686a90267ef7f898a15"
1883
+ integrity sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==
1911
1884
  dependencies:
1912
1885
  graceful-fs "^4.2.4"
1913
1886
  tapable "^2.2.0"
@@ -2174,9 +2147,9 @@ ignore@^5.2.4:
2174
2147
  integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
2175
2148
 
2176
2149
  immutable@^4.0.0:
2177
- version "4.3.6"
2178
- resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.6.tgz#6a05f7858213238e587fb83586ffa3b4b27f0447"
2179
- integrity sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==
2150
+ version "4.3.7"
2151
+ resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.7.tgz#c70145fc90d89fb02021e65c84eb0226e4e5a381"
2152
+ integrity sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==
2180
2153
 
2181
2154
  import-fresh@^3.3.0:
2182
2155
  version "3.3.0"
@@ -2212,9 +2185,9 @@ is-binary-path@~2.1.0:
2212
2185
  binary-extensions "^2.0.0"
2213
2186
 
2214
2187
  is-core-module@^2.13.0:
2215
- version "2.14.0"
2216
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.14.0.tgz#43b8ef9f46a6a08888db67b1ffd4ec9e3dfd59d1"
2217
- integrity sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==
2188
+ version "2.15.0"
2189
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.0.tgz#71c72ec5442ace7e76b306e9d48db361f22699ea"
2190
+ integrity sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==
2218
2191
  dependencies:
2219
2192
  hasown "^2.0.2"
2220
2193
 
@@ -2459,7 +2432,7 @@ ms@2.1.2:
2459
2432
  resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
2460
2433
  integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
2461
2434
 
2462
- nanoid@^3.3.7:
2435
+ nanoid@^3.3.6, nanoid@^3.3.7:
2463
2436
  version "3.3.7"
2464
2437
  resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
2465
2438
  integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
@@ -2469,11 +2442,16 @@ neo-async@^2.6.2:
2469
2442
  resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
2470
2443
  integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
2471
2444
 
2472
- node-releases@^2.0.13, node-releases@^2.0.14:
2445
+ node-releases@^2.0.13:
2473
2446
  version "2.0.14"
2474
2447
  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b"
2475
2448
  integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
2476
2449
 
2450
+ node-releases@^2.0.18:
2451
+ version "2.0.18"
2452
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f"
2453
+ integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==
2454
+
2477
2455
  normalize-path@^3.0.0, normalize-path@~3.0.0:
2478
2456
  version "3.0.0"
2479
2457
  resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
@@ -2854,13 +2832,13 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
2854
2832
  resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
2855
2833
  integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
2856
2834
 
2857
- postcss@^8.4.21, postcss@^8.4.33:
2858
- version "8.4.38"
2859
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e"
2860
- integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==
2835
+ postcss@^8.4.21:
2836
+ version "8.4.41"
2837
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681"
2838
+ integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==
2861
2839
  dependencies:
2862
2840
  nanoid "^3.3.7"
2863
- picocolors "^1.0.0"
2841
+ picocolors "^1.0.1"
2864
2842
  source-map-js "^1.2.0"
2865
2843
 
2866
2844
  postcss@^8.4.24:
@@ -2872,6 +2850,15 @@ postcss@^8.4.24:
2872
2850
  picocolors "^1.0.0"
2873
2851
  source-map-js "^1.0.2"
2874
2852
 
2853
+ postcss@^8.4.33:
2854
+ version "8.4.38"
2855
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e"
2856
+ integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==
2857
+ dependencies:
2858
+ nanoid "^3.3.7"
2859
+ picocolors "^1.0.0"
2860
+ source-map-js "^1.2.0"
2861
+
2875
2862
  punycode@^2.1.0:
2876
2863
  version "2.3.1"
2877
2864
  resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"
@@ -3011,9 +2998,9 @@ sass-loader@^13.2.0:
3011
2998
  neo-async "^2.6.2"
3012
2999
 
3013
3000
  sass@^1.57.1:
3014
- version "1.77.6"
3015
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.77.6.tgz#898845c1348078c2e6d1b64f9ee06b3f8bd489e4"
3016
- integrity sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==
3001
+ version "1.77.8"
3002
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.77.8.tgz#9f18b449ea401759ef7ec1752a16373e296b52bd"
3003
+ integrity sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==
3017
3004
  dependencies:
3018
3005
  chokidar ">=3.0.0 <4.0.0"
3019
3006
  immutable "^4.0.0"
@@ -3107,7 +3094,7 @@ slash@^4.0.0:
3107
3094
  resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7"
3108
3095
  integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==
3109
3096
 
3110
- "source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.2.0:
3097
+ "source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2, source-map-js@^1.2.0:
3111
3098
  version "1.2.0"
3112
3099
  resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af"
3113
3100
  integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
@@ -3193,9 +3180,9 @@ terser-webpack-plugin@^5.3.10:
3193
3180
  terser "^5.26.0"
3194
3181
 
3195
3182
  terser@^5.26.0:
3196
- version "5.31.1"
3197
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.1.tgz#735de3c987dd671e95190e6b98cfe2f07f3cf0d4"
3198
- integrity sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==
3183
+ version "5.31.6"
3184
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.6.tgz#c63858a0f0703988d0266a82fcbf2d7ba76422b1"
3185
+ integrity sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==
3199
3186
  dependencies:
3200
3187
  "@jridgewell/source-map" "^0.3.3"
3201
3188
  acorn "^8.8.2"
@@ -3219,10 +3206,10 @@ totalist@^3.0.0:
3219
3206
  resolved "https://registry.yarnpkg.com/totalist/-/totalist-3.0.1.tgz#ba3a3d600c915b1a97872348f79c127475f6acf8"
3220
3207
  integrity sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==
3221
3208
 
3222
- undici-types@~5.26.4:
3223
- version "5.26.5"
3224
- resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
3225
- integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
3209
+ undici-types@~6.13.0:
3210
+ version "6.13.0"
3211
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.13.0.tgz#e3e79220ab8c81ed1496b5812471afd7cf075ea5"
3212
+ integrity sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==
3226
3213
 
3227
3214
  unicode-canonical-property-names-ecmascript@^2.0.0:
3228
3215
  version "2.0.0"
@@ -3255,10 +3242,10 @@ update-browserslist-db@^1.0.11:
3255
3242
  escalade "^3.1.1"
3256
3243
  picocolors "^1.0.0"
3257
3244
 
3258
- update-browserslist-db@^1.0.16:
3259
- version "1.0.16"
3260
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz#f6d489ed90fb2f07d67784eb3f53d7891f736356"
3261
- integrity sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==
3245
+ update-browserslist-db@^1.1.0:
3246
+ version "1.1.0"
3247
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e"
3248
+ integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==
3262
3249
  dependencies:
3263
3250
  escalade "^3.1.2"
3264
3251
  picocolors "^1.0.1"
@@ -3276,9 +3263,9 @@ util-deprecate@^1.0.2:
3276
3263
  integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
3277
3264
 
3278
3265
  watchpack@^2.4.1:
3279
- version "2.4.1"
3280
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.1.tgz#29308f2cac150fa8e4c92f90e0ec954a9fed7fff"
3281
- integrity sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==
3266
+ version "2.4.2"
3267
+ resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.2.tgz#2feeaed67412e7c33184e5a79ca738fbd38564da"
3268
+ integrity sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==
3282
3269
  dependencies:
3283
3270
  glob-to-regexp "^0.4.1"
3284
3271
  graceful-fs "^4.1.2"
@@ -3334,9 +3321,9 @@ webpack-sources@^3.2.3:
3334
3321
  integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
3335
3322
 
3336
3323
  webpack@^5.75.0:
3337
- version "5.92.1"
3338
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.92.1.tgz#eca5c1725b9e189cffbd86e8b6c3c7400efc5788"
3339
- integrity sha512-JECQ7IwJb+7fgUFBlrJzbyu3GEuNBcdqr1LD7IbSzwkSmIevTm8PF+wej3Oxuz/JFBUZ6O1o43zsPkwm1C4TmA==
3324
+ version "5.93.0"
3325
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.93.0.tgz#2e89ec7035579bdfba9760d26c63ac5c3462a5e5"
3326
+ integrity sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==
3340
3327
  dependencies:
3341
3328
  "@types/eslint-scope" "^3.7.3"
3342
3329
  "@types/estree" "^1.0.5"