trestle 0.10.0 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/rspec.yml +4 -0
- data/app/assets/bundle/trestle/admin.css +3 -3
- data/app/assets/bundle/trestle/admin.js +13 -13
- data/app/assets/bundle/trestle/photoswipe-2d522a3abaa59f8a8f73.digested.js +6 -0
- data/app/helpers/trestle/avatar_helper.rb +20 -14
- data/app/helpers/trestle/card_helper.rb +27 -9
- data/app/helpers/trestle/container_helper.rb +37 -6
- data/app/helpers/trestle/display_helper.rb +11 -0
- data/app/helpers/trestle/flash_helper.rb +1 -10
- data/app/helpers/trestle/form_helper.rb +32 -18
- data/app/helpers/trestle/format_helper.rb +47 -17
- data/app/helpers/trestle/gravatar_helper.rb +48 -0
- data/app/helpers/trestle/grid_helper.rb +12 -14
- data/app/helpers/trestle/headings_helper.rb +2 -23
- data/app/helpers/trestle/i18n_helper.rb +1 -0
- data/app/helpers/trestle/icon_helper.rb +16 -3
- data/app/helpers/trestle/layout_helper.rb +1 -0
- data/app/helpers/trestle/modal_helper.rb +21 -2
- data/app/helpers/trestle/navigation_helper.rb +1 -0
- data/app/helpers/trestle/pagination_helper.rb +1 -0
- data/app/helpers/trestle/params_helper.rb +32 -0
- data/app/helpers/trestle/sort_helper.rb +38 -7
- data/app/helpers/trestle/status_helper.rb +19 -3
- data/app/helpers/trestle/tab_helper.rb +42 -7
- data/app/helpers/trestle/table_helper.rb +23 -23
- data/app/helpers/trestle/timestamp_helper.rb +18 -25
- data/app/helpers/trestle/title_helper.rb +2 -0
- data/app/helpers/trestle/toolbars_helper.rb +2 -1
- data/app/helpers/trestle/turbo/frame_helper.rb +25 -14
- data/app/helpers/trestle/url_helper.rb +124 -54
- data/app/views/kaminari/trestle/_first_page.html.erb +1 -2
- data/app/views/kaminari/trestle/_gap.html.erb +0 -1
- data/app/views/kaminari/trestle/_last_page.html.erb +1 -2
- data/app/views/kaminari/trestle/_page.html.erb +1 -2
- data/app/views/kaminari/trestle/_paginator.html.erb +0 -1
- data/app/views/layouts/trestle/admin.html.erb +3 -3
- data/app/views/layouts/trestle/modal.html.erb +2 -2
- data/app/views/trestle/application/_layout.html.erb +22 -18
- data/app/views/trestle/application/_tabs.html.erb +1 -1
- data/app/views/trestle/flash/_alert.html.erb +3 -1
- data/app/views/trestle/flash/_flash.html.erb +7 -4
- data/app/views/trestle/resource/_scopes.html.erb +3 -3
- data/app/views/trestle/resource/create.turbo_stream.erb +1 -0
- data/app/views/trestle/resource/destroy.turbo_stream.erb +2 -0
- data/app/views/trestle/resource/index.html.erb +10 -12
- data/app/views/trestle/resource/update.turbo_stream.erb +1 -0
- data/app/views/trestle/shared/_sidebar.html.erb +8 -8
- data/app/views/trestle/table/_table.html.erb +2 -2
- data/config/locales/pt-BR.yml +13 -13
- data/frontend/css/components/_scopes.scss +6 -7
- data/frontend/css/core/_theme.scss +3 -3
- data/frontend/css/layout/_sidebar.scss +2 -0
- data/frontend/js/controllers/flatpickr_controller.js +2 -2
- data/frontend/js/controllers/lightbox_controller.js +3 -3
- data/frontend/js/controllers/modal_trigger_controller.js +2 -2
- data/frontend/js/controllers/sidebar_controller.js +13 -3
- data/frontend/js/controllers/tab_errors_controller.js +2 -2
- data/frontend/js/core/backdrop.js +30 -28
- data/frontend/js/core/error_modal.js +7 -9
- data/frontend/js/core/fetch.js +2 -0
- data/lib/trestle/admin.rb +9 -2
- data/lib/trestle/configuration.rb +3 -0
- data/lib/trestle/engine.rb +1 -1
- data/lib/trestle/evaluation_context.rb +2 -4
- data/lib/trestle/form/automatic.rb +1 -1
- data/lib/trestle/form/field.rb +1 -1
- data/lib/trestle/form/fields/check_box.rb +1 -1
- data/lib/trestle/form/fields/collection_check_boxes.rb +1 -1
- data/lib/trestle/form/fields/collection_radio_buttons.rb +1 -1
- data/lib/trestle/form/fields/date_select.rb +1 -1
- data/lib/trestle/form/fields/datetime_select.rb +1 -1
- data/lib/trestle/form/fields/form_control.rb +2 -2
- data/lib/trestle/form/fields/form_group.rb +4 -4
- data/lib/trestle/form/fields/radio_button.rb +1 -1
- data/lib/trestle/form/fields/static_field.rb +1 -1
- data/lib/trestle/form/fields/time_select.rb +1 -1
- data/lib/trestle/form/renderer.rb +2 -4
- data/lib/trestle/hook/helpers.rb +21 -0
- data/lib/trestle/navigation/block.rb +8 -15
- data/lib/trestle/navigation/group.rb +2 -2
- data/lib/trestle/navigation/item.rb +21 -4
- data/lib/trestle/registry.rb +14 -11
- data/lib/trestle/resource/builder.rb +9 -6
- data/lib/trestle/resource/toolbar.rb +4 -4
- data/lib/trestle/resource.rb +7 -5
- data/lib/trestle/scopes/block.rb +8 -12
- data/lib/trestle/scopes/definition.rb +6 -2
- data/lib/trestle/scopes/scope.rb +13 -10
- data/lib/trestle/tab.rb +2 -2
- data/lib/trestle/table/column.rb +4 -3
- data/lib/trestle/table/row.rb +1 -1
- data/lib/trestle/toolbar/builder.rb +6 -6
- data/lib/trestle/toolbar/context.rb +2 -4
- data/lib/trestle/toolbar/item.rb +10 -19
- data/lib/trestle/toolbar/menu.rb +9 -9
- data/lib/trestle/version.rb +1 -1
- data/lib/trestle.rb +2 -2
- data/package.json +7 -7
- data/yarn.lock +517 -564
- metadata +5 -5
- data/app/assets/bundle/trestle/photoswipe-063ce7be40e10b3e6848.digested.js +0 -6
- data/app/views/layouts/trestle/admin.turbo_stream.erb +0 -4
data/yarn.lock
CHANGED
@@ -26,10 +26,10 @@
|
|
26
26
|
"@babel/highlight" "^7.24.7"
|
27
27
|
picocolors "^1.0.0"
|
28
28
|
|
29
|
-
"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.2":
|
30
|
-
version "7.25.
|
31
|
-
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.
|
32
|
-
integrity sha512
|
29
|
+
"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.2", "@babel/compat-data@^7.25.4":
|
30
|
+
version "7.25.4"
|
31
|
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.4.tgz#7d2a80ce229890edcf4cc259d4d696cb4dae2fcb"
|
32
|
+
integrity sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==
|
33
33
|
|
34
34
|
"@babel/core@^7.20.12":
|
35
35
|
version "7.25.2"
|
@@ -52,12 +52,12 @@
|
|
52
52
|
json5 "^2.2.3"
|
53
53
|
semver "^6.3.1"
|
54
54
|
|
55
|
-
"@babel/generator@^7.25.0":
|
56
|
-
version "7.25.
|
57
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.
|
58
|
-
integrity sha512-
|
55
|
+
"@babel/generator@^7.25.0", "@babel/generator@^7.25.6":
|
56
|
+
version "7.25.6"
|
57
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.6.tgz#0df1ad8cb32fe4d2b01d8bf437f153d19342a87c"
|
58
|
+
integrity sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==
|
59
59
|
dependencies:
|
60
|
-
"@babel/types" "^7.25.
|
60
|
+
"@babel/types" "^7.25.6"
|
61
61
|
"@jridgewell/gen-mapping" "^0.3.5"
|
62
62
|
"@jridgewell/trace-mapping" "^0.3.25"
|
63
63
|
jsesc "^2.5.1"
|
@@ -88,20 +88,20 @@
|
|
88
88
|
lru-cache "^5.1.1"
|
89
89
|
semver "^6.3.1"
|
90
90
|
|
91
|
-
"@babel/helper-create-class-features-plugin@^7.24.7":
|
92
|
-
version "7.25.
|
93
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.
|
94
|
-
integrity sha512-
|
91
|
+
"@babel/helper-create-class-features-plugin@^7.24.7", "@babel/helper-create-class-features-plugin@^7.25.4":
|
92
|
+
version "7.25.4"
|
93
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz#57eaf1af38be4224a9d9dd01ddde05b741f50e14"
|
94
|
+
integrity sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==
|
95
95
|
dependencies:
|
96
96
|
"@babel/helper-annotate-as-pure" "^7.24.7"
|
97
97
|
"@babel/helper-member-expression-to-functions" "^7.24.8"
|
98
98
|
"@babel/helper-optimise-call-expression" "^7.24.7"
|
99
99
|
"@babel/helper-replace-supers" "^7.25.0"
|
100
100
|
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
|
101
|
-
"@babel/traverse" "^7.25.
|
101
|
+
"@babel/traverse" "^7.25.4"
|
102
102
|
semver "^6.3.1"
|
103
103
|
|
104
|
-
"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.24.7", "@babel/helper-create-regexp-features-plugin@^7.25.0":
|
104
|
+
"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.24.7", "@babel/helper-create-regexp-features-plugin@^7.25.0", "@babel/helper-create-regexp-features-plugin@^7.25.2":
|
105
105
|
version "7.25.2"
|
106
106
|
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz#24c75974ed74183797ffd5f134169316cd1808d9"
|
107
107
|
integrity sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==
|
@@ -252,12 +252,12 @@
|
|
252
252
|
js-tokens "^4.0.0"
|
253
253
|
picocolors "^1.0.0"
|
254
254
|
|
255
|
-
"@babel/parser@^7.25.0", "@babel/parser@^7.25.
|
256
|
-
version "7.25.
|
257
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.
|
258
|
-
integrity sha512-
|
255
|
+
"@babel/parser@^7.25.0", "@babel/parser@^7.25.6":
|
256
|
+
version "7.25.6"
|
257
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.6.tgz#85660c5ef388cbbf6e3d2a694ee97a38f18afe2f"
|
258
|
+
integrity sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==
|
259
259
|
dependencies:
|
260
|
-
"@babel/types" "^7.25.
|
260
|
+
"@babel/types" "^7.25.6"
|
261
261
|
|
262
262
|
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.3":
|
263
263
|
version "7.25.3"
|
@@ -339,18 +339,18 @@
|
|
339
339
|
"@babel/helper-plugin-utils" "^7.8.3"
|
340
340
|
|
341
341
|
"@babel/plugin-syntax-import-assertions@^7.24.7":
|
342
|
-
version "7.
|
343
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.
|
344
|
-
integrity sha512-
|
342
|
+
version "7.25.6"
|
343
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.25.6.tgz#bb918905c58711b86f9710d74a3744b6c56573b5"
|
344
|
+
integrity sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==
|
345
345
|
dependencies:
|
346
|
-
"@babel/helper-plugin-utils" "^7.24.
|
346
|
+
"@babel/helper-plugin-utils" "^7.24.8"
|
347
347
|
|
348
348
|
"@babel/plugin-syntax-import-attributes@^7.24.7":
|
349
|
-
version "7.
|
350
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.
|
351
|
-
integrity sha512-
|
349
|
+
version "7.25.6"
|
350
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz#6d4c78f042db0e82fd6436cd65fec5dc78ad2bde"
|
351
|
+
integrity sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==
|
352
352
|
dependencies:
|
353
|
-
"@babel/helper-plugin-utils" "^7.24.
|
353
|
+
"@babel/helper-plugin-utils" "^7.24.8"
|
354
354
|
|
355
355
|
"@babel/plugin-syntax-import-meta@^7.10.4":
|
356
356
|
version "7.10.4"
|
@@ -437,15 +437,15 @@
|
|
437
437
|
dependencies:
|
438
438
|
"@babel/helper-plugin-utils" "^7.24.7"
|
439
439
|
|
440
|
-
"@babel/plugin-transform-async-generator-functions@^7.25.
|
441
|
-
version "7.25.
|
442
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.
|
443
|
-
integrity sha512-
|
440
|
+
"@babel/plugin-transform-async-generator-functions@^7.25.4":
|
441
|
+
version "7.25.4"
|
442
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.4.tgz#2afd4e639e2d055776c9f091b6c0c180ed8cf083"
|
443
|
+
integrity sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==
|
444
444
|
dependencies:
|
445
445
|
"@babel/helper-plugin-utils" "^7.24.8"
|
446
446
|
"@babel/helper-remap-async-to-generator" "^7.25.0"
|
447
447
|
"@babel/plugin-syntax-async-generators" "^7.8.4"
|
448
|
-
"@babel/traverse" "^7.25.
|
448
|
+
"@babel/traverse" "^7.25.4"
|
449
449
|
|
450
450
|
"@babel/plugin-transform-async-to-generator@^7.24.7":
|
451
451
|
version "7.24.7"
|
@@ -470,13 +470,13 @@
|
|
470
470
|
dependencies:
|
471
471
|
"@babel/helper-plugin-utils" "^7.24.8"
|
472
472
|
|
473
|
-
"@babel/plugin-transform-class-properties@^7.
|
474
|
-
version "7.
|
475
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.
|
476
|
-
integrity sha512-
|
473
|
+
"@babel/plugin-transform-class-properties@^7.25.4":
|
474
|
+
version "7.25.4"
|
475
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.4.tgz#bae7dbfcdcc2e8667355cd1fb5eda298f05189fd"
|
476
|
+
integrity sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==
|
477
477
|
dependencies:
|
478
|
-
"@babel/helper-create-class-features-plugin" "^7.
|
479
|
-
"@babel/helper-plugin-utils" "^7.24.
|
478
|
+
"@babel/helper-create-class-features-plugin" "^7.25.4"
|
479
|
+
"@babel/helper-plugin-utils" "^7.24.8"
|
480
480
|
|
481
481
|
"@babel/plugin-transform-class-static-block@^7.24.7":
|
482
482
|
version "7.24.7"
|
@@ -487,16 +487,16 @@
|
|
487
487
|
"@babel/helper-plugin-utils" "^7.24.7"
|
488
488
|
"@babel/plugin-syntax-class-static-block" "^7.14.5"
|
489
489
|
|
490
|
-
"@babel/plugin-transform-classes@^7.25.
|
491
|
-
version "7.25.
|
492
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.
|
493
|
-
integrity sha512-
|
490
|
+
"@babel/plugin-transform-classes@^7.25.4":
|
491
|
+
version "7.25.4"
|
492
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz#d29dbb6a72d79f359952ad0b66d88518d65ef89a"
|
493
|
+
integrity sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==
|
494
494
|
dependencies:
|
495
495
|
"@babel/helper-annotate-as-pure" "^7.24.7"
|
496
|
-
"@babel/helper-compilation-targets" "^7.
|
496
|
+
"@babel/helper-compilation-targets" "^7.25.2"
|
497
497
|
"@babel/helper-plugin-utils" "^7.24.8"
|
498
498
|
"@babel/helper-replace-supers" "^7.25.0"
|
499
|
-
"@babel/traverse" "^7.25.
|
499
|
+
"@babel/traverse" "^7.25.4"
|
500
500
|
globals "^11.1.0"
|
501
501
|
|
502
502
|
"@babel/plugin-transform-computed-properties@^7.24.7":
|
@@ -716,13 +716,13 @@
|
|
716
716
|
dependencies:
|
717
717
|
"@babel/helper-plugin-utils" "^7.24.7"
|
718
718
|
|
719
|
-
"@babel/plugin-transform-private-methods@^7.
|
720
|
-
version "7.
|
721
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.
|
722
|
-
integrity sha512-
|
719
|
+
"@babel/plugin-transform-private-methods@^7.25.4":
|
720
|
+
version "7.25.4"
|
721
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.4.tgz#9bbefbe3649f470d681997e0b64a4b254d877242"
|
722
|
+
integrity sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==
|
723
723
|
dependencies:
|
724
|
-
"@babel/helper-create-class-features-plugin" "^7.
|
725
|
-
"@babel/helper-plugin-utils" "^7.24.
|
724
|
+
"@babel/helper-create-class-features-plugin" "^7.25.4"
|
725
|
+
"@babel/helper-plugin-utils" "^7.24.8"
|
726
726
|
|
727
727
|
"@babel/plugin-transform-private-property-in-object@^7.24.7":
|
728
728
|
version "7.24.7"
|
@@ -815,20 +815,20 @@
|
|
815
815
|
"@babel/helper-create-regexp-features-plugin" "^7.24.7"
|
816
816
|
"@babel/helper-plugin-utils" "^7.24.7"
|
817
817
|
|
818
|
-
"@babel/plugin-transform-unicode-sets-regex@^7.
|
819
|
-
version "7.
|
820
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.
|
821
|
-
integrity sha512-
|
818
|
+
"@babel/plugin-transform-unicode-sets-regex@^7.25.4":
|
819
|
+
version "7.25.4"
|
820
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.4.tgz#be664c2a0697ffacd3423595d5edef6049e8946c"
|
821
|
+
integrity sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==
|
822
822
|
dependencies:
|
823
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
824
|
-
"@babel/helper-plugin-utils" "^7.24.
|
823
|
+
"@babel/helper-create-regexp-features-plugin" "^7.25.2"
|
824
|
+
"@babel/helper-plugin-utils" "^7.24.8"
|
825
825
|
|
826
826
|
"@babel/preset-env@^7.20.2":
|
827
|
-
version "7.25.
|
828
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.
|
829
|
-
integrity sha512-
|
827
|
+
version "7.25.4"
|
828
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.4.tgz#be23043d43a34a2721cd0f676c7ba6f1481f6af6"
|
829
|
+
integrity sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==
|
830
830
|
dependencies:
|
831
|
-
"@babel/compat-data" "^7.25.
|
831
|
+
"@babel/compat-data" "^7.25.4"
|
832
832
|
"@babel/helper-compilation-targets" "^7.25.2"
|
833
833
|
"@babel/helper-plugin-utils" "^7.24.8"
|
834
834
|
"@babel/helper-validator-option" "^7.24.8"
|
@@ -857,13 +857,13 @@
|
|
857
857
|
"@babel/plugin-syntax-top-level-await" "^7.14.5"
|
858
858
|
"@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
|
859
859
|
"@babel/plugin-transform-arrow-functions" "^7.24.7"
|
860
|
-
"@babel/plugin-transform-async-generator-functions" "^7.25.
|
860
|
+
"@babel/plugin-transform-async-generator-functions" "^7.25.4"
|
861
861
|
"@babel/plugin-transform-async-to-generator" "^7.24.7"
|
862
862
|
"@babel/plugin-transform-block-scoped-functions" "^7.24.7"
|
863
863
|
"@babel/plugin-transform-block-scoping" "^7.25.0"
|
864
|
-
"@babel/plugin-transform-class-properties" "^7.
|
864
|
+
"@babel/plugin-transform-class-properties" "^7.25.4"
|
865
865
|
"@babel/plugin-transform-class-static-block" "^7.24.7"
|
866
|
-
"@babel/plugin-transform-classes" "^7.25.
|
866
|
+
"@babel/plugin-transform-classes" "^7.25.4"
|
867
867
|
"@babel/plugin-transform-computed-properties" "^7.24.7"
|
868
868
|
"@babel/plugin-transform-destructuring" "^7.24.8"
|
869
869
|
"@babel/plugin-transform-dotall-regex" "^7.24.7"
|
@@ -891,7 +891,7 @@
|
|
891
891
|
"@babel/plugin-transform-optional-catch-binding" "^7.24.7"
|
892
892
|
"@babel/plugin-transform-optional-chaining" "^7.24.8"
|
893
893
|
"@babel/plugin-transform-parameters" "^7.24.7"
|
894
|
-
"@babel/plugin-transform-private-methods" "^7.
|
894
|
+
"@babel/plugin-transform-private-methods" "^7.25.4"
|
895
895
|
"@babel/plugin-transform-private-property-in-object" "^7.24.7"
|
896
896
|
"@babel/plugin-transform-property-literals" "^7.24.7"
|
897
897
|
"@babel/plugin-transform-regenerator" "^7.24.7"
|
@@ -904,10 +904,10 @@
|
|
904
904
|
"@babel/plugin-transform-unicode-escapes" "^7.24.7"
|
905
905
|
"@babel/plugin-transform-unicode-property-regex" "^7.24.7"
|
906
906
|
"@babel/plugin-transform-unicode-regex" "^7.24.7"
|
907
|
-
"@babel/plugin-transform-unicode-sets-regex" "^7.
|
907
|
+
"@babel/plugin-transform-unicode-sets-regex" "^7.25.4"
|
908
908
|
"@babel/preset-modules" "0.1.6-no-external-plugins"
|
909
909
|
babel-plugin-polyfill-corejs2 "^0.4.10"
|
910
|
-
babel-plugin-polyfill-corejs3 "^0.10.
|
910
|
+
babel-plugin-polyfill-corejs3 "^0.10.6"
|
911
911
|
babel-plugin-polyfill-regenerator "^0.6.1"
|
912
912
|
core-js-compat "^3.37.1"
|
913
913
|
semver "^6.3.1"
|
@@ -934,9 +934,9 @@
|
|
934
934
|
regenerator-runtime "^0.14.0"
|
935
935
|
|
936
936
|
"@babel/runtime@^7.8.4":
|
937
|
-
version "7.25.
|
938
|
-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.
|
939
|
-
integrity sha512-
|
937
|
+
version "7.25.6"
|
938
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.6.tgz#9afc3289f7184d8d7f98b099884c26317b9264d2"
|
939
|
+
integrity sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==
|
940
940
|
dependencies:
|
941
941
|
regenerator-runtime "^0.14.0"
|
942
942
|
|
@@ -949,16 +949,16 @@
|
|
949
949
|
"@babel/parser" "^7.25.0"
|
950
950
|
"@babel/types" "^7.25.0"
|
951
951
|
|
952
|
-
"@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.1", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.3":
|
953
|
-
version "7.25.
|
954
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.
|
955
|
-
integrity sha512-
|
952
|
+
"@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.1", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.3", "@babel/traverse@^7.25.4":
|
953
|
+
version "7.25.6"
|
954
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.6.tgz#04fad980e444f182ecf1520504941940a90fea41"
|
955
|
+
integrity sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==
|
956
956
|
dependencies:
|
957
957
|
"@babel/code-frame" "^7.24.7"
|
958
|
-
"@babel/generator" "^7.25.
|
959
|
-
"@babel/parser" "^7.25.
|
958
|
+
"@babel/generator" "^7.25.6"
|
959
|
+
"@babel/parser" "^7.25.6"
|
960
960
|
"@babel/template" "^7.25.0"
|
961
|
-
"@babel/types" "^7.25.
|
961
|
+
"@babel/types" "^7.25.6"
|
962
962
|
debug "^4.3.1"
|
963
963
|
globals "^11.1.0"
|
964
964
|
|
@@ -971,10 +971,10 @@
|
|
971
971
|
"@babel/helper-validator-identifier" "^7.24.7"
|
972
972
|
to-fast-properties "^2.0.0"
|
973
973
|
|
974
|
-
"@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.4.4":
|
975
|
-
version "7.25.
|
976
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.
|
977
|
-
integrity sha512
|
974
|
+
"@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.6", "@babel/types@^7.4.4":
|
975
|
+
version "7.25.6"
|
976
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.6.tgz#893942ddb858f32ae7a004ec9d3a76b3463ef8e6"
|
977
|
+
integrity sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==
|
978
978
|
dependencies:
|
979
979
|
"@babel/helper-string-parser" "^7.24.8"
|
980
980
|
"@babel/helper-validator-identifier" "^7.24.7"
|
@@ -1001,23 +1001,23 @@
|
|
1001
1001
|
integrity sha512-eGeIqNOQpXoPAIP7tC1+1Yc1yl1xnwYqg+3mzqxyrbE5pg5YFBZcA6YoTiByJB6DKAEsiWtl6tjTJS4IYtbB7A==
|
1002
1002
|
|
1003
1003
|
"@hotwired/turbo@^8.0.2":
|
1004
|
-
version "8.0.
|
1005
|
-
resolved "https://registry.yarnpkg.com/@hotwired/turbo/-/turbo-8.0.
|
1006
|
-
integrity sha512-
|
1004
|
+
version "8.0.10"
|
1005
|
+
resolved "https://registry.yarnpkg.com/@hotwired/turbo/-/turbo-8.0.10.tgz#d95569d259f0daad6e824ee1ada877ff94beb72b"
|
1006
|
+
integrity sha512-xen1YhNQirAHlA8vr/444XsTNITC1Il2l/Vx4w8hAWPpI5nQO78mVHNsmFuayETodzPwh25ob2TgfCEV/Loiog==
|
1007
1007
|
|
1008
|
-
"@jest/schemas@^29.6.
|
1009
|
-
version "29.6.
|
1010
|
-
resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.
|
1011
|
-
integrity sha512-
|
1008
|
+
"@jest/schemas@^29.6.3":
|
1009
|
+
version "29.6.3"
|
1010
|
+
resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03"
|
1011
|
+
integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==
|
1012
1012
|
dependencies:
|
1013
1013
|
"@sinclair/typebox" "^0.27.8"
|
1014
1014
|
|
1015
|
-
"@jest/types@^29.6.
|
1016
|
-
version "29.6.
|
1017
|
-
resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.
|
1018
|
-
integrity sha512-
|
1015
|
+
"@jest/types@^29.6.3":
|
1016
|
+
version "29.6.3"
|
1017
|
+
resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59"
|
1018
|
+
integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==
|
1019
1019
|
dependencies:
|
1020
|
-
"@jest/schemas" "^29.6.
|
1020
|
+
"@jest/schemas" "^29.6.3"
|
1021
1021
|
"@types/istanbul-lib-coverage" "^2.0.0"
|
1022
1022
|
"@types/istanbul-reports" "^3.0.0"
|
1023
1023
|
"@types/node" "*"
|
@@ -1056,14 +1056,6 @@
|
|
1056
1056
|
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a"
|
1057
1057
|
integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==
|
1058
1058
|
|
1059
|
-
"@jridgewell/trace-mapping@^0.3.18":
|
1060
|
-
version "0.3.19"
|
1061
|
-
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811"
|
1062
|
-
integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==
|
1063
|
-
dependencies:
|
1064
|
-
"@jridgewell/resolve-uri" "^3.1.0"
|
1065
|
-
"@jridgewell/sourcemap-codec" "^1.4.14"
|
1066
|
-
|
1067
1059
|
"@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
|
1068
1060
|
version "0.3.25"
|
1069
1061
|
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
|
@@ -1108,31 +1100,20 @@
|
|
1108
1100
|
resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e"
|
1109
1101
|
integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==
|
1110
1102
|
|
1103
|
+
"@sindresorhus/merge-streams@^2.1.0":
|
1104
|
+
version "2.3.0"
|
1105
|
+
resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz#719df7fb41766bc143369eaa0dd56d8dc87c9958"
|
1106
|
+
integrity sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==
|
1107
|
+
|
1111
1108
|
"@trysound/sax@0.2.0":
|
1112
1109
|
version "0.2.0"
|
1113
1110
|
resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
|
1114
1111
|
integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
|
1115
1112
|
|
1116
|
-
"@types/
|
1117
|
-
version "
|
1118
|
-
resolved "https://registry.yarnpkg.com/@types/
|
1119
|
-
integrity sha512-
|
1120
|
-
dependencies:
|
1121
|
-
"@types/eslint" "*"
|
1122
|
-
"@types/estree" "*"
|
1123
|
-
|
1124
|
-
"@types/eslint@*":
|
1125
|
-
version "9.6.0"
|
1126
|
-
resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-9.6.0.tgz#51d4fe4d0316da9e9f2c80884f2c20ed5fb022ff"
|
1127
|
-
integrity sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==
|
1128
|
-
dependencies:
|
1129
|
-
"@types/estree" "*"
|
1130
|
-
"@types/json-schema" "*"
|
1131
|
-
|
1132
|
-
"@types/estree@*", "@types/estree@^1.0.5":
|
1133
|
-
version "1.0.5"
|
1134
|
-
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4"
|
1135
|
-
integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
|
1113
|
+
"@types/estree@^1.0.5":
|
1114
|
+
version "1.0.6"
|
1115
|
+
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50"
|
1116
|
+
integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==
|
1136
1117
|
|
1137
1118
|
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
|
1138
1119
|
version "2.0.4"
|
@@ -1153,17 +1134,17 @@
|
|
1153
1134
|
dependencies:
|
1154
1135
|
"@types/istanbul-lib-report" "*"
|
1155
1136
|
|
1156
|
-
"@types/json-schema
|
1137
|
+
"@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
|
1157
1138
|
version "7.0.15"
|
1158
1139
|
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
|
1159
1140
|
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
|
1160
1141
|
|
1161
1142
|
"@types/node@*":
|
1162
|
-
version "22.
|
1163
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.
|
1164
|
-
integrity sha512-
|
1143
|
+
version "22.7.3"
|
1144
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.7.3.tgz#7ddf1ddf13078692b4cfadb835852b2a718ee1ef"
|
1145
|
+
integrity sha512-qXKfhXXqGTyBskvWEzJZPUxSslAiLaB6JGP1ic/XTH9ctGgzdgYguuLP1C601aRTSDNlLb0jbKqXjZ48GNraSA==
|
1165
1146
|
dependencies:
|
1166
|
-
undici-types "~6.
|
1147
|
+
undici-types "~6.19.2"
|
1167
1148
|
|
1168
1149
|
"@types/yargs-parser@*":
|
1169
1150
|
version "21.0.0"
|
@@ -1373,14 +1354,14 @@ ajv@^6.12.5:
|
|
1373
1354
|
uri-js "^4.2.2"
|
1374
1355
|
|
1375
1356
|
ajv@^8.0.0, ajv@^8.9.0:
|
1376
|
-
version "8.
|
1377
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.
|
1378
|
-
integrity sha512-
|
1357
|
+
version "8.17.1"
|
1358
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
|
1359
|
+
integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
|
1379
1360
|
dependencies:
|
1380
1361
|
fast-deep-equal "^3.1.3"
|
1362
|
+
fast-uri "^3.0.1"
|
1381
1363
|
json-schema-traverse "^1.0.0"
|
1382
1364
|
require-from-string "^2.0.2"
|
1383
|
-
uri-js "^4.4.1"
|
1384
1365
|
|
1385
1366
|
ansi-styles@^3.2.1:
|
1386
1367
|
version "3.2.1"
|
@@ -1396,14 +1377,6 @@ ansi-styles@^4.1.0:
|
|
1396
1377
|
dependencies:
|
1397
1378
|
color-convert "^2.0.1"
|
1398
1379
|
|
1399
|
-
anymatch@~3.1.2:
|
1400
|
-
version "3.1.3"
|
1401
|
-
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
|
1402
|
-
integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
|
1403
|
-
dependencies:
|
1404
|
-
normalize-path "^3.0.0"
|
1405
|
-
picomatch "^2.0.4"
|
1406
|
-
|
1407
1380
|
argparse@^2.0.1:
|
1408
1381
|
version "2.0.1"
|
1409
1382
|
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
|
@@ -1422,9 +1395,9 @@ autoprefixer@^10.4.13:
|
|
1422
1395
|
postcss-value-parser "^4.2.0"
|
1423
1396
|
|
1424
1397
|
babel-loader@^9.1.2:
|
1425
|
-
version "9.1
|
1426
|
-
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.
|
1427
|
-
integrity sha512-
|
1398
|
+
version "9.2.1"
|
1399
|
+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.2.1.tgz#04c7835db16c246dd19ba0914418f3937797587b"
|
1400
|
+
integrity sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==
|
1428
1401
|
dependencies:
|
1429
1402
|
find-cache-dir "^4.0.0"
|
1430
1403
|
schema-utils "^4.0.0"
|
@@ -1438,7 +1411,7 @@ babel-plugin-polyfill-corejs2@^0.4.10:
|
|
1438
1411
|
"@babel/helper-define-polyfill-provider" "^0.6.2"
|
1439
1412
|
semver "^6.3.1"
|
1440
1413
|
|
1441
|
-
babel-plugin-polyfill-corejs3@^0.10.
|
1414
|
+
babel-plugin-polyfill-corejs3@^0.10.6:
|
1442
1415
|
version "0.10.6"
|
1443
1416
|
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz#2deda57caef50f59c525aeb4964d3b2f867710c7"
|
1444
1417
|
integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==
|
@@ -1458,11 +1431,6 @@ bignumber.js@*:
|
|
1458
1431
|
resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.2.tgz#b7c4242259c008903b13707983b5f4bbd31eda0c"
|
1459
1432
|
integrity sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==
|
1460
1433
|
|
1461
|
-
binary-extensions@^2.0.0:
|
1462
|
-
version "2.3.0"
|
1463
|
-
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522"
|
1464
|
-
integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
|
1465
|
-
|
1466
1434
|
boolbase@^1.0.0:
|
1467
1435
|
version "1.0.0"
|
1468
1436
|
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
|
@@ -1478,21 +1446,14 @@ bootstrap@~5.3.1:
|
|
1478
1446
|
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.3.3.tgz#de35e1a765c897ac940021900fcbb831602bac38"
|
1479
1447
|
integrity sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==
|
1480
1448
|
|
1481
|
-
braces@^3.0.
|
1482
|
-
version "3.0.2"
|
1483
|
-
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
1484
|
-
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
|
1485
|
-
dependencies:
|
1486
|
-
fill-range "^7.0.1"
|
1487
|
-
|
1488
|
-
braces@~3.0.2:
|
1449
|
+
braces@^3.0.3:
|
1489
1450
|
version "3.0.3"
|
1490
1451
|
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
|
1491
1452
|
integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
|
1492
1453
|
dependencies:
|
1493
1454
|
fill-range "^7.1.1"
|
1494
1455
|
|
1495
|
-
browserslist@^4.0.0
|
1456
|
+
browserslist@^4.0.0:
|
1496
1457
|
version "4.21.10"
|
1497
1458
|
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0"
|
1498
1459
|
integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==
|
@@ -1503,12 +1464,12 @@ browserslist@^4.0.0, browserslist@^4.21.4:
|
|
1503
1464
|
update-browserslist-db "^1.0.11"
|
1504
1465
|
|
1505
1466
|
browserslist@^4.21.10, browserslist@^4.23.1, browserslist@^4.23.3:
|
1506
|
-
version "4.
|
1507
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
1508
|
-
integrity sha512-
|
1467
|
+
version "4.24.0"
|
1468
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.0.tgz#a1325fe4bc80b64fda169629fc01b3d6cecd38d4"
|
1469
|
+
integrity sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==
|
1509
1470
|
dependencies:
|
1510
|
-
caniuse-lite "^1.0.
|
1511
|
-
electron-to-chromium "^1.5.
|
1471
|
+
caniuse-lite "^1.0.30001663"
|
1472
|
+
electron-to-chromium "^1.5.28"
|
1512
1473
|
node-releases "^2.0.18"
|
1513
1474
|
update-browserslist-db "^1.1.0"
|
1514
1475
|
|
@@ -1537,10 +1498,10 @@ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001517:
|
|
1537
1498
|
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001643.tgz"
|
1538
1499
|
integrity sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==
|
1539
1500
|
|
1540
|
-
caniuse-lite@^1.0.30001646:
|
1541
|
-
version "1.0.
|
1542
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1543
|
-
integrity sha512-
|
1501
|
+
caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001663:
|
1502
|
+
version "1.0.30001664"
|
1503
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001664.tgz#d588d75c9682d3301956b05a3749652a80677df4"
|
1504
|
+
integrity sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==
|
1544
1505
|
|
1545
1506
|
chalk@^2.4.2:
|
1546
1507
|
version "2.4.2"
|
@@ -1559,20 +1520,12 @@ chalk@^4.0.0:
|
|
1559
1520
|
ansi-styles "^4.1.0"
|
1560
1521
|
supports-color "^7.1.0"
|
1561
1522
|
|
1562
|
-
|
1563
|
-
version "
|
1564
|
-
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-
|
1565
|
-
integrity sha512-
|
1566
|
-
dependencies:
|
1567
|
-
|
1568
|
-
braces "~3.0.2"
|
1569
|
-
glob-parent "~5.1.2"
|
1570
|
-
is-binary-path "~2.1.0"
|
1571
|
-
is-glob "~4.0.1"
|
1572
|
-
normalize-path "~3.0.0"
|
1573
|
-
readdirp "~3.6.0"
|
1574
|
-
optionalDependencies:
|
1575
|
-
fsevents "~2.3.2"
|
1523
|
+
chokidar@^4.0.0:
|
1524
|
+
version "4.0.1"
|
1525
|
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.1.tgz#4a6dff66798fb0f72a94f616abbd7e1a19f31d41"
|
1526
|
+
integrity sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==
|
1527
|
+
dependencies:
|
1528
|
+
readdirp "^4.0.1"
|
1576
1529
|
|
1577
1530
|
chrome-trace-event@^1.0.2:
|
1578
1531
|
version "1.0.4"
|
@@ -1617,7 +1570,7 @@ color-name@~1.1.4:
|
|
1617
1570
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
1618
1571
|
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
1619
1572
|
|
1620
|
-
colord@^2.9.
|
1573
|
+
colord@^2.9.3:
|
1621
1574
|
version "2.9.3"
|
1622
1575
|
resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43"
|
1623
1576
|
integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==
|
@@ -1652,34 +1605,34 @@ convert-source-map@^2.0.0:
|
|
1652
1605
|
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
|
1653
1606
|
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
|
1654
1607
|
|
1655
|
-
copy-webpack-plugin@^
|
1656
|
-
version "
|
1657
|
-
resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-
|
1658
|
-
integrity sha512-
|
1608
|
+
copy-webpack-plugin@^12.0.2:
|
1609
|
+
version "12.0.2"
|
1610
|
+
resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-12.0.2.tgz#935e57b8e6183c82f95bd937df658a59f6a2da28"
|
1611
|
+
integrity sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==
|
1659
1612
|
dependencies:
|
1660
|
-
fast-glob "^3.2
|
1613
|
+
fast-glob "^3.3.2"
|
1661
1614
|
glob-parent "^6.0.1"
|
1662
|
-
globby "^
|
1615
|
+
globby "^14.0.0"
|
1663
1616
|
normalize-path "^3.0.0"
|
1664
|
-
schema-utils "^4.
|
1665
|
-
serialize-javascript "^6.0.
|
1617
|
+
schema-utils "^4.2.0"
|
1618
|
+
serialize-javascript "^6.0.2"
|
1666
1619
|
|
1667
1620
|
core-js-compat@^3.37.1, core-js-compat@^3.38.0:
|
1668
|
-
version "3.38.
|
1669
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.38.
|
1670
|
-
integrity sha512-
|
1621
|
+
version "3.38.1"
|
1622
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.38.1.tgz#2bc7a298746ca5a7bcb9c164bcb120f2ebc09a09"
|
1623
|
+
integrity sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==
|
1671
1624
|
dependencies:
|
1672
1625
|
browserslist "^4.23.3"
|
1673
1626
|
|
1674
|
-
cosmiconfig@^
|
1675
|
-
version "
|
1676
|
-
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-
|
1677
|
-
integrity sha512-
|
1627
|
+
cosmiconfig@^9.0.0:
|
1628
|
+
version "9.0.0"
|
1629
|
+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-9.0.0.tgz#34c3fc58287b915f3ae905ab6dc3de258b55ad9d"
|
1630
|
+
integrity sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==
|
1678
1631
|
dependencies:
|
1632
|
+
env-paths "^2.2.1"
|
1679
1633
|
import-fresh "^3.3.0"
|
1680
1634
|
js-yaml "^4.1.0"
|
1681
1635
|
parse-json "^5.2.0"
|
1682
|
-
path-type "^4.0.0"
|
1683
1636
|
|
1684
1637
|
cross-spawn@^7.0.3:
|
1685
1638
|
version "7.0.3"
|
@@ -1690,15 +1643,15 @@ cross-spawn@^7.0.3:
|
|
1690
1643
|
shebang-command "^2.0.0"
|
1691
1644
|
which "^2.0.1"
|
1692
1645
|
|
1693
|
-
css-declaration-sorter@^
|
1694
|
-
version "
|
1695
|
-
resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-
|
1696
|
-
integrity sha512-
|
1646
|
+
css-declaration-sorter@^7.2.0:
|
1647
|
+
version "7.2.0"
|
1648
|
+
resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz#6dec1c9523bc4a643e088aab8f09e67a54961024"
|
1649
|
+
integrity sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==
|
1697
1650
|
|
1698
|
-
css-loader@^
|
1699
|
-
version "
|
1700
|
-
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-
|
1701
|
-
integrity sha512-
|
1651
|
+
css-loader@^7.1.2:
|
1652
|
+
version "7.1.2"
|
1653
|
+
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-7.1.2.tgz#64671541c6efe06b0e22e750503106bdd86880f8"
|
1654
|
+
integrity sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==
|
1702
1655
|
dependencies:
|
1703
1656
|
icss-utils "^5.1.0"
|
1704
1657
|
postcss "^8.4.33"
|
@@ -1709,17 +1662,17 @@ css-loader@^6.7.3:
|
|
1709
1662
|
postcss-value-parser "^4.2.0"
|
1710
1663
|
semver "^7.5.4"
|
1711
1664
|
|
1712
|
-
css-minimizer-webpack-plugin@^
|
1713
|
-
version "
|
1714
|
-
resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-
|
1715
|
-
integrity sha512-
|
1716
|
-
dependencies:
|
1717
|
-
"@jridgewell/trace-mapping" "^0.3.
|
1718
|
-
cssnano "^
|
1719
|
-
jest-worker "^29.
|
1720
|
-
postcss "^8.4.
|
1721
|
-
schema-utils "^4.0
|
1722
|
-
serialize-javascript "^6.0.
|
1665
|
+
css-minimizer-webpack-plugin@^7.0.0:
|
1666
|
+
version "7.0.0"
|
1667
|
+
resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-7.0.0.tgz#b77a3d2f7c0fd02d3ac250dcc2f79065363f3cd3"
|
1668
|
+
integrity sha512-niy66jxsQHqO+EYbhPuIhqRQ1mNcNVUHrMnkzzir9kFOERJUaQDDRhh7dKDz33kBpkWMF9M8Vx0QlDbc5AHOsw==
|
1669
|
+
dependencies:
|
1670
|
+
"@jridgewell/trace-mapping" "^0.3.25"
|
1671
|
+
cssnano "^7.0.1"
|
1672
|
+
jest-worker "^29.7.0"
|
1673
|
+
postcss "^8.4.38"
|
1674
|
+
schema-utils "^4.2.0"
|
1675
|
+
serialize-javascript "^6.0.2"
|
1723
1676
|
|
1724
1677
|
css-select@^5.1.0:
|
1725
1678
|
version "5.1.0"
|
@@ -1732,7 +1685,7 @@ css-select@^5.1.0:
|
|
1732
1685
|
domutils "^3.0.1"
|
1733
1686
|
nth-check "^2.0.1"
|
1734
1687
|
|
1735
|
-
css-tree@^2.
|
1688
|
+
css-tree@^2.3.1:
|
1736
1689
|
version "2.3.1"
|
1737
1690
|
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20"
|
1738
1691
|
integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==
|
@@ -1758,53 +1711,54 @@ cssesc@^3.0.0:
|
|
1758
1711
|
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
|
1759
1712
|
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
|
1760
1713
|
|
1761
|
-
cssnano-preset-default@^
|
1762
|
-
version "
|
1763
|
-
resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-
|
1764
|
-
integrity sha512-
|
1765
|
-
dependencies:
|
1766
|
-
|
1767
|
-
|
1768
|
-
|
1769
|
-
postcss-
|
1770
|
-
postcss-
|
1771
|
-
postcss-
|
1772
|
-
postcss-discard-
|
1773
|
-
postcss-discard-
|
1774
|
-
postcss-discard-
|
1775
|
-
postcss-
|
1776
|
-
postcss-merge-
|
1777
|
-
postcss-
|
1778
|
-
postcss-minify-
|
1779
|
-
postcss-minify-
|
1780
|
-
postcss-minify-
|
1781
|
-
postcss-
|
1782
|
-
postcss-normalize-
|
1783
|
-
postcss-normalize-
|
1784
|
-
postcss-normalize-
|
1785
|
-
postcss-normalize-
|
1786
|
-
postcss-normalize-
|
1787
|
-
postcss-normalize-
|
1788
|
-
postcss-normalize-
|
1789
|
-
postcss-normalize-
|
1790
|
-
postcss-
|
1791
|
-
postcss-
|
1792
|
-
postcss-reduce-
|
1793
|
-
postcss-
|
1794
|
-
postcss-
|
1795
|
-
|
1796
|
-
|
1797
|
-
|
1798
|
-
|
1799
|
-
|
1714
|
+
cssnano-preset-default@^7.0.6:
|
1715
|
+
version "7.0.6"
|
1716
|
+
resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-7.0.6.tgz#0220fa7507478369aa2a226bac03e1204cd024c1"
|
1717
|
+
integrity sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==
|
1718
|
+
dependencies:
|
1719
|
+
browserslist "^4.23.3"
|
1720
|
+
css-declaration-sorter "^7.2.0"
|
1721
|
+
cssnano-utils "^5.0.0"
|
1722
|
+
postcss-calc "^10.0.2"
|
1723
|
+
postcss-colormin "^7.0.2"
|
1724
|
+
postcss-convert-values "^7.0.4"
|
1725
|
+
postcss-discard-comments "^7.0.3"
|
1726
|
+
postcss-discard-duplicates "^7.0.1"
|
1727
|
+
postcss-discard-empty "^7.0.0"
|
1728
|
+
postcss-discard-overridden "^7.0.0"
|
1729
|
+
postcss-merge-longhand "^7.0.4"
|
1730
|
+
postcss-merge-rules "^7.0.4"
|
1731
|
+
postcss-minify-font-values "^7.0.0"
|
1732
|
+
postcss-minify-gradients "^7.0.0"
|
1733
|
+
postcss-minify-params "^7.0.2"
|
1734
|
+
postcss-minify-selectors "^7.0.4"
|
1735
|
+
postcss-normalize-charset "^7.0.0"
|
1736
|
+
postcss-normalize-display-values "^7.0.0"
|
1737
|
+
postcss-normalize-positions "^7.0.0"
|
1738
|
+
postcss-normalize-repeat-style "^7.0.0"
|
1739
|
+
postcss-normalize-string "^7.0.0"
|
1740
|
+
postcss-normalize-timing-functions "^7.0.0"
|
1741
|
+
postcss-normalize-unicode "^7.0.2"
|
1742
|
+
postcss-normalize-url "^7.0.0"
|
1743
|
+
postcss-normalize-whitespace "^7.0.0"
|
1744
|
+
postcss-ordered-values "^7.0.1"
|
1745
|
+
postcss-reduce-initial "^7.0.2"
|
1746
|
+
postcss-reduce-transforms "^7.0.0"
|
1747
|
+
postcss-svgo "^7.0.1"
|
1748
|
+
postcss-unique-selectors "^7.0.3"
|
1749
|
+
|
1750
|
+
cssnano-utils@^5.0.0:
|
1751
|
+
version "5.0.0"
|
1752
|
+
resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-5.0.0.tgz#b53a0343dd5d21012911882db6ae7d2eae0e3687"
|
1753
|
+
integrity sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==
|
1800
1754
|
|
1801
|
-
cssnano@^
|
1802
|
-
version "
|
1803
|
-
resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-
|
1804
|
-
integrity sha512-
|
1755
|
+
cssnano@^7.0.1:
|
1756
|
+
version "7.0.6"
|
1757
|
+
resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-7.0.6.tgz#63d54fd42bc017f6aaed69e47d9aaef85b7850ec"
|
1758
|
+
integrity sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==
|
1805
1759
|
dependencies:
|
1806
|
-
cssnano-preset-default "^
|
1807
|
-
lilconfig "^
|
1760
|
+
cssnano-preset-default "^7.0.6"
|
1761
|
+
lilconfig "^3.1.2"
|
1808
1762
|
|
1809
1763
|
csso@^5.0.5:
|
1810
1764
|
version "5.0.5"
|
@@ -1818,19 +1772,19 @@ debounce@^1.2.1:
|
|
1818
1772
|
resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5"
|
1819
1773
|
integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
|
1820
1774
|
|
1821
|
-
debug@^4.1.0
|
1775
|
+
debug@^4.1.0:
|
1822
1776
|
version "4.3.6"
|
1823
1777
|
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b"
|
1824
1778
|
integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==
|
1825
1779
|
dependencies:
|
1826
1780
|
ms "2.1.2"
|
1827
1781
|
|
1828
|
-
|
1829
|
-
version "3.
|
1830
|
-
resolved "https://registry.yarnpkg.com/
|
1831
|
-
integrity sha512-
|
1782
|
+
debug@^4.1.1, debug@^4.3.1:
|
1783
|
+
version "4.3.7"
|
1784
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52"
|
1785
|
+
integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==
|
1832
1786
|
dependencies:
|
1833
|
-
|
1787
|
+
ms "^2.1.3"
|
1834
1788
|
|
1835
1789
|
dom-serializer@^2.0.0:
|
1836
1790
|
version "2.0.0"
|
@@ -1872,12 +1826,12 @@ electron-to-chromium@^1.4.477:
|
|
1872
1826
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.665.tgz#681700bd590b0e5a3be66e3e2874ce62abcf5da5"
|
1873
1827
|
integrity sha512-UpyCWObBoD+nSZgOC2ToaIdZB0r9GhqT2WahPKiSki6ckkSuKhQNso8V2PrFcHBMleI/eqbKgVQgVC4Wni4ilw==
|
1874
1828
|
|
1875
|
-
electron-to-chromium@^1.5.
|
1876
|
-
version "1.5.
|
1877
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.
|
1878
|
-
integrity sha512-
|
1829
|
+
electron-to-chromium@^1.5.28:
|
1830
|
+
version "1.5.29"
|
1831
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.29.tgz#aa592a3caa95d07cc26a66563accf99fa573a1ee"
|
1832
|
+
integrity sha512-PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw==
|
1879
1833
|
|
1880
|
-
enhanced-resolve@^5.17.
|
1834
|
+
enhanced-resolve@^5.17.1:
|
1881
1835
|
version "5.17.1"
|
1882
1836
|
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz#67bfbbcc2f81d511be77d686a90267ef7f898a15"
|
1883
1837
|
integrity sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==
|
@@ -1890,6 +1844,11 @@ entities@^4.2.0:
|
|
1890
1844
|
resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
|
1891
1845
|
integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
|
1892
1846
|
|
1847
|
+
env-paths@^2.2.1:
|
1848
|
+
version "2.2.1"
|
1849
|
+
resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"
|
1850
|
+
integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==
|
1851
|
+
|
1893
1852
|
envinfo@^7.7.3:
|
1894
1853
|
version "7.10.0"
|
1895
1854
|
resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13"
|
@@ -1907,11 +1866,16 @@ es-module-lexer@^1.2.1:
|
|
1907
1866
|
resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.5.4.tgz#a8efec3a3da991e60efa6b633a7cad6ab8d26b78"
|
1908
1867
|
integrity sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==
|
1909
1868
|
|
1910
|
-
escalade@^3.1.1
|
1869
|
+
escalade@^3.1.1:
|
1911
1870
|
version "3.1.2"
|
1912
1871
|
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27"
|
1913
1872
|
integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==
|
1914
1873
|
|
1874
|
+
escalade@^3.1.2:
|
1875
|
+
version "3.2.0"
|
1876
|
+
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5"
|
1877
|
+
integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==
|
1878
|
+
|
1915
1879
|
escape-string-regexp@^1.0.5:
|
1916
1880
|
version "1.0.5"
|
1917
1881
|
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
@@ -1957,20 +1921,20 @@ events@^3.2.0:
|
|
1957
1921
|
resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
|
1958
1922
|
integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
|
1959
1923
|
|
1960
|
-
expose-loader@^
|
1961
|
-
version "
|
1962
|
-
resolved "https://registry.yarnpkg.com/expose-loader/-/expose-loader-
|
1963
|
-
integrity sha512-
|
1924
|
+
expose-loader@^5.0.0:
|
1925
|
+
version "5.0.0"
|
1926
|
+
resolved "https://registry.yarnpkg.com/expose-loader/-/expose-loader-5.0.0.tgz#41368903eb1246b7c09fecf32c5cb3f67d0260e6"
|
1927
|
+
integrity sha512-BtUqYRmvx1bEY5HN6eK2I9URUZgNmN0x5UANuocaNjXSgfoDlkXt+wyEMe7i5DzDNh2BKJHPc5F4rBwEdSQX6w==
|
1964
1928
|
|
1965
1929
|
fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
|
1966
1930
|
version "3.1.3"
|
1967
1931
|
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
|
1968
1932
|
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
|
1969
1933
|
|
1970
|
-
fast-glob@^3.
|
1971
|
-
version "3.3.
|
1972
|
-
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.
|
1973
|
-
integrity sha512-
|
1934
|
+
fast-glob@^3.3.2:
|
1935
|
+
version "3.3.2"
|
1936
|
+
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
|
1937
|
+
integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
|
1974
1938
|
dependencies:
|
1975
1939
|
"@nodelib/fs.stat" "^2.0.2"
|
1976
1940
|
"@nodelib/fs.walk" "^1.2.3"
|
@@ -1983,6 +1947,11 @@ fast-json-stable-stringify@^2.0.0:
|
|
1983
1947
|
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
|
1984
1948
|
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
|
1985
1949
|
|
1950
|
+
fast-uri@^3.0.1:
|
1951
|
+
version "3.0.2"
|
1952
|
+
resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.2.tgz#d78b298cf70fd3b752fd951175a3da6a7b48f024"
|
1953
|
+
integrity sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==
|
1954
|
+
|
1986
1955
|
fastest-levenshtein@^1.0.12:
|
1987
1956
|
version "1.0.16"
|
1988
1957
|
resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5"
|
@@ -1995,7 +1964,7 @@ fastq@^1.6.0:
|
|
1995
1964
|
dependencies:
|
1996
1965
|
reusify "^1.0.4"
|
1997
1966
|
|
1998
|
-
fill-range@^7.
|
1967
|
+
fill-range@^7.1.1:
|
1999
1968
|
version "7.1.1"
|
2000
1969
|
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
|
2001
1970
|
integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
|
@@ -2036,11 +2005,6 @@ fraction.js@^4.3.7:
|
|
2036
2005
|
resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7"
|
2037
2006
|
integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==
|
2038
2007
|
|
2039
|
-
fsevents@~2.3.2:
|
2040
|
-
version "2.3.3"
|
2041
|
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
|
2042
|
-
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
|
2043
|
-
|
2044
2008
|
function-bind@^1.1.2:
|
2045
2009
|
version "1.1.2"
|
2046
2010
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
|
@@ -2058,7 +2022,7 @@ get-video-id@^4.1.7:
|
|
2058
2022
|
dependencies:
|
2059
2023
|
"@babel/runtime" "^7.23.9"
|
2060
2024
|
|
2061
|
-
glob-parent@^5.1.2
|
2025
|
+
glob-parent@^5.1.2:
|
2062
2026
|
version "5.1.2"
|
2063
2027
|
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
|
2064
2028
|
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
|
@@ -2082,16 +2046,17 @@ globals@^11.1.0:
|
|
2082
2046
|
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
2083
2047
|
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
|
2084
2048
|
|
2085
|
-
globby@^
|
2086
|
-
version "
|
2087
|
-
resolved "https://registry.yarnpkg.com/globby/-/globby-
|
2088
|
-
integrity sha512-
|
2049
|
+
globby@^14.0.0:
|
2050
|
+
version "14.0.2"
|
2051
|
+
resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.2.tgz#06554a54ccfe9264e5a9ff8eded46aa1e306482f"
|
2052
|
+
integrity sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==
|
2089
2053
|
dependencies:
|
2090
|
-
|
2091
|
-
fast-glob "^3.3.
|
2054
|
+
"@sindresorhus/merge-streams" "^2.1.0"
|
2055
|
+
fast-glob "^3.3.2"
|
2092
2056
|
ignore "^5.2.4"
|
2093
|
-
|
2094
|
-
slash "^
|
2057
|
+
path-type "^5.0.0"
|
2058
|
+
slash "^5.1.0"
|
2059
|
+
unicorn-magic "^0.1.0"
|
2095
2060
|
|
2096
2061
|
graceful-fs@^4.1.2, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
|
2097
2062
|
version "4.2.11"
|
@@ -2177,17 +2142,10 @@ is-arrayish@^0.2.1:
|
|
2177
2142
|
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
2178
2143
|
integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
|
2179
2144
|
|
2180
|
-
is-binary-path@~2.1.0:
|
2181
|
-
version "2.1.0"
|
2182
|
-
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
|
2183
|
-
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
|
2184
|
-
dependencies:
|
2185
|
-
binary-extensions "^2.0.0"
|
2186
|
-
|
2187
2145
|
is-core-module@^2.13.0:
|
2188
|
-
version "2.15.
|
2189
|
-
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.
|
2190
|
-
integrity sha512-
|
2146
|
+
version "2.15.1"
|
2147
|
+
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37"
|
2148
|
+
integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==
|
2191
2149
|
dependencies:
|
2192
2150
|
hasown "^2.0.2"
|
2193
2151
|
|
@@ -2196,7 +2154,7 @@ is-extglob@^2.1.1:
|
|
2196
2154
|
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
|
2197
2155
|
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
|
2198
2156
|
|
2199
|
-
is-glob@^4.0.1, is-glob@^4.0.3
|
2157
|
+
is-glob@^4.0.1, is-glob@^4.0.3:
|
2200
2158
|
version "4.0.3"
|
2201
2159
|
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
|
2202
2160
|
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
|
@@ -2225,12 +2183,12 @@ isobject@^3.0.1:
|
|
2225
2183
|
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
|
2226
2184
|
integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
|
2227
2185
|
|
2228
|
-
jest-util@^29.
|
2229
|
-
version "29.
|
2230
|
-
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.
|
2231
|
-
integrity sha512-
|
2186
|
+
jest-util@^29.7.0:
|
2187
|
+
version "29.7.0"
|
2188
|
+
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc"
|
2189
|
+
integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==
|
2232
2190
|
dependencies:
|
2233
|
-
"@jest/types" "^29.6.
|
2191
|
+
"@jest/types" "^29.6.3"
|
2234
2192
|
"@types/node" "*"
|
2235
2193
|
chalk "^4.0.0"
|
2236
2194
|
ci-info "^3.2.0"
|
@@ -2246,13 +2204,13 @@ jest-worker@^27.4.5:
|
|
2246
2204
|
merge-stream "^2.0.0"
|
2247
2205
|
supports-color "^8.0.0"
|
2248
2206
|
|
2249
|
-
jest-worker@^29.
|
2250
|
-
version "29.
|
2251
|
-
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.
|
2252
|
-
integrity sha512-
|
2207
|
+
jest-worker@^29.7.0:
|
2208
|
+
version "29.7.0"
|
2209
|
+
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a"
|
2210
|
+
integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==
|
2253
2211
|
dependencies:
|
2254
2212
|
"@types/node" "*"
|
2255
|
-
jest-util "^29.
|
2213
|
+
jest-util "^29.7.0"
|
2256
2214
|
merge-stream "^2.0.0"
|
2257
2215
|
supports-color "^8.0.0"
|
2258
2216
|
|
@@ -2313,10 +2271,10 @@ kind-of@^6.0.2:
|
|
2313
2271
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
|
2314
2272
|
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
|
2315
2273
|
|
2316
|
-
lilconfig@^
|
2317
|
-
version "
|
2318
|
-
resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-
|
2319
|
-
integrity sha512-
|
2274
|
+
lilconfig@^3.1.2:
|
2275
|
+
version "3.1.2"
|
2276
|
+
resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb"
|
2277
|
+
integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==
|
2320
2278
|
|
2321
2279
|
lines-and-columns@^1.1.6:
|
2322
2280
|
version "1.2.4"
|
@@ -2389,17 +2347,17 @@ merge-stream@^2.0.0:
|
|
2389
2347
|
resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
|
2390
2348
|
integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
|
2391
2349
|
|
2392
|
-
merge2@^1.3.0
|
2350
|
+
merge2@^1.3.0:
|
2393
2351
|
version "1.4.1"
|
2394
2352
|
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
|
2395
2353
|
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
2396
2354
|
|
2397
2355
|
micromatch@^4.0.4:
|
2398
|
-
version "4.0.
|
2399
|
-
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.
|
2400
|
-
integrity sha512-
|
2356
|
+
version "4.0.8"
|
2357
|
+
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
|
2358
|
+
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
|
2401
2359
|
dependencies:
|
2402
|
-
braces "^3.0.
|
2360
|
+
braces "^3.0.3"
|
2403
2361
|
picomatch "^2.3.1"
|
2404
2362
|
|
2405
2363
|
mime-db@1.52.0:
|
@@ -2415,9 +2373,9 @@ mime-types@^2.1.27:
|
|
2415
2373
|
mime-db "1.52.0"
|
2416
2374
|
|
2417
2375
|
mini-css-extract-plugin@^2.7.2:
|
2418
|
-
version "2.9.
|
2419
|
-
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.
|
2420
|
-
integrity sha512
|
2376
|
+
version "2.9.1"
|
2377
|
+
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.1.tgz#4d184f12ce90582e983ccef0f6f9db637b4be758"
|
2378
|
+
integrity sha512-+Vyi+GCCOHnrJ2VPS+6aPoXN2k2jgUzDRhTFLjjTBn23qyXJXkjUWQgTL+mXpF5/A8ixLdCc6kWsoeOjKGejKQ==
|
2421
2379
|
dependencies:
|
2422
2380
|
schema-utils "^4.0.0"
|
2423
2381
|
tapable "^2.2.1"
|
@@ -2432,7 +2390,12 @@ ms@2.1.2:
|
|
2432
2390
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
|
2433
2391
|
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
2434
2392
|
|
2435
|
-
|
2393
|
+
ms@^2.1.3:
|
2394
|
+
version "2.1.3"
|
2395
|
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
|
2396
|
+
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
2397
|
+
|
2398
|
+
nanoid@^3.3.7:
|
2436
2399
|
version "3.3.7"
|
2437
2400
|
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
|
2438
2401
|
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
|
@@ -2452,7 +2415,7 @@ node-releases@^2.0.18:
|
|
2452
2415
|
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f"
|
2453
2416
|
integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==
|
2454
2417
|
|
2455
|
-
normalize-path@^3.0.0
|
2418
|
+
normalize-path@^3.0.0:
|
2456
2419
|
version "3.0.0"
|
2457
2420
|
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
|
2458
2421
|
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
|
@@ -2544,22 +2507,22 @@ path-parse@^1.0.7:
|
|
2544
2507
|
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
|
2545
2508
|
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
|
2546
2509
|
|
2547
|
-
path-type@^
|
2548
|
-
version "
|
2549
|
-
resolved "https://registry.yarnpkg.com/path-type/-/path-type-
|
2550
|
-
integrity sha512-
|
2510
|
+
path-type@^5.0.0:
|
2511
|
+
version "5.0.0"
|
2512
|
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-5.0.0.tgz#14b01ed7aea7ddf9c7c3f46181d4d04f9c785bb8"
|
2513
|
+
integrity sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==
|
2551
2514
|
|
2552
2515
|
photoswipe@^5.4.4:
|
2553
2516
|
version "5.4.4"
|
2554
2517
|
resolved "https://registry.yarnpkg.com/photoswipe/-/photoswipe-5.4.4.tgz#e045dc036453493188d5c8665b0e8f1000ac4d6e"
|
2555
2518
|
integrity sha512-WNFHoKrkZNnvFFhbHL93WDkW3ifwVOXSW3w1UuZZelSmgXpIGiZSNlZJq37rR8YejqME2rHs9EhH9ZvlvFH2NA==
|
2556
2519
|
|
2557
|
-
picocolors@^1.0.0, picocolors@^1.0.1:
|
2558
|
-
version "1.0
|
2559
|
-
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.
|
2560
|
-
integrity sha512-
|
2520
|
+
picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0:
|
2521
|
+
version "1.1.0"
|
2522
|
+
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59"
|
2523
|
+
integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==
|
2561
2524
|
|
2562
|
-
picomatch@^2.
|
2525
|
+
picomatch@^2.2.3, picomatch@^2.3.1:
|
2563
2526
|
version "2.3.1"
|
2564
2527
|
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
|
2565
2528
|
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
|
@@ -2578,110 +2541,113 @@ pkg-dir@^7.0.0:
|
|
2578
2541
|
dependencies:
|
2579
2542
|
find-up "^6.3.0"
|
2580
2543
|
|
2581
|
-
postcss-calc@^
|
2582
|
-
version "
|
2583
|
-
resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-
|
2584
|
-
integrity sha512-
|
2544
|
+
postcss-calc@^10.0.2:
|
2545
|
+
version "10.0.2"
|
2546
|
+
resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-10.0.2.tgz#15f01635a27b9d38913a98c4ef2877f5b715b439"
|
2547
|
+
integrity sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg==
|
2585
2548
|
dependencies:
|
2586
|
-
postcss-selector-parser "^6.
|
2549
|
+
postcss-selector-parser "^6.1.2"
|
2587
2550
|
postcss-value-parser "^4.2.0"
|
2588
2551
|
|
2589
|
-
postcss-colormin@^
|
2590
|
-
version "
|
2591
|
-
resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-
|
2592
|
-
integrity sha512-
|
2552
|
+
postcss-colormin@^7.0.2:
|
2553
|
+
version "7.0.2"
|
2554
|
+
resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-7.0.2.tgz#6f3c53c13158168669f45adc3926f35cb240ef8e"
|
2555
|
+
integrity sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==
|
2593
2556
|
dependencies:
|
2594
|
-
browserslist "^4.
|
2557
|
+
browserslist "^4.23.3"
|
2595
2558
|
caniuse-api "^3.0.0"
|
2596
|
-
colord "^2.9.
|
2559
|
+
colord "^2.9.3"
|
2597
2560
|
postcss-value-parser "^4.2.0"
|
2598
2561
|
|
2599
|
-
postcss-convert-values@^
|
2600
|
-
version "
|
2601
|
-
resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-
|
2602
|
-
integrity sha512-
|
2562
|
+
postcss-convert-values@^7.0.4:
|
2563
|
+
version "7.0.4"
|
2564
|
+
resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-7.0.4.tgz#fc13ecedded6365f3c794b502dbcf77d298da12c"
|
2565
|
+
integrity sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==
|
2603
2566
|
dependencies:
|
2604
|
-
browserslist "^4.
|
2567
|
+
browserslist "^4.23.3"
|
2605
2568
|
postcss-value-parser "^4.2.0"
|
2606
2569
|
|
2607
|
-
postcss-discard-comments@^
|
2608
|
-
version "
|
2609
|
-
resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-
|
2610
|
-
integrity sha512-
|
2570
|
+
postcss-discard-comments@^7.0.3:
|
2571
|
+
version "7.0.3"
|
2572
|
+
resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-7.0.3.tgz#9c414e8ee99d3514ad06a3465ccc20ec1dbce780"
|
2573
|
+
integrity sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==
|
2574
|
+
dependencies:
|
2575
|
+
postcss-selector-parser "^6.1.2"
|
2611
2576
|
|
2612
|
-
postcss-discard-duplicates@^
|
2613
|
-
version "
|
2614
|
-
resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-
|
2615
|
-
integrity sha512-
|
2577
|
+
postcss-discard-duplicates@^7.0.1:
|
2578
|
+
version "7.0.1"
|
2579
|
+
resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.1.tgz#f87f2fe47d8f01afb1e98361c1db3ce1e8afd1a3"
|
2580
|
+
integrity sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==
|
2616
2581
|
|
2617
|
-
postcss-discard-empty@^
|
2618
|
-
version "
|
2619
|
-
resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-
|
2620
|
-
integrity sha512-
|
2582
|
+
postcss-discard-empty@^7.0.0:
|
2583
|
+
version "7.0.0"
|
2584
|
+
resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-7.0.0.tgz#218829d1ef0a5d5142dd62f0aa60e00e599d2033"
|
2585
|
+
integrity sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==
|
2621
2586
|
|
2622
|
-
postcss-discard-overridden@^
|
2623
|
-
version "
|
2624
|
-
resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-
|
2625
|
-
integrity sha512-
|
2587
|
+
postcss-discard-overridden@^7.0.0:
|
2588
|
+
version "7.0.0"
|
2589
|
+
resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-7.0.0.tgz#b123ea51e3d4e1d0a254cf71eaff1201926d319c"
|
2590
|
+
integrity sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==
|
2626
2591
|
|
2627
|
-
postcss-loader@^
|
2628
|
-
version "
|
2629
|
-
resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-
|
2630
|
-
integrity sha512-
|
2592
|
+
postcss-loader@^8.1.1:
|
2593
|
+
version "8.1.1"
|
2594
|
+
resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-8.1.1.tgz#2822589e7522927344954acb55bbf26e8b195dfe"
|
2595
|
+
integrity sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==
|
2631
2596
|
dependencies:
|
2632
|
-
cosmiconfig "^
|
2597
|
+
cosmiconfig "^9.0.0"
|
2633
2598
|
jiti "^1.20.0"
|
2634
2599
|
semver "^7.5.4"
|
2635
2600
|
|
2636
|
-
postcss-merge-longhand@^
|
2637
|
-
version "
|
2638
|
-
resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-
|
2639
|
-
integrity sha512-
|
2601
|
+
postcss-merge-longhand@^7.0.4:
|
2602
|
+
version "7.0.4"
|
2603
|
+
resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-7.0.4.tgz#a52d0662b4b29420f3b64a8d5b0ac5133d8db776"
|
2604
|
+
integrity sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==
|
2640
2605
|
dependencies:
|
2641
2606
|
postcss-value-parser "^4.2.0"
|
2642
|
-
stylehacks "^
|
2607
|
+
stylehacks "^7.0.4"
|
2643
2608
|
|
2644
|
-
postcss-merge-rules@^
|
2645
|
-
version "
|
2646
|
-
resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-
|
2647
|
-
integrity sha512-
|
2609
|
+
postcss-merge-rules@^7.0.4:
|
2610
|
+
version "7.0.4"
|
2611
|
+
resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-7.0.4.tgz#648cc864d3121e6ec72c2a4f08df1cc801e60ce8"
|
2612
|
+
integrity sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==
|
2648
2613
|
dependencies:
|
2649
|
-
browserslist "^4.
|
2614
|
+
browserslist "^4.23.3"
|
2650
2615
|
caniuse-api "^3.0.0"
|
2651
|
-
cssnano-utils "^
|
2652
|
-
postcss-selector-parser "^6.
|
2616
|
+
cssnano-utils "^5.0.0"
|
2617
|
+
postcss-selector-parser "^6.1.2"
|
2653
2618
|
|
2654
|
-
postcss-minify-font-values@^
|
2655
|
-
version "
|
2656
|
-
resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-
|
2657
|
-
integrity sha512-
|
2619
|
+
postcss-minify-font-values@^7.0.0:
|
2620
|
+
version "7.0.0"
|
2621
|
+
resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-7.0.0.tgz#d16a75a2548e000779566b3568fc874ee5d0aa17"
|
2622
|
+
integrity sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==
|
2658
2623
|
dependencies:
|
2659
2624
|
postcss-value-parser "^4.2.0"
|
2660
2625
|
|
2661
|
-
postcss-minify-gradients@^
|
2662
|
-
version "
|
2663
|
-
resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-
|
2664
|
-
integrity sha512-
|
2626
|
+
postcss-minify-gradients@^7.0.0:
|
2627
|
+
version "7.0.0"
|
2628
|
+
resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-7.0.0.tgz#f6d84456e6d49164a55d0e45bb1b1809c6cf0959"
|
2629
|
+
integrity sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==
|
2665
2630
|
dependencies:
|
2666
|
-
colord "^2.9.
|
2667
|
-
cssnano-utils "^
|
2631
|
+
colord "^2.9.3"
|
2632
|
+
cssnano-utils "^5.0.0"
|
2668
2633
|
postcss-value-parser "^4.2.0"
|
2669
2634
|
|
2670
|
-
postcss-minify-params@^
|
2671
|
-
version "
|
2672
|
-
resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-
|
2673
|
-
integrity sha512-
|
2635
|
+
postcss-minify-params@^7.0.2:
|
2636
|
+
version "7.0.2"
|
2637
|
+
resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-7.0.2.tgz#264a76e25f202d8b5ca5290569c0e8c3ac599dfe"
|
2638
|
+
integrity sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==
|
2674
2639
|
dependencies:
|
2675
|
-
browserslist "^4.
|
2676
|
-
cssnano-utils "^
|
2640
|
+
browserslist "^4.23.3"
|
2641
|
+
cssnano-utils "^5.0.0"
|
2677
2642
|
postcss-value-parser "^4.2.0"
|
2678
2643
|
|
2679
|
-
postcss-minify-selectors@^
|
2680
|
-
version "
|
2681
|
-
resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-
|
2682
|
-
integrity sha512-
|
2644
|
+
postcss-minify-selectors@^7.0.4:
|
2645
|
+
version "7.0.4"
|
2646
|
+
resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-7.0.4.tgz#2b69c99ec48a1c223fce4840609d9c53340a11f5"
|
2647
|
+
integrity sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==
|
2683
2648
|
dependencies:
|
2684
|
-
|
2649
|
+
cssesc "^3.0.0"
|
2650
|
+
postcss-selector-parser "^6.1.2"
|
2685
2651
|
|
2686
2652
|
postcss-modules-extract-imports@^3.1.0:
|
2687
2653
|
version "3.1.0"
|
@@ -2711,99 +2677,91 @@ postcss-modules-values@^4.0.0:
|
|
2711
2677
|
dependencies:
|
2712
2678
|
icss-utils "^5.0.0"
|
2713
2679
|
|
2714
|
-
postcss-normalize-charset@^
|
2715
|
-
version "
|
2716
|
-
resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-
|
2717
|
-
integrity sha512-
|
2680
|
+
postcss-normalize-charset@^7.0.0:
|
2681
|
+
version "7.0.0"
|
2682
|
+
resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-7.0.0.tgz#92244ae73c31bf8f8885d5f16ff69e857ac6c001"
|
2683
|
+
integrity sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==
|
2718
2684
|
|
2719
|
-
postcss-normalize-display-values@^
|
2720
|
-
version "
|
2721
|
-
resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-
|
2722
|
-
integrity sha512-
|
2685
|
+
postcss-normalize-display-values@^7.0.0:
|
2686
|
+
version "7.0.0"
|
2687
|
+
resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-7.0.0.tgz#01fb50e5e97ef8935363629bea5a6d3b3aac1342"
|
2688
|
+
integrity sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==
|
2723
2689
|
dependencies:
|
2724
2690
|
postcss-value-parser "^4.2.0"
|
2725
2691
|
|
2726
|
-
postcss-normalize-positions@^
|
2727
|
-
version "
|
2728
|
-
resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-
|
2729
|
-
integrity sha512-
|
2692
|
+
postcss-normalize-positions@^7.0.0:
|
2693
|
+
version "7.0.0"
|
2694
|
+
resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-7.0.0.tgz#4eebd7c9d3dde40c97b8047cad38124fc844c463"
|
2695
|
+
integrity sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==
|
2730
2696
|
dependencies:
|
2731
2697
|
postcss-value-parser "^4.2.0"
|
2732
2698
|
|
2733
|
-
postcss-normalize-repeat-style@^
|
2734
|
-
version "
|
2735
|
-
resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-
|
2736
|
-
integrity sha512-
|
2699
|
+
postcss-normalize-repeat-style@^7.0.0:
|
2700
|
+
version "7.0.0"
|
2701
|
+
resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-7.0.0.tgz#0cb784655d5714d29bd3bda6dee2fb628aa7227b"
|
2702
|
+
integrity sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==
|
2737
2703
|
dependencies:
|
2738
2704
|
postcss-value-parser "^4.2.0"
|
2739
2705
|
|
2740
|
-
postcss-normalize-string@^
|
2741
|
-
version "
|
2742
|
-
resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-
|
2743
|
-
integrity sha512-
|
2706
|
+
postcss-normalize-string@^7.0.0:
|
2707
|
+
version "7.0.0"
|
2708
|
+
resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-7.0.0.tgz#a119d3e63a9614570d8413d572fb9fc8c6a64e8c"
|
2709
|
+
integrity sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==
|
2744
2710
|
dependencies:
|
2745
2711
|
postcss-value-parser "^4.2.0"
|
2746
2712
|
|
2747
|
-
postcss-normalize-timing-functions@^
|
2748
|
-
version "
|
2749
|
-
resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-
|
2750
|
-
integrity sha512-
|
2713
|
+
postcss-normalize-timing-functions@^7.0.0:
|
2714
|
+
version "7.0.0"
|
2715
|
+
resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-7.0.0.tgz#99d0ee8c4b23b7f4355fafb91385833b9b07108b"
|
2716
|
+
integrity sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==
|
2751
2717
|
dependencies:
|
2752
2718
|
postcss-value-parser "^4.2.0"
|
2753
2719
|
|
2754
|
-
postcss-normalize-unicode@^
|
2755
|
-
version "
|
2756
|
-
resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-
|
2757
|
-
integrity sha512-
|
2720
|
+
postcss-normalize-unicode@^7.0.2:
|
2721
|
+
version "7.0.2"
|
2722
|
+
resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.2.tgz#095f8d36ea29adfdf494069c1de101112992a713"
|
2723
|
+
integrity sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==
|
2758
2724
|
dependencies:
|
2759
|
-
browserslist "^4.
|
2725
|
+
browserslist "^4.23.3"
|
2760
2726
|
postcss-value-parser "^4.2.0"
|
2761
2727
|
|
2762
|
-
postcss-normalize-url@^
|
2763
|
-
version "
|
2764
|
-
resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-
|
2765
|
-
integrity sha512
|
2728
|
+
postcss-normalize-url@^7.0.0:
|
2729
|
+
version "7.0.0"
|
2730
|
+
resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-7.0.0.tgz#c88cb7cf8952d3ff631e4eba924e7b060ca802f6"
|
2731
|
+
integrity sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==
|
2766
2732
|
dependencies:
|
2767
2733
|
postcss-value-parser "^4.2.0"
|
2768
2734
|
|
2769
|
-
postcss-normalize-whitespace@^
|
2770
|
-
version "
|
2771
|
-
resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-
|
2772
|
-
integrity sha512-
|
2735
|
+
postcss-normalize-whitespace@^7.0.0:
|
2736
|
+
version "7.0.0"
|
2737
|
+
resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-7.0.0.tgz#46b025f0bea72139ddee63015619b0c21cebd845"
|
2738
|
+
integrity sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==
|
2773
2739
|
dependencies:
|
2774
2740
|
postcss-value-parser "^4.2.0"
|
2775
2741
|
|
2776
|
-
postcss-ordered-values@^
|
2777
|
-
version "
|
2778
|
-
resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-
|
2779
|
-
integrity sha512-
|
2742
|
+
postcss-ordered-values@^7.0.1:
|
2743
|
+
version "7.0.1"
|
2744
|
+
resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-7.0.1.tgz#8b4b5b8070ca7756bd49f07d5edf274b8f6782e0"
|
2745
|
+
integrity sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==
|
2780
2746
|
dependencies:
|
2781
|
-
cssnano-utils "^
|
2747
|
+
cssnano-utils "^5.0.0"
|
2782
2748
|
postcss-value-parser "^4.2.0"
|
2783
2749
|
|
2784
|
-
postcss-reduce-initial@^
|
2785
|
-
version "
|
2786
|
-
resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-
|
2787
|
-
integrity sha512-
|
2750
|
+
postcss-reduce-initial@^7.0.2:
|
2751
|
+
version "7.0.2"
|
2752
|
+
resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-7.0.2.tgz#3dc085347a5943e18547d4b0aa5bd4ff5a93b2c5"
|
2753
|
+
integrity sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==
|
2788
2754
|
dependencies:
|
2789
|
-
browserslist "^4.
|
2755
|
+
browserslist "^4.23.3"
|
2790
2756
|
caniuse-api "^3.0.0"
|
2791
2757
|
|
2792
|
-
postcss-reduce-transforms@^
|
2793
|
-
version "
|
2794
|
-
resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-
|
2795
|
-
integrity sha512-
|
2758
|
+
postcss-reduce-transforms@^7.0.0:
|
2759
|
+
version "7.0.0"
|
2760
|
+
resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-7.0.0.tgz#0386080a14e5faad9f8eda33375b79fe7c4f9677"
|
2761
|
+
integrity sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==
|
2796
2762
|
dependencies:
|
2797
2763
|
postcss-value-parser "^4.2.0"
|
2798
2764
|
|
2799
|
-
postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.5:
|
2800
|
-
version "6.0.13"
|
2801
|
-
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b"
|
2802
|
-
integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==
|
2803
|
-
dependencies:
|
2804
|
-
cssesc "^3.0.0"
|
2805
|
-
util-deprecate "^1.0.2"
|
2806
|
-
|
2807
2765
|
postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4:
|
2808
2766
|
version "6.0.16"
|
2809
2767
|
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04"
|
@@ -2812,43 +2770,42 @@ postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4:
|
|
2812
2770
|
cssesc "^3.0.0"
|
2813
2771
|
util-deprecate "^1.0.2"
|
2814
2772
|
|
2815
|
-
postcss-
|
2816
|
-
version "6.
|
2817
|
-
resolved "https://registry.yarnpkg.com/postcss-
|
2818
|
-
integrity sha512-
|
2773
|
+
postcss-selector-parser@^6.1.2:
|
2774
|
+
version "6.1.2"
|
2775
|
+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de"
|
2776
|
+
integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==
|
2777
|
+
dependencies:
|
2778
|
+
cssesc "^3.0.0"
|
2779
|
+
util-deprecate "^1.0.2"
|
2780
|
+
|
2781
|
+
postcss-svgo@^7.0.1:
|
2782
|
+
version "7.0.1"
|
2783
|
+
resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-7.0.1.tgz#2b63571d8e9568384df334bac9917baff4d23f58"
|
2784
|
+
integrity sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==
|
2819
2785
|
dependencies:
|
2820
2786
|
postcss-value-parser "^4.2.0"
|
2821
|
-
svgo "^3.
|
2787
|
+
svgo "^3.3.2"
|
2822
2788
|
|
2823
|
-
postcss-unique-selectors@^
|
2824
|
-
version "
|
2825
|
-
resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-
|
2826
|
-
integrity sha512-
|
2789
|
+
postcss-unique-selectors@^7.0.3:
|
2790
|
+
version "7.0.3"
|
2791
|
+
resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-7.0.3.tgz#483fc11215b23d517d5d9bbe5833d9915619ca33"
|
2792
|
+
integrity sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==
|
2827
2793
|
dependencies:
|
2828
|
-
postcss-selector-parser "^6.
|
2794
|
+
postcss-selector-parser "^6.1.2"
|
2829
2795
|
|
2830
2796
|
postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
|
2831
2797
|
version "4.2.0"
|
2832
2798
|
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
|
2833
2799
|
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
|
2834
2800
|
|
2835
|
-
postcss@^8.4.21:
|
2836
|
-
version "8.4.
|
2837
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.
|
2838
|
-
integrity sha512-
|
2801
|
+
postcss@^8.4.21, postcss@^8.4.38:
|
2802
|
+
version "8.4.47"
|
2803
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365"
|
2804
|
+
integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==
|
2839
2805
|
dependencies:
|
2840
2806
|
nanoid "^3.3.7"
|
2841
|
-
picocolors "^1.0
|
2842
|
-
source-map-js "^1.2.
|
2843
|
-
|
2844
|
-
postcss@^8.4.24:
|
2845
|
-
version "8.4.27"
|
2846
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.27.tgz#234d7e4b72e34ba5a92c29636734349e0d9c3057"
|
2847
|
-
integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==
|
2848
|
-
dependencies:
|
2849
|
-
nanoid "^3.3.6"
|
2850
|
-
picocolors "^1.0.0"
|
2851
|
-
source-map-js "^1.0.2"
|
2807
|
+
picocolors "^1.1.0"
|
2808
|
+
source-map-js "^1.2.1"
|
2852
2809
|
|
2853
2810
|
postcss@^8.4.33:
|
2854
2811
|
version "8.4.38"
|
@@ -2876,12 +2833,10 @@ randombytes@^2.1.0:
|
|
2876
2833
|
dependencies:
|
2877
2834
|
safe-buffer "^5.1.0"
|
2878
2835
|
|
2879
|
-
readdirp
|
2880
|
-
version "
|
2881
|
-
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-
|
2882
|
-
integrity sha512-
|
2883
|
-
dependencies:
|
2884
|
-
picomatch "^2.2.1"
|
2836
|
+
readdirp@^4.0.1:
|
2837
|
+
version "4.0.1"
|
2838
|
+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.0.1.tgz#b2fe35f8dca63183cd3b86883ecc8f720ea96ae6"
|
2839
|
+
integrity sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw==
|
2885
2840
|
|
2886
2841
|
rechoir@^0.8.0:
|
2887
2842
|
version "0.8.0"
|
@@ -2891,9 +2846,9 @@ rechoir@^0.8.0:
|
|
2891
2846
|
resolve "^1.20.0"
|
2892
2847
|
|
2893
2848
|
regenerate-unicode-properties@^10.1.0:
|
2894
|
-
version "10.
|
2895
|
-
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.
|
2896
|
-
integrity sha512-
|
2849
|
+
version "10.2.0"
|
2850
|
+
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz#626e39df8c372338ea9b8028d1f99dc3fd9c3db0"
|
2851
|
+
integrity sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==
|
2897
2852
|
dependencies:
|
2898
2853
|
regenerate "^1.4.2"
|
2899
2854
|
|
@@ -2990,19 +2945,19 @@ safe-buffer@^5.1.0:
|
|
2990
2945
|
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
|
2991
2946
|
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
|
2992
2947
|
|
2993
|
-
sass-loader@^
|
2994
|
-
version "
|
2995
|
-
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-
|
2996
|
-
integrity sha512-
|
2948
|
+
sass-loader@^16.0.2:
|
2949
|
+
version "16.0.2"
|
2950
|
+
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-16.0.2.tgz#e581bc13d7cb5090e27f155c6aa2855c08cafe86"
|
2951
|
+
integrity sha512-Ll6iXZ1EYwYT19SqW4mSBb76vSSi8JgzElmzIerhEGgzB5hRjDQIWsPmuk1UrAXkR16KJHqVY0eH+5/uw9Tmfw==
|
2997
2952
|
dependencies:
|
2998
2953
|
neo-async "^2.6.2"
|
2999
2954
|
|
3000
2955
|
sass@^1.57.1:
|
3001
|
-
version "1.
|
3002
|
-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.
|
3003
|
-
integrity sha512-
|
2956
|
+
version "1.79.3"
|
2957
|
+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.79.3.tgz#7811b000eb68195fe51dea89177e73e7ef7f546f"
|
2958
|
+
integrity sha512-m7dZxh0W9EZ3cw50Me5GOuYm/tVAJAn91SUnohLRo9cXBixGUOdvmryN+dXpwR831bhoY3Zv7rEFt85PUwTmzA==
|
3004
2959
|
dependencies:
|
3005
|
-
chokidar "
|
2960
|
+
chokidar "^4.0.0"
|
3006
2961
|
immutable "^4.0.0"
|
3007
2962
|
source-map-js ">=0.6.2 <2.0.0"
|
3008
2963
|
|
@@ -3015,7 +2970,7 @@ schema-utils@^3.1.1, schema-utils@^3.2.0:
|
|
3015
2970
|
ajv "^6.12.5"
|
3016
2971
|
ajv-keywords "^3.5.2"
|
3017
2972
|
|
3018
|
-
schema-utils@^4.0.0, schema-utils@^4.0
|
2973
|
+
schema-utils@^4.0.0, schema-utils@^4.2.0:
|
3019
2974
|
version "4.2.0"
|
3020
2975
|
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b"
|
3021
2976
|
integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==
|
@@ -3047,14 +3002,7 @@ semver@^7.5.4:
|
|
3047
3002
|
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.2.tgz#1e3b34759f896e8f14d6134732ce798aeb0c6e13"
|
3048
3003
|
integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==
|
3049
3004
|
|
3050
|
-
serialize-javascript@^6.0.0:
|
3051
|
-
version "6.0.1"
|
3052
|
-
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c"
|
3053
|
-
integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==
|
3054
|
-
dependencies:
|
3055
|
-
randombytes "^2.1.0"
|
3056
|
-
|
3057
|
-
serialize-javascript@^6.0.1:
|
3005
|
+
serialize-javascript@^6.0.1, serialize-javascript@^6.0.2:
|
3058
3006
|
version "6.0.2"
|
3059
3007
|
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2"
|
3060
3008
|
integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==
|
@@ -3089,15 +3037,15 @@ sirv@^2.0.3:
|
|
3089
3037
|
mrmime "^2.0.0"
|
3090
3038
|
totalist "^3.0.0"
|
3091
3039
|
|
3092
|
-
slash@^
|
3093
|
-
version "
|
3094
|
-
resolved "https://registry.yarnpkg.com/slash/-/slash-
|
3095
|
-
integrity sha512-
|
3040
|
+
slash@^5.1.0:
|
3041
|
+
version "5.1.0"
|
3042
|
+
resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce"
|
3043
|
+
integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==
|
3096
3044
|
|
3097
|
-
"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0
|
3098
|
-
version "1.2.
|
3099
|
-
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.
|
3100
|
-
integrity sha512-
|
3045
|
+
"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.2.0, source-map-js@^1.2.1:
|
3046
|
+
version "1.2.1"
|
3047
|
+
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
|
3048
|
+
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
|
3101
3049
|
|
3102
3050
|
source-map-js@^1.0.1:
|
3103
3051
|
version "1.0.2"
|
@@ -3117,13 +3065,13 @@ source-map@^0.6.0:
|
|
3117
3065
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
3118
3066
|
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
|
3119
3067
|
|
3120
|
-
stylehacks@^
|
3121
|
-
version "
|
3122
|
-
resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-
|
3123
|
-
integrity sha512
|
3068
|
+
stylehacks@^7.0.4:
|
3069
|
+
version "7.0.4"
|
3070
|
+
resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-7.0.4.tgz#9c21f7374f4bccc0082412b859b3c89d77d3277c"
|
3071
|
+
integrity sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==
|
3124
3072
|
dependencies:
|
3125
|
-
browserslist "^4.
|
3126
|
-
postcss-selector-parser "^6.
|
3073
|
+
browserslist "^4.23.3"
|
3074
|
+
postcss-selector-parser "^6.1.2"
|
3127
3075
|
|
3128
3076
|
supports-color@^5.3.0:
|
3129
3077
|
version "5.5.0"
|
@@ -3151,15 +3099,16 @@ supports-preserve-symlinks-flag@^1.0.0:
|
|
3151
3099
|
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
|
3152
3100
|
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
|
3153
3101
|
|
3154
|
-
svgo@^3.
|
3155
|
-
version "3.
|
3156
|
-
resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.
|
3157
|
-
integrity sha512-
|
3102
|
+
svgo@^3.3.2:
|
3103
|
+
version "3.3.2"
|
3104
|
+
resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.2.tgz#ad58002652dffbb5986fc9716afe52d869ecbda8"
|
3105
|
+
integrity sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==
|
3158
3106
|
dependencies:
|
3159
3107
|
"@trysound/sax" "0.2.0"
|
3160
3108
|
commander "^7.2.0"
|
3161
3109
|
css-select "^5.1.0"
|
3162
|
-
css-tree "^2.
|
3110
|
+
css-tree "^2.3.1"
|
3111
|
+
css-what "^6.1.0"
|
3163
3112
|
csso "^5.0.5"
|
3164
3113
|
picocolors "^1.0.0"
|
3165
3114
|
|
@@ -3180,9 +3129,9 @@ terser-webpack-plugin@^5.3.10:
|
|
3180
3129
|
terser "^5.26.0"
|
3181
3130
|
|
3182
3131
|
terser@^5.26.0:
|
3183
|
-
version "5.
|
3184
|
-
resolved "https://registry.yarnpkg.com/terser/-/terser-5.
|
3185
|
-
integrity sha512-
|
3132
|
+
version "5.34.0"
|
3133
|
+
resolved "https://registry.yarnpkg.com/terser/-/terser-5.34.0.tgz#62f2496542290bc6d8bf886edaee7fac158e37e4"
|
3134
|
+
integrity sha512-y5NUX+U9HhVsK/zihZwoq4r9dICLyV2jXGOriDAVOeKhq3LKVjgJbGO90FisozXLlJfvjHqgckGmJFBb9KYoWQ==
|
3186
3135
|
dependencies:
|
3187
3136
|
"@jridgewell/source-map" "^0.3.3"
|
3188
3137
|
acorn "^8.8.2"
|
@@ -3206,15 +3155,15 @@ totalist@^3.0.0:
|
|
3206
3155
|
resolved "https://registry.yarnpkg.com/totalist/-/totalist-3.0.1.tgz#ba3a3d600c915b1a97872348f79c127475f6acf8"
|
3207
3156
|
integrity sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==
|
3208
3157
|
|
3209
|
-
undici-types@~6.
|
3210
|
-
version "6.
|
3211
|
-
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.
|
3212
|
-
integrity sha512-
|
3158
|
+
undici-types@~6.19.2:
|
3159
|
+
version "6.19.8"
|
3160
|
+
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02"
|
3161
|
+
integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==
|
3213
3162
|
|
3214
3163
|
unicode-canonical-property-names-ecmascript@^2.0.0:
|
3215
|
-
version "2.0.
|
3216
|
-
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.
|
3217
|
-
integrity sha512-
|
3164
|
+
version "2.0.1"
|
3165
|
+
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz#cb3173fe47ca743e228216e4a3ddc4c84d628cc2"
|
3166
|
+
integrity sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==
|
3218
3167
|
|
3219
3168
|
unicode-match-property-ecmascript@^2.0.0:
|
3220
3169
|
version "2.0.0"
|
@@ -3225,15 +3174,20 @@ unicode-match-property-ecmascript@^2.0.0:
|
|
3225
3174
|
unicode-property-aliases-ecmascript "^2.0.0"
|
3226
3175
|
|
3227
3176
|
unicode-match-property-value-ecmascript@^2.1.0:
|
3228
|
-
version "2.
|
3229
|
-
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.
|
3230
|
-
integrity sha512-
|
3177
|
+
version "2.2.0"
|
3178
|
+
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz#a0401aee72714598f739b68b104e4fe3a0cb3c71"
|
3179
|
+
integrity sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==
|
3231
3180
|
|
3232
3181
|
unicode-property-aliases-ecmascript@^2.0.0:
|
3233
3182
|
version "2.1.0"
|
3234
3183
|
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
|
3235
3184
|
integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
|
3236
3185
|
|
3186
|
+
unicorn-magic@^0.1.0:
|
3187
|
+
version "0.1.0"
|
3188
|
+
resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4"
|
3189
|
+
integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==
|
3190
|
+
|
3237
3191
|
update-browserslist-db@^1.0.11:
|
3238
3192
|
version "1.0.13"
|
3239
3193
|
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4"
|
@@ -3250,7 +3204,7 @@ update-browserslist-db@^1.1.0:
|
|
3250
3204
|
escalade "^3.1.2"
|
3251
3205
|
picocolors "^1.0.1"
|
3252
3206
|
|
3253
|
-
uri-js@^4.2.2
|
3207
|
+
uri-js@^4.2.2:
|
3254
3208
|
version "4.4.1"
|
3255
3209
|
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
|
3256
3210
|
integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
|
@@ -3321,11 +3275,10 @@ webpack-sources@^3.2.3:
|
|
3321
3275
|
integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
|
3322
3276
|
|
3323
3277
|
webpack@^5.75.0:
|
3324
|
-
version "5.
|
3325
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.
|
3326
|
-
integrity sha512-
|
3278
|
+
version "5.95.0"
|
3279
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.95.0.tgz#8fd8c454fa60dad186fbe36c400a55848307b4c0"
|
3280
|
+
integrity sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==
|
3327
3281
|
dependencies:
|
3328
|
-
"@types/eslint-scope" "^3.7.3"
|
3329
3282
|
"@types/estree" "^1.0.5"
|
3330
3283
|
"@webassemblyjs/ast" "^1.12.1"
|
3331
3284
|
"@webassemblyjs/wasm-edit" "^1.12.1"
|
@@ -3334,7 +3287,7 @@ webpack@^5.75.0:
|
|
3334
3287
|
acorn-import-attributes "^1.9.5"
|
3335
3288
|
browserslist "^4.21.10"
|
3336
3289
|
chrome-trace-event "^1.0.2"
|
3337
|
-
enhanced-resolve "^5.17.
|
3290
|
+
enhanced-resolve "^5.17.1"
|
3338
3291
|
es-module-lexer "^1.2.1"
|
3339
3292
|
eslint-scope "5.1.1"
|
3340
3293
|
events "^3.2.0"
|
@@ -3363,9 +3316,9 @@ wildcard@^2.0.0:
|
|
3363
3316
|
integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==
|
3364
3317
|
|
3365
3318
|
ws@^7.3.1:
|
3366
|
-
version "7.5.
|
3367
|
-
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.
|
3368
|
-
integrity sha512
|
3319
|
+
version "7.5.10"
|
3320
|
+
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9"
|
3321
|
+
integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==
|
3369
3322
|
|
3370
3323
|
yallist@^3.0.2:
|
3371
3324
|
version "3.1.1"
|
@@ -3373,6 +3326,6 @@ yallist@^3.0.2:
|
|
3373
3326
|
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
|
3374
3327
|
|
3375
3328
|
yocto-queue@^1.0.0:
|
3376
|
-
version "1.
|
3377
|
-
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.
|
3378
|
-
integrity sha512-
|
3329
|
+
version "1.1.1"
|
3330
|
+
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.1.1.tgz#fef65ce3ac9f8a32ceac5a634f74e17e5b232110"
|
3331
|
+
integrity sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==
|