trestle 0.9.9 → 0.10.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rspec.yml +31 -3
- data/.gitignore +3 -0
- data/Gemfile +5 -1
- data/README.md +2 -1
- data/app/assets/bundle/trestle/admin.css +23 -0
- data/app/assets/bundle/trestle/admin.js +83 -0
- data/app/assets/bundle/trestle/fa-brands-400.ttf +0 -0
- data/app/assets/bundle/trestle/fa-brands-400.woff2 +0 -0
- data/app/assets/bundle/trestle/fa-regular-400.ttf +0 -0
- data/app/assets/bundle/trestle/fa-regular-400.woff2 +0 -0
- data/app/assets/bundle/trestle/fa-solid-900.ttf +0 -0
- data/app/assets/bundle/trestle/fa-solid-900.woff2 +0 -0
- data/app/assets/bundle/trestle/locale/cs.js +110 -0
- data/app/assets/bundle/trestle/locale/de.js +116 -0
- data/app/assets/bundle/trestle/locale/en.js +329 -0
- data/app/assets/bundle/trestle/locale/es-MX.js +109 -0
- data/app/assets/bundle/trestle/locale/es.js +109 -0
- data/app/assets/bundle/trestle/locale/fr.js +111 -0
- data/app/assets/bundle/trestle/locale/ko.js +111 -0
- data/app/assets/bundle/trestle/locale/lv.js +109 -0
- data/app/assets/bundle/trestle/locale/nl.js +96 -0
- data/app/assets/bundle/trestle/locale/pl.js +99 -0
- data/app/assets/bundle/trestle/locale/pt-BR.js +98 -0
- data/app/assets/bundle/trestle/locale/vi.js +116 -0
- data/app/assets/bundle/trestle/locale/zh-CN.js +109 -0
- data/app/assets/bundle/trestle/photoswipe-7aa1aec9c3c1fd65c382.digested.js +6 -0
- data/app/assets/sprockets/trestle/custom.css +1 -0
- data/app/assets/sprockets/trestle/icons/font-awesome.css.erb +32 -0
- data/app/assets/sprockets/trestle/manifest.js +4 -0
- data/app/assets/stylesheets/trestle/custom.css +6 -1
- data/app/controllers/concerns/trestle/controller/helpers.rb +2 -0
- data/app/controllers/concerns/trestle/controller/location.rb +1 -6
- data/app/controllers/concerns/trestle/controller/modal.rb +23 -0
- data/app/controllers/concerns/trestle/controller/turbo.rb +21 -0
- data/app/controllers/concerns/trestle/resource/controller/actions.rb +39 -28
- data/app/controllers/concerns/trestle/resource/controller/redirection.rb +5 -5
- data/app/controllers/trestle/application_controller.rb +2 -1
- data/app/helpers/trestle/flash_helper.rb +10 -0
- data/app/helpers/trestle/form_helper.rb +3 -2
- data/app/helpers/trestle/format_helper.rb +2 -1
- data/app/helpers/trestle/i18n_helper.rb +46 -7
- data/app/helpers/trestle/modal_helper.rb +34 -0
- data/app/helpers/trestle/tab_helper.rb +1 -1
- data/app/helpers/trestle/turbo_frame_helper.rb +34 -0
- data/app/helpers/trestle/url_helper.rb +7 -4
- data/app/views/layouts/trestle/admin.html.erb +16 -18
- data/app/views/layouts/trestle/admin.turbo_stream.erb +11 -0
- data/app/views/layouts/trestle/modal.html.erb +5 -0
- data/app/views/trestle/_i18n.html.erb +12 -0
- data/app/views/trestle/_theme.html.erb +15 -0
- data/app/views/trestle/application/_header.html.erb +1 -1
- data/app/views/trestle/application/_layout.html.erb +6 -3
- data/app/views/trestle/application/_modal.html.erb +36 -0
- data/app/views/trestle/application/_tabs.html.erb +4 -4
- data/app/views/trestle/flash/_alert.html.erb +1 -1
- data/app/views/trestle/flash/_debug.html.erb +1 -1
- data/app/views/trestle/resource/_form.html.erb +5 -0
- data/app/views/trestle/resource/create.turbo_stream.erb +5 -0
- data/app/views/trestle/resource/destroy.turbo_stream.erb +1 -0
- data/app/views/trestle/resource/edit.html.erb +4 -2
- data/app/views/trestle/resource/index.html.erb +12 -10
- data/app/views/trestle/resource/new.html.erb +4 -2
- data/app/views/trestle/resource/show.html.erb +4 -2
- data/app/views/trestle/resource/update.turbo_stream.erb +5 -0
- data/app/views/trestle/shared/_sidebar.html.erb +9 -9
- data/frontend/css/components/_alerts.scss +19 -17
- data/frontend/css/components/_background.scss +7 -35
- data/frontend/css/components/_badges.scss +31 -0
- data/frontend/css/components/_breadcrumbs.scss +4 -4
- data/frontend/css/components/_buttons.scss +5 -4
- data/frontend/css/components/_datepicker.scss +12 -8
- data/frontend/css/components/_dropdown.scss +23 -3
- data/frontend/css/components/{_fields.scss → _forms.scss} +16 -3
- data/frontend/css/components/_media-grid.scss +52 -44
- data/frontend/css/components/_modal.scss +33 -4
- data/frontend/css/components/_pagination.scss +1 -1
- data/frontend/css/components/_photoswipe.scss +8 -0
- data/frontend/css/components/_popover.scss +1 -0
- data/frontend/css/components/_scopes.scss +1 -1
- data/frontend/css/components/_select.scss +161 -31
- data/frontend/css/components/_table.scss +60 -65
- data/frontend/css/components/_tabs.scss +10 -3
- data/frontend/css/components/_tags.scss +71 -16
- data/frontend/css/components/_toolbars.scss +16 -11
- data/frontend/css/components/_turbo.scss +3 -0
- data/frontend/css/core/_bootstrap.scss +46 -0
- data/frontend/css/core/_dependencies.scss +4 -3
- data/frontend/css/core/_functions.scss +39 -0
- data/frontend/css/core/_mixins.scss +2 -36
- data/frontend/css/core/_theme.scss +258 -0
- data/frontend/css/core/_typography.scss +10 -1
- data/frontend/css/icons/_fontawesome.scss +3 -15
- data/frontend/css/index.scss +12 -6
- data/frontend/css/layout/_base.scss +3 -3
- data/frontend/css/layout/_content.scss +10 -6
- data/frontend/css/layout/_footer.scss +1 -1
- data/frontend/css/layout/_header.scss +5 -3
- data/frontend/css/layout/_navigation.scss +2 -2
- data/frontend/css/layout/_sidebar.scss +19 -9
- data/frontend/css/support/_sprockets.scss +2 -0
- data/frontend/css/support/_webpack.scss +2 -0
- data/frontend/css/variables/_bootstrap.scss +134 -40
- data/frontend/css/variables/_maps.scss +15 -0
- data/frontend/css/variables/_trestle.scss +55 -26
- data/frontend/js/controllers/application_controller.js +17 -0
- data/frontend/js/controllers/checkbox_select_controller.js +43 -0
- data/frontend/js/controllers/confirm_controller.js +115 -0
- data/frontend/js/controllers/confirm_delete_controller.js +11 -0
- data/frontend/js/controllers/datepicker_controller.js +12 -0
- data/frontend/js/controllers/datetimepicker_controller.js +13 -0
- data/frontend/js/controllers/deprecated/init_controller.js +9 -0
- data/frontend/js/controllers/flatpickr_controller.js +50 -0
- data/frontend/js/controllers/follow_url_controller.js +36 -0
- data/frontend/js/controllers/form_error_controller.js +24 -0
- data/frontend/js/controllers/form_loading_controller.js +50 -0
- data/frontend/js/controllers/gallery_controller.js +10 -0
- data/frontend/js/controllers/index.js +19 -0
- data/frontend/js/controllers/keyboard_submit_controller.js +25 -0
- data/frontend/js/controllers/lightbox_controller.js +160 -0
- data/frontend/js/controllers/mobile_sidebar_controller.js +30 -0
- data/frontend/js/controllers/modal_controller.js +36 -0
- data/frontend/js/controllers/modal_frame_controller.js +11 -0
- data/frontend/js/controllers/modal_trigger_controller.js +74 -0
- data/frontend/js/{components/navigation.js → controllers/navigation_controller.js} +14 -10
- data/frontend/js/controllers/navigation_tooltip_controller.js +32 -0
- data/frontend/js/controllers/popover_controller.js +87 -0
- data/frontend/js/controllers/reloadable_controller.js +34 -0
- data/frontend/js/controllers/select_controller.js +49 -0
- data/frontend/js/controllers/sidebar_controller.js +33 -0
- data/frontend/js/controllers/tab_errors_controller.js +45 -0
- data/frontend/js/controllers/tabs_controller.js +45 -0
- data/frontend/js/controllers/timepicker_controller.js +14 -0
- data/frontend/js/controllers/toggle_attr_controller.js +27 -0
- data/frontend/js/controllers/toggle_class_controller.js +27 -0
- data/frontend/js/controllers/tooltip_controller.js +13 -0
- data/frontend/js/controllers/wrapper_controller.js +43 -0
- data/frontend/js/core/backdrop.js +100 -0
- data/frontend/js/core/error_modal.js +65 -0
- data/frontend/js/core/fetch.js +32 -0
- data/frontend/js/core/i18n.js +24 -10
- data/frontend/js/core/modal.js +52 -0
- data/frontend/js/core/stream_actions.js +56 -0
- data/frontend/js/core/turbo_errors.js +9 -0
- data/frontend/js/{core → deprecated}/events.js +1 -8
- data/frontend/js/deprecated/tooltip.js +8 -0
- data/frontend/js/index.js +28 -40
- data/frontend/js/mixins/index.js +5 -0
- data/frontend/js/mixins/photoswipe.js +10 -0
- data/frontend/js/util/bootstrap.js +93 -0
- data/i18n/config.yml +14 -0
- data/i18n/environment.rb +8 -0
- data/i18n/export +3 -0
- data/i18n/template.erb +1 -0
- data/lib/generators/trestle/install/install_generator.rb +3 -8
- data/lib/generators/trestle/install/templates/trestle.rb.erb +5 -5
- data/lib/trestle/color.rb +113 -0
- data/lib/trestle/configuration.rb +16 -8
- data/lib/trestle/engine.rb +23 -17
- data/lib/trestle/form/fields/check_box_helpers.rb +7 -18
- data/lib/trestle/form/fields/collection_select.rb +1 -1
- data/lib/trestle/form/fields/color_field.rb +4 -0
- data/lib/trestle/form/fields/date_field.rb +4 -0
- data/lib/trestle/form/fields/date_picker.rb +10 -4
- data/lib/trestle/form/fields/date_select.rb +1 -1
- data/lib/trestle/form/fields/datetime_field.rb +4 -0
- data/lib/trestle/form/fields/datetime_select.rb +1 -1
- data/lib/trestle/form/fields/file_field.rb +3 -28
- data/lib/trestle/form/fields/form_control.rb +2 -2
- data/lib/trestle/form/fields/form_group.rb +1 -1
- data/lib/trestle/form/fields/grouped_collection_select.rb +1 -1
- data/lib/trestle/form/fields/radio_button_helpers.rb +5 -17
- data/lib/trestle/form/fields/range_field.rb +1 -5
- data/lib/trestle/form/fields/select.rb +17 -1
- data/lib/trestle/form/fields/time_field.rb +4 -0
- data/lib/trestle/form/fields/time_select.rb +1 -1
- data/lib/trestle/form/fields/time_zone_select.rb +1 -1
- data/lib/trestle/form/renderer.rb +3 -0
- data/lib/trestle/form.rb +16 -1
- data/lib/trestle/resource/toolbar.rb +2 -2
- data/lib/trestle/table/actions_column.rb +2 -2
- data/lib/trestle/table/row.rb +2 -1
- data/lib/trestle/table/select_column.rb +3 -6
- data/lib/trestle/table.rb +6 -1
- data/lib/trestle/toolbar/item.rb +1 -1
- data/lib/trestle/toolbar/menu.rb +3 -6
- data/lib/trestle/version.rb +1 -1
- data/lib/trestle.rb +2 -23
- data/package.json +31 -27
- data/trestle.gemspec +2 -3
- data/webpack.config.js +10 -10
- data/yarn.lock +1456 -1194
- metadata +166 -164
- data/app/assets/bundle/trestle/bundle.css +0 -12
- data/app/assets/bundle/trestle/bundle.js +0 -89
- data/app/assets/bundle/trestle/fa-brands-400.eot +0 -0
- data/app/assets/bundle/trestle/fa-brands-400.svg +0 -3717
- data/app/assets/bundle/trestle/fa-brands-400.woff +0 -0
- data/app/assets/bundle/trestle/fa-regular-400.eot +0 -0
- data/app/assets/bundle/trestle/fa-regular-400.svg +0 -801
- data/app/assets/bundle/trestle/fa-regular-400.woff +0 -0
- data/app/assets/bundle/trestle/fa-solid-900.eot +0 -0
- data/app/assets/bundle/trestle/fa-solid-900.svg +0 -5034
- data/app/assets/bundle/trestle/fa-solid-900.woff +0 -0
- data/app/assets/javascripts/trestle/admin.js +0 -3
- data/app/assets/javascripts/trestle/i18n.js.erb +0 -8
- data/app/assets/stylesheets/trestle/admin.css +0 -2
- data/app/assets/stylesheets/trestle/icons/_font-awesome.css.erb +0 -40
- data/app/controllers/concerns/trestle/controller/dialog.rb +0 -16
- data/app/views/trestle/application/_dialog.html.erb +0 -34
- data/frontend/css/components/_color-vars.scss +0 -10
- data/frontend/css/components/_custom-forms.scss +0 -35
- data/frontend/css/components/_magnific-popup.scss +0 -36
- data/frontend/css/components/_turbolinks.scss +0 -3
- data/frontend/js/components/confirmation.js +0 -32
- data/frontend/js/components/datepicker.js +0 -69
- data/frontend/js/components/dialog.js +0 -149
- data/frontend/js/components/file.js +0 -7
- data/frontend/js/components/form.js +0 -100
- data/frontend/js/components/gallery.js +0 -33
- data/frontend/js/components/pagination.js +0 -51
- data/frontend/js/components/select.js +0 -18
- data/frontend/js/components/sidebar.js +0 -75
- data/frontend/js/components/table.js +0 -61
- data/frontend/js/components/tabs.js +0 -59
- data/frontend/js/components/tooltips.js +0 -25
- data/frontend/js/core/contexts.js +0 -17
- data/frontend/js/core/turbolinks.js +0 -3
- data/frontend/js/core/visit.js +0 -16
- data/frontend/theme/trestle/_theme.scss +0 -4
- data/frontend/theme/trestle/_variables.scss +0 -4
- data/frontend/theme/trestle/theme/_defaults.scss +0 -152
- data/frontend/theme/trestle/theme/_functions.scss +0 -44
- data/frontend/theme/trestle/theme/_variables.scss +0 -15
- data/frontend/theme/trestle/theme/bootstrap/_alert.scss +0 -19
- data/frontend/theme/trestle/theme/bootstrap/_badge.scss +0 -25
- data/frontend/theme/trestle/theme/bootstrap/_buttons.scss +0 -93
- data/frontend/theme/trestle/theme/bootstrap/_color-vars.scss +0 -11
- data/frontend/theme/trestle/theme/bootstrap/_custom-forms.scss +0 -93
- data/frontend/theme/trestle/theme/bootstrap/_dropdown.scss +0 -6
- data/frontend/theme/trestle/theme/bootstrap/_forms.scss +0 -6
- data/frontend/theme/trestle/theme/bootstrap/_links.scss +0 -7
- data/frontend/theme/trestle/theme/bootstrap/_list-group.scss +0 -31
- data/frontend/theme/trestle/theme/bootstrap/_nav.scss +0 -6
- data/frontend/theme/trestle/theme/bootstrap/_pagination.scss +0 -18
- data/frontend/theme/trestle/theme/bootstrap/_progress.scss +0 -3
- data/frontend/theme/trestle/theme/bootstrap/_tables.scss +0 -41
- data/frontend/theme/trestle/theme/bootstrap/_utilities.scss +0 -3
- data/frontend/theme/trestle/theme/bootstrap/utilities/_background.scss +0 -17
- data/frontend/theme/trestle/theme/bootstrap/utilities/_borders.scss +0 -5
- data/frontend/theme/trestle/theme/bootstrap/utilities/_text.scss +0 -18
- data/frontend/theme/trestle/theme/trestle/_background.scss +0 -61
- data/frontend/theme/trestle/theme/trestle/_datepicker.scss +0 -58
- data/frontend/theme/trestle/theme/trestle/_headers.scss +0 -4
- data/frontend/theme/trestle/theme/trestle/_navbar.scss +0 -15
- data/frontend/theme/trestle/theme/trestle/_navigation.scss +0 -5
- data/frontend/theme/trestle/theme/trestle/_select2.scss +0 -22
- data/frontend/theme/trestle/theme/trestle/_tags.scss +0 -12
- data/frontend/theme/trestle/theme/trestle/_turbolinks.scss +0 -3
- data/frontend/theme/trestle/theme.scss +0 -29
- data/lib/generators/trestle/install/templates/_theme.scss +0 -13
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/ar-dz.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/ar.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/at.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/az.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/be.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/bg.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/bn.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/bs.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/cat.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/ckb.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/cs.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/cy.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/da.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/de.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/default.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/eo.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/es.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/et.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/fa.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/fi.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/fo.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/fr.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/ga.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/gr.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/he.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/hi.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/hr.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/hu.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/hy.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/id.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/is.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/it.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/ja.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/ka.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/km.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/ko.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/kz.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/lt.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/lv.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/mk.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/mn.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/ms.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/my.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/nl.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/nn.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/no.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/pa.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/pl.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/pt.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/ro.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/ru.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/si.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/sk.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/sl.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/sq.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/sr-cyr.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/sr.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/sv.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/th.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/tr.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/uk.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/uz.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/uz_latn.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/vn.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/zh-tw.js +0 -0
- /data/app/assets/bundle/trestle/{flatpickr → locale/flatpickr}/zh.js +0 -0
- /data/app/assets/{stylesheets → sprockets}/trestle/_custom.css +0 -0
data/yarn.lock
CHANGED
@@ -11,102 +11,104 @@
|
|
11
11
|
"@jridgewell/trace-mapping" "^0.3.24"
|
12
12
|
|
13
13
|
"@babel/code-frame@^7.0.0":
|
14
|
-
version "7.
|
15
|
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.
|
16
|
-
integrity sha512-
|
14
|
+
version "7.23.5"
|
15
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244"
|
16
|
+
integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==
|
17
17
|
dependencies:
|
18
|
-
"@babel/highlight" "^7.
|
18
|
+
"@babel/highlight" "^7.23.4"
|
19
|
+
chalk "^2.4.2"
|
19
20
|
|
20
|
-
"@babel/code-frame@^7.
|
21
|
-
version "7.24.
|
22
|
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.
|
23
|
-
integrity sha512-
|
21
|
+
"@babel/code-frame@^7.24.7":
|
22
|
+
version "7.24.7"
|
23
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465"
|
24
|
+
integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==
|
24
25
|
dependencies:
|
25
|
-
"@babel/highlight" "^7.24.
|
26
|
+
"@babel/highlight" "^7.24.7"
|
26
27
|
picocolors "^1.0.0"
|
27
28
|
|
28
|
-
"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.
|
29
|
-
version "7.24.
|
30
|
-
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.
|
31
|
-
integrity sha512-
|
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==
|
32
33
|
|
33
|
-
"@babel/core@^7.
|
34
|
-
version "7.24.
|
35
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.
|
36
|
-
integrity sha512-
|
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==
|
37
38
|
dependencies:
|
38
39
|
"@ampproject/remapping" "^2.2.0"
|
39
|
-
"@babel/code-frame" "^7.24.
|
40
|
-
"@babel/generator" "^7.24.
|
41
|
-
"@babel/helper-compilation-targets" "^7.
|
42
|
-
"@babel/helper-module-transforms" "^7.24.
|
43
|
-
"@babel/helpers" "^7.24.
|
44
|
-
"@babel/parser" "^7.24.
|
45
|
-
"@babel/template" "^7.24.
|
46
|
-
"@babel/traverse" "^7.24.
|
47
|
-
"@babel/types" "^7.24.
|
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"
|
48
49
|
convert-source-map "^2.0.0"
|
49
50
|
debug "^4.1.0"
|
50
51
|
gensync "^1.0.0-beta.2"
|
51
52
|
json5 "^2.2.3"
|
52
53
|
semver "^6.3.1"
|
53
54
|
|
54
|
-
"@babel/generator@^7.24.
|
55
|
-
version "7.24.
|
56
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.
|
57
|
-
integrity sha512-
|
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==
|
58
59
|
dependencies:
|
59
|
-
"@babel/types" "^7.24.
|
60
|
+
"@babel/types" "^7.24.7"
|
60
61
|
"@jridgewell/gen-mapping" "^0.3.5"
|
61
62
|
"@jridgewell/trace-mapping" "^0.3.25"
|
62
63
|
jsesc "^2.5.1"
|
63
64
|
|
64
|
-
"@babel/helper-annotate-as-pure@^7.
|
65
|
-
version "7.
|
66
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.
|
67
|
-
integrity sha512-
|
65
|
+
"@babel/helper-annotate-as-pure@^7.24.7":
|
66
|
+
version "7.24.7"
|
67
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab"
|
68
|
+
integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==
|
68
69
|
dependencies:
|
69
|
-
"@babel/types" "^7.
|
70
|
+
"@babel/types" "^7.24.7"
|
70
71
|
|
71
|
-
"@babel/helper-builder-binary-assignment-operator-visitor@^7.
|
72
|
-
version "7.
|
73
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.
|
74
|
-
integrity sha512-
|
72
|
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.24.7":
|
73
|
+
version "7.24.7"
|
74
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz#37d66feb012024f2422b762b9b2a7cfe27c7fba3"
|
75
|
+
integrity sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==
|
75
76
|
dependencies:
|
76
|
-
"@babel/
|
77
|
+
"@babel/traverse" "^7.24.7"
|
78
|
+
"@babel/types" "^7.24.7"
|
77
79
|
|
78
|
-
"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.
|
79
|
-
version "7.
|
80
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.
|
81
|
-
integrity sha512-
|
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==
|
82
84
|
dependencies:
|
83
|
-
"@babel/compat-data" "^7.
|
84
|
-
"@babel/helper-validator-option" "^7.
|
85
|
+
"@babel/compat-data" "^7.24.7"
|
86
|
+
"@babel/helper-validator-option" "^7.24.7"
|
85
87
|
browserslist "^4.22.2"
|
86
88
|
lru-cache "^5.1.1"
|
87
89
|
semver "^6.3.1"
|
88
90
|
|
89
|
-
"@babel/helper-create-class-features-plugin@^7.24.
|
90
|
-
version "7.24.
|
91
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.
|
92
|
-
integrity sha512-
|
93
|
-
dependencies:
|
94
|
-
"@babel/helper-annotate-as-pure" "^7.
|
95
|
-
"@babel/helper-environment-visitor" "^7.
|
96
|
-
"@babel/helper-function-name" "^7.
|
97
|
-
"@babel/helper-member-expression-to-functions" "^7.24.
|
98
|
-
"@babel/helper-optimise-call-expression" "^7.
|
99
|
-
"@babel/helper-replace-supers" "^7.24.
|
100
|
-
"@babel/helper-skip-transparent-expression-wrappers" "^7.
|
101
|
-
"@babel/helper-split-export-declaration" "^7.24.
|
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==
|
95
|
+
dependencies:
|
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"
|
100
|
+
"@babel/helper-optimise-call-expression" "^7.24.7"
|
101
|
+
"@babel/helper-replace-supers" "^7.24.7"
|
102
|
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
|
103
|
+
"@babel/helper-split-export-declaration" "^7.24.7"
|
102
104
|
semver "^6.3.1"
|
103
105
|
|
104
|
-
"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.
|
105
|
-
version "7.
|
106
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.
|
107
|
-
integrity sha512-
|
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==
|
108
110
|
dependencies:
|
109
|
-
"@babel/helper-annotate-as-pure" "^7.
|
111
|
+
"@babel/helper-annotate-as-pure" "^7.24.7"
|
110
112
|
regexpu-core "^5.3.1"
|
111
113
|
semver "^6.3.1"
|
112
114
|
|
@@ -121,136 +123,154 @@
|
|
121
123
|
lodash.debounce "^4.0.8"
|
122
124
|
resolve "^1.14.2"
|
123
125
|
|
124
|
-
"@babel/helper-environment-visitor@^7.
|
125
|
-
version "7.
|
126
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.
|
127
|
-
integrity sha512-
|
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"
|
128
132
|
|
129
|
-
"@babel/helper-
|
130
|
-
version "7.
|
131
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
132
|
-
integrity sha512-
|
133
|
+
"@babel/helper-explode-assignable-expression@^7.18.6":
|
134
|
+
version "7.18.6"
|
135
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096"
|
136
|
+
integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==
|
133
137
|
dependencies:
|
134
|
-
"@babel/
|
135
|
-
"@babel/types" "^7.23.0"
|
138
|
+
"@babel/types" "^7.18.6"
|
136
139
|
|
137
|
-
"@babel/helper-
|
138
|
-
version "7.
|
139
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
140
|
-
integrity sha512-
|
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==
|
141
144
|
dependencies:
|
142
|
-
"@babel/
|
145
|
+
"@babel/template" "^7.24.7"
|
146
|
+
"@babel/types" "^7.24.7"
|
143
147
|
|
144
|
-
"@babel/helper-
|
145
|
-
version "7.24.
|
146
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
147
|
-
integrity sha512-
|
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==
|
148
152
|
dependencies:
|
149
|
-
"@babel/types" "^7.24.
|
153
|
+
"@babel/types" "^7.24.7"
|
150
154
|
|
151
|
-
"@babel/helper-
|
152
|
-
version "7.24.
|
153
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
154
|
-
integrity sha512-
|
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==
|
155
159
|
dependencies:
|
156
|
-
"@babel/
|
160
|
+
"@babel/traverse" "^7.24.7"
|
161
|
+
"@babel/types" "^7.24.7"
|
157
162
|
|
158
|
-
"@babel/helper-module-
|
159
|
-
version "7.24.
|
160
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-
|
161
|
-
integrity sha512-
|
163
|
+
"@babel/helper-module-imports@^7.24.7":
|
164
|
+
version "7.24.7"
|
165
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b"
|
166
|
+
integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==
|
162
167
|
dependencies:
|
163
|
-
"@babel/
|
164
|
-
"@babel/
|
165
|
-
"@babel/helper-simple-access" "^7.24.5"
|
166
|
-
"@babel/helper-split-export-declaration" "^7.24.5"
|
167
|
-
"@babel/helper-validator-identifier" "^7.24.5"
|
168
|
+
"@babel/traverse" "^7.24.7"
|
169
|
+
"@babel/types" "^7.24.7"
|
168
170
|
|
169
|
-
"@babel/helper-
|
170
|
-
version "7.
|
171
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
172
|
-
integrity sha512-
|
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==
|
173
175
|
dependencies:
|
174
|
-
"@babel/
|
176
|
+
"@babel/helper-environment-visitor" "^7.24.7"
|
177
|
+
"@babel/helper-module-imports" "^7.24.7"
|
178
|
+
"@babel/helper-simple-access" "^7.24.7"
|
179
|
+
"@babel/helper-split-export-declaration" "^7.24.7"
|
180
|
+
"@babel/helper-validator-identifier" "^7.24.7"
|
175
181
|
|
176
|
-
"@babel/helper-
|
177
|
-
version "7.24.
|
178
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
179
|
-
integrity sha512-
|
182
|
+
"@babel/helper-optimise-call-expression@^7.24.7":
|
183
|
+
version "7.24.7"
|
184
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f"
|
185
|
+
integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==
|
186
|
+
dependencies:
|
187
|
+
"@babel/types" "^7.24.7"
|
188
|
+
|
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==
|
180
193
|
|
181
|
-
"@babel/helper-remap-async-to-generator@^7.
|
182
|
-
version "7.
|
183
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.
|
184
|
-
integrity sha512-
|
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==
|
185
198
|
dependencies:
|
186
|
-
"@babel/helper-annotate-as-pure" "^7.
|
187
|
-
"@babel/helper-environment-visitor" "^7.
|
188
|
-
"@babel/helper-wrap-function" "^7.
|
199
|
+
"@babel/helper-annotate-as-pure" "^7.24.7"
|
200
|
+
"@babel/helper-environment-visitor" "^7.24.7"
|
201
|
+
"@babel/helper-wrap-function" "^7.24.7"
|
189
202
|
|
190
|
-
"@babel/helper-replace-supers@^7.24.
|
191
|
-
version "7.24.
|
192
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.
|
193
|
-
integrity sha512-
|
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==
|
194
207
|
dependencies:
|
195
|
-
"@babel/helper-environment-visitor" "^7.
|
196
|
-
"@babel/helper-member-expression-to-functions" "^7.
|
197
|
-
"@babel/helper-optimise-call-expression" "^7.
|
208
|
+
"@babel/helper-environment-visitor" "^7.24.7"
|
209
|
+
"@babel/helper-member-expression-to-functions" "^7.24.7"
|
210
|
+
"@babel/helper-optimise-call-expression" "^7.24.7"
|
198
211
|
|
199
|
-
"@babel/helper-simple-access@^7.
|
200
|
-
version "7.24.
|
201
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.
|
202
|
-
integrity sha512-
|
212
|
+
"@babel/helper-simple-access@^7.24.7":
|
213
|
+
version "7.24.7"
|
214
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3"
|
215
|
+
integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==
|
203
216
|
dependencies:
|
204
|
-
"@babel/
|
217
|
+
"@babel/traverse" "^7.24.7"
|
218
|
+
"@babel/types" "^7.24.7"
|
205
219
|
|
206
|
-
"@babel/helper-skip-transparent-expression-wrappers@^7.
|
207
|
-
version "7.
|
208
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.
|
209
|
-
integrity sha512-
|
220
|
+
"@babel/helper-skip-transparent-expression-wrappers@^7.24.7":
|
221
|
+
version "7.24.7"
|
222
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9"
|
223
|
+
integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==
|
210
224
|
dependencies:
|
211
|
-
"@babel/
|
225
|
+
"@babel/traverse" "^7.24.7"
|
226
|
+
"@babel/types" "^7.24.7"
|
212
227
|
|
213
|
-
"@babel/helper-split-export-declaration@^7.24.
|
214
|
-
version "7.24.
|
215
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.
|
216
|
-
integrity sha512-
|
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==
|
217
232
|
dependencies:
|
218
|
-
"@babel/types" "^7.24.
|
233
|
+
"@babel/types" "^7.24.7"
|
219
234
|
|
220
235
|
"@babel/helper-string-parser@^7.24.1":
|
221
236
|
version "7.24.1"
|
222
237
|
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e"
|
223
238
|
integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==
|
224
239
|
|
225
|
-
"@babel/helper-
|
226
|
-
version "7.24.
|
227
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
228
|
-
integrity sha512-
|
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==
|
229
244
|
|
230
|
-
"@babel/helper-validator-
|
231
|
-
version "7.
|
232
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-
|
233
|
-
integrity sha512-
|
245
|
+
"@babel/helper-validator-identifier@^7.24.5", "@babel/helper-validator-identifier@^7.24.7":
|
246
|
+
version "7.24.7"
|
247
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db"
|
248
|
+
integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==
|
234
249
|
|
235
|
-
"@babel/helper-
|
236
|
-
version "7.24.
|
237
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
238
|
-
integrity sha512
|
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==
|
254
|
+
|
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==
|
239
259
|
dependencies:
|
240
|
-
"@babel/helper-function-name" "^7.
|
241
|
-
"@babel/template" "^7.24.
|
242
|
-
"@babel/
|
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"
|
243
264
|
|
244
|
-
"@babel/helpers@^7.24.
|
245
|
-
version "7.24.
|
246
|
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.
|
247
|
-
integrity sha512-
|
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==
|
248
269
|
dependencies:
|
249
|
-
"@babel/template" "^7.24.
|
250
|
-
"@babel/
|
251
|
-
"@babel/types" "^7.24.5"
|
270
|
+
"@babel/template" "^7.24.7"
|
271
|
+
"@babel/types" "^7.24.7"
|
252
272
|
|
253
|
-
"@babel/highlight@^7.
|
273
|
+
"@babel/highlight@^7.23.4":
|
254
274
|
version "7.24.5"
|
255
275
|
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.5.tgz#bc0613f98e1dd0720e99b2a9ee3760194a704b6e"
|
256
276
|
integrity sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==
|
@@ -260,42 +280,52 @@
|
|
260
280
|
js-tokens "^4.0.0"
|
261
281
|
picocolors "^1.0.0"
|
262
282
|
|
263
|
-
"@babel/
|
264
|
-
version "7.24.
|
265
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
266
|
-
integrity sha512-
|
283
|
+
"@babel/highlight@^7.24.7":
|
284
|
+
version "7.24.7"
|
285
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d"
|
286
|
+
integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==
|
287
|
+
dependencies:
|
288
|
+
"@babel/helper-validator-identifier" "^7.24.7"
|
289
|
+
chalk "^2.4.2"
|
290
|
+
js-tokens "^4.0.0"
|
291
|
+
picocolors "^1.0.0"
|
267
292
|
|
268
|
-
"@babel/
|
269
|
-
version "7.24.
|
270
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
271
|
-
integrity sha512-
|
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==
|
297
|
+
|
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==
|
272
302
|
dependencies:
|
273
|
-
"@babel/helper-environment-visitor" "^7.
|
274
|
-
"@babel/helper-plugin-utils" "^7.24.
|
303
|
+
"@babel/helper-environment-visitor" "^7.24.7"
|
304
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
275
305
|
|
276
|
-
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.24.
|
277
|
-
version "7.24.
|
278
|
-
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.
|
279
|
-
integrity sha512-
|
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==
|
280
310
|
dependencies:
|
281
|
-
"@babel/helper-plugin-utils" "^7.24.
|
311
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
282
312
|
|
283
|
-
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.
|
284
|
-
version "7.24.
|
285
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.
|
286
|
-
integrity sha512
|
313
|
+
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.7":
|
314
|
+
version "7.24.7"
|
315
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz#e4eabdd5109acc399b38d7999b2ef66fc2022f89"
|
316
|
+
integrity sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==
|
287
317
|
dependencies:
|
288
|
-
"@babel/helper-plugin-utils" "^7.24.
|
289
|
-
"@babel/helper-skip-transparent-expression-wrappers" "^7.
|
290
|
-
"@babel/plugin-transform-optional-chaining" "^7.24.
|
318
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
319
|
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
|
320
|
+
"@babel/plugin-transform-optional-chaining" "^7.24.7"
|
291
321
|
|
292
|
-
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.24.
|
293
|
-
version "7.24.
|
294
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.
|
295
|
-
integrity sha512-
|
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==
|
296
326
|
dependencies:
|
297
|
-
"@babel/helper-environment-visitor" "^7.
|
298
|
-
"@babel/helper-plugin-utils" "^7.24.
|
327
|
+
"@babel/helper-environment-visitor" "^7.24.7"
|
328
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
299
329
|
|
300
330
|
"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
|
301
331
|
version "7.21.0-placeholder-for-preset-env.2"
|
@@ -337,19 +367,19 @@
|
|
337
367
|
dependencies:
|
338
368
|
"@babel/helper-plugin-utils" "^7.8.3"
|
339
369
|
|
340
|
-
"@babel/plugin-syntax-import-assertions@^7.24.
|
341
|
-
version "7.24.
|
342
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.
|
343
|
-
integrity sha512-
|
370
|
+
"@babel/plugin-syntax-import-assertions@^7.24.7":
|
371
|
+
version "7.24.7"
|
372
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz#2a0b406b5871a20a841240586b1300ce2088a778"
|
373
|
+
integrity sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==
|
344
374
|
dependencies:
|
345
|
-
"@babel/helper-plugin-utils" "^7.24.
|
375
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
346
376
|
|
347
|
-
"@babel/plugin-syntax-import-attributes@^7.24.
|
348
|
-
version "7.24.
|
349
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.
|
350
|
-
integrity sha512-
|
377
|
+
"@babel/plugin-syntax-import-attributes@^7.24.7":
|
378
|
+
version "7.24.7"
|
379
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz#b4f9ea95a79e6912480c4b626739f86a076624ca"
|
380
|
+
integrity sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==
|
351
381
|
dependencies:
|
352
|
-
"@babel/helper-plugin-utils" "^7.24.
|
382
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
353
383
|
|
354
384
|
"@babel/plugin-syntax-import-meta@^7.10.4":
|
355
385
|
version "7.10.4"
|
@@ -429,414 +459,414 @@
|
|
429
459
|
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
|
430
460
|
"@babel/helper-plugin-utils" "^7.18.6"
|
431
461
|
|
432
|
-
"@babel/plugin-transform-arrow-functions@^7.24.
|
433
|
-
version "7.24.
|
434
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.
|
435
|
-
integrity sha512-
|
462
|
+
"@babel/plugin-transform-arrow-functions@^7.24.7":
|
463
|
+
version "7.24.7"
|
464
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz#4f6886c11e423bd69f3ce51dbf42424a5f275514"
|
465
|
+
integrity sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==
|
436
466
|
dependencies:
|
437
|
-
"@babel/helper-plugin-utils" "^7.24.
|
467
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
438
468
|
|
439
|
-
"@babel/plugin-transform-async-generator-functions@^7.24.
|
440
|
-
version "7.24.
|
441
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.
|
442
|
-
integrity sha512-
|
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==
|
443
473
|
dependencies:
|
444
|
-
"@babel/helper-environment-visitor" "^7.
|
445
|
-
"@babel/helper-plugin-utils" "^7.24.
|
446
|
-
"@babel/helper-remap-async-to-generator" "^7.
|
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"
|
447
477
|
"@babel/plugin-syntax-async-generators" "^7.8.4"
|
448
478
|
|
449
|
-
"@babel/plugin-transform-async-to-generator@^7.24.
|
450
|
-
version "7.24.
|
451
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.
|
452
|
-
integrity sha512-
|
479
|
+
"@babel/plugin-transform-async-to-generator@^7.24.7":
|
480
|
+
version "7.24.7"
|
481
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz#72a3af6c451d575842a7e9b5a02863414355bdcc"
|
482
|
+
integrity sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==
|
453
483
|
dependencies:
|
454
|
-
"@babel/helper-module-imports" "^7.24.
|
455
|
-
"@babel/helper-plugin-utils" "^7.24.
|
456
|
-
"@babel/helper-remap-async-to-generator" "^7.
|
484
|
+
"@babel/helper-module-imports" "^7.24.7"
|
485
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
486
|
+
"@babel/helper-remap-async-to-generator" "^7.24.7"
|
457
487
|
|
458
|
-
"@babel/plugin-transform-block-scoped-functions@^7.24.
|
459
|
-
version "7.24.
|
460
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.
|
461
|
-
integrity sha512-
|
488
|
+
"@babel/plugin-transform-block-scoped-functions@^7.24.7":
|
489
|
+
version "7.24.7"
|
490
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz#a4251d98ea0c0f399dafe1a35801eaba455bbf1f"
|
491
|
+
integrity sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==
|
462
492
|
dependencies:
|
463
|
-
"@babel/helper-plugin-utils" "^7.24.
|
493
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
464
494
|
|
465
|
-
"@babel/plugin-transform-block-scoping@^7.24.
|
466
|
-
version "7.24.
|
467
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.
|
468
|
-
integrity sha512-
|
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==
|
469
499
|
dependencies:
|
470
|
-
"@babel/helper-plugin-utils" "^7.24.
|
500
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
471
501
|
|
472
|
-
"@babel/plugin-transform-class-properties@^7.24.
|
473
|
-
version "7.24.
|
474
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.
|
475
|
-
integrity sha512-
|
502
|
+
"@babel/plugin-transform-class-properties@^7.24.7":
|
503
|
+
version "7.24.7"
|
504
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz#256879467b57b0b68c7ddfc5b76584f398cd6834"
|
505
|
+
integrity sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==
|
476
506
|
dependencies:
|
477
|
-
"@babel/helper-create-class-features-plugin" "^7.24.
|
478
|
-
"@babel/helper-plugin-utils" "^7.24.
|
507
|
+
"@babel/helper-create-class-features-plugin" "^7.24.7"
|
508
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
479
509
|
|
480
|
-
"@babel/plugin-transform-class-static-block@^7.24.
|
481
|
-
version "7.24.
|
482
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.
|
483
|
-
integrity sha512-
|
510
|
+
"@babel/plugin-transform-class-static-block@^7.24.7":
|
511
|
+
version "7.24.7"
|
512
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz#c82027ebb7010bc33c116d4b5044fbbf8c05484d"
|
513
|
+
integrity sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==
|
484
514
|
dependencies:
|
485
|
-
"@babel/helper-create-class-features-plugin" "^7.24.
|
486
|
-
"@babel/helper-plugin-utils" "^7.24.
|
515
|
+
"@babel/helper-create-class-features-plugin" "^7.24.7"
|
516
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
487
517
|
"@babel/plugin-syntax-class-static-block" "^7.14.5"
|
488
518
|
|
489
|
-
"@babel/plugin-transform-classes@^7.24.
|
490
|
-
version "7.24.
|
491
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.
|
492
|
-
integrity sha512-
|
493
|
-
dependencies:
|
494
|
-
"@babel/helper-annotate-as-pure" "^7.
|
495
|
-
"@babel/helper-compilation-targets" "^7.
|
496
|
-
"@babel/helper-environment-visitor" "^7.
|
497
|
-
"@babel/helper-function-name" "^7.
|
498
|
-
"@babel/helper-plugin-utils" "^7.24.
|
499
|
-
"@babel/helper-replace-supers" "^7.24.
|
500
|
-
"@babel/helper-split-export-declaration" "^7.24.
|
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==
|
523
|
+
dependencies:
|
524
|
+
"@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"
|
501
531
|
globals "^11.1.0"
|
502
532
|
|
503
|
-
"@babel/plugin-transform-computed-properties@^7.24.
|
504
|
-
version "7.24.
|
505
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.
|
506
|
-
integrity sha512-
|
533
|
+
"@babel/plugin-transform-computed-properties@^7.24.7":
|
534
|
+
version "7.24.7"
|
535
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz#4cab3214e80bc71fae3853238d13d097b004c707"
|
536
|
+
integrity sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==
|
507
537
|
dependencies:
|
508
|
-
"@babel/helper-plugin-utils" "^7.24.
|
509
|
-
"@babel/template" "^7.24.
|
538
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
539
|
+
"@babel/template" "^7.24.7"
|
510
540
|
|
511
|
-
"@babel/plugin-transform-destructuring@^7.24.
|
512
|
-
version "7.24.
|
513
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.
|
514
|
-
integrity sha512-
|
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==
|
515
545
|
dependencies:
|
516
|
-
"@babel/helper-plugin-utils" "^7.24.
|
546
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
517
547
|
|
518
|
-
"@babel/plugin-transform-dotall-regex@^7.24.
|
519
|
-
version "7.24.
|
520
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.
|
521
|
-
integrity sha512-
|
548
|
+
"@babel/plugin-transform-dotall-regex@^7.24.7":
|
549
|
+
version "7.24.7"
|
550
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz#5f8bf8a680f2116a7207e16288a5f974ad47a7a0"
|
551
|
+
integrity sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==
|
522
552
|
dependencies:
|
523
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
524
|
-
"@babel/helper-plugin-utils" "^7.24.
|
553
|
+
"@babel/helper-create-regexp-features-plugin" "^7.24.7"
|
554
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
525
555
|
|
526
|
-
"@babel/plugin-transform-duplicate-keys@^7.24.
|
527
|
-
version "7.24.
|
528
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.
|
529
|
-
integrity sha512-
|
556
|
+
"@babel/plugin-transform-duplicate-keys@^7.24.7":
|
557
|
+
version "7.24.7"
|
558
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz#dd20102897c9a2324e5adfffb67ff3610359a8ee"
|
559
|
+
integrity sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==
|
530
560
|
dependencies:
|
531
|
-
"@babel/helper-plugin-utils" "^7.24.
|
561
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
532
562
|
|
533
|
-
"@babel/plugin-transform-dynamic-import@^7.24.
|
534
|
-
version "7.24.
|
535
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.
|
536
|
-
integrity sha512-
|
563
|
+
"@babel/plugin-transform-dynamic-import@^7.24.7":
|
564
|
+
version "7.24.7"
|
565
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz#4d8b95e3bae2b037673091aa09cd33fecd6419f4"
|
566
|
+
integrity sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==
|
537
567
|
dependencies:
|
538
|
-
"@babel/helper-plugin-utils" "^7.24.
|
568
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
539
569
|
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
|
540
570
|
|
541
|
-
"@babel/plugin-transform-exponentiation-operator@^7.24.
|
542
|
-
version "7.24.
|
543
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.
|
544
|
-
integrity sha512-
|
571
|
+
"@babel/plugin-transform-exponentiation-operator@^7.24.7":
|
572
|
+
version "7.24.7"
|
573
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz#b629ee22645f412024297d5245bce425c31f9b0d"
|
574
|
+
integrity sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==
|
545
575
|
dependencies:
|
546
|
-
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.
|
547
|
-
"@babel/helper-plugin-utils" "^7.24.
|
576
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.24.7"
|
577
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
548
578
|
|
549
|
-
"@babel/plugin-transform-export-namespace-from@^7.24.
|
550
|
-
version "7.24.
|
551
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.
|
552
|
-
integrity sha512-
|
579
|
+
"@babel/plugin-transform-export-namespace-from@^7.24.7":
|
580
|
+
version "7.24.7"
|
581
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz#176d52d8d8ed516aeae7013ee9556d540c53f197"
|
582
|
+
integrity sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==
|
553
583
|
dependencies:
|
554
|
-
"@babel/helper-plugin-utils" "^7.24.
|
584
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
555
585
|
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
|
556
586
|
|
557
|
-
"@babel/plugin-transform-for-of@^7.24.
|
558
|
-
version "7.24.
|
559
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.
|
560
|
-
integrity sha512-
|
587
|
+
"@babel/plugin-transform-for-of@^7.24.7":
|
588
|
+
version "7.24.7"
|
589
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz#f25b33f72df1d8be76399e1b8f3f9d366eb5bc70"
|
590
|
+
integrity sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==
|
561
591
|
dependencies:
|
562
|
-
"@babel/helper-plugin-utils" "^7.24.
|
563
|
-
"@babel/helper-skip-transparent-expression-wrappers" "^7.
|
592
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
593
|
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
|
564
594
|
|
565
|
-
"@babel/plugin-transform-function-name@^7.24.
|
566
|
-
version "7.24.
|
567
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.
|
568
|
-
integrity sha512-
|
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==
|
569
599
|
dependencies:
|
570
|
-
"@babel/helper-compilation-targets" "^7.
|
571
|
-
"@babel/helper-function-name" "^7.
|
572
|
-
"@babel/helper-plugin-utils" "^7.24.
|
600
|
+
"@babel/helper-compilation-targets" "^7.24.7"
|
601
|
+
"@babel/helper-function-name" "^7.24.7"
|
602
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
573
603
|
|
574
|
-
"@babel/plugin-transform-json-strings@^7.24.
|
575
|
-
version "7.24.
|
576
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.
|
577
|
-
integrity sha512-
|
604
|
+
"@babel/plugin-transform-json-strings@^7.24.7":
|
605
|
+
version "7.24.7"
|
606
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz#f3e9c37c0a373fee86e36880d45b3664cedaf73a"
|
607
|
+
integrity sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==
|
578
608
|
dependencies:
|
579
|
-
"@babel/helper-plugin-utils" "^7.24.
|
609
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
580
610
|
"@babel/plugin-syntax-json-strings" "^7.8.3"
|
581
611
|
|
582
|
-
"@babel/plugin-transform-literals@^7.24.
|
583
|
-
version "7.24.
|
584
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.
|
585
|
-
integrity sha512-
|
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==
|
586
616
|
dependencies:
|
587
|
-
"@babel/helper-plugin-utils" "^7.24.
|
617
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
588
618
|
|
589
|
-
"@babel/plugin-transform-logical-assignment-operators@^7.24.
|
590
|
-
version "7.24.
|
591
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.
|
592
|
-
integrity sha512-
|
619
|
+
"@babel/plugin-transform-logical-assignment-operators@^7.24.7":
|
620
|
+
version "7.24.7"
|
621
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz#a58fb6eda16c9dc8f9ff1c7b1ba6deb7f4694cb0"
|
622
|
+
integrity sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==
|
593
623
|
dependencies:
|
594
|
-
"@babel/helper-plugin-utils" "^7.24.
|
624
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
595
625
|
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
|
596
626
|
|
597
|
-
"@babel/plugin-transform-member-expression-literals@^7.24.
|
598
|
-
version "7.24.
|
599
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.
|
600
|
-
integrity sha512-
|
627
|
+
"@babel/plugin-transform-member-expression-literals@^7.24.7":
|
628
|
+
version "7.24.7"
|
629
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz#3b4454fb0e302e18ba4945ba3246acb1248315df"
|
630
|
+
integrity sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==
|
601
631
|
dependencies:
|
602
|
-
"@babel/helper-plugin-utils" "^7.24.
|
632
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
603
633
|
|
604
|
-
"@babel/plugin-transform-modules-amd@^7.24.
|
605
|
-
version "7.24.
|
606
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.
|
607
|
-
integrity sha512-
|
634
|
+
"@babel/plugin-transform-modules-amd@^7.24.7":
|
635
|
+
version "7.24.7"
|
636
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz#65090ed493c4a834976a3ca1cde776e6ccff32d7"
|
637
|
+
integrity sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==
|
608
638
|
dependencies:
|
609
|
-
"@babel/helper-module-transforms" "^7.
|
610
|
-
"@babel/helper-plugin-utils" "^7.24.
|
639
|
+
"@babel/helper-module-transforms" "^7.24.7"
|
640
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
611
641
|
|
612
|
-
"@babel/plugin-transform-modules-commonjs@^7.24.
|
613
|
-
version "7.24.
|
614
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.
|
615
|
-
integrity sha512-
|
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==
|
616
646
|
dependencies:
|
617
|
-
"@babel/helper-module-transforms" "^7.
|
618
|
-
"@babel/helper-plugin-utils" "^7.24.
|
619
|
-
"@babel/helper-simple-access" "^7.
|
647
|
+
"@babel/helper-module-transforms" "^7.24.7"
|
648
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
649
|
+
"@babel/helper-simple-access" "^7.24.7"
|
620
650
|
|
621
|
-
"@babel/plugin-transform-modules-systemjs@^7.24.
|
622
|
-
version "7.24.
|
623
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.
|
624
|
-
integrity sha512-
|
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==
|
625
655
|
dependencies:
|
626
|
-
"@babel/helper-hoist-variables" "^7.
|
627
|
-
"@babel/helper-module-transforms" "^7.
|
628
|
-
"@babel/helper-plugin-utils" "^7.24.
|
629
|
-
"@babel/helper-validator-identifier" "^7.
|
656
|
+
"@babel/helper-hoist-variables" "^7.24.7"
|
657
|
+
"@babel/helper-module-transforms" "^7.24.7"
|
658
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
659
|
+
"@babel/helper-validator-identifier" "^7.24.7"
|
630
660
|
|
631
|
-
"@babel/plugin-transform-modules-umd@^7.24.
|
632
|
-
version "7.24.
|
633
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.
|
634
|
-
integrity sha512-
|
661
|
+
"@babel/plugin-transform-modules-umd@^7.24.7":
|
662
|
+
version "7.24.7"
|
663
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz#edd9f43ec549099620df7df24e7ba13b5c76efc8"
|
664
|
+
integrity sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==
|
635
665
|
dependencies:
|
636
|
-
"@babel/helper-module-transforms" "^7.
|
637
|
-
"@babel/helper-plugin-utils" "^7.24.
|
666
|
+
"@babel/helper-module-transforms" "^7.24.7"
|
667
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
638
668
|
|
639
|
-
"@babel/plugin-transform-named-capturing-groups-regex@^7.
|
640
|
-
version "7.
|
641
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.
|
642
|
-
integrity sha512
|
669
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.24.7":
|
670
|
+
version "7.24.7"
|
671
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz#9042e9b856bc6b3688c0c2e4060e9e10b1460923"
|
672
|
+
integrity sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==
|
643
673
|
dependencies:
|
644
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
645
|
-
"@babel/helper-plugin-utils" "^7.
|
674
|
+
"@babel/helper-create-regexp-features-plugin" "^7.24.7"
|
675
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
646
676
|
|
647
|
-
"@babel/plugin-transform-new-target@^7.24.
|
648
|
-
version "7.24.
|
649
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.
|
650
|
-
integrity sha512
|
677
|
+
"@babel/plugin-transform-new-target@^7.24.7":
|
678
|
+
version "7.24.7"
|
679
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz#31ff54c4e0555cc549d5816e4ab39241dfb6ab00"
|
680
|
+
integrity sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==
|
651
681
|
dependencies:
|
652
|
-
"@babel/helper-plugin-utils" "^7.24.
|
682
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
653
683
|
|
654
|
-
"@babel/plugin-transform-nullish-coalescing-operator@^7.24.
|
655
|
-
version "7.24.
|
656
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.
|
657
|
-
integrity sha512-
|
684
|
+
"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7":
|
685
|
+
version "7.24.7"
|
686
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz#1de4534c590af9596f53d67f52a92f12db984120"
|
687
|
+
integrity sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==
|
658
688
|
dependencies:
|
659
|
-
"@babel/helper-plugin-utils" "^7.24.
|
689
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
660
690
|
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
|
661
691
|
|
662
|
-
"@babel/plugin-transform-numeric-separator@^7.24.
|
663
|
-
version "7.24.
|
664
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.
|
665
|
-
integrity sha512-
|
692
|
+
"@babel/plugin-transform-numeric-separator@^7.24.7":
|
693
|
+
version "7.24.7"
|
694
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz#bea62b538c80605d8a0fac9b40f48e97efa7de63"
|
695
|
+
integrity sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==
|
666
696
|
dependencies:
|
667
|
-
"@babel/helper-plugin-utils" "^7.24.
|
697
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
668
698
|
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
|
669
699
|
|
670
|
-
"@babel/plugin-transform-object-rest-spread@^7.24.
|
671
|
-
version "7.24.
|
672
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.
|
673
|
-
integrity sha512-
|
700
|
+
"@babel/plugin-transform-object-rest-spread@^7.24.7":
|
701
|
+
version "7.24.7"
|
702
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz#d13a2b93435aeb8a197e115221cab266ba6e55d6"
|
703
|
+
integrity sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==
|
674
704
|
dependencies:
|
675
|
-
"@babel/helper-compilation-targets" "^7.
|
676
|
-
"@babel/helper-plugin-utils" "^7.24.
|
705
|
+
"@babel/helper-compilation-targets" "^7.24.7"
|
706
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
677
707
|
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
|
678
|
-
"@babel/plugin-transform-parameters" "^7.24.
|
708
|
+
"@babel/plugin-transform-parameters" "^7.24.7"
|
679
709
|
|
680
|
-
"@babel/plugin-transform-object-super@^7.24.
|
681
|
-
version "7.24.
|
682
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.
|
683
|
-
integrity sha512-
|
710
|
+
"@babel/plugin-transform-object-super@^7.24.7":
|
711
|
+
version "7.24.7"
|
712
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz#66eeaff7830bba945dd8989b632a40c04ed625be"
|
713
|
+
integrity sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==
|
684
714
|
dependencies:
|
685
|
-
"@babel/helper-plugin-utils" "^7.24.
|
686
|
-
"@babel/helper-replace-supers" "^7.24.
|
715
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
716
|
+
"@babel/helper-replace-supers" "^7.24.7"
|
687
717
|
|
688
|
-
"@babel/plugin-transform-optional-catch-binding@^7.24.
|
689
|
-
version "7.24.
|
690
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.
|
691
|
-
integrity sha512-
|
718
|
+
"@babel/plugin-transform-optional-catch-binding@^7.24.7":
|
719
|
+
version "7.24.7"
|
720
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz#00eabd883d0dd6a60c1c557548785919b6e717b4"
|
721
|
+
integrity sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==
|
692
722
|
dependencies:
|
693
|
-
"@babel/helper-plugin-utils" "^7.24.
|
723
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
694
724
|
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
|
695
725
|
|
696
|
-
"@babel/plugin-transform-optional-chaining@^7.24.
|
697
|
-
version "7.24.
|
698
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.
|
699
|
-
integrity sha512-
|
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==
|
700
730
|
dependencies:
|
701
|
-
"@babel/helper-plugin-utils" "^7.24.
|
702
|
-
"@babel/helper-skip-transparent-expression-wrappers" "^7.
|
731
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
732
|
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
|
703
733
|
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
|
704
734
|
|
705
|
-
"@babel/plugin-transform-parameters@^7.24.
|
706
|
-
version "7.24.
|
707
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.
|
708
|
-
integrity sha512-
|
735
|
+
"@babel/plugin-transform-parameters@^7.24.7":
|
736
|
+
version "7.24.7"
|
737
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz#5881f0ae21018400e320fc7eb817e529d1254b68"
|
738
|
+
integrity sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==
|
709
739
|
dependencies:
|
710
|
-
"@babel/helper-plugin-utils" "^7.24.
|
740
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
711
741
|
|
712
|
-
"@babel/plugin-transform-private-methods@^7.24.
|
713
|
-
version "7.24.
|
714
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.
|
715
|
-
integrity sha512-
|
742
|
+
"@babel/plugin-transform-private-methods@^7.24.7":
|
743
|
+
version "7.24.7"
|
744
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz#e6318746b2ae70a59d023d5cc1344a2ba7a75f5e"
|
745
|
+
integrity sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==
|
716
746
|
dependencies:
|
717
|
-
"@babel/helper-create-class-features-plugin" "^7.24.
|
718
|
-
"@babel/helper-plugin-utils" "^7.24.
|
747
|
+
"@babel/helper-create-class-features-plugin" "^7.24.7"
|
748
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
719
749
|
|
720
|
-
"@babel/plugin-transform-private-property-in-object@^7.24.
|
721
|
-
version "7.24.
|
722
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.
|
723
|
-
integrity sha512-
|
750
|
+
"@babel/plugin-transform-private-property-in-object@^7.24.7":
|
751
|
+
version "7.24.7"
|
752
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz#4eec6bc701288c1fab5f72e6a4bbc9d67faca061"
|
753
|
+
integrity sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==
|
724
754
|
dependencies:
|
725
|
-
"@babel/helper-annotate-as-pure" "^7.
|
726
|
-
"@babel/helper-create-class-features-plugin" "^7.24.
|
727
|
-
"@babel/helper-plugin-utils" "^7.24.
|
755
|
+
"@babel/helper-annotate-as-pure" "^7.24.7"
|
756
|
+
"@babel/helper-create-class-features-plugin" "^7.24.7"
|
757
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
728
758
|
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
|
729
759
|
|
730
|
-
"@babel/plugin-transform-property-literals@^7.24.
|
731
|
-
version "7.24.
|
732
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.
|
733
|
-
integrity sha512-
|
760
|
+
"@babel/plugin-transform-property-literals@^7.24.7":
|
761
|
+
version "7.24.7"
|
762
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz#f0d2ed8380dfbed949c42d4d790266525d63bbdc"
|
763
|
+
integrity sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==
|
734
764
|
dependencies:
|
735
|
-
"@babel/helper-plugin-utils" "^7.24.
|
765
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
736
766
|
|
737
|
-
"@babel/plugin-transform-regenerator@^7.24.
|
738
|
-
version "7.24.
|
739
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.
|
740
|
-
integrity sha512-
|
767
|
+
"@babel/plugin-transform-regenerator@^7.24.7":
|
768
|
+
version "7.24.7"
|
769
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz#021562de4534d8b4b1851759fd7af4e05d2c47f8"
|
770
|
+
integrity sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==
|
741
771
|
dependencies:
|
742
|
-
"@babel/helper-plugin-utils" "^7.24.
|
772
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
743
773
|
regenerator-transform "^0.15.2"
|
744
774
|
|
745
|
-
"@babel/plugin-transform-reserved-words@^7.24.
|
746
|
-
version "7.24.
|
747
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.
|
748
|
-
integrity sha512-
|
775
|
+
"@babel/plugin-transform-reserved-words@^7.24.7":
|
776
|
+
version "7.24.7"
|
777
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz#80037fe4fbf031fc1125022178ff3938bb3743a4"
|
778
|
+
integrity sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==
|
749
779
|
dependencies:
|
750
|
-
"@babel/helper-plugin-utils" "^7.24.
|
780
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
751
781
|
|
752
|
-
"@babel/plugin-transform-shorthand-properties@^7.24.
|
753
|
-
version "7.24.
|
754
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.
|
755
|
-
integrity sha512-
|
782
|
+
"@babel/plugin-transform-shorthand-properties@^7.24.7":
|
783
|
+
version "7.24.7"
|
784
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz#85448c6b996e122fa9e289746140aaa99da64e73"
|
785
|
+
integrity sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==
|
756
786
|
dependencies:
|
757
|
-
"@babel/helper-plugin-utils" "^7.24.
|
787
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
758
788
|
|
759
|
-
"@babel/plugin-transform-spread@^7.24.
|
760
|
-
version "7.24.
|
761
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.
|
762
|
-
integrity sha512-
|
789
|
+
"@babel/plugin-transform-spread@^7.24.7":
|
790
|
+
version "7.24.7"
|
791
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz#e8a38c0fde7882e0fb8f160378f74bd885cc7bb3"
|
792
|
+
integrity sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==
|
763
793
|
dependencies:
|
764
|
-
"@babel/helper-plugin-utils" "^7.24.
|
765
|
-
"@babel/helper-skip-transparent-expression-wrappers" "^7.
|
794
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
795
|
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
|
766
796
|
|
767
|
-
"@babel/plugin-transform-sticky-regex@^7.24.
|
768
|
-
version "7.24.
|
769
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.
|
770
|
-
integrity sha512-
|
797
|
+
"@babel/plugin-transform-sticky-regex@^7.24.7":
|
798
|
+
version "7.24.7"
|
799
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz#96ae80d7a7e5251f657b5cf18f1ea6bf926f5feb"
|
800
|
+
integrity sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==
|
771
801
|
dependencies:
|
772
|
-
"@babel/helper-plugin-utils" "^7.24.
|
802
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
773
803
|
|
774
|
-
"@babel/plugin-transform-template-literals@^7.24.
|
775
|
-
version "7.24.
|
776
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.
|
777
|
-
integrity sha512-
|
804
|
+
"@babel/plugin-transform-template-literals@^7.24.7":
|
805
|
+
version "7.24.7"
|
806
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz#a05debb4a9072ae8f985bcf77f3f215434c8f8c8"
|
807
|
+
integrity sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==
|
778
808
|
dependencies:
|
779
|
-
"@babel/helper-plugin-utils" "^7.24.
|
809
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
780
810
|
|
781
|
-
"@babel/plugin-transform-typeof-symbol@^7.24.
|
782
|
-
version "7.24.
|
783
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.
|
784
|
-
integrity sha512-
|
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==
|
785
815
|
dependencies:
|
786
|
-
"@babel/helper-plugin-utils" "^7.24.
|
816
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
787
817
|
|
788
|
-
"@babel/plugin-transform-unicode-escapes@^7.24.
|
789
|
-
version "7.24.
|
790
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.
|
791
|
-
integrity sha512-
|
818
|
+
"@babel/plugin-transform-unicode-escapes@^7.24.7":
|
819
|
+
version "7.24.7"
|
820
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz#2023a82ced1fb4971630a2e079764502c4148e0e"
|
821
|
+
integrity sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==
|
792
822
|
dependencies:
|
793
|
-
"@babel/helper-plugin-utils" "^7.24.
|
823
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
794
824
|
|
795
|
-
"@babel/plugin-transform-unicode-property-regex@^7.24.
|
796
|
-
version "7.24.
|
797
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.
|
798
|
-
integrity sha512-
|
825
|
+
"@babel/plugin-transform-unicode-property-regex@^7.24.7":
|
826
|
+
version "7.24.7"
|
827
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz#9073a4cd13b86ea71c3264659590ac086605bbcd"
|
828
|
+
integrity sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==
|
799
829
|
dependencies:
|
800
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
801
|
-
"@babel/helper-plugin-utils" "^7.24.
|
830
|
+
"@babel/helper-create-regexp-features-plugin" "^7.24.7"
|
831
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
802
832
|
|
803
|
-
"@babel/plugin-transform-unicode-regex@^7.24.
|
804
|
-
version "7.24.
|
805
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.
|
806
|
-
integrity sha512-
|
833
|
+
"@babel/plugin-transform-unicode-regex@^7.24.7":
|
834
|
+
version "7.24.7"
|
835
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz#dfc3d4a51127108099b19817c0963be6a2adf19f"
|
836
|
+
integrity sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==
|
807
837
|
dependencies:
|
808
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
809
|
-
"@babel/helper-plugin-utils" "^7.24.
|
838
|
+
"@babel/helper-create-regexp-features-plugin" "^7.24.7"
|
839
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
810
840
|
|
811
|
-
"@babel/plugin-transform-unicode-sets-regex@^7.24.
|
812
|
-
version "7.24.
|
813
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.
|
814
|
-
integrity sha512-
|
841
|
+
"@babel/plugin-transform-unicode-sets-regex@^7.24.7":
|
842
|
+
version "7.24.7"
|
843
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz#d40705d67523803a576e29c63cef6e516b858ed9"
|
844
|
+
integrity sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==
|
815
845
|
dependencies:
|
816
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
817
|
-
"@babel/helper-plugin-utils" "^7.24.
|
846
|
+
"@babel/helper-create-regexp-features-plugin" "^7.24.7"
|
847
|
+
"@babel/helper-plugin-utils" "^7.24.7"
|
818
848
|
|
819
|
-
"@babel/preset-env@^7.
|
820
|
-
version "7.24.
|
821
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.
|
822
|
-
integrity sha512-
|
823
|
-
dependencies:
|
824
|
-
"@babel/compat-data" "^7.24.
|
825
|
-
"@babel/helper-compilation-targets" "^7.
|
826
|
-
"@babel/helper-plugin-utils" "^7.24.
|
827
|
-
"@babel/helper-validator-option" "^7.
|
828
|
-
"@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.24.
|
829
|
-
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.24.
|
830
|
-
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.
|
831
|
-
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.24.
|
849
|
+
"@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"
|
860
|
+
"@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"
|
832
862
|
"@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
|
833
863
|
"@babel/plugin-syntax-async-generators" "^7.8.4"
|
834
864
|
"@babel/plugin-syntax-class-properties" "^7.12.13"
|
835
865
|
"@babel/plugin-syntax-class-static-block" "^7.14.5"
|
836
866
|
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
|
837
867
|
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
|
838
|
-
"@babel/plugin-syntax-import-assertions" "^7.24.
|
839
|
-
"@babel/plugin-syntax-import-attributes" "^7.24.
|
868
|
+
"@babel/plugin-syntax-import-assertions" "^7.24.7"
|
869
|
+
"@babel/plugin-syntax-import-attributes" "^7.24.7"
|
840
870
|
"@babel/plugin-syntax-import-meta" "^7.10.4"
|
841
871
|
"@babel/plugin-syntax-json-strings" "^7.8.3"
|
842
872
|
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
|
@@ -848,54 +878,54 @@
|
|
848
878
|
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
|
849
879
|
"@babel/plugin-syntax-top-level-await" "^7.14.5"
|
850
880
|
"@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
|
851
|
-
"@babel/plugin-transform-arrow-functions" "^7.24.
|
852
|
-
"@babel/plugin-transform-async-generator-functions" "^7.24.
|
853
|
-
"@babel/plugin-transform-async-to-generator" "^7.24.
|
854
|
-
"@babel/plugin-transform-block-scoped-functions" "^7.24.
|
855
|
-
"@babel/plugin-transform-block-scoping" "^7.24.
|
856
|
-
"@babel/plugin-transform-class-properties" "^7.24.
|
857
|
-
"@babel/plugin-transform-class-static-block" "^7.24.
|
858
|
-
"@babel/plugin-transform-classes" "^7.24.
|
859
|
-
"@babel/plugin-transform-computed-properties" "^7.24.
|
860
|
-
"@babel/plugin-transform-destructuring" "^7.24.
|
861
|
-
"@babel/plugin-transform-dotall-regex" "^7.24.
|
862
|
-
"@babel/plugin-transform-duplicate-keys" "^7.24.
|
863
|
-
"@babel/plugin-transform-dynamic-import" "^7.24.
|
864
|
-
"@babel/plugin-transform-exponentiation-operator" "^7.24.
|
865
|
-
"@babel/plugin-transform-export-namespace-from" "^7.24.
|
866
|
-
"@babel/plugin-transform-for-of" "^7.24.
|
867
|
-
"@babel/plugin-transform-function-name" "^7.24.
|
868
|
-
"@babel/plugin-transform-json-strings" "^7.24.
|
869
|
-
"@babel/plugin-transform-literals" "^7.24.
|
870
|
-
"@babel/plugin-transform-logical-assignment-operators" "^7.24.
|
871
|
-
"@babel/plugin-transform-member-expression-literals" "^7.24.
|
872
|
-
"@babel/plugin-transform-modules-amd" "^7.24.
|
873
|
-
"@babel/plugin-transform-modules-commonjs" "^7.24.
|
874
|
-
"@babel/plugin-transform-modules-systemjs" "^7.24.
|
875
|
-
"@babel/plugin-transform-modules-umd" "^7.24.
|
876
|
-
"@babel/plugin-transform-named-capturing-groups-regex" "^7.
|
877
|
-
"@babel/plugin-transform-new-target" "^7.24.
|
878
|
-
"@babel/plugin-transform-nullish-coalescing-operator" "^7.24.
|
879
|
-
"@babel/plugin-transform-numeric-separator" "^7.24.
|
880
|
-
"@babel/plugin-transform-object-rest-spread" "^7.24.
|
881
|
-
"@babel/plugin-transform-object-super" "^7.24.
|
882
|
-
"@babel/plugin-transform-optional-catch-binding" "^7.24.
|
883
|
-
"@babel/plugin-transform-optional-chaining" "^7.24.
|
884
|
-
"@babel/plugin-transform-parameters" "^7.24.
|
885
|
-
"@babel/plugin-transform-private-methods" "^7.24.
|
886
|
-
"@babel/plugin-transform-private-property-in-object" "^7.24.
|
887
|
-
"@babel/plugin-transform-property-literals" "^7.24.
|
888
|
-
"@babel/plugin-transform-regenerator" "^7.24.
|
889
|
-
"@babel/plugin-transform-reserved-words" "^7.24.
|
890
|
-
"@babel/plugin-transform-shorthand-properties" "^7.24.
|
891
|
-
"@babel/plugin-transform-spread" "^7.24.
|
892
|
-
"@babel/plugin-transform-sticky-regex" "^7.24.
|
893
|
-
"@babel/plugin-transform-template-literals" "^7.24.
|
894
|
-
"@babel/plugin-transform-typeof-symbol" "^7.24.
|
895
|
-
"@babel/plugin-transform-unicode-escapes" "^7.24.
|
896
|
-
"@babel/plugin-transform-unicode-property-regex" "^7.24.
|
897
|
-
"@babel/plugin-transform-unicode-regex" "^7.24.
|
898
|
-
"@babel/plugin-transform-unicode-sets-regex" "^7.24.
|
881
|
+
"@babel/plugin-transform-arrow-functions" "^7.24.7"
|
882
|
+
"@babel/plugin-transform-async-generator-functions" "^7.24.7"
|
883
|
+
"@babel/plugin-transform-async-to-generator" "^7.24.7"
|
884
|
+
"@babel/plugin-transform-block-scoped-functions" "^7.24.7"
|
885
|
+
"@babel/plugin-transform-block-scoping" "^7.24.7"
|
886
|
+
"@babel/plugin-transform-class-properties" "^7.24.7"
|
887
|
+
"@babel/plugin-transform-class-static-block" "^7.24.7"
|
888
|
+
"@babel/plugin-transform-classes" "^7.24.7"
|
889
|
+
"@babel/plugin-transform-computed-properties" "^7.24.7"
|
890
|
+
"@babel/plugin-transform-destructuring" "^7.24.7"
|
891
|
+
"@babel/plugin-transform-dotall-regex" "^7.24.7"
|
892
|
+
"@babel/plugin-transform-duplicate-keys" "^7.24.7"
|
893
|
+
"@babel/plugin-transform-dynamic-import" "^7.24.7"
|
894
|
+
"@babel/plugin-transform-exponentiation-operator" "^7.24.7"
|
895
|
+
"@babel/plugin-transform-export-namespace-from" "^7.24.7"
|
896
|
+
"@babel/plugin-transform-for-of" "^7.24.7"
|
897
|
+
"@babel/plugin-transform-function-name" "^7.24.7"
|
898
|
+
"@babel/plugin-transform-json-strings" "^7.24.7"
|
899
|
+
"@babel/plugin-transform-literals" "^7.24.7"
|
900
|
+
"@babel/plugin-transform-logical-assignment-operators" "^7.24.7"
|
901
|
+
"@babel/plugin-transform-member-expression-literals" "^7.24.7"
|
902
|
+
"@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"
|
905
|
+
"@babel/plugin-transform-modules-umd" "^7.24.7"
|
906
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7"
|
907
|
+
"@babel/plugin-transform-new-target" "^7.24.7"
|
908
|
+
"@babel/plugin-transform-nullish-coalescing-operator" "^7.24.7"
|
909
|
+
"@babel/plugin-transform-numeric-separator" "^7.24.7"
|
910
|
+
"@babel/plugin-transform-object-rest-spread" "^7.24.7"
|
911
|
+
"@babel/plugin-transform-object-super" "^7.24.7"
|
912
|
+
"@babel/plugin-transform-optional-catch-binding" "^7.24.7"
|
913
|
+
"@babel/plugin-transform-optional-chaining" "^7.24.7"
|
914
|
+
"@babel/plugin-transform-parameters" "^7.24.7"
|
915
|
+
"@babel/plugin-transform-private-methods" "^7.24.7"
|
916
|
+
"@babel/plugin-transform-private-property-in-object" "^7.24.7"
|
917
|
+
"@babel/plugin-transform-property-literals" "^7.24.7"
|
918
|
+
"@babel/plugin-transform-regenerator" "^7.24.7"
|
919
|
+
"@babel/plugin-transform-reserved-words" "^7.24.7"
|
920
|
+
"@babel/plugin-transform-shorthand-properties" "^7.24.7"
|
921
|
+
"@babel/plugin-transform-spread" "^7.24.7"
|
922
|
+
"@babel/plugin-transform-sticky-regex" "^7.24.7"
|
923
|
+
"@babel/plugin-transform-template-literals" "^7.24.7"
|
924
|
+
"@babel/plugin-transform-typeof-symbol" "^7.24.7"
|
925
|
+
"@babel/plugin-transform-unicode-escapes" "^7.24.7"
|
926
|
+
"@babel/plugin-transform-unicode-property-regex" "^7.24.7"
|
927
|
+
"@babel/plugin-transform-unicode-regex" "^7.24.7"
|
928
|
+
"@babel/plugin-transform-unicode-sets-regex" "^7.24.7"
|
899
929
|
"@babel/preset-modules" "0.1.6-no-external-plugins"
|
900
930
|
babel-plugin-polyfill-corejs2 "^0.4.10"
|
901
931
|
babel-plugin-polyfill-corejs3 "^0.10.4"
|
@@ -917,39 +947,39 @@
|
|
917
947
|
resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
|
918
948
|
integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
|
919
949
|
|
920
|
-
"@babel/runtime@^7.8.4":
|
921
|
-
version "7.24.
|
922
|
-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.
|
923
|
-
integrity sha512-
|
950
|
+
"@babel/runtime@^7.23.9", "@babel/runtime@^7.8.4":
|
951
|
+
version "7.24.7"
|
952
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.7.tgz#f4f0d5530e8dbdf59b3451b9b3e594b6ba082e12"
|
953
|
+
integrity sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==
|
924
954
|
dependencies:
|
925
955
|
regenerator-runtime "^0.14.0"
|
926
956
|
|
927
|
-
"@babel/template@^7.
|
928
|
-
version "7.24.
|
929
|
-
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.
|
930
|
-
integrity sha512-
|
931
|
-
dependencies:
|
932
|
-
"@babel/code-frame" "^7.
|
933
|
-
"@babel/parser" "^7.24.
|
934
|
-
"@babel/types" "^7.24.
|
935
|
-
|
936
|
-
"@babel/traverse@^7.24.
|
937
|
-
version "7.24.
|
938
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.
|
939
|
-
integrity sha512-
|
940
|
-
dependencies:
|
941
|
-
"@babel/code-frame" "^7.24.
|
942
|
-
"@babel/generator" "^7.24.
|
943
|
-
"@babel/helper-environment-visitor" "^7.
|
944
|
-
"@babel/helper-function-name" "^7.
|
945
|
-
"@babel/helper-hoist-variables" "^7.
|
946
|
-
"@babel/helper-split-export-declaration" "^7.24.
|
947
|
-
"@babel/parser" "^7.24.
|
948
|
-
"@babel/types" "^7.24.
|
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==
|
961
|
+
dependencies:
|
962
|
+
"@babel/code-frame" "^7.24.7"
|
963
|
+
"@babel/parser" "^7.24.7"
|
964
|
+
"@babel/types" "^7.24.7"
|
965
|
+
|
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==
|
970
|
+
dependencies:
|
971
|
+
"@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"
|
949
979
|
debug "^4.3.1"
|
950
980
|
globals "^11.1.0"
|
951
981
|
|
952
|
-
"@babel/types@^7.22.
|
982
|
+
"@babel/types@^7.22.5":
|
953
983
|
version "7.24.5"
|
954
984
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.5.tgz#7661930afc638a5383eb0c4aee59b74f38db84d7"
|
955
985
|
integrity sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==
|
@@ -958,15 +988,58 @@
|
|
958
988
|
"@babel/helper-validator-identifier" "^7.24.5"
|
959
989
|
to-fast-properties "^2.0.0"
|
960
990
|
|
961
|
-
"@
|
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==
|
995
|
+
dependencies:
|
996
|
+
"@babel/helper-string-parser" "^7.24.7"
|
997
|
+
"@babel/helper-validator-identifier" "^7.24.7"
|
998
|
+
to-fast-properties "^2.0.0"
|
999
|
+
|
1000
|
+
"@discoveryjs/json-ext@0.5.7", "@discoveryjs/json-ext@^0.5.0":
|
962
1001
|
version "0.5.7"
|
963
1002
|
resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
|
964
1003
|
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
|
965
1004
|
|
966
|
-
"@fortawesome/fontawesome-free@^
|
967
|
-
version "5.
|
968
|
-
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.
|
969
|
-
integrity sha512-
|
1005
|
+
"@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==
|
1009
|
+
|
1010
|
+
"@hotwired/stimulus-webpack-helpers@^1.0.1":
|
1011
|
+
version "1.0.1"
|
1012
|
+
resolved "https://registry.yarnpkg.com/@hotwired/stimulus-webpack-helpers/-/stimulus-webpack-helpers-1.0.1.tgz#4cd74487adeca576c9865ac2b9fe5cb20cef16dd"
|
1013
|
+
integrity sha512-wa/zupVG0eWxRYJjC1IiPBdt3Lruv0RqGN+/DTMmUWUyMAEB27KXmVY6a8YpUVTM7QwVuaLNGW4EqDgrS2upXQ==
|
1014
|
+
|
1015
|
+
"@hotwired/stimulus@^3.2.2":
|
1016
|
+
version "3.2.2"
|
1017
|
+
resolved "https://registry.yarnpkg.com/@hotwired/stimulus/-/stimulus-3.2.2.tgz#071aab59c600fed95b97939e605ff261a4251608"
|
1018
|
+
integrity sha512-eGeIqNOQpXoPAIP7tC1+1Yc1yl1xnwYqg+3mzqxyrbE5pg5YFBZcA6YoTiByJB6DKAEsiWtl6tjTJS4IYtbB7A==
|
1019
|
+
|
1020
|
+
"@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==
|
1024
|
+
|
1025
|
+
"@jest/schemas@^29.6.0":
|
1026
|
+
version "29.6.0"
|
1027
|
+
resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.0.tgz#0f4cb2c8e3dca80c135507ba5635a4fd755b0040"
|
1028
|
+
integrity sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==
|
1029
|
+
dependencies:
|
1030
|
+
"@sinclair/typebox" "^0.27.8"
|
1031
|
+
|
1032
|
+
"@jest/types@^29.6.1":
|
1033
|
+
version "29.6.1"
|
1034
|
+
resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.1.tgz#ae79080278acff0a6af5eb49d063385aaa897bf2"
|
1035
|
+
integrity sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==
|
1036
|
+
dependencies:
|
1037
|
+
"@jest/schemas" "^29.6.0"
|
1038
|
+
"@types/istanbul-lib-coverage" "^2.0.0"
|
1039
|
+
"@types/istanbul-reports" "^3.0.0"
|
1040
|
+
"@types/node" "*"
|
1041
|
+
"@types/yargs" "^17.0.8"
|
1042
|
+
chalk "^4.0.0"
|
970
1043
|
|
971
1044
|
"@jridgewell/gen-mapping@^0.3.5":
|
972
1045
|
version "0.3.5"
|
@@ -1000,6 +1073,14 @@
|
|
1000
1073
|
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
|
1001
1074
|
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
|
1002
1075
|
|
1076
|
+
"@jridgewell/trace-mapping@^0.3.18":
|
1077
|
+
version "0.3.19"
|
1078
|
+
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811"
|
1079
|
+
integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==
|
1080
|
+
dependencies:
|
1081
|
+
"@jridgewell/resolve-uri" "^3.1.0"
|
1082
|
+
"@jridgewell/sourcemap-codec" "^1.4.14"
|
1083
|
+
|
1003
1084
|
"@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
|
1004
1085
|
version "0.3.25"
|
1005
1086
|
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
|
@@ -1029,10 +1110,20 @@
|
|
1029
1110
|
"@nodelib/fs.scandir" "2.1.5"
|
1030
1111
|
fastq "^1.6.0"
|
1031
1112
|
|
1032
|
-
"@
|
1033
|
-
version "
|
1034
|
-
resolved "https://registry.yarnpkg.com/@
|
1035
|
-
integrity sha512-
|
1113
|
+
"@polka/url@^1.0.0-next.24":
|
1114
|
+
version "1.0.0-next.25"
|
1115
|
+
resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.25.tgz#f077fdc0b5d0078d30893396ff4827a13f99e817"
|
1116
|
+
integrity sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==
|
1117
|
+
|
1118
|
+
"@popperjs/core@^2.11.8":
|
1119
|
+
version "2.11.8"
|
1120
|
+
resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f"
|
1121
|
+
integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==
|
1122
|
+
|
1123
|
+
"@sinclair/typebox@^0.27.8":
|
1124
|
+
version "0.27.8"
|
1125
|
+
resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e"
|
1126
|
+
integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==
|
1036
1127
|
|
1037
1128
|
"@trysound/sax@0.2.0":
|
1038
1129
|
version "0.2.0"
|
@@ -1060,27 +1151,48 @@
|
|
1060
1151
|
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4"
|
1061
1152
|
integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
|
1062
1153
|
|
1154
|
+
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
|
1155
|
+
version "2.0.4"
|
1156
|
+
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44"
|
1157
|
+
integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==
|
1158
|
+
|
1159
|
+
"@types/istanbul-lib-report@*":
|
1160
|
+
version "3.0.0"
|
1161
|
+
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
|
1162
|
+
integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
|
1163
|
+
dependencies:
|
1164
|
+
"@types/istanbul-lib-coverage" "*"
|
1165
|
+
|
1166
|
+
"@types/istanbul-reports@^3.0.0":
|
1167
|
+
version "3.0.1"
|
1168
|
+
resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff"
|
1169
|
+
integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==
|
1170
|
+
dependencies:
|
1171
|
+
"@types/istanbul-lib-report" "*"
|
1172
|
+
|
1063
1173
|
"@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
|
1064
1174
|
version "7.0.15"
|
1065
1175
|
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
|
1066
1176
|
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
|
1067
1177
|
|
1068
|
-
"@types/json-schema@^7.0.5":
|
1069
|
-
version "7.0.11"
|
1070
|
-
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
|
1071
|
-
integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
|
1072
|
-
|
1073
1178
|
"@types/node@*":
|
1074
|
-
version "20.
|
1075
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.
|
1076
|
-
integrity sha512-
|
1179
|
+
version "20.14.9"
|
1180
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.9.tgz#12e8e765ab27f8c421a1820c99f5f313a933b420"
|
1181
|
+
integrity sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==
|
1077
1182
|
dependencies:
|
1078
1183
|
undici-types "~5.26.4"
|
1079
1184
|
|
1080
|
-
"@types/
|
1081
|
-
version "
|
1082
|
-
resolved "https://registry.yarnpkg.com/@types/
|
1083
|
-
integrity sha512
|
1185
|
+
"@types/yargs-parser@*":
|
1186
|
+
version "21.0.0"
|
1187
|
+
resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b"
|
1188
|
+
integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==
|
1189
|
+
|
1190
|
+
"@types/yargs@^17.0.8":
|
1191
|
+
version "17.0.24"
|
1192
|
+
resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902"
|
1193
|
+
integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==
|
1194
|
+
dependencies:
|
1195
|
+
"@types/yargs-parser" "*"
|
1084
1196
|
|
1085
1197
|
"@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1":
|
1086
1198
|
version "1.12.1"
|
@@ -1203,22 +1315,20 @@
|
|
1203
1315
|
"@webassemblyjs/ast" "1.12.1"
|
1204
1316
|
"@xtuc/long" "4.2.2"
|
1205
1317
|
|
1206
|
-
"@webpack-cli/configtest@^1.
|
1207
|
-
version "1.
|
1208
|
-
resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.
|
1209
|
-
integrity sha512-
|
1318
|
+
"@webpack-cli/configtest@^2.1.1":
|
1319
|
+
version "2.1.1"
|
1320
|
+
resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-2.1.1.tgz#3b2f852e91dac6e3b85fb2a314fb8bef46d94646"
|
1321
|
+
integrity sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==
|
1210
1322
|
|
1211
|
-
"@webpack-cli/info@^
|
1212
|
-
version "
|
1213
|
-
resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-
|
1214
|
-
integrity sha512-
|
1215
|
-
dependencies:
|
1216
|
-
envinfo "^7.7.3"
|
1323
|
+
"@webpack-cli/info@^2.0.2":
|
1324
|
+
version "2.0.2"
|
1325
|
+
resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-2.0.2.tgz#cc3fbf22efeb88ff62310cf885c5b09f44ae0fdd"
|
1326
|
+
integrity sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==
|
1217
1327
|
|
1218
|
-
"@webpack-cli/serve@^
|
1219
|
-
version "
|
1220
|
-
resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-
|
1221
|
-
integrity sha512-
|
1328
|
+
"@webpack-cli/serve@^2.0.5":
|
1329
|
+
version "2.0.5"
|
1330
|
+
resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.5.tgz#325db42395cd49fe6c14057f9a900e427df8810e"
|
1331
|
+
integrity sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==
|
1222
1332
|
|
1223
1333
|
"@xtuc/ieee754@^1.2.0":
|
1224
1334
|
version "1.2.0"
|
@@ -1230,16 +1340,26 @@
|
|
1230
1340
|
resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
|
1231
1341
|
integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
|
1232
1342
|
|
1233
|
-
acorn-import-
|
1234
|
-
version "1.9.
|
1235
|
-
resolved "https://registry.yarnpkg.com/acorn-import-
|
1236
|
-
integrity sha512-
|
1343
|
+
acorn-import-attributes@^1.9.5:
|
1344
|
+
version "1.9.5"
|
1345
|
+
resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef"
|
1346
|
+
integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==
|
1237
1347
|
|
1238
|
-
acorn@^8.
|
1348
|
+
acorn-walk@^8.0.0:
|
1349
|
+
version "8.3.2"
|
1350
|
+
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.2.tgz#7703af9415f1b6db9315d6895503862e231d34aa"
|
1351
|
+
integrity sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==
|
1352
|
+
|
1353
|
+
acorn@^8.0.4:
|
1239
1354
|
version "8.11.3"
|
1240
1355
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a"
|
1241
1356
|
integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==
|
1242
1357
|
|
1358
|
+
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==
|
1362
|
+
|
1243
1363
|
ajv-formats@^2.1.1:
|
1244
1364
|
version "2.1.1"
|
1245
1365
|
resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520"
|
@@ -1259,7 +1379,7 @@ ajv-keywords@^5.1.0:
|
|
1259
1379
|
dependencies:
|
1260
1380
|
fast-deep-equal "^3.1.3"
|
1261
1381
|
|
1262
|
-
ajv@^6.12.
|
1382
|
+
ajv@^6.12.5:
|
1263
1383
|
version "6.12.6"
|
1264
1384
|
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
|
1265
1385
|
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
|
@@ -1286,6 +1406,13 @@ ansi-styles@^3.2.1:
|
|
1286
1406
|
dependencies:
|
1287
1407
|
color-convert "^1.9.0"
|
1288
1408
|
|
1409
|
+
ansi-styles@^4.1.0:
|
1410
|
+
version "4.3.0"
|
1411
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
1412
|
+
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
|
1413
|
+
dependencies:
|
1414
|
+
color-convert "^2.0.1"
|
1415
|
+
|
1289
1416
|
anymatch@~3.1.2:
|
1290
1417
|
version "3.1.3"
|
1291
1418
|
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
|
@@ -1294,12 +1421,12 @@ anymatch@~3.1.2:
|
|
1294
1421
|
normalize-path "^3.0.0"
|
1295
1422
|
picomatch "^2.0.4"
|
1296
1423
|
|
1297
|
-
|
1298
|
-
version "2.1
|
1299
|
-
resolved "https://registry.yarnpkg.com/
|
1300
|
-
integrity sha512-
|
1424
|
+
argparse@^2.0.1:
|
1425
|
+
version "2.0.1"
|
1426
|
+
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
|
1427
|
+
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
|
1301
1428
|
|
1302
|
-
autoprefixer@^10.
|
1429
|
+
autoprefixer@^10.4.13:
|
1303
1430
|
version "10.4.19"
|
1304
1431
|
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.19.tgz#ad25a856e82ee9d7898c59583c1afeb3fa65f89f"
|
1305
1432
|
integrity sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==
|
@@ -1311,15 +1438,13 @@ autoprefixer@^10.2.6:
|
|
1311
1438
|
picocolors "^1.0.0"
|
1312
1439
|
postcss-value-parser "^4.2.0"
|
1313
1440
|
|
1314
|
-
babel-loader@^
|
1315
|
-
version "
|
1316
|
-
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-
|
1317
|
-
integrity sha512-
|
1441
|
+
babel-loader@^9.1.2:
|
1442
|
+
version "9.1.3"
|
1443
|
+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a"
|
1444
|
+
integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==
|
1318
1445
|
dependencies:
|
1319
|
-
find-cache-dir "^
|
1320
|
-
|
1321
|
-
make-dir "^3.1.0"
|
1322
|
-
schema-utils "^2.6.5"
|
1446
|
+
find-cache-dir "^4.0.0"
|
1447
|
+
schema-utils "^4.0.0"
|
1323
1448
|
|
1324
1449
|
babel-plugin-polyfill-corejs2@^0.4.10:
|
1325
1450
|
version "0.4.11"
|
@@ -1345,10 +1470,10 @@ babel-plugin-polyfill-regenerator@^0.6.1:
|
|
1345
1470
|
dependencies:
|
1346
1471
|
"@babel/helper-define-polyfill-provider" "^0.6.2"
|
1347
1472
|
|
1348
|
-
|
1349
|
-
version "
|
1350
|
-
resolved "https://registry.yarnpkg.com/
|
1351
|
-
integrity sha512-
|
1473
|
+
bignumber.js@*:
|
1474
|
+
version "9.1.2"
|
1475
|
+
resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.2.tgz#b7c4242259c008903b13707983b5f4bbd31eda0c"
|
1476
|
+
integrity sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==
|
1352
1477
|
|
1353
1478
|
binary-extensions@^2.0.0:
|
1354
1479
|
version "2.3.0"
|
@@ -1360,15 +1485,15 @@ boolbase@^1.0.0:
|
|
1360
1485
|
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
|
1361
1486
|
integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==
|
1362
1487
|
|
1363
|
-
bootstrap
|
1364
|
-
version "
|
1365
|
-
resolved "https://registry.yarnpkg.com/bootstrap
|
1366
|
-
integrity sha512-
|
1488
|
+
bootstrap@^5.1.3:
|
1489
|
+
version "5.3.1"
|
1490
|
+
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.3.1.tgz#8ca07040ad15d7f75891d1504cf14c5dedfb1cfe"
|
1491
|
+
integrity sha512-jzwza3Yagduci2x0rr9MeFSORjcHpt0lRZukZPZQJT1Dth5qzV7XcgGqYzi39KGAVYR8QEDVoO0ubFKOxzMG+g==
|
1367
1492
|
|
1368
|
-
bootstrap
|
1369
|
-
version "
|
1370
|
-
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-
|
1371
|
-
integrity sha512-
|
1493
|
+
bootstrap@~5.3.1:
|
1494
|
+
version "5.3.3"
|
1495
|
+
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.3.3.tgz#de35e1a765c897ac940021900fcbb831602bac38"
|
1496
|
+
integrity sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==
|
1372
1497
|
|
1373
1498
|
braces@^3.0.2:
|
1374
1499
|
version "3.0.2"
|
@@ -1385,29 +1510,24 @@ braces@~3.0.2:
|
|
1385
1510
|
fill-range "^7.1.1"
|
1386
1511
|
|
1387
1512
|
browserslist@^4.0.0, browserslist@^4.21.4:
|
1388
|
-
version "4.21.
|
1389
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.
|
1390
|
-
integrity sha512-
|
1513
|
+
version "4.21.10"
|
1514
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0"
|
1515
|
+
integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==
|
1391
1516
|
dependencies:
|
1392
|
-
caniuse-lite "^1.0.
|
1393
|
-
electron-to-chromium "^1.4.
|
1394
|
-
node-releases "^2.0.
|
1395
|
-
update-browserslist-db "^1.0.
|
1517
|
+
caniuse-lite "^1.0.30001517"
|
1518
|
+
electron-to-chromium "^1.4.477"
|
1519
|
+
node-releases "^2.0.13"
|
1520
|
+
update-browserslist-db "^1.0.11"
|
1396
1521
|
|
1397
1522
|
browserslist@^4.21.10, browserslist@^4.22.2, browserslist@^4.23.0:
|
1398
|
-
version "4.23.
|
1399
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.
|
1400
|
-
integrity sha512-
|
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==
|
1401
1526
|
dependencies:
|
1402
|
-
caniuse-lite "^1.0.
|
1403
|
-
electron-to-chromium "^1.4.
|
1527
|
+
caniuse-lite "^1.0.30001629"
|
1528
|
+
electron-to-chromium "^1.4.796"
|
1404
1529
|
node-releases "^2.0.14"
|
1405
|
-
update-browserslist-db "^1.0.
|
1406
|
-
|
1407
|
-
bs-custom-file-input@^1.3.2:
|
1408
|
-
version "1.3.4"
|
1409
|
-
resolved "https://registry.yarnpkg.com/bs-custom-file-input/-/bs-custom-file-input-1.3.4.tgz#c275cb8d4f1c02ba026324292509fa9a747dbda8"
|
1410
|
-
integrity sha512-NBsQzTnef3OW1MvdKBbMHAYHssCd613MSeJV7z2McXznWtVMnJCy7Ckyc+PwxV6Pk16cu6YBcYWh/ZE0XWNKCA==
|
1530
|
+
update-browserslist-db "^1.0.16"
|
1411
1531
|
|
1412
1532
|
buffer-from@^1.0.0:
|
1413
1533
|
version "1.1.2"
|
@@ -1429,16 +1549,26 @@ caniuse-api@^3.0.0:
|
|
1429
1549
|
lodash.memoize "^4.1.2"
|
1430
1550
|
lodash.uniq "^4.5.0"
|
1431
1551
|
|
1432
|
-
caniuse-lite@^1.0.0
|
1433
|
-
version "1.0.
|
1434
|
-
resolved "https://registry.
|
1435
|
-
integrity sha512-
|
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
|
+
|