playwright-ruby-client 0.6.2 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/documentation/docs/api/browser.md +2 -1
  3. data/documentation/docs/api/browser_context.md +1 -1
  4. data/documentation/docs/api/browser_type.md +54 -1
  5. data/documentation/docs/api/experimental/android.md +3 -2
  6. data/documentation/docs/api/page.md +8 -0
  7. data/documentation/docs/api/route.md +20 -21
  8. data/documentation/docs/api/tracing.md +8 -15
  9. data/documentation/docs/api/web_socket.md +38 -1
  10. data/documentation/docs/article/guides/launch_browser.md +2 -0
  11. data/documentation/docs/article/guides/rails_integration.md +156 -2
  12. data/documentation/docs/article/guides/recording_video.md +79 -0
  13. data/documentation/docs/article/guides/semi_automation.md +67 -0
  14. data/documentation/docs/include/api_coverage.md +7 -8
  15. data/documentation/package.json +1 -1
  16. data/documentation/yarn.lock +478 -498
  17. data/lib/playwright/channel_owners/browser.rb +15 -27
  18. data/lib/playwright/channel_owners/browser_context.rb +13 -5
  19. data/lib/playwright/channel_owners/browser_type.rb +23 -8
  20. data/lib/playwright/channel_owners/page.rb +6 -1
  21. data/lib/playwright/channel_owners/web_socket.rb +87 -0
  22. data/lib/playwright/tracing_impl.rb +9 -9
  23. data/lib/playwright/version.rb +1 -1
  24. data/lib/playwright_api/android.rb +9 -8
  25. data/lib/playwright_api/android_device.rb +6 -6
  26. data/lib/playwright_api/browser.rb +9 -8
  27. data/lib/playwright_api/browser_context.rb +8 -8
  28. data/lib/playwright_api/browser_type.rb +12 -11
  29. data/lib/playwright_api/console_message.rb +6 -6
  30. data/lib/playwright_api/dialog.rb +6 -6
  31. data/lib/playwright_api/element_handle.rb +6 -6
  32. data/lib/playwright_api/frame.rb +6 -6
  33. data/lib/playwright_api/js_handle.rb +6 -6
  34. data/lib/playwright_api/page.rb +14 -14
  35. data/lib/playwright_api/playwright.rb +6 -6
  36. data/lib/playwright_api/request.rb +6 -6
  37. data/lib/playwright_api/response.rb +6 -6
  38. data/lib/playwright_api/route.rb +6 -6
  39. data/lib/playwright_api/selectors.rb +6 -6
  40. data/lib/playwright_api/tracing.rb +6 -12
  41. data/lib/playwright_api/web_socket.rb +28 -6
  42. data/lib/playwright_api/worker.rb +6 -6
  43. data/playwright.gemspec +2 -1
  44. metadata +33 -16
@@ -0,0 +1,79 @@
1
+ ---
2
+ sidebar_position: 4
3
+ ---
4
+
5
+ # Recording video
6
+
7
+ Playwright allows us to record the browser screen during automation.
8
+ https://playwright.dev/docs/videos
9
+
10
+ With this awesome feature, NO NEED to keep our attention focused on the screen during the automation :)
11
+
12
+ ```ruby {7,11-12,15-16}
13
+ require 'tmpdir'
14
+
15
+ playwright.chromium.launch do |browser|
16
+ Dir.mktmpdir do |tmp|
17
+ video_path = nil
18
+
19
+ browser.new_context(record_video_dir: tmp) do |context|
20
+ page = context.new_page
21
+ # play with page
22
+
23
+ # NOTE: Page#video is available **only when browser context is alive.**
24
+ video_path = page.video.path
25
+ end
26
+
27
+ # NOTE: video is completely saved **only after browser context is closed.**
28
+ handle_video_as_you_like(video_path)
29
+ end
30
+ ```
31
+
32
+ ## Specify where to put videos
33
+
34
+ Playwright puts videos on the directory specified at `record_video_dir`.
35
+
36
+ The previous example uses [Dir#mktmpdir](https://docs.ruby-lang.org/ja/latest/method/Dir/s/mktmpdir.html) for storing videos into a temprary directory. Also we simply specify a relative or absolute path like `./my_videos/` or `/path/to/videos`.
37
+
38
+ ## Getting video path and recorded video
39
+
40
+ This is really confising for beginners, but in Playwright
41
+
42
+ * We can get the video path **only when page is alive (before calling BrowserContext#close or Page#close)**
43
+ * We can acquire the completely saved video **only after calling BrowserContext#close**
44
+
45
+ So in most case, we have to store the video path in advance, and handle the saved video after BrowserContext is closed, as is shown the previous example code.
46
+
47
+ ### Using `video#save_as(path)`
48
+
49
+ If you want to just save video to somewhere without handling the video using `File.open`, you can simply use `video#save_as(path_to_save)`.
50
+
51
+ ```ruby {5,8,12-13}
52
+ require 'tmpdir'
53
+
54
+ playwright.chromium.launch do |browser|
55
+ Dir.mktmpdir do |tmp|
56
+ page = nil
57
+
58
+ browser.new_context(record_video_dir: tmp) do |context|
59
+ page = context.new_page
60
+ # play with page
61
+ end
62
+
63
+ # NOTE: video is completely saved **only after browser context is closed.**
64
+ page.video.save_as('my-important-video.webm')
65
+ end
66
+ ```
67
+
68
+ ## Using screen recording from Capybara driver
69
+
70
+ capybara-playwright-driver exposes a function to store the video.
71
+
72
+ ```ruby
73
+ Capybara.current_session.driver.on_save_screenrecord do |video_path|
74
+ # Handling recorded video here.
75
+ # video_path is like '/var/folders/xx/xxxxxxxxxx_xxxxxxxx/T/xxxxxxx-xxxxx-xxxxxxxx/e6bde41c5d05b2a02344b058bf1bfea2.webm'
76
+ end
77
+ ```
78
+
79
+ With this callback registration, we can record the videos without specifying `record_video_dir` explicitly or preparing a temporary directory. capybara-playwright-driver automatically prepare and set `record_video_dir` internally.
@@ -0,0 +1,67 @@
1
+ # Semi-automation
2
+
3
+ Playwright Browser context is isolated and not persisted by default. But we can also use persistent browser context using [BrowserType#launch_persistent_context](/docs/api/browser_type#launch_persistent_context).
4
+ This allow us to intermediate into automation, for example
5
+
6
+ * Authenticate with OAuth2 manually before automation
7
+ * Testing a page after some chrome extensions are installed manually
8
+
9
+ Keep in mind repeatedly that persistent browser context is NOT RECOMMENDED for most cases because it would bring many side effects.
10
+
11
+ ## Pause automation for manual operation
12
+
13
+ `Page#pause` is not implemented yet, however we can use `binding.pry` (with `pry-byebug` installed) instead.
14
+
15
+ ```ruby {4}
16
+ playwright.chromium.launch_persistent_context('./data/', headless: false) do |context|
17
+ page = context.new_page
18
+ page.goto('https://example.com/')
19
+ binding.pry
20
+ end
21
+ ```
22
+
23
+ When script is executed, it is paused as below.
24
+
25
+ ```
26
+ 3:
27
+ 4: playwright.chromium.launch_persistent_context('./data/', headless: false) do |context|
28
+ 5: page = context.new_page
29
+ 6: page.goto('https://example.com/')
30
+ => 7: binding.pry
31
+ 8: end
32
+
33
+ [1] pry(main)>
34
+ ```
35
+
36
+ We can inspect using `page`, `context` and also we can operate something manually during the pause.
37
+
38
+ See https://github.com/deivid-rodriguez/pry-byebug for more detailed debugging options.
39
+
40
+ ## Working with Chrome extensions
41
+
42
+ **Playwright disables the Chrome extension feature by default.**
43
+ We have to enable it for installing Chrome extension, by passing these 3 parameters on launch.
44
+
45
+ * `acceptDownloads: true`
46
+ * `headless: false`
47
+ * `ignoreDefaultArgs: ['--disable-extensions']`
48
+
49
+ ```ruby
50
+ require 'playwright'
51
+ require 'pry'
52
+
53
+ Playwright.create(playwright_cli_executable_path: './node_modules/.bin/playwright') do |playwright|
54
+ launch_params = {
55
+ acceptDownloads: true,
56
+ channel: 'chrome',
57
+ headless: false,
58
+ ignoreDefaultArgs: ['--disable-extensions'],
59
+ }
60
+
61
+ playwright.chromium.launch_persistent_context('./data/', **launch_params) do |context|
62
+ page = context.new_page
63
+ page.goto('https://example.com/')
64
+ binding.pry
65
+ end
66
+ end
67
+ ```
@@ -38,12 +38,12 @@
38
38
  * fulfill
39
39
  * request
40
40
 
41
- ## ~~WebSocket~~
41
+ ## WebSocket
42
42
 
43
- * ~~closed?~~
44
- * ~~url~~
45
- * ~~expect_event~~
46
- * ~~wait_for_event~~
43
+ * closed?
44
+ * url
45
+ * expect_event
46
+ * wait_for_event
47
47
 
48
48
  ## Keyboard
49
49
 
@@ -278,7 +278,7 @@
278
278
  * wait_for_selector
279
279
  * ~~wait_for_timeout~~
280
280
  * wait_for_url
281
- * ~~expect_websocket~~
281
+ * expect_websocket
282
282
  * ~~expect_worker~~
283
283
  * ~~workers~~
284
284
  * ~~wait_for_event~~
@@ -340,7 +340,7 @@
340
340
  * connect_over_cdp
341
341
  * executable_path
342
342
  * launch
343
- * ~~launch_persistent_context~~
343
+ * launch_persistent_context
344
344
  * name
345
345
 
346
346
  ## Playwright
@@ -354,7 +354,6 @@
354
354
 
355
355
  ## Tracing
356
356
 
357
- * export
358
357
  * start
359
358
  * stop
360
359
 
@@ -36,4 +36,4 @@
36
36
  "last 1 safari version"
37
37
  ]
38
38
  }
39
- }
39
+ }
@@ -139,10 +139,10 @@
139
139
  dependencies:
140
140
  "@babel/highlight" "^7.12.13"
141
141
 
142
- "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.13.15", "@babel/compat-data@^7.14.0":
143
- version "7.14.0"
144
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz#a901128bce2ad02565df95e6ecbf195cf9465919"
145
- integrity sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==
142
+ "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.4":
143
+ version "7.14.4"
144
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.4.tgz#45720fe0cecf3fd42019e1d12cc3d27fadc98d58"
145
+ integrity sha512-i2wXrWQNkH6JplJQGn3Rd2I4Pij8GdHkXwHMxm+zV5YG/Jci+bCNrWZEWC4o+umiDkRrRs4dVzH3X4GP7vyjQQ==
146
146
 
147
147
  "@babel/core@7.12.9":
148
148
  version "7.12.9"
@@ -211,26 +211,26 @@
211
211
  "@babel/helper-explode-assignable-expression" "^7.12.13"
212
212
  "@babel/types" "^7.12.13"
213
213
 
214
- "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16":
215
- version "7.13.16"
216
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz#6e91dccf15e3f43e5556dffe32d860109887563c"
217
- integrity sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==
214
+ "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16", "@babel/helper-compilation-targets@^7.14.4":
215
+ version "7.14.4"
216
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.4.tgz#33ebd0ffc34248051ee2089350a929ab02f2a516"
217
+ integrity sha512-JgdzOYZ/qGaKTVkn5qEDV/SXAh8KcyUVkCoSWGN8T3bwrgd6m+/dJa2kVGi6RJYJgEYPBdZ84BZp9dUjNWkBaA==
218
218
  dependencies:
219
- "@babel/compat-data" "^7.13.15"
219
+ "@babel/compat-data" "^7.14.4"
220
220
  "@babel/helper-validator-option" "^7.12.17"
221
- browserslist "^4.14.5"
221
+ browserslist "^4.16.6"
222
222
  semver "^6.3.0"
223
223
 
224
- "@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.14.0", "@babel/helper-create-class-features-plugin@^7.14.3":
225
- version "7.14.3"
226
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.3.tgz#832111bcf4f57ca57a4c5b1a000fc125abc6554a"
227
- integrity sha512-BnEfi5+6J2Lte9LeiL6TxLWdIlEv9Woacc1qXzXBgbikcOzMRM2Oya5XGg/f/ngotv1ej2A/b+3iJH8wbS1+lQ==
224
+ "@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.14.0", "@babel/helper-create-class-features-plugin@^7.14.3", "@babel/helper-create-class-features-plugin@^7.14.4":
225
+ version "7.14.4"
226
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.4.tgz#abf888d836a441abee783c75229279748705dc42"
227
+ integrity sha512-idr3pthFlDCpV+p/rMgGLGYIVtazeatrSOQk8YzO2pAepIjQhCN3myeihVg58ax2bbbGK9PUE1reFi7axOYIOw==
228
228
  dependencies:
229
229
  "@babel/helper-annotate-as-pure" "^7.12.13"
230
230
  "@babel/helper-function-name" "^7.14.2"
231
231
  "@babel/helper-member-expression-to-functions" "^7.13.12"
232
232
  "@babel/helper-optimise-call-expression" "^7.12.13"
233
- "@babel/helper-replace-supers" "^7.14.3"
233
+ "@babel/helper-replace-supers" "^7.14.4"
234
234
  "@babel/helper-split-export-declaration" "^7.12.13"
235
235
 
236
236
  "@babel/helper-create-regexp-features-plugin@^7.12.13":
@@ -241,10 +241,10 @@
241
241
  "@babel/helper-annotate-as-pure" "^7.12.13"
242
242
  regexpu-core "^4.7.1"
243
243
 
244
- "@babel/helper-define-polyfill-provider@^0.2.0":
245
- version "0.2.0"
246
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz#a640051772045fedaaecc6f0c6c69f02bdd34bf1"
247
- integrity sha512-JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw==
244
+ "@babel/helper-define-polyfill-provider@^0.2.2":
245
+ version "0.2.3"
246
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6"
247
+ integrity sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==
248
248
  dependencies:
249
249
  "@babel/helper-compilation-targets" "^7.13.0"
250
250
  "@babel/helper-module-imports" "^7.12.13"
@@ -340,15 +340,15 @@
340
340
  "@babel/helper-wrap-function" "^7.13.0"
341
341
  "@babel/types" "^7.13.0"
342
342
 
343
- "@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.12", "@babel/helper-replace-supers@^7.14.3":
344
- version "7.14.3"
345
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.3.tgz#ca17b318b859d107f0e9b722d58cf12d94436600"
346
- integrity sha512-Rlh8qEWZSTfdz+tgNV/N4gz1a0TMNwCUcENhMjHTHKp3LseYH5Jha0NSlyTQWMnjbYcwFt+bqAMqSLHVXkQ6UA==
343
+ "@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.12", "@babel/helper-replace-supers@^7.14.4":
344
+ version "7.14.4"
345
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.4.tgz#b2ab16875deecfff3ddfcd539bc315f72998d836"
346
+ integrity sha512-zZ7uHCWlxfEAAOVDYQpEf/uyi1dmeC7fX4nCf2iz9drnCwi1zvwXL3HwWWNXUQEJ1k23yVn3VbddiI9iJEXaTQ==
347
347
  dependencies:
348
348
  "@babel/helper-member-expression-to-functions" "^7.13.12"
349
349
  "@babel/helper-optimise-call-expression" "^7.12.13"
350
350
  "@babel/traverse" "^7.14.2"
351
- "@babel/types" "^7.14.2"
351
+ "@babel/types" "^7.14.4"
352
352
 
353
353
  "@babel/helper-simple-access@^7.13.12":
354
354
  version "7.13.12"
@@ -410,9 +410,9 @@
410
410
  js-tokens "^4.0.0"
411
411
 
412
412
  "@babel/parser@^7.12.13", "@babel/parser@^7.12.16", "@babel/parser@^7.12.7", "@babel/parser@^7.14.2", "@babel/parser@^7.14.3":
413
- version "7.14.3"
414
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.3.tgz#9b530eecb071fd0c93519df25c5ff9f14759f298"
415
- integrity sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ==
413
+ version "7.14.4"
414
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.4.tgz#a5c560d6db6cd8e6ed342368dea8039232cbab18"
415
+ integrity sha512-ArliyUsWDUqEGfWcmzpGUzNfLxTdTp6WU4IuP6QFSp9gGfWS6boxFCkJSJ/L4+RG8z/FnIU3WxCk6hPL9SSWeA==
416
416
 
417
417
  "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12":
418
418
  version "7.13.12"
@@ -440,7 +440,7 @@
440
440
  "@babel/helper-create-class-features-plugin" "^7.13.0"
441
441
  "@babel/helper-plugin-utils" "^7.13.0"
442
442
 
443
- "@babel/plugin-proposal-class-static-block@^7.13.11":
443
+ "@babel/plugin-proposal-class-static-block@^7.14.3":
444
444
  version "7.14.3"
445
445
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.3.tgz#5a527e2cae4a4753119c3a3e7f64ecae8ccf1360"
446
446
  integrity sha512-HEjzp5q+lWSjAgJtSluFDrGGosmwTgKwCXdDQZvhKsRlwv3YdkUEqxNrrjesJd+B9E9zvr1PVPVBvhYZ9msjvQ==
@@ -506,13 +506,13 @@
506
506
  "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
507
507
  "@babel/plugin-transform-parameters" "^7.12.1"
508
508
 
509
- "@babel/plugin-proposal-object-rest-spread@^7.14.2":
510
- version "7.14.2"
511
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.2.tgz#e17d418f81cc103fedd4ce037e181c8056225abc"
512
- integrity sha512-hBIQFxwZi8GIp934+nj5uV31mqclC1aYDhctDu5khTi9PCCUOczyy0b34W0oE9U/eJXiqQaKyVsmjeagOaSlbw==
509
+ "@babel/plugin-proposal-object-rest-spread@^7.14.4":
510
+ version "7.14.4"
511
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.4.tgz#0e2b4de419915dc0b409378e829412e2031777c4"
512
+ integrity sha512-AYosOWBlyyXEagrPRfLJ1enStufsr7D1+ddpj8OLi9k7B6+NdZ0t/9V7Fh+wJ4g2Jol8z2JkgczYqtWrZd4vbA==
513
513
  dependencies:
514
- "@babel/compat-data" "^7.14.0"
515
- "@babel/helper-compilation-targets" "^7.13.16"
514
+ "@babel/compat-data" "^7.14.4"
515
+ "@babel/helper-compilation-targets" "^7.14.4"
516
516
  "@babel/helper-plugin-utils" "^7.13.0"
517
517
  "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
518
518
  "@babel/plugin-transform-parameters" "^7.14.2"
@@ -702,23 +702,23 @@
702
702
  dependencies:
703
703
  "@babel/helper-plugin-utils" "^7.12.13"
704
704
 
705
- "@babel/plugin-transform-block-scoping@^7.14.2":
706
- version "7.14.2"
707
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.2.tgz#761cb12ab5a88d640ad4af4aa81f820e6b5fdf5c"
708
- integrity sha512-neZZcP19NugZZqNwMTH+KoBjx5WyvESPSIOQb4JHpfd+zPfqcH65RMu5xJju5+6q/Y2VzYrleQTr+b6METyyxg==
705
+ "@babel/plugin-transform-block-scoping@^7.14.4":
706
+ version "7.14.4"
707
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.4.tgz#caf140b0b2e2462c509553d140e6d0abefb61ed8"
708
+ integrity sha512-5KdpkGxsZlTk+fPleDtGKsA+pon28+ptYmMO8GBSa5fHERCJWAzj50uAfCKBqq42HO+Zot6JF1x37CRprwmN4g==
709
709
  dependencies:
710
710
  "@babel/helper-plugin-utils" "^7.13.0"
711
711
 
712
- "@babel/plugin-transform-classes@^7.14.2":
713
- version "7.14.2"
714
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.2.tgz#3f1196c5709f064c252ad056207d87b7aeb2d03d"
715
- integrity sha512-7oafAVcucHquA/VZCsXv/gmuiHeYd64UJyyTYU+MPfNu0KeNlxw06IeENBO8bJjXVbolu+j1MM5aKQtH1OMCNg==
712
+ "@babel/plugin-transform-classes@^7.14.4":
713
+ version "7.14.4"
714
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.4.tgz#a83c15503fc71a0f99e876fdce7dadbc6575ec3a"
715
+ integrity sha512-p73t31SIj6y94RDVX57rafVjttNr8MvKEgs5YFatNB/xC68zM3pyosuOEcQmYsYlyQaGY9R7rAULVRcat5FKJQ==
716
716
  dependencies:
717
717
  "@babel/helper-annotate-as-pure" "^7.12.13"
718
718
  "@babel/helper-function-name" "^7.14.2"
719
719
  "@babel/helper-optimise-call-expression" "^7.12.13"
720
720
  "@babel/helper-plugin-utils" "^7.13.0"
721
- "@babel/helper-replace-supers" "^7.13.12"
721
+ "@babel/helper-replace-supers" "^7.14.4"
722
722
  "@babel/helper-split-export-declaration" "^7.12.13"
723
723
  globals "^11.1.0"
724
724
 
@@ -729,10 +729,10 @@
729
729
  dependencies:
730
730
  "@babel/helper-plugin-utils" "^7.13.0"
731
731
 
732
- "@babel/plugin-transform-destructuring@^7.13.17":
733
- version "7.13.17"
734
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.17.tgz#678d96576638c19d5b36b332504d3fd6e06dea27"
735
- integrity sha512-UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA==
732
+ "@babel/plugin-transform-destructuring@^7.14.4":
733
+ version "7.14.4"
734
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.4.tgz#acbec502e9951f30f4441eaca1d2f29efade59ed"
735
+ integrity sha512-JyywKreTCGTUsL1OKu1A3ms/R1sTP0WxbpXlALeGzF53eB3bxtNkYdMj9SDgK7g6ImPy76J5oYYKoTtQImlhQA==
736
736
  dependencies:
737
737
  "@babel/helper-plugin-utils" "^7.13.0"
738
738
 
@@ -965,11 +965,11 @@
965
965
  "@babel/helper-plugin-utils" "^7.12.13"
966
966
 
967
967
  "@babel/plugin-transform-typescript@^7.13.0":
968
- version "7.14.3"
969
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.3.tgz#44f67f725a60cccee33d9d6fee5e4f338258f34f"
970
- integrity sha512-G5Bb5pY6tJRTC4ag1visSgiDoGgJ1u1fMUgmc2ijLkcIdzP83Q1qyZX4ggFQ/SkR+PNOatkaYC+nKcTlpsX4ag==
968
+ version "7.14.4"
969
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.4.tgz#1c48829fa6d5f2de646060cd08abb6cda4b521a7"
970
+ integrity sha512-WYdcGNEO7mCCZ2XzRlxwGj3PgeAr50ifkofOUC/+IN/GzKLB+biDPVBUAQN2C/dVZTvEXCp80kfQ1FFZPrwykQ==
971
971
  dependencies:
972
- "@babel/helper-create-class-features-plugin" "^7.14.3"
972
+ "@babel/helper-create-class-features-plugin" "^7.14.4"
973
973
  "@babel/helper-plugin-utils" "^7.13.0"
974
974
  "@babel/plugin-syntax-typescript" "^7.12.13"
975
975
 
@@ -989,25 +989,25 @@
989
989
  "@babel/helper-plugin-utils" "^7.12.13"
990
990
 
991
991
  "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.12.16":
992
- version "7.14.2"
993
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.2.tgz#e80612965da73579c84ad2f963c2359c71524ed5"
994
- integrity sha512-7dD7lVT8GMrE73v4lvDEb85cgcQhdES91BSD7jS/xjC6QY8PnRhux35ac+GCpbiRhp8crexBvZZqnaL6VrY8TQ==
992
+ version "7.14.4"
993
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.4.tgz#73fc3228c59727e5e974319156f304f0d6685a2d"
994
+ integrity sha512-GwMMsuAnDtULyOtuxHhzzuSRxFeP0aR/LNzrHRzP8y6AgDNgqnrfCCBm/1cRdTU75tRs28Eh76poHLcg9VF0LA==
995
995
  dependencies:
996
- "@babel/compat-data" "^7.14.0"
997
- "@babel/helper-compilation-targets" "^7.13.16"
996
+ "@babel/compat-data" "^7.14.4"
997
+ "@babel/helper-compilation-targets" "^7.14.4"
998
998
  "@babel/helper-plugin-utils" "^7.13.0"
999
999
  "@babel/helper-validator-option" "^7.12.17"
1000
1000
  "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12"
1001
1001
  "@babel/plugin-proposal-async-generator-functions" "^7.14.2"
1002
1002
  "@babel/plugin-proposal-class-properties" "^7.13.0"
1003
- "@babel/plugin-proposal-class-static-block" "^7.13.11"
1003
+ "@babel/plugin-proposal-class-static-block" "^7.14.3"
1004
1004
  "@babel/plugin-proposal-dynamic-import" "^7.14.2"
1005
1005
  "@babel/plugin-proposal-export-namespace-from" "^7.14.2"
1006
1006
  "@babel/plugin-proposal-json-strings" "^7.14.2"
1007
1007
  "@babel/plugin-proposal-logical-assignment-operators" "^7.14.2"
1008
1008
  "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.2"
1009
1009
  "@babel/plugin-proposal-numeric-separator" "^7.14.2"
1010
- "@babel/plugin-proposal-object-rest-spread" "^7.14.2"
1010
+ "@babel/plugin-proposal-object-rest-spread" "^7.14.4"
1011
1011
  "@babel/plugin-proposal-optional-catch-binding" "^7.14.2"
1012
1012
  "@babel/plugin-proposal-optional-chaining" "^7.14.2"
1013
1013
  "@babel/plugin-proposal-private-methods" "^7.13.0"
@@ -1030,10 +1030,10 @@
1030
1030
  "@babel/plugin-transform-arrow-functions" "^7.13.0"
1031
1031
  "@babel/plugin-transform-async-to-generator" "^7.13.0"
1032
1032
  "@babel/plugin-transform-block-scoped-functions" "^7.12.13"
1033
- "@babel/plugin-transform-block-scoping" "^7.14.2"
1034
- "@babel/plugin-transform-classes" "^7.14.2"
1033
+ "@babel/plugin-transform-block-scoping" "^7.14.4"
1034
+ "@babel/plugin-transform-classes" "^7.14.4"
1035
1035
  "@babel/plugin-transform-computed-properties" "^7.13.0"
1036
- "@babel/plugin-transform-destructuring" "^7.13.17"
1036
+ "@babel/plugin-transform-destructuring" "^7.14.4"
1037
1037
  "@babel/plugin-transform-dotall-regex" "^7.12.13"
1038
1038
  "@babel/plugin-transform-duplicate-keys" "^7.12.13"
1039
1039
  "@babel/plugin-transform-exponentiation-operator" "^7.12.13"
@@ -1060,7 +1060,7 @@
1060
1060
  "@babel/plugin-transform-unicode-escapes" "^7.12.13"
1061
1061
  "@babel/plugin-transform-unicode-regex" "^7.12.13"
1062
1062
  "@babel/preset-modules" "^0.1.4"
1063
- "@babel/types" "^7.14.2"
1063
+ "@babel/types" "^7.14.4"
1064
1064
  babel-plugin-polyfill-corejs2 "^0.2.0"
1065
1065
  babel-plugin-polyfill-corejs3 "^0.2.0"
1066
1066
  babel-plugin-polyfill-regenerator "^0.2.0"
@@ -1137,10 +1137,10 @@
1137
1137
  debug "^4.1.0"
1138
1138
  globals "^11.1.0"
1139
1139
 
1140
- "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.12.6", "@babel/types@^7.12.7", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.16", "@babel/types@^7.14.0", "@babel/types@^7.14.2", "@babel/types@^7.4.4":
1141
- version "7.14.2"
1142
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.2.tgz#4208ae003107ef8a057ea8333e56eb64d2f6a2c3"
1143
- integrity sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw==
1140
+ "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.12.6", "@babel/types@^7.12.7", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.16", "@babel/types@^7.14.0", "@babel/types@^7.14.2", "@babel/types@^7.14.4", "@babel/types@^7.4.4":
1141
+ version "7.14.4"
1142
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.4.tgz#bfd6980108168593b38b3eb48a24aa026b919bc0"
1143
+ integrity sha512-lCj4aIs0xUefJFQnwwQv2Bxg7Omd6bgquZ6LGC+gGMh6/s5qDVfjuCMlDmYQ15SLsWHd9n+X3E75lKIhl5Lkiw==
1144
1144
  dependencies:
1145
1145
  "@babel/helper-validator-identifier" "^7.14.0"
1146
1146
  to-fast-properties "^2.0.0"
@@ -1551,31 +1551,31 @@
1551
1551
  resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b"
1552
1552
  integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==
1553
1553
 
1554
- "@nodelib/fs.scandir@2.1.4":
1555
- version "2.1.4"
1556
- resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69"
1557
- integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==
1554
+ "@nodelib/fs.scandir@2.1.5":
1555
+ version "2.1.5"
1556
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
1557
+ integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
1558
1558
  dependencies:
1559
- "@nodelib/fs.stat" "2.0.4"
1559
+ "@nodelib/fs.stat" "2.0.5"
1560
1560
  run-parallel "^1.1.9"
1561
1561
 
1562
- "@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2":
1563
- version "2.0.4"
1564
- resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz#a3f2dd61bab43b8db8fa108a121cfffe4c676655"
1565
- integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==
1562
+ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
1563
+ version "2.0.5"
1564
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
1565
+ integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
1566
1566
 
1567
1567
  "@nodelib/fs.walk@^1.2.3":
1568
- version "1.2.6"
1569
- resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz#cce9396b30aa5afe9e3756608f5831adcb53d063"
1570
- integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==
1568
+ version "1.2.7"
1569
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz#94c23db18ee4653e129abd26fb06f870ac9e1ee2"
1570
+ integrity sha512-BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA==
1571
1571
  dependencies:
1572
- "@nodelib/fs.scandir" "2.1.4"
1572
+ "@nodelib/fs.scandir" "2.1.5"
1573
1573
  fastq "^1.6.0"
1574
1574
 
1575
- "@polka/url@^1.0.0-next.9":
1576
- version "1.0.0-next.12"
1577
- resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.12.tgz#431ec342a7195622f86688bbda82e3166ce8cb28"
1578
- integrity sha512-6RglhutqrGFMO1MNUXp95RBuYIuc8wTnMAV5MUhLmjTOy78ncwOw7RgeQ/HeymkKXRhZd0s2DNrM1rL7unk3MQ==
1575
+ "@polka/url@^1.0.0-next.15":
1576
+ version "1.0.0-next.15"
1577
+ resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.15.tgz#6a9d143f7f4f49db2d782f9e1c8839a29b43ae23"
1578
+ integrity sha512-15spi3V28QdevleWBNXE4pIls3nFZmBbUGrW9IVPwiQczuSb9n76TCB4bsk8TSel+I1OkHEdPhu5QKMfY6rQHA==
1579
1579
 
1580
1580
  "@sideway/address@^4.1.0":
1581
1581
  version "4.1.2"
@@ -1723,14 +1723,19 @@
1723
1723
  "@types/estree" "*"
1724
1724
 
1725
1725
  "@types/eslint@*":
1726
- version "7.2.10"
1727
- resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.2.10.tgz#4b7a9368d46c0f8cd5408c23288a59aa2394d917"
1728
- integrity sha512-kUEPnMKrqbtpCq/KTaGFFKAcz6Ethm2EjCoKIDaCmfRBWLbFuTcOJfTlorwbnboXBzahqWLgUp1BQeKHiJzPUQ==
1726
+ version "7.2.13"
1727
+ resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.2.13.tgz#e0ca7219ba5ded402062ad6f926d491ebb29dd53"
1728
+ integrity sha512-LKmQCWAlnVHvvXq4oasNUMTJJb2GwSyTY8+1C7OH5ILR8mPLaljv1jxL1bXW3xB3jFbQxTKxJAvI8PyjB09aBg==
1729
1729
  dependencies:
1730
1730
  "@types/estree" "*"
1731
1731
  "@types/json-schema" "*"
1732
1732
 
1733
- "@types/estree@*", "@types/estree@^0.0.47":
1733
+ "@types/estree@*":
1734
+ version "0.0.48"
1735
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.48.tgz#18dc8091b285df90db2f25aa7d906cfc394b7f74"
1736
+ integrity sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew==
1737
+
1738
+ "@types/estree@^0.0.47":
1734
1739
  version "0.0.47"
1735
1740
  resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.47.tgz#d7a51db20f0650efec24cd04994f523d93172ed4"
1736
1741
  integrity sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg==
@@ -1778,14 +1783,14 @@
1778
1783
  integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==
1779
1784
 
1780
1785
  "@types/node@*":
1781
- version "15.3.0"
1782
- resolved "https://registry.yarnpkg.com/@types/node/-/node-15.3.0.tgz#d6fed7d6bc6854306da3dea1af9f874b00783e26"
1783
- integrity sha512-8/bnjSZD86ZfpBsDlCIkNXIvm+h6wi9g7IqL+kmFkQ+Wvu3JrasgLElfiPgoo8V8vVfnEi0QVS12gbl94h9YsQ==
1786
+ version "15.12.2"
1787
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.2.tgz#1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d"
1788
+ integrity sha512-zjQ69G564OCIWIOHSXyQEEDpdpGl+G348RAKY0XXy9Z5kU9Vzv1GMNnkar/ZJ8dzXB3COzD9Mo9NtRZ4xfgUww==
1784
1789
 
1785
1790
  "@types/node@^14.14.28":
1786
- version "14.14.45"
1787
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.45.tgz#ec2dfb5566ff814d061aef7e141575aedba245cf"
1788
- integrity sha512-DssMqTV9UnnoxDWu959sDLZzfvqCF0qDNRjaWeYSui9xkFe61kKo4l1TWNTQONpuXEm+gLMRvdlzvNHBamzmEw==
1791
+ version "14.17.3"
1792
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.17.3.tgz#6d327abaa4be34a74e421ed6409a0ae2f47f4c3d"
1793
+ integrity sha512-e6ZowgGJmTuXa3GyaPbTGxX17tnThl2aSSizrFthQ7m9uLGZBXiGhgE55cjRZTF5kjZvYn9EOPOMljdjwbflxw==
1789
1794
 
1790
1795
  "@types/parse-json@^4.0.0":
1791
1796
  version "4.0.0"
@@ -1959,9 +1964,9 @@ acorn-walk@^8.0.0:
1959
1964
  integrity sha512-mjmzmv12YIG/G8JQdQuz2MUDShEJ6teYpT5bmWA4q7iwoGen8xtt3twF3OvzIUl+Q06aWIjvnwQUKvQ6TtMRjg==
1960
1965
 
1961
1966
  acorn@^8.0.4, acorn@^8.2.1:
1962
- version "8.2.4"
1963
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.2.4.tgz#caba24b08185c3b56e3168e97d15ed17f4d31fd0"
1964
- integrity sha512-Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg==
1967
+ version "8.3.0"
1968
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.3.0.tgz#1193f9b96c4e8232f00b11a9edff81b2c8b98b88"
1969
+ integrity sha512-tqPKHZ5CaBJw0Xmy0ZZvLs1qTV+BNFSyvn77ASXkpBNfIRk8ev26fKrD9iLGwGA9zedPao52GSHzq8lyZG0NUw==
1965
1970
 
1966
1971
  address@1.1.2, address@^1.0.1:
1967
1972
  version "1.1.2"
@@ -2198,15 +2203,15 @@ atob@^2.1.2:
2198
2203
  resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
2199
2204
  integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
2200
2205
 
2201
- autoprefixer@^10.0.2, autoprefixer@^10.2.5:
2202
- version "10.2.5"
2203
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.2.5.tgz#096a0337dbc96c0873526d7fef5de4428d05382d"
2204
- integrity sha512-7H4AJZXvSsn62SqZyJCP+1AWwOuoYpUfK6ot9vm0e87XD6mT8lDywc9D9OTJPMULyGcvmIxzTAMeG2Cc+YX+fA==
2206
+ autoprefixer@^10.2.0, autoprefixer@^10.2.5:
2207
+ version "10.2.6"
2208
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.2.6.tgz#aadd9ec34e1c98d403e01950038049f0eb252949"
2209
+ integrity sha512-8lChSmdU6dCNMCQopIf4Pe5kipkAGj/fvTMslCsih0uHpOrXOPUEVOmYMMqmw3cekQkSD7EhIeuYl5y0BLdKqg==
2205
2210
  dependencies:
2206
- browserslist "^4.16.3"
2207
- caniuse-lite "^1.0.30001196"
2211
+ browserslist "^4.16.6"
2212
+ caniuse-lite "^1.0.30001230"
2208
2213
  colorette "^1.2.2"
2209
- fraction.js "^4.0.13"
2214
+ fraction.js "^4.1.1"
2210
2215
  normalize-range "^0.1.2"
2211
2216
  postcss-value-parser "^4.1.0"
2212
2217
 
@@ -2257,28 +2262,28 @@ babel-plugin-extract-import-names@1.6.22:
2257
2262
  "@babel/helper-plugin-utils" "7.10.4"
2258
2263
 
2259
2264
  babel-plugin-polyfill-corejs2@^0.2.0:
2260
- version "0.2.0"
2261
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.0.tgz#686775bf9a5aa757e10520903675e3889caeedc4"
2262
- integrity sha512-9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg==
2265
+ version "0.2.2"
2266
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327"
2267
+ integrity sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==
2263
2268
  dependencies:
2264
2269
  "@babel/compat-data" "^7.13.11"
2265
- "@babel/helper-define-polyfill-provider" "^0.2.0"
2270
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
2266
2271
  semver "^6.1.1"
2267
2272
 
2268
2273
  babel-plugin-polyfill-corejs3@^0.2.0:
2269
- version "0.2.0"
2270
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.0.tgz#f4b4bb7b19329827df36ff56f6e6d367026cb7a2"
2271
- integrity sha512-zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg==
2274
+ version "0.2.2"
2275
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.2.tgz#7424a1682ee44baec817327710b1b094e5f8f7f5"
2276
+ integrity sha512-l1Cf8PKk12eEk5QP/NQ6TH8A1pee6wWDJ96WjxrMXFLHLOBFzYM4moG80HFgduVhTqAFez4alnZKEhP/bYHg0A==
2272
2277
  dependencies:
2273
- "@babel/helper-define-polyfill-provider" "^0.2.0"
2278
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
2274
2279
  core-js-compat "^3.9.1"
2275
2280
 
2276
2281
  babel-plugin-polyfill-regenerator@^0.2.0:
2277
- version "0.2.0"
2278
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.0.tgz#853f5f5716f4691d98c84f8069c7636ea8da7ab8"
2279
- integrity sha512-J7vKbCuD2Xi/eEHxquHN14bXAW9CXtecwuLrOIDJtcZzTaPzV1VdEfoUf9AzcRBMolKUQKM9/GVojeh0hFiqMg==
2282
+ version "0.2.2"
2283
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077"
2284
+ integrity sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==
2280
2285
  dependencies:
2281
- "@babel/helper-define-polyfill-provider" "^0.2.0"
2286
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
2282
2287
 
2283
2288
  bail@^1.0.0:
2284
2289
  version "1.0.5"
@@ -2428,7 +2433,7 @@ browserslist@4.14.2:
2428
2433
  escalade "^3.0.2"
2429
2434
  node-releases "^1.1.61"
2430
2435
 
2431
- browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.3, browserslist@^4.16.6:
2436
+ browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.6:
2432
2437
  version "4.16.6"
2433
2438
  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
2434
2439
  integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
@@ -2533,10 +2538,10 @@ caniuse-api@^3.0.0:
2533
2538
  lodash.memoize "^4.1.2"
2534
2539
  lodash.uniq "^4.5.0"
2535
2540
 
2536
- caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001196, caniuse-lite@^1.0.30001219:
2537
- version "1.0.30001228"
2538
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001228.tgz#bfdc5942cd3326fa51ee0b42fbef4da9d492a7fa"
2539
- integrity sha512-QQmLOGJ3DEgokHbMSA8cj2a+geXqmnpyOFT0lhQV6P3/YOJvGDEwoedcwxEQ30gJIwIIunHIicunJ2rzK5gB2A==
2541
+ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001230:
2542
+ version "1.0.30001235"
2543
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001235.tgz#ad5ca75bc5a1f7b12df79ad806d715a43a5ac4ed"
2544
+ integrity sha512-zWEwIVqnzPkSAXOUlQnPW2oKoYb2aLQ4Q5ejdjBcnH63rfypaW34CxaeBn1VMya2XaEU3P/R2qHpWyj+l0BT1A==
2540
2545
 
2541
2546
  ccount@^1.0.0, ccount@^1.0.3:
2542
2547
  version "1.1.0"
@@ -2642,9 +2647,9 @@ ci-info@^2.0.0:
2642
2647
  integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
2643
2648
 
2644
2649
  ci-info@^3.0.0:
2645
- version "3.1.1"
2646
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.1.1.tgz#9a32fcefdf7bcdb6f0a7e1c0f8098ec57897b80a"
2647
- integrity sha512-kdRWLBIJwdsYJWYJFtAFFYxybguqeF91qpZaggjG5Nf8QKdizFG2hjqvaTXbxFIcYbSaD74KpAXv6BSm17DHEQ==
2650
+ version "3.2.0"
2651
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6"
2652
+ integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==
2648
2653
 
2649
2654
  class-utils@^0.3.5:
2650
2655
  version "0.3.6"
@@ -2741,7 +2746,7 @@ collection-visit@^1.0.0:
2741
2746
  map-visit "^1.0.0"
2742
2747
  object-visit "^1.0.0"
2743
2748
 
2744
- color-convert@^1.9.0, color-convert@^1.9.1:
2749
+ color-convert@^1.9.0:
2745
2750
  version "1.9.3"
2746
2751
  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
2747
2752
  integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
@@ -2760,26 +2765,15 @@ color-name@1.1.3:
2760
2765
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
2761
2766
  integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
2762
2767
 
2763
- color-name@^1.0.0, color-name@~1.1.4:
2768
+ color-name@~1.1.4:
2764
2769
  version "1.1.4"
2765
2770
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
2766
2771
  integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
2767
2772
 
2768
- color-string@^1.5.4:
2769
- version "1.5.5"
2770
- resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.5.tgz#65474a8f0e7439625f3d27a6a19d89fc45223014"
2771
- integrity sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==
2772
- dependencies:
2773
- color-name "^1.0.0"
2774
- simple-swizzle "^0.2.2"
2775
-
2776
- color@^3.1.1:
2777
- version "3.1.3"
2778
- resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e"
2779
- integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==
2780
- dependencies:
2781
- color-convert "^1.9.1"
2782
- color-string "^1.5.4"
2773
+ colord@^2.0.1:
2774
+ version "2.0.1"
2775
+ resolved "https://registry.yarnpkg.com/colord/-/colord-2.0.1.tgz#1e7fb1f9fa1cf74f42c58cb9c20320bab8435aa0"
2776
+ integrity sha512-vm5YpaWamD0Ov6TSG0GGmUIwstrWcfKQV/h2CmbR7PbNu41+qdB5PW9lpzhjedrpm08uuYvcXi0Oel1RLZIJuA==
2783
2777
 
2784
2778
  colorette@^1.2.2:
2785
2779
  version "1.2.2"
@@ -2936,22 +2930,22 @@ copy-webpack-plugin@^8.1.0:
2936
2930
  serialize-javascript "^5.0.1"
2937
2931
 
2938
2932
  core-js-compat@^3.9.0, core-js-compat@^3.9.1:
2939
- version "3.12.1"
2940
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.12.1.tgz#2c302c4708505fa7072b0adb5156d26f7801a18b"
2941
- integrity sha512-i6h5qODpw6EsHAoIdQhKoZdWn+dGBF3dSS8m5tif36RlWvW3A6+yu2S16QHUo3CrkzrnEskMAt9f8FxmY9fhWQ==
2933
+ version "3.14.0"
2934
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.14.0.tgz#b574dabf29184681d5b16357bd33d104df3d29a5"
2935
+ integrity sha512-R4NS2eupxtiJU+VwgkF9WTpnSfZW4pogwKHd8bclWU2sp93Pr5S1uYJI84cMOubJRou7bcfL0vmwtLslWN5p3A==
2942
2936
  dependencies:
2943
2937
  browserslist "^4.16.6"
2944
2938
  semver "7.0.0"
2945
2939
 
2946
2940
  core-js-pure@^3.0.0:
2947
- version "3.12.1"
2948
- resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.12.1.tgz#934da8b9b7221e2a2443dc71dfa5bd77a7ea00b8"
2949
- integrity sha512-1cch+qads4JnDSWsvc7d6nzlKAippwjUlf6vykkTLW53VSV+NkE6muGBToAjEA8pG90cSfcud3JgVmW2ds5TaQ==
2941
+ version "3.14.0"
2942
+ resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.14.0.tgz#72bcfacba74a65ffce04bf94ae91d966e80ee553"
2943
+ integrity sha512-YVh+LN2FgNU0odThzm61BsdkwrbrchumFq3oztnE9vTKC4KS2fvnPmcx8t6jnqAyOTCTF4ZSiuK8Qhh7SNcL4g==
2950
2944
 
2951
2945
  core-js@^3.9.1:
2952
- version "3.12.1"
2953
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.12.1.tgz#6b5af4ff55616c08a44d386f1f510917ff204112"
2954
- integrity sha512-Ne9DKPHTObRuB09Dru5AjwKjY4cJHVGu+y5f7coGn1E9Grkc3p2iBwE9AI/nJzsE29mQF7oq+mhYYRqOMFN1Bw==
2946
+ version "3.14.0"
2947
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.14.0.tgz#62322b98c71cc2018b027971a69419e2425c2a6c"
2948
+ integrity sha512-3s+ed8er9ahK+zJpp9ZtuVcDoFzHNiZsPbNAAE4KXgrRHbjSqqNN6xGSXq6bq7TZIbKj4NLrLb6bJ5i+vSVjHA==
2955
2949
 
2956
2950
  core-util-is@~1.0.0:
2957
2951
  version "1.0.2"
@@ -3011,22 +3005,21 @@ css-color-names@^1.0.1:
3011
3005
  resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-1.0.1.tgz#6ff7ee81a823ad46e020fa2fd6ab40a887e2ba67"
3012
3006
  integrity sha512-/loXYOch1qU1biStIFsHH8SxTmOseh1IJqFvy8IujXOm1h+QjUdDhkzOrR5HG8K8mlxREj0yfi8ewCHx0eMxzA==
3013
3007
 
3014
- css-declaration-sorter@6.0.0:
3015
- version "6.0.0"
3016
- resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.0.0.tgz#eb21f75860078627e9e3cc6f5535ccfcea445817"
3017
- integrity sha512-S0TE4E0ha5+tBHdLWPc5n+S8E4dFBS5xScPvgHkLNZwWvX4ISoFGhGeerLC9uS1cKA/sC+K2wHq6qEbcagT/fg==
3008
+ css-declaration-sorter@^6.0.3:
3009
+ version "6.0.3"
3010
+ resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.0.3.tgz#9dfd8ea0df4cc7846827876fafb52314890c21a9"
3011
+ integrity sha512-52P95mvW1SMzuRZegvpluT6yEv0FqQusydKQPZsNN5Q7hh8EwQvN8E2nwuJ16BBvNN6LcoIZXu/Bk58DAhrrxw==
3018
3012
  dependencies:
3019
3013
  timsort "^0.3.0"
3020
3014
 
3021
3015
  css-loader@^5.1.1:
3022
- version "5.2.4"
3023
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.4.tgz#e985dcbce339812cb6104ef3670f08f9893a1536"
3024
- integrity sha512-OFYGyINCKkdQsTrSYxzGSFnGS4gNjcXkKkQgWxK138jgnPt+lepxdjSZNc8sHAl5vP3DhsJUxufWIjOwI8PMMw==
3016
+ version "5.2.6"
3017
+ resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.6.tgz#c3c82ab77fea1f360e587d871a6811f4450cc8d1"
3018
+ integrity sha512-0wyN5vXMQZu6BvjbrPdUJvkCzGEO24HC7IS7nW4llc6BBFC+zwR9CKtYGv63Puzsg10L/o12inMY5/2ByzfD6w==
3025
3019
  dependencies:
3026
- camelcase "^6.2.0"
3027
3020
  icss-utils "^5.1.0"
3028
3021
  loader-utils "^2.0.0"
3029
- postcss "^8.2.10"
3022
+ postcss "^8.2.15"
3030
3023
  postcss-modules-extract-imports "^3.0.0"
3031
3024
  postcss-modules-local-by-default "^4.0.0"
3032
3025
  postcss-modules-scope "^3.0.0"
@@ -3121,64 +3114,64 @@ cssesc@^3.0.0:
3121
3114
  integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
3122
3115
 
3123
3116
  cssnano-preset-advanced@^5.0.0:
3124
- version "5.0.1"
3125
- resolved "https://registry.yarnpkg.com/cssnano-preset-advanced/-/cssnano-preset-advanced-5.0.1.tgz#b551bb9ad3abf7a9a79f0cace3bf50264018df64"
3126
- integrity sha512-g+LB6GcihLXcBEdDh+mzk1qX9jgtBkVpzAg1OlgrH6C+qKIQYRHwAPyaoXy95Ci83sYYXlwJ0OrqLYTIUEBLZQ==
3117
+ version "5.1.2"
3118
+ resolved "https://registry.yarnpkg.com/cssnano-preset-advanced/-/cssnano-preset-advanced-5.1.2.tgz#859bb643e86b32d9fdd5f56ff47f2ec7035da1af"
3119
+ integrity sha512-Joym8pdrIKqzASYvyTwJ9FpkmEcrYToWKWMGVFSggindrEDOpe+FgNpWhWcv6Z7GDZ4kCC3p7PE/oPSGTc8/kw==
3127
3120
  dependencies:
3128
- autoprefixer "^10.0.2"
3129
- cssnano-preset-default "^5.0.1"
3130
- postcss-discard-unused "^5.0.0"
3131
- postcss-merge-idents "^5.0.0"
3132
- postcss-reduce-idents "^5.0.0"
3133
- postcss-zindex "^5.0.0"
3121
+ autoprefixer "^10.2.0"
3122
+ cssnano-preset-default "^5.1.2"
3123
+ postcss-discard-unused "^5.0.1"
3124
+ postcss-merge-idents "^5.0.1"
3125
+ postcss-reduce-idents "^5.0.1"
3126
+ postcss-zindex "^5.0.1"
3134
3127
 
3135
- cssnano-preset-default@^5.0.1:
3136
- version "5.0.1"
3137
- resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.0.1.tgz#76adc00f7aae36ae80552b8356e21bec4b233ca2"
3138
- integrity sha512-cfmfThYODGqhpQKDq9H0MTAqkMvZ3dGbOUTBKw0xWZiIycMqHid22LsJXJl4r1qX4qzDeKxcSyQ/Xb5Mu3Z//Q==
3128
+ cssnano-preset-default@^5.1.2:
3129
+ version "5.1.2"
3130
+ resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.1.2.tgz#5d4877a91769823c5da6bcebd54996ecdf8aca12"
3131
+ integrity sha512-spilp8LRw0sacuxiN9A/dyyPr6G/WISKMBKcBD4NMoPV0ENx4DeuWvIIrSx9PII2nJIDCO3kywkqTPreECBVOg==
3139
3132
  dependencies:
3140
- css-declaration-sorter "6.0.0"
3141
- cssnano-utils "^2.0.0"
3133
+ css-declaration-sorter "^6.0.3"
3134
+ cssnano-utils "^2.0.1"
3142
3135
  postcss-calc "^8.0.0"
3143
- postcss-colormin "^5.0.0"
3144
- postcss-convert-values "^5.0.0"
3145
- postcss-discard-comments "^5.0.0"
3146
- postcss-discard-duplicates "^5.0.0"
3147
- postcss-discard-empty "^5.0.0"
3148
- postcss-discard-overridden "^5.0.0"
3149
- postcss-merge-longhand "^5.0.1"
3150
- postcss-merge-rules "^5.0.0"
3151
- postcss-minify-font-values "^5.0.0"
3152
- postcss-minify-gradients "^5.0.0"
3153
- postcss-minify-params "^5.0.0"
3154
- postcss-minify-selectors "^5.0.0"
3155
- postcss-normalize-charset "^5.0.0"
3156
- postcss-normalize-display-values "^5.0.0"
3157
- postcss-normalize-positions "^5.0.0"
3158
- postcss-normalize-repeat-style "^5.0.0"
3159
- postcss-normalize-string "^5.0.0"
3160
- postcss-normalize-timing-functions "^5.0.0"
3161
- postcss-normalize-unicode "^5.0.0"
3162
- postcss-normalize-url "^5.0.0"
3163
- postcss-normalize-whitespace "^5.0.0"
3164
- postcss-ordered-values "^5.0.0"
3165
- postcss-reduce-initial "^5.0.0"
3166
- postcss-reduce-transforms "^5.0.0"
3167
- postcss-svgo "^5.0.0"
3168
- postcss-unique-selectors "^5.0.0"
3169
-
3170
- cssnano-utils@^2.0.0:
3171
- version "2.0.0"
3172
- resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-2.0.0.tgz#b04baaa312aa3dd5a854b7f61d76b9d94be07f74"
3173
- integrity sha512-xvxmTszdrvSyTACdPe8VU5J6p4sm3egpgw54dILvNqt5eBUv6TFjACLhSxtRuEsxYrgy8uDy269YjScO5aKbGA==
3136
+ postcss-colormin "^5.2.0"
3137
+ postcss-convert-values "^5.0.1"
3138
+ postcss-discard-comments "^5.0.1"
3139
+ postcss-discard-duplicates "^5.0.1"
3140
+ postcss-discard-empty "^5.0.1"
3141
+ postcss-discard-overridden "^5.0.1"
3142
+ postcss-merge-longhand "^5.0.2"
3143
+ postcss-merge-rules "^5.0.2"
3144
+ postcss-minify-font-values "^5.0.1"
3145
+ postcss-minify-gradients "^5.0.1"
3146
+ postcss-minify-params "^5.0.1"
3147
+ postcss-minify-selectors "^5.1.0"
3148
+ postcss-normalize-charset "^5.0.1"
3149
+ postcss-normalize-display-values "^5.0.1"
3150
+ postcss-normalize-positions "^5.0.1"
3151
+ postcss-normalize-repeat-style "^5.0.1"
3152
+ postcss-normalize-string "^5.0.1"
3153
+ postcss-normalize-timing-functions "^5.0.1"
3154
+ postcss-normalize-unicode "^5.0.1"
3155
+ postcss-normalize-url "^5.0.1"
3156
+ postcss-normalize-whitespace "^5.0.1"
3157
+ postcss-ordered-values "^5.0.1"
3158
+ postcss-reduce-initial "^5.0.1"
3159
+ postcss-reduce-transforms "^5.0.1"
3160
+ postcss-svgo "^5.0.2"
3161
+ postcss-unique-selectors "^5.0.1"
3162
+
3163
+ cssnano-utils@^2.0.1:
3164
+ version "2.0.1"
3165
+ resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-2.0.1.tgz#8660aa2b37ed869d2e2f22918196a9a8b6498ce2"
3166
+ integrity sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ==
3174
3167
 
3175
3168
  cssnano@^5.0.0, cssnano@^5.0.1:
3176
- version "5.0.2"
3177
- resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.2.tgz#3f6de4fd5ecb7b5fb636c1a606de5f38cd241493"
3178
- integrity sha512-8JK3EnPsjQsULme9/e5M2hF564f/480hwsdcHvQ7ZtAIMfQ1O3SCfs+b8Mjf5KJxhYApyRshR2QSovEJi2K72Q==
3169
+ version "5.0.5"
3170
+ resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.5.tgz#6b8787123bf4cd5a220a2fa6cb5bc036b0854b48"
3171
+ integrity sha512-L2VtPXnq6rmcMC9vkBOP131sZu3ccRQI27ejKZdmQiPDpUlFkUbpXHgKN+cibeO1U4PItxVZp1zTIn5dHsXoyg==
3179
3172
  dependencies:
3180
3173
  cosmiconfig "^7.0.0"
3181
- cssnano-preset-default "^5.0.1"
3174
+ cssnano-preset-default "^5.1.2"
3182
3175
  is-resolvable "^1.1.0"
3183
3176
 
3184
3177
  csso@^4.0.2, csso@^4.2.0:
@@ -3373,9 +3366,9 @@ dns-equal@^1.0.0:
3373
3366
  integrity sha1-s55/HabrCnW6nBcySzR1PEfgZU0=
3374
3367
 
3375
3368
  dns-packet@^1.3.1:
3376
- version "1.3.1"
3377
- resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.1.tgz#12aa426981075be500b910eedcd0b47dd7deda5a"
3378
- integrity sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==
3369
+ version "1.3.4"
3370
+ resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.4.tgz#e3455065824a2507ba886c55a89963bb107dec6f"
3371
+ integrity sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==
3379
3372
  dependencies:
3380
3373
  ip "^1.1.0"
3381
3374
  safe-buffer "^5.0.1"
@@ -3460,9 +3453,9 @@ domutils@^1.5.1, domutils@^1.7.0:
3460
3453
  domelementtype "1"
3461
3454
 
3462
3455
  domutils@^2.4.3:
3463
- version "2.6.0"
3464
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.6.0.tgz#2e15c04185d43fb16ae7057cb76433c6edb938b7"
3465
- integrity sha512-y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA==
3456
+ version "2.7.0"
3457
+ resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.7.0.tgz#8ebaf0c41ebafcf55b0b72ec31c56323712c5442"
3458
+ integrity sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==
3466
3459
  dependencies:
3467
3460
  dom-serializer "^1.0.1"
3468
3461
  domelementtype "^2.2.0"
@@ -3499,9 +3492,9 @@ ee-first@1.1.1:
3499
3492
  integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
3500
3493
 
3501
3494
  electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.723:
3502
- version "1.3.730"
3503
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.730.tgz#6e1fad8f250827f5524672e572f823b34a6417e1"
3504
- integrity sha512-1Tr3h09wXhmqXnvDyrRe6MFgTeU0ZXy3+rMJWTrOHh/HNesWwBBrKnMxRJWZ86dzs8qQdw2c7ZE1/qeGHygImA==
3495
+ version "1.3.749"
3496
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.749.tgz#0ecebc529ceb49dd2a7c838ae425236644c3439a"
3497
+ integrity sha512-F+v2zxZgw/fMwPz/VUGIggG4ZndDsYy0vlpthi3tjmDZlcfbhN5mYW0evXUsBr2sUtuDANFtle410A9u/sd/4A==
3505
3498
 
3506
3499
  "emoji-regex@>=6.0.0 <=6.1.1":
3507
3500
  version "6.1.1"
@@ -3572,10 +3565,10 @@ error-ex@^1.3.1:
3572
3565
  dependencies:
3573
3566
  is-arrayish "^0.2.1"
3574
3567
 
3575
- es-abstract@^1.17.2, es-abstract@^1.18.0-next.2:
3576
- version "1.18.0"
3577
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4"
3578
- integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==
3568
+ es-abstract@^1.17.2, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2:
3569
+ version "1.18.3"
3570
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0"
3571
+ integrity sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==
3579
3572
  dependencies:
3580
3573
  call-bind "^1.0.2"
3581
3574
  es-to-primitive "^1.2.1"
@@ -3585,14 +3578,14 @@ es-abstract@^1.17.2, es-abstract@^1.18.0-next.2:
3585
3578
  has-symbols "^1.0.2"
3586
3579
  is-callable "^1.2.3"
3587
3580
  is-negative-zero "^2.0.1"
3588
- is-regex "^1.1.2"
3589
- is-string "^1.0.5"
3590
- object-inspect "^1.9.0"
3581
+ is-regex "^1.1.3"
3582
+ is-string "^1.0.6"
3583
+ object-inspect "^1.10.3"
3591
3584
  object-keys "^1.1.1"
3592
3585
  object.assign "^4.1.2"
3593
3586
  string.prototype.trimend "^1.0.4"
3594
3587
  string.prototype.trimstart "^1.0.4"
3595
- unbox-primitive "^1.0.0"
3588
+ unbox-primitive "^1.0.1"
3596
3589
 
3597
3590
  es-module-lexer@^0.4.0:
3598
3591
  version "0.4.1"
@@ -3638,7 +3631,7 @@ escape-string-regexp@^4.0.0:
3638
3631
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
3639
3632
  integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
3640
3633
 
3641
- eslint-scope@^5.1.1:
3634
+ eslint-scope@5.1.1:
3642
3635
  version "5.1.1"
3643
3636
  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
3644
3637
  integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
@@ -3726,9 +3719,9 @@ execa@^1.0.0:
3726
3719
  strip-eof "^1.0.0"
3727
3720
 
3728
3721
  execa@^5.0.0:
3729
- version "5.0.0"
3730
- resolved "https://registry.yarnpkg.com/execa/-/execa-5.0.0.tgz#4029b0007998a841fbd1032e5f4de86a3c1e3376"
3731
- integrity sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==
3722
+ version "5.1.1"
3723
+ resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
3724
+ integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
3732
3725
  dependencies:
3733
3726
  cross-spawn "^7.0.3"
3734
3727
  get-stream "^6.0.0"
@@ -3860,9 +3853,9 @@ fastq@^1.6.0:
3860
3853
  reusify "^1.0.4"
3861
3854
 
3862
3855
  faye-websocket@^0.11.3:
3863
- version "0.11.3"
3864
- resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz#5c0e9a8968e8912c286639fde977a8b209f2508e"
3865
- integrity sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==
3856
+ version "0.11.4"
3857
+ resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da"
3858
+ integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==
3866
3859
  dependencies:
3867
3860
  websocket-driver ">=0.5.1"
3868
3861
 
@@ -4016,15 +4009,15 @@ fork-ts-checker-webpack-plugin@4.1.6:
4016
4009
  tapable "^1.0.0"
4017
4010
  worker-rpc "^0.1.0"
4018
4011
 
4019
- forwarded@~0.1.2:
4020
- version "0.1.2"
4021
- resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
4022
- integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=
4012
+ forwarded@0.2.0:
4013
+ version "0.2.0"
4014
+ resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
4015
+ integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
4023
4016
 
4024
- fraction.js@^4.0.13:
4025
- version "4.1.0"
4026
- resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.1.0.tgz#229ec1cedc8c3c7e5d2d20688ba64f0a43af5830"
4027
- integrity sha512-o9lSKpK0TDqDwTL24Hxqi6I99s942l6TYkfl6WvGWgLOIFz/YonSGKfiSeMadoiNvTfqnfOa9mjb5SGVbBK9/w==
4017
+ fraction.js@^4.1.1:
4018
+ version "4.1.1"
4019
+ resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.1.1.tgz#ac4e520473dae67012d618aab91eda09bcb400ff"
4020
+ integrity sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==
4028
4021
 
4029
4022
  fragment-cache@^0.2.1:
4030
4023
  version "0.2.1"
@@ -4656,11 +4649,6 @@ indent-string@^4.0.0:
4656
4649
  resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
4657
4650
  integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
4658
4651
 
4659
- indexes-of@^1.0.1:
4660
- version "1.0.1"
4661
- resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
4662
- integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
4663
-
4664
4652
  infima@0.2.0-alpha.23:
4665
4653
  version "0.2.0-alpha.23"
4666
4654
  resolved "https://registry.yarnpkg.com/infima/-/infima-0.2.0-alpha.23.tgz#2c17b473784ae8244fd985f126f9c27a49b24523"
@@ -4771,11 +4759,6 @@ is-arrayish@^0.2.1:
4771
4759
  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
4772
4760
  integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
4773
4761
 
4774
- is-arrayish@^0.3.1:
4775
- version "0.3.2"
4776
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
4777
- integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
4778
-
4779
4762
  is-bigint@^1.0.1:
4780
4763
  version "1.0.2"
4781
4764
  resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a"
@@ -5017,7 +5000,7 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4:
5017
5000
  dependencies:
5018
5001
  isobject "^3.0.1"
5019
5002
 
5020
- is-regex@^1.0.4, is-regex@^1.1.2:
5003
+ is-regex@^1.0.4, is-regex@^1.1.3:
5021
5004
  version "1.1.3"
5022
5005
  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f"
5023
5006
  integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==
@@ -5050,7 +5033,7 @@ is-stream@^2.0.0:
5050
5033
  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
5051
5034
  integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
5052
5035
 
5053
- is-string@^1.0.5:
5036
+ is-string@^1.0.5, is-string@^1.0.6:
5054
5037
  version "1.0.6"
5055
5038
  resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f"
5056
5039
  integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==
@@ -5126,7 +5109,7 @@ isobject@^3.0.0, isobject@^3.0.1:
5126
5109
  resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
5127
5110
  integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
5128
5111
 
5129
- jest-worker@^26.3.0, jest-worker@^26.6.2:
5112
+ jest-worker@^26.3.0:
5130
5113
  version "26.6.2"
5131
5114
  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
5132
5115
  integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
@@ -5135,6 +5118,15 @@ jest-worker@^26.3.0, jest-worker@^26.6.2:
5135
5118
  merge-stream "^2.0.0"
5136
5119
  supports-color "^7.0.0"
5137
5120
 
5121
+ jest-worker@^27.0.2:
5122
+ version "27.0.2"
5123
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.2.tgz#4ebeb56cef48b3e7514552f80d0d80c0129f0b05"
5124
+ integrity sha512-EoBdilOTTyOgmHXtw/cPc+ZrCA0KJMrkXzkrPGNwLmnvvlN1nj7MPrxpT7m+otSv2e1TLaVffzDnE/LB14zJMg==
5125
+ dependencies:
5126
+ "@types/node" "*"
5127
+ merge-stream "^2.0.0"
5128
+ supports-color "^8.0.0"
5129
+
5138
5130
  joi@^17.3.0, joi@^17.4.0:
5139
5131
  version "17.4.0"
5140
5132
  resolved "https://registry.yarnpkg.com/joi/-/joi-17.4.0.tgz#b5c2277c8519e016316e49ababd41a1908d9ef20"
@@ -5600,10 +5592,10 @@ micromatch@^4.0.2:
5600
5592
  braces "^3.0.1"
5601
5593
  picomatch "^2.2.3"
5602
5594
 
5603
- mime-db@1.47.0, "mime-db@>= 1.43.0 < 2":
5604
- version "1.47.0"
5605
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c"
5606
- integrity sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==
5595
+ mime-db@1.48.0, "mime-db@>= 1.43.0 < 2":
5596
+ version "1.48.0"
5597
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d"
5598
+ integrity sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==
5607
5599
 
5608
5600
  mime-db@~1.33.0:
5609
5601
  version "1.33.0"
@@ -5618,11 +5610,11 @@ mime-types@2.1.18:
5618
5610
  mime-db "~1.33.0"
5619
5611
 
5620
5612
  mime-types@^2.1.27, mime-types@~2.1.17, mime-types@~2.1.24:
5621
- version "2.1.30"
5622
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.30.tgz#6e7be8b4c479825f85ed6326695db73f9305d62d"
5623
- integrity sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==
5613
+ version "2.1.31"
5614
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b"
5615
+ integrity sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==
5624
5616
  dependencies:
5625
- mime-db "1.47.0"
5617
+ mime-db "1.48.0"
5626
5618
 
5627
5619
  mime@1.6.0:
5628
5620
  version "1.6.0"
@@ -5804,9 +5796,9 @@ node-forge@^0.10.0:
5804
5796
  integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
5805
5797
 
5806
5798
  node-releases@^1.1.61, node-releases@^1.1.71:
5807
- version "1.1.72"
5808
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe"
5809
- integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==
5799
+ version "1.1.73"
5800
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20"
5801
+ integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==
5810
5802
 
5811
5803
  normalize-path@^2.1.1:
5812
5804
  version "2.1.1"
@@ -5826,9 +5818,9 @@ normalize-range@^0.1.2:
5826
5818
  integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
5827
5819
 
5828
5820
  normalize-url@^4.1.0, normalize-url@^4.5.0:
5829
- version "4.5.0"
5830
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129"
5831
- integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==
5821
+ version "4.5.1"
5822
+ resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a"
5823
+ integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==
5832
5824
 
5833
5825
  npm-run-path@^2.0.0:
5834
5826
  version "2.0.2"
@@ -5877,7 +5869,7 @@ object-copy@^0.1.0:
5877
5869
  define-property "^0.2.5"
5878
5870
  kind-of "^3.0.3"
5879
5871
 
5880
- object-inspect@^1.9.0:
5872
+ object-inspect@^1.10.3:
5881
5873
  version "1.10.3"
5882
5874
  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369"
5883
5875
  integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==
@@ -5929,14 +5921,13 @@ object.pick@^1.3.0:
5929
5921
  isobject "^3.0.1"
5930
5922
 
5931
5923
  object.values@^1.1.0:
5932
- version "1.1.3"
5933
- resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.3.tgz#eaa8b1e17589f02f698db093f7c62ee1699742ee"
5934
- integrity sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==
5924
+ version "1.1.4"
5925
+ resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30"
5926
+ integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==
5935
5927
  dependencies:
5936
5928
  call-bind "^1.0.2"
5937
5929
  define-properties "^1.1.3"
5938
- es-abstract "^1.18.0-next.2"
5939
- has "^1.0.3"
5930
+ es-abstract "^1.18.2"
5940
5931
 
5941
5932
  obuf@^1.0.0, obuf@^1.1.2:
5942
5933
  version "1.1.2"
@@ -6181,9 +6172,9 @@ path-key@^3.0.0, path-key@^3.1.0:
6181
6172
  integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
6182
6173
 
6183
6174
  path-parse@^1.0.6:
6184
- version "1.0.6"
6185
- resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
6186
- integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
6175
+ version "1.0.7"
6176
+ resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
6177
+ integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
6187
6178
 
6188
6179
  path-to-regexp@0.1.7:
6189
6180
  version "0.1.7"
@@ -6208,9 +6199,9 @@ path-type@^4.0.0:
6208
6199
  integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
6209
6200
 
6210
6201
  picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3:
6211
- version "2.2.3"
6212
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d"
6213
- integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==
6202
+ version "2.3.0"
6203
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
6204
+ integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
6214
6205
 
6215
6206
  pify@^2.0.0:
6216
6207
  version "2.3.0"
@@ -6277,48 +6268,49 @@ postcss-calc@^8.0.0:
6277
6268
  postcss-selector-parser "^6.0.2"
6278
6269
  postcss-value-parser "^4.0.2"
6279
6270
 
6280
- postcss-colormin@^5.0.0:
6281
- version "5.0.0"
6282
- resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.0.0.tgz#283b8934c8bdbc531e7648aeb0970107f6d06d0e"
6283
- integrity sha512-Yt84+5V6CgS/AhK7d7MA58vG8dSZ7+ytlRtWLaQhag3HXOncTfmYpuUOX4cDoXjvLfw1sHRCHMiBjYhc35CymQ==
6271
+ postcss-colormin@^5.2.0:
6272
+ version "5.2.0"
6273
+ resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.2.0.tgz#2b620b88c0ff19683f3349f4cf9e24ebdafb2c88"
6274
+ integrity sha512-+HC6GfWU3upe5/mqmxuqYZ9B2Wl4lcoUUNkoaX59nEWV4EtADCMiBqui111Bu8R8IvaZTmqmxrqOAqjbHIwXPw==
6284
6275
  dependencies:
6285
- browserslist "^4.16.0"
6286
- color "^3.1.1"
6276
+ browserslist "^4.16.6"
6277
+ caniuse-api "^3.0.0"
6278
+ colord "^2.0.1"
6287
6279
  postcss-value-parser "^4.1.0"
6288
6280
 
6289
- postcss-convert-values@^5.0.0:
6290
- version "5.0.0"
6291
- resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.0.0.tgz#cd77e1d23ebe8fcf508640551eed08e232784cba"
6292
- integrity sha512-V5kmYm4xoBAjNs+eHY/6XzXJkkGeg4kwNf2ocfqhLb1WBPEa4oaSmoi1fnVO7Dkblqvus9h+AenDvhCKUCK7uQ==
6281
+ postcss-convert-values@^5.0.1:
6282
+ version "5.0.1"
6283
+ resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.0.1.tgz#4ec19d6016534e30e3102fdf414e753398645232"
6284
+ integrity sha512-C3zR1Do2BkKkCgC0g3sF8TS0koF2G+mN8xxayZx3f10cIRmTaAnpgpRQZjNekTZxM2ciSPoh2IWJm0VZx8NoQg==
6293
6285
  dependencies:
6294
6286
  postcss-value-parser "^4.1.0"
6295
6287
 
6296
- postcss-discard-comments@^5.0.0:
6297
- version "5.0.0"
6298
- resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.0.0.tgz#6c27310e0657c0b9e38a6175ad001b5aa28964bc"
6299
- integrity sha512-Umig6Gxs8m20RihiXY6QkePd6mp4FxkA1Dg+f/Kd6uw0gEMfKRjDeQOyFkLibexbJJGHpE3lrN/Q0R9SMrUMbQ==
6288
+ postcss-discard-comments@^5.0.1:
6289
+ version "5.0.1"
6290
+ resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz#9eae4b747cf760d31f2447c27f0619d5718901fe"
6291
+ integrity sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==
6300
6292
 
6301
- postcss-discard-duplicates@^5.0.0:
6302
- version "5.0.0"
6303
- resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.0.tgz#6a2c4f779e8d20da6781e90730f234f9e650c51c"
6304
- integrity sha512-vEJJ+Y3pFUnO1FyCBA6PSisGjHtnphL3V6GsNvkASq/VkP3OX5/No5RYXXLxHa2QegStNzg6HYrYdo71uR4caQ==
6293
+ postcss-discard-duplicates@^5.0.1:
6294
+ version "5.0.1"
6295
+ resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz#68f7cc6458fe6bab2e46c9f55ae52869f680e66d"
6296
+ integrity sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==
6305
6297
 
6306
- postcss-discard-empty@^5.0.0:
6307
- version "5.0.0"
6308
- resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.0.0.tgz#0f0a9baee415f5f7be4ae046ba235e98626ba821"
6309
- integrity sha512-+wigy099Y1xZxG36WG5L1f2zeH1oicntkJEW4TDIqKKDO2g9XVB3OhoiHTu08rDEjLnbcab4rw0BAccwi2VjiQ==
6298
+ postcss-discard-empty@^5.0.1:
6299
+ version "5.0.1"
6300
+ resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz#ee136c39e27d5d2ed4da0ee5ed02bc8a9f8bf6d8"
6301
+ integrity sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==
6310
6302
 
6311
- postcss-discard-overridden@^5.0.0:
6312
- version "5.0.0"
6313
- resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.0.0.tgz#ac00f695a60001eda52135a11fac87376b8da9ee"
6314
- integrity sha512-hybnScTaZM2iEA6kzVQ6Spozy7kVdLw+lGw8hftLlBEzt93uzXoltkYp9u0tI8xbfhxDLTOOzHsHQCkYdmzRUg==
6303
+ postcss-discard-overridden@^5.0.1:
6304
+ version "5.0.1"
6305
+ resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.0.1.tgz#454b41f707300b98109a75005ca4ab0ff2743ac6"
6306
+ integrity sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q==
6315
6307
 
6316
- postcss-discard-unused@^5.0.0:
6317
- version "5.0.0"
6318
- resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-5.0.0.tgz#6aad1061a53088d4b4d4363496d85b9b0de34f7e"
6319
- integrity sha512-C+bchjnGRoGlSQjACMts/FlpY3LMDEUS5+9rHKxvl/NFUY/5OYWjkA1AEUo9HDWnFB44CFgcm6khLMSIbrjVEQ==
6308
+ postcss-discard-unused@^5.0.1:
6309
+ version "5.0.1"
6310
+ resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-5.0.1.tgz#63e35a74a154912f93d4e75a1e6ff3cc146f934b"
6311
+ integrity sha512-tD6xR/xyZTwfhKYRw0ylfCY8wbfhrjpKAMnDKRTLMy2fNW5hl0hoV6ap5vo2JdCkuHkP3CHw72beO4Y8pzFdww==
6320
6312
  dependencies:
6321
- postcss-selector-parser "^6.0.4"
6313
+ postcss-selector-parser "^6.0.5"
6322
6314
 
6323
6315
  postcss-loader@^5.2.0:
6324
6316
  version "5.3.0"
@@ -6329,68 +6321,68 @@ postcss-loader@^5.2.0:
6329
6321
  klona "^2.0.4"
6330
6322
  semver "^7.3.4"
6331
6323
 
6332
- postcss-merge-idents@^5.0.0:
6333
- version "5.0.0"
6334
- resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-5.0.0.tgz#13b6598912a96e93552c778bbfeaaf2cfaf46b68"
6335
- integrity sha512-s8wwhAB/SJDPkcVxj31s2SGzgrO66ktUYjWh6j4qwY67Mzxx3/TkK+m/+v6tU/xyW4TmGd4yuyTXsHaaLC0jLg==
6324
+ postcss-merge-idents@^5.0.1:
6325
+ version "5.0.1"
6326
+ resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-5.0.1.tgz#6b5856fc28f2571f28ecce49effb9b0e64be9437"
6327
+ integrity sha512-xu8ueVU0RszbI2gKkxR6mluupsOSSLvt8q4gA2fcKFkA+x6SlH3cb4cFHpDvcRCNFbUmCR/VUub+Y6zPOjPx+Q==
6336
6328
  dependencies:
6337
- cssnano-utils "^2.0.0"
6329
+ cssnano-utils "^2.0.1"
6338
6330
  postcss-value-parser "^4.1.0"
6339
6331
 
6340
- postcss-merge-longhand@^5.0.1:
6341
- version "5.0.1"
6342
- resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.0.1.tgz#1a008ff72d14cd3e2f3d32accc2ad37948bcabf4"
6343
- integrity sha512-H1RO8le5deFGumQzuhJjuL0bIXPRysa+w7xtk5KrHe38oiaSS9ksPXDo24+IOS3SETPhip0J5+1uCOW+ALs3Yw==
6332
+ postcss-merge-longhand@^5.0.2:
6333
+ version "5.0.2"
6334
+ resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.0.2.tgz#277ada51d9a7958e8ef8cf263103c9384b322a41"
6335
+ integrity sha512-BMlg9AXSI5G9TBT0Lo/H3PfUy63P84rVz3BjCFE9e9Y9RXQZD3+h3YO1kgTNsNJy7bBc1YQp8DmSnwLIW5VPcw==
6344
6336
  dependencies:
6345
6337
  css-color-names "^1.0.1"
6346
6338
  postcss-value-parser "^4.1.0"
6347
- stylehacks "^5.0.0"
6339
+ stylehacks "^5.0.1"
6348
6340
 
6349
- postcss-merge-rules@^5.0.0:
6350
- version "5.0.0"
6351
- resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.0.0.tgz#e0d0c0d45c98376f4adb49eb1f1dfe2aebfd7048"
6352
- integrity sha512-TfsXbKjNYCGfUPEXGIGPySnMiJbdS+3gcVeV8gwmJP4RajyKZHW8E0FYDL1WmggTj3hi+m+WUCAvqRpX2ut4Kg==
6341
+ postcss-merge-rules@^5.0.2:
6342
+ version "5.0.2"
6343
+ resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.0.2.tgz#d6e4d65018badbdb7dcc789c4f39b941305d410a"
6344
+ integrity sha512-5K+Md7S3GwBewfB4rjDeol6V/RZ8S+v4B66Zk2gChRqLTCC8yjnHQ601omj9TKftS19OPGqZ/XzoqpzNQQLwbg==
6353
6345
  dependencies:
6354
- browserslist "^4.16.0"
6346
+ browserslist "^4.16.6"
6355
6347
  caniuse-api "^3.0.0"
6356
- cssnano-utils "^2.0.0"
6357
- postcss-selector-parser "^6.0.4"
6348
+ cssnano-utils "^2.0.1"
6349
+ postcss-selector-parser "^6.0.5"
6358
6350
  vendors "^1.0.3"
6359
6351
 
6360
- postcss-minify-font-values@^5.0.0:
6361
- version "5.0.0"
6362
- resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.0.0.tgz#fee5d0fa192fae8757cb744870a0ad02be5f402e"
6363
- integrity sha512-zi2JhFaMOcIaNxhndX5uhsqSY1rexKDp23wV8EOmC9XERqzLbHsoRye3aYF716Zm+hkcR4loqKDt8LZlmihwAg==
6352
+ postcss-minify-font-values@^5.0.1:
6353
+ version "5.0.1"
6354
+ resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.0.1.tgz#a90cefbfdaa075bd3dbaa1b33588bb4dc268addf"
6355
+ integrity sha512-7JS4qIsnqaxk+FXY1E8dHBDmraYFWmuL6cgt0T1SWGRO5bzJf8sUoelwa4P88LEWJZweHevAiDKxHlofuvtIoA==
6364
6356
  dependencies:
6365
6357
  postcss-value-parser "^4.1.0"
6366
6358
 
6367
- postcss-minify-gradients@^5.0.0:
6368
- version "5.0.0"
6369
- resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.0.0.tgz#95dbe61567a45c0cd7ab897d78fb65d5096844ed"
6370
- integrity sha512-/jPtNgs6JySMwgsE5dPOq8a2xEopWTW3RyqoB9fLqxgR+mDUNLSi7joKd+N1z7FXWgVkc4l/dEBMXHgNAaUbvg==
6359
+ postcss-minify-gradients@^5.0.1:
6360
+ version "5.0.1"
6361
+ resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.0.1.tgz#2dc79fd1a1afcb72a9e727bc549ce860f93565d2"
6362
+ integrity sha512-odOwBFAIn2wIv+XYRpoN2hUV3pPQlgbJ10XeXPq8UY2N+9ZG42xu45lTn/g9zZ+d70NKSQD6EOi6UiCMu3FN7g==
6371
6363
  dependencies:
6372
- cssnano-utils "^2.0.0"
6364
+ cssnano-utils "^2.0.1"
6373
6365
  is-color-stop "^1.1.0"
6374
6366
  postcss-value-parser "^4.1.0"
6375
6367
 
6376
- postcss-minify-params@^5.0.0:
6377
- version "5.0.0"
6378
- resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.0.0.tgz#12c7f75d69b0b4827fafbd6649970a53784a9c24"
6379
- integrity sha512-KvZYIxTPBVKjdd+XgObq9A+Sfv8lMkXTpbZTsjhr42XbfWIeLaTItMlygsDWfjArEc3muUfDaUFgNSeDiJ5jug==
6368
+ postcss-minify-params@^5.0.1:
6369
+ version "5.0.1"
6370
+ resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.0.1.tgz#371153ba164b9d8562842fdcd929c98abd9e5b6c"
6371
+ integrity sha512-4RUC4k2A/Q9mGco1Z8ODc7h+A0z7L7X2ypO1B6V8057eVK6mZ6xwz6QN64nHuHLbqbclkX1wyzRnIrdZehTEHw==
6380
6372
  dependencies:
6381
6373
  alphanum-sort "^1.0.2"
6382
6374
  browserslist "^4.16.0"
6383
- cssnano-utils "^2.0.0"
6375
+ cssnano-utils "^2.0.1"
6384
6376
  postcss-value-parser "^4.1.0"
6385
6377
  uniqs "^2.0.0"
6386
6378
 
6387
- postcss-minify-selectors@^5.0.0:
6388
- version "5.0.0"
6389
- resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.0.0.tgz#d3e43d97fd0ba83ba0010950fc5acfa420f7caa9"
6390
- integrity sha512-cEM0O0eWwFIvmo6nfB0lH0vO/XFwgqIvymODbfPXZ1gTA3i76FKnb7TGUrEpiTxaXH6tgYQ6DcTHwRiRS+YQLQ==
6379
+ postcss-minify-selectors@^5.1.0:
6380
+ version "5.1.0"
6381
+ resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.1.0.tgz#4385c845d3979ff160291774523ffa54eafd5a54"
6382
+ integrity sha512-NzGBXDa7aPsAcijXZeagnJBKBPMYLaJJzB8CQh6ncvyl2sIndLVWfbcDi0SBjRWk5VqEjXvf8tYwzoKf4Z07og==
6391
6383
  dependencies:
6392
6384
  alphanum-sort "^1.0.2"
6393
- postcss-selector-parser "^3.1.2"
6385
+ postcss-selector-parser "^6.0.5"
6394
6386
 
6395
6387
  postcss-modules-extract-imports@^3.0.0:
6396
6388
  version "3.0.0"
@@ -6420,114 +6412,105 @@ postcss-modules-values@^4.0.0:
6420
6412
  dependencies:
6421
6413
  icss-utils "^5.0.0"
6422
6414
 
6423
- postcss-normalize-charset@^5.0.0:
6424
- version "5.0.0"
6425
- resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.0.0.tgz#59e1fe2094fb2e3371cc5b054cbc39828a41a710"
6426
- integrity sha512-pqsCkgo9KmQP0ew6DqSA+uP9YN6EfsW20pQ3JU5JoQge09Z6Too4qU0TNDsTNWuEaP8SWsMp+19l15210MsDZQ==
6415
+ postcss-normalize-charset@^5.0.1:
6416
+ version "5.0.1"
6417
+ resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz#121559d1bebc55ac8d24af37f67bd4da9efd91d0"
6418
+ integrity sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==
6427
6419
 
6428
- postcss-normalize-display-values@^5.0.0:
6429
- version "5.0.0"
6430
- resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.0.tgz#4ff2d3b3b5146a366de28ec9e24131a1868f1933"
6431
- integrity sha512-t4f2d//gH1f7Ns0Jq3eNdnWuPT7TeLuISZ6RQx4j8gpl5XrhkdshdNcOnlrEK48YU6Tcb6jqK7dorME3N4oOGA==
6420
+ postcss-normalize-display-values@^5.0.1:
6421
+ version "5.0.1"
6422
+ resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz#62650b965981a955dffee83363453db82f6ad1fd"
6423
+ integrity sha512-uupdvWk88kLDXi5HEyI9IaAJTE3/Djbcrqq8YgjvAVuzgVuqIk3SuJWUisT2gaJbZm1H9g5k2w1xXilM3x8DjQ==
6432
6424
  dependencies:
6433
- cssnano-utils "^2.0.0"
6425
+ cssnano-utils "^2.0.1"
6434
6426
  postcss-value-parser "^4.1.0"
6435
6427
 
6436
- postcss-normalize-positions@^5.0.0:
6437
- version "5.0.0"
6438
- resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.0.0.tgz#fe1d9a8122dd385b9c6908bd2008140dea17750d"
6439
- integrity sha512-0o6/qU5ky74X/eWYj/tv4iiKCm3YqJnrhmVADpIMNXxzFZywsSQxl8F7cKs8jQEtF3VrJBgcDHTexZy1zgDoYg==
6428
+ postcss-normalize-positions@^5.0.1:
6429
+ version "5.0.1"
6430
+ resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.0.1.tgz#868f6af1795fdfa86fbbe960dceb47e5f9492fe5"
6431
+ integrity sha512-rvzWAJai5xej9yWqlCb1OWLd9JjW2Ex2BCPzUJrbaXmtKtgfL8dBMOOMTX6TnvQMtjk3ei1Lswcs78qKO1Skrg==
6440
6432
  dependencies:
6441
6433
  postcss-value-parser "^4.1.0"
6442
6434
 
6443
- postcss-normalize-repeat-style@^5.0.0:
6444
- version "5.0.0"
6445
- resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.0.tgz#e11d88fbf63f89179c6a7391853b2fe7f46e589d"
6446
- integrity sha512-KRT14JbrXKcFMYuc4q7lh8lvv8u22wLyMrq+UpHKLtbx2H/LOjvWXYdoDxmNrrrJzomAWL+ViEXr48/IhSUJnQ==
6435
+ postcss-normalize-repeat-style@^5.0.1:
6436
+ version "5.0.1"
6437
+ resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.1.tgz#cbc0de1383b57f5bb61ddd6a84653b5e8665b2b5"
6438
+ integrity sha512-syZ2itq0HTQjj4QtXZOeefomckiV5TaUO6ReIEabCh3wgDs4Mr01pkif0MeVwKyU/LHEkPJnpwFKRxqWA/7O3w==
6447
6439
  dependencies:
6448
- cssnano-utils "^2.0.0"
6440
+ cssnano-utils "^2.0.1"
6449
6441
  postcss-value-parser "^4.1.0"
6450
6442
 
6451
- postcss-normalize-string@^5.0.0:
6452
- version "5.0.0"
6453
- resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.0.0.tgz#2ea08ff4cb8817ce160755e9fdc7e6ef6d495002"
6454
- integrity sha512-wSO4pf7GNcDZpmelREWYADF1+XZWrAcbFLQCOqoE92ZwYgaP/RLumkUTaamEzdT2YKRZAH8eLLKGWotU/7FNPw==
6443
+ postcss-normalize-string@^5.0.1:
6444
+ version "5.0.1"
6445
+ resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.0.1.tgz#d9eafaa4df78c7a3b973ae346ef0e47c554985b0"
6446
+ integrity sha512-Ic8GaQ3jPMVl1OEn2U//2pm93AXUcF3wz+OriskdZ1AOuYV25OdgS7w9Xu2LO5cGyhHCgn8dMXh9bO7vi3i9pA==
6455
6447
  dependencies:
6456
6448
  postcss-value-parser "^4.1.0"
6457
6449
 
6458
- postcss-normalize-timing-functions@^5.0.0:
6459
- version "5.0.0"
6460
- resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.0.tgz#380eb1c9b179f96efc307c659a8049116f16f381"
6461
- integrity sha512-TwPaDX+wl9wO3MUm23lzGmOzGCGKnpk+rSDgzB2INpakD5dgWR3L6bJq1P1LQYzBAvz8fRIj2NWdnZdV4EV98Q==
6450
+ postcss-normalize-timing-functions@^5.0.1:
6451
+ version "5.0.1"
6452
+ resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.1.tgz#8ee41103b9130429c6cbba736932b75c5e2cb08c"
6453
+ integrity sha512-cPcBdVN5OsWCNEo5hiXfLUnXfTGtSFiBU9SK8k7ii8UD7OLuznzgNRYkLZow11BkQiiqMcgPyh4ZqXEEUrtQ1Q==
6462
6454
  dependencies:
6463
- cssnano-utils "^2.0.0"
6455
+ cssnano-utils "^2.0.1"
6464
6456
  postcss-value-parser "^4.1.0"
6465
6457
 
6466
- postcss-normalize-unicode@^5.0.0:
6467
- version "5.0.0"
6468
- resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.0.tgz#aa46a89c86ae51a01cbca13e73c1ed7b0b38807e"
6469
- integrity sha512-2CpVoz/67rXU5s9tsPZDxG1YGS9OFHwoY9gsLAzrURrCxTAb0H7Vp87/62LvVPgRWTa5ZmvgmqTp2rL8tlm72A==
6458
+ postcss-normalize-unicode@^5.0.1:
6459
+ version "5.0.1"
6460
+ resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.1.tgz#82d672d648a411814aa5bf3ae565379ccd9f5e37"
6461
+ integrity sha512-kAtYD6V3pK0beqrU90gpCQB7g6AOfP/2KIPCVBKJM2EheVsBQmx/Iof+9zR9NFKLAx4Pr9mDhogB27pmn354nA==
6470
6462
  dependencies:
6471
6463
  browserslist "^4.16.0"
6472
6464
  postcss-value-parser "^4.1.0"
6473
6465
 
6474
- postcss-normalize-url@^5.0.0:
6475
- version "5.0.0"
6476
- resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.0.0.tgz#626a4c7d30007f94466cdf245e7ed9f253f1dbd9"
6477
- integrity sha512-ICDaGFBqLgA3dlrCIRuhblLl80D13YtgEV9NJPTYJtgR72vu61KgxAHv+z/lKMs1EbwfSQa3ALjOFLSmXiE34A==
6466
+ postcss-normalize-url@^5.0.1:
6467
+ version "5.0.1"
6468
+ resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.0.1.tgz#ffa9fe545935d8b57becbbb7934dd5e245513183"
6469
+ integrity sha512-hkbG0j58Z1M830/CJ73VsP7gvlG1yF+4y7Fd1w4tD2c7CaA2Psll+pQ6eQhth9y9EaqZSLzamff/D0MZBMbYSg==
6478
6470
  dependencies:
6479
6471
  is-absolute-url "^3.0.3"
6480
6472
  normalize-url "^4.5.0"
6481
6473
  postcss-value-parser "^4.1.0"
6482
6474
 
6483
- postcss-normalize-whitespace@^5.0.0:
6484
- version "5.0.0"
6485
- resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.0.tgz#1faf147a4f8d3d93a3c75109d120b4eefa00589b"
6486
- integrity sha512-KRnxQvQAVkJfaeXSz7JlnD9nBN9sFZF9lrk9452Q2uRoqrRSkinqifF8Iex7wZGei2DZVG/qpmDFDmRvbNAOGA==
6475
+ postcss-normalize-whitespace@^5.0.1:
6476
+ version "5.0.1"
6477
+ resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.1.tgz#b0b40b5bcac83585ff07ead2daf2dcfbeeef8e9a"
6478
+ integrity sha512-iPklmI5SBnRvwceb/XH568yyzK0qRVuAG+a1HFUsFRf11lEJTiQQa03a4RSCQvLKdcpX7XsI1Gen9LuLoqwiqA==
6487
6479
  dependencies:
6488
6480
  postcss-value-parser "^4.1.0"
6489
6481
 
6490
- postcss-ordered-values@^5.0.0:
6491
- version "5.0.0"
6492
- resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.0.0.tgz#a50f224c5f40c566b338b0663655478737dcebee"
6493
- integrity sha512-dPr+SRObiHueCIc4IUaG0aOGQmYkuNu50wQvdXTGKy+rzi2mjmPsbeDsheLk5WPb9Zyf2tp8E+I+h40cnivm6g==
6482
+ postcss-ordered-values@^5.0.1:
6483
+ version "5.0.1"
6484
+ resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.0.1.tgz#79ef6e2bd267ccad3fc0c4f4a586dfd01c131f64"
6485
+ integrity sha512-6mkCF5BQ25HvEcDfrMHCLLFHlraBSlOXFnQMHYhSpDO/5jSR1k8LdEXOkv+7+uzW6o6tBYea1Km0wQSRkPJkwA==
6494
6486
  dependencies:
6495
- cssnano-utils "^2.0.0"
6487
+ cssnano-utils "^2.0.1"
6496
6488
  postcss-value-parser "^4.1.0"
6497
6489
 
6498
- postcss-reduce-idents@^5.0.0:
6499
- version "5.0.0"
6500
- resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-5.0.0.tgz#a6fbc9369b955daa756fe578de2ed916c01eed56"
6501
- integrity sha512-wDth7wkXAZ91i7GNe+/PJKyC9NOR2n04U0t5nnqlvlkKhMhnRn/8NJLYQRa7ZZHPGOZcOfvugrhblioTTg2X8A==
6490
+ postcss-reduce-idents@^5.0.1:
6491
+ version "5.0.1"
6492
+ resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-5.0.1.tgz#99b49ce8ee6f9c179447671cc9693e198e877bb7"
6493
+ integrity sha512-6Rw8iIVFbqtaZExgWK1rpVgP7DPFRPh0DDFZxJ/ADNqPiH10sPCoq5tgo6kLiTyfh9sxjKYjXdc8udLEcPOezg==
6502
6494
  dependencies:
6503
6495
  postcss-value-parser "^4.1.0"
6504
6496
 
6505
- postcss-reduce-initial@^5.0.0:
6506
- version "5.0.0"
6507
- resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.0.0.tgz#c724e5513b0ae7f3d7bff16f0fc82133fb2f820a"
6508
- integrity sha512-wR6pXUaFbSMG1oCKx8pKVA+rnSXCHlca5jMrlmkmif+uig0HNUTV9oGN5kjKsM3mATQAldv2PF9Tbl2vqLFjnA==
6497
+ postcss-reduce-initial@^5.0.1:
6498
+ version "5.0.1"
6499
+ resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.0.1.tgz#9d6369865b0f6f6f6b165a0ef5dc1a4856c7e946"
6500
+ integrity sha512-zlCZPKLLTMAqA3ZWH57HlbCjkD55LX9dsRyxlls+wfuRfqCi5mSlZVan0heX5cHr154Dq9AfbH70LyhrSAezJw==
6509
6501
  dependencies:
6510
6502
  browserslist "^4.16.0"
6511
6503
  caniuse-api "^3.0.0"
6512
6504
 
6513
- postcss-reduce-transforms@^5.0.0:
6514
- version "5.0.0"
6515
- resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.0.tgz#5c820f71fbd4eec82b323523642b7b2d1c7d29ef"
6516
- integrity sha512-iHdGODW4YzM3WjVecBhPQt6fpJC4lGQZxJKjkBNHpp2b8dzmvj0ogKThqya+IRodQEFzjfXgYeESkf172FH5Lw==
6505
+ postcss-reduce-transforms@^5.0.1:
6506
+ version "5.0.1"
6507
+ resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.1.tgz#93c12f6a159474aa711d5269923e2383cedcf640"
6508
+ integrity sha512-a//FjoPeFkRuAguPscTVmRQUODP+f3ke2HqFNgGPwdYnpeC29RZdCBvGRGTsKpMURb/I3p6jdKoBQ2zI+9Q7kA==
6517
6509
  dependencies:
6518
- cssnano-utils "^2.0.0"
6510
+ cssnano-utils "^2.0.1"
6519
6511
  postcss-value-parser "^4.1.0"
6520
6512
 
6521
- postcss-selector-parser@^3.1.2:
6522
- version "3.1.2"
6523
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270"
6524
- integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==
6525
- dependencies:
6526
- dot-prop "^5.2.0"
6527
- indexes-of "^1.0.1"
6528
- uniq "^1.0.1"
6529
-
6530
- postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4:
6513
+ postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5:
6531
6514
  version "6.0.6"
6532
6515
  resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz#2c5bba8174ac2f6981ab631a42ab0ee54af332ea"
6533
6516
  integrity sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==
@@ -6536,27 +6519,27 @@ postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4:
6536
6519
  util-deprecate "^1.0.2"
6537
6520
 
6538
6521
  postcss-sort-media-queries@^3.8.9:
6539
- version "3.9.10"
6540
- resolved "https://registry.yarnpkg.com/postcss-sort-media-queries/-/postcss-sort-media-queries-3.9.10.tgz#7ad3b17706cc134e1d27372bcbb989760d2452fa"
6541
- integrity sha512-pyCWbMrpQq4WjcYFrcVAvxS/+iHnXK5pxa1SAm1s9U4HZjGYU4gkCHwbHbzJ2ZFiiRYpRNRp85QuFvg6ZyKHxw==
6522
+ version "3.10.11"
6523
+ resolved "https://registry.yarnpkg.com/postcss-sort-media-queries/-/postcss-sort-media-queries-3.10.11.tgz#9e06c220c752c69d3ea4a6d55ac7d4960e201c4a"
6524
+ integrity sha512-78Ak5YSnalr+UTdZa2OCSNAxvEnHg3GRqWccStljJW7MqeU0cJtMA5OzaMmn+upM+iI5vykWzibVEAYaaAlSzw==
6542
6525
  dependencies:
6543
6526
  sort-css-media-queries "1.5.4"
6544
6527
 
6545
- postcss-svgo@^5.0.0:
6546
- version "5.0.0"
6547
- resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.0.0.tgz#c8d806e573394ab24f1e233cac5be4c199e9f1b2"
6548
- integrity sha512-M3/VS4sFI1Yp9g0bPL+xzzCNz5iLdRUztoFaugMit5a8sMfkVzzhwqbsOlD8IFFymCdJDmXmh31waYHWw1K4BA==
6528
+ postcss-svgo@^5.0.2:
6529
+ version "5.0.2"
6530
+ resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.0.2.tgz#bc73c4ea4c5a80fbd4b45e29042c34ceffb9257f"
6531
+ integrity sha512-YzQuFLZu3U3aheizD+B1joQ94vzPfE6BNUcSYuceNxlVnKKsOtdo6hL9/zyC168Q8EwfLSgaDSalsUGa9f2C0A==
6549
6532
  dependencies:
6550
6533
  postcss-value-parser "^4.1.0"
6551
6534
  svgo "^2.3.0"
6552
6535
 
6553
- postcss-unique-selectors@^5.0.0:
6554
- version "5.0.0"
6555
- resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.0.0.tgz#17856278f6c38d024defc9694d568bb09dd7f771"
6556
- integrity sha512-o9l4pF8SRn7aCMTmzb/kNv/kjV7wPZpZ8Nlb1Gq8v/Qvw969K1wanz1RVA0ehHzWe9+wHXaC2DvZlak/gdMJ5w==
6536
+ postcss-unique-selectors@^5.0.1:
6537
+ version "5.0.1"
6538
+ resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.0.1.tgz#3be5c1d7363352eff838bd62b0b07a0abad43bfc"
6539
+ integrity sha512-gwi1NhHV4FMmPn+qwBNuot1sG1t2OmacLQ/AX29lzyggnjd+MnVD5uqQmpXO3J17KGL2WAxQruj1qTd3H0gG/w==
6557
6540
  dependencies:
6558
6541
  alphanum-sort "^1.0.2"
6559
- postcss-selector-parser "^6.0.2"
6542
+ postcss-selector-parser "^6.0.5"
6560
6543
  uniqs "^2.0.0"
6561
6544
 
6562
6545
  postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
@@ -6564,22 +6547,19 @@ postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
6564
6547
  resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
6565
6548
  integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
6566
6549
 
6567
- postcss-zindex@^5.0.0:
6568
- version "5.0.0"
6569
- resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-5.0.0.tgz#ffed3576b5a9f0001a9d78fdc075466e1da1839c"
6570
- integrity sha512-thJp90qNZedxzfljsAnu7V35L/Zue/nVvWzPDLKZuqHmwDuy1vd3xkFVYfEa8WZZQaetvHtsi3uwjVD3UJAVeg==
6571
- dependencies:
6572
- has "^1.0.3"
6573
- uniqs "^2.0.0"
6550
+ postcss-zindex@^5.0.1:
6551
+ version "5.0.1"
6552
+ resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-5.0.1.tgz#c585724beb69d356af8c7e68847b28d6298ece03"
6553
+ integrity sha512-nwgtJJys+XmmSGoYCcgkf/VczP8Mp/0OfSv3v0+fw0uABY4yxw+eFs0Xp9nAZHIKnS5j+e9ywQ+RD+ONyvl5pA==
6574
6554
 
6575
- postcss@^8.2.10, postcss@^8.2.4, postcss@^8.2.9:
6576
- version "8.2.15"
6577
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.15.tgz#9e66ccf07292817d226fc315cbbf9bc148fbca65"
6578
- integrity sha512-2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q==
6555
+ postcss@^8.2.10, postcss@^8.2.15, postcss@^8.2.4, postcss@^8.2.9:
6556
+ version "8.3.0"
6557
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.3.0.tgz#b1a713f6172ca427e3f05ef1303de8b65683325f"
6558
+ integrity sha512-+ogXpdAjWGa+fdYY5BQ96V/6tAo+TdSSIMP5huJBIygdWwKtVoB5JWZ7yUd4xZ8r+8Kvvx4nyg/PQ071H4UtcQ==
6579
6559
  dependencies:
6580
6560
  colorette "^1.2.2"
6581
6561
  nanoid "^3.1.23"
6582
- source-map "^0.6.1"
6562
+ source-map-js "^0.6.2"
6583
6563
 
6584
6564
  prepend-http@^2.0.0:
6585
6565
  version "2.0.0"
@@ -6600,9 +6580,9 @@ pretty-time@^1.1.0:
6600
6580
  integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==
6601
6581
 
6602
6582
  prism-react-renderer@^1.1.1:
6603
- version "1.2.0"
6604
- resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-1.2.0.tgz#5ad4f90c3e447069426c8a53a0eafde60909cdf4"
6605
- integrity sha512-GHqzxLYImx1iKN1jJURcuRoA/0ygCcNhfGw1IT8nPIMzarmKQ3Nc+JcG0gi8JXQzuh0C5ShE4npMIoqNin40hg==
6583
+ version "1.2.1"
6584
+ resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-1.2.1.tgz#392460acf63540960e5e3caa699d851264e99b89"
6585
+ integrity sha512-w23ch4f75V1Tnz8DajsYKvY5lF7H1+WvzvLUcF0paFxkTHSp42RS0H5CttdN2Q8RR3DRGZ9v5xD/h3n8C8kGmg==
6606
6586
 
6607
6587
  prismjs@^1.23.0:
6608
6588
  version "1.23.0"
@@ -6656,11 +6636,11 @@ property-information@^5.0.0, property-information@^5.3.0:
6656
6636
  xtend "^4.0.0"
6657
6637
 
6658
6638
  proxy-addr@~2.0.5:
6659
- version "2.0.6"
6660
- resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf"
6661
- integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==
6639
+ version "2.0.7"
6640
+ resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025"
6641
+ integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==
6662
6642
  dependencies:
6663
- forwarded "~0.1.2"
6643
+ forwarded "0.2.0"
6664
6644
  ipaddr.js "1.9.1"
6665
6645
 
6666
6646
  prr@~1.0.1:
@@ -6910,9 +6890,9 @@ react-side-effect@^2.1.0:
6910
6890
  integrity sha512-2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ==
6911
6891
 
6912
6892
  react-textarea-autosize@^8.3.2:
6913
- version "8.3.2"
6914
- resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.2.tgz#4f9374d357b0a6f6469956726722549124a1b2db"
6915
- integrity sha512-JrMWVgQSaExQByP3ggI1eA8zF4mF0+ddVuX7acUeK2V7bmrpjVOY72vmLz2IXFJSAXoY3D80nEzrn0GWajWK3Q==
6893
+ version "8.3.3"
6894
+ resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.3.tgz#f70913945369da453fd554c168f6baacd1fa04d8"
6895
+ integrity sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==
6916
6896
  dependencies:
6917
6897
  "@babel/runtime" "^7.10.2"
6918
6898
  use-composed-ref "^1.0.0"
@@ -7274,9 +7254,9 @@ rtl-detect@^1.0.2:
7274
7254
  integrity sha512-2sMcZO60tL9YDEFe24gqddg3hJ+xSmJFN8IExcQUxeHxQzydQrN6GHPL+yAWgzItXSI7es53hcZC9pJneuZDKA==
7275
7255
 
7276
7256
  rtlcss@^3.1.2:
7277
- version "3.1.2"
7278
- resolved "https://registry.yarnpkg.com/rtlcss/-/rtlcss-3.1.2.tgz#4800d3d03525791a720f676a8ad2c6acf8efdfb2"
7279
- integrity sha512-b04YSX37siupPOWUEguEBReWX2w4QT89C0PI9g2JzZycbq7zrgPmTr1DA1pizSWpKRFdCjjnrx/SSvU4fOHmGg==
7257
+ version "3.2.0"
7258
+ resolved "https://registry.yarnpkg.com/rtlcss/-/rtlcss-3.2.0.tgz#2139734ac45302891182f23f13448c51c07fccaf"
7259
+ integrity sha512-nV3UmaTmA5TkP2dYOR16ULu6FkMOqZRbiXbFZnmWIN9coPfx3gin31VGOPV7vrVMPjNds7pCS2UYy0mwQUdFCQ==
7280
7260
  dependencies:
7281
7261
  chalk "^4.1.0"
7282
7262
  find-up "^5.0.0"
@@ -7557,19 +7537,12 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3:
7557
7537
  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
7558
7538
  integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
7559
7539
 
7560
- simple-swizzle@^0.2.2:
7561
- version "0.2.2"
7562
- resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
7563
- integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=
7564
- dependencies:
7565
- is-arrayish "^0.3.1"
7566
-
7567
7540
  sirv@^1.0.7:
7568
- version "1.0.11"
7569
- resolved "https://registry.yarnpkg.com/sirv/-/sirv-1.0.11.tgz#81c19a29202048507d6ec0d8ba8910fda52eb5a4"
7570
- integrity sha512-SR36i3/LSWja7AJNRBz4fF/Xjpn7lQFI30tZ434dIy+bitLYSP+ZEenHg36i23V2SGEz+kqjksg0uOGZ5LPiqg==
7541
+ version "1.0.12"
7542
+ resolved "https://registry.yarnpkg.com/sirv/-/sirv-1.0.12.tgz#d816c882b35489b3c63290e2f455ae3eccd5f652"
7543
+ integrity sha512-+jQoCxndz7L2tqQL4ZyzfDhky0W/4ZJip3XoOuxyQWnAwMxindLl3Xv1qT4x1YX/re0leShvTm8Uk0kQspGhBg==
7571
7544
  dependencies:
7572
- "@polka/url" "^1.0.0-next.9"
7545
+ "@polka/url" "^1.0.0-next.15"
7573
7546
  mime "^2.3.1"
7574
7547
  totalist "^1.0.0"
7575
7548
 
@@ -7654,6 +7627,11 @@ source-list-map@^2.0.0, source-list-map@^2.0.1:
7654
7627
  resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
7655
7628
  integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
7656
7629
 
7630
+ source-map-js@^0.6.2:
7631
+ version "0.6.2"
7632
+ resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-0.6.2.tgz#0bb5de631b41cfbda6cfba8bd05a80efdfd2385e"
7633
+ integrity sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==
7634
+
7657
7635
  source-map-resolve@^0.5.0:
7658
7636
  version "0.5.3"
7659
7637
  resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
@@ -7873,10 +7851,10 @@ style-to-object@0.3.0, style-to-object@^0.3.0:
7873
7851
  dependencies:
7874
7852
  inline-style-parser "0.1.1"
7875
7853
 
7876
- stylehacks@^5.0.0:
7877
- version "5.0.0"
7878
- resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.0.0.tgz#c49b0b2cf9917fe37dc030b96a4c34698b932933"
7879
- integrity sha512-QOWm6XivDLb+fqffTZP8jrmPmPITVChl2KCY2R05nsCWwLi3VGhCdVc3IVGNwd1zzTt1jPd67zIKjpQfxzQZeA==
7854
+ stylehacks@^5.0.1:
7855
+ version "5.0.1"
7856
+ resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.0.1.tgz#323ec554198520986806388c7fdaebc38d2c06fb"
7857
+ integrity sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==
7880
7858
  dependencies:
7881
7859
  browserslist "^4.16.0"
7882
7860
  postcss-selector-parser "^6.0.4"
@@ -7902,6 +7880,13 @@ supports-color@^7.0.0, supports-color@^7.1.0:
7902
7880
  dependencies:
7903
7881
  has-flag "^4.0.0"
7904
7882
 
7883
+ supports-color@^8.0.0:
7884
+ version "8.1.1"
7885
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
7886
+ integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
7887
+ dependencies:
7888
+ has-flag "^4.0.0"
7889
+
7905
7890
  svg-parser@^2.0.2:
7906
7891
  version "2.0.4"
7907
7892
  resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5"
@@ -7950,11 +7935,11 @@ tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0:
7950
7935
  integrity sha512-FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw==
7951
7936
 
7952
7937
  terser-webpack-plugin@^5.1.1:
7953
- version "5.1.2"
7954
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.1.2.tgz#51d295eb7cc56785a67a372575fdc46e42d5c20c"
7955
- integrity sha512-6QhDaAiVHIQr5Ab3XUWZyDmrIPCHMiqJVljMF91YKyqwKkL5QHnYMkrMBy96v9Z7ev1hGhSEw1HQZc2p/s5Z8Q==
7938
+ version "5.1.3"
7939
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.1.3.tgz#30033e955ca28b55664f1e4b30a1347e61aa23af"
7940
+ integrity sha512-cxGbMqr6+A2hrIB5ehFIF+F/iST5ZOxvOmy9zih9ySbP1C2oEWQSOUS+2SNBTjzx5xLKO4xnod9eywdfq1Nb9A==
7956
7941
  dependencies:
7957
- jest-worker "^26.6.2"
7942
+ jest-worker "^27.0.2"
7958
7943
  p-limit "^3.1.0"
7959
7944
  schema-utils "^3.0.0"
7960
7945
  serialize-javascript "^5.0.1"
@@ -8121,7 +8106,7 @@ ua-parser-js@^0.7.18:
8121
8106
  resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.28.tgz#8ba04e653f35ce210239c64661685bf9121dec31"
8122
8107
  integrity sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==
8123
8108
 
8124
- unbox-primitive@^1.0.0:
8109
+ unbox-primitive@^1.0.1:
8125
8110
  version "1.0.1"
8126
8111
  resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
8127
8112
  integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
@@ -8195,11 +8180,6 @@ union-value@^1.0.0:
8195
8180
  is-extendable "^0.1.1"
8196
8181
  set-value "^2.0.1"
8197
8182
 
8198
- uniq@^1.0.1:
8199
- version "1.0.1"
8200
- resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
8201
- integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
8202
-
8203
8183
  uniqs@^2.0.0:
8204
8184
  version "2.0.0"
8205
8185
  resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
@@ -8470,10 +8450,10 @@ wait-on@^5.2.1:
8470
8450
  minimist "^1.2.5"
8471
8451
  rxjs "^6.6.3"
8472
8452
 
8473
- watchpack@^2.0.0:
8474
- version "2.1.1"
8475
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.1.1.tgz#e99630550fca07df9f90a06056987baa40a689c7"
8476
- integrity sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==
8453
+ watchpack@^2.2.0:
8454
+ version "2.2.0"
8455
+ resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.2.0.tgz#47d78f5415fe550ecd740f99fe2882323a58b1ce"
8456
+ integrity sha512-up4YAn/XHgZHIxFBVCdlMiWDj6WaLKpwVeGQk2I5thdYxF/KmF0aaz6TfJZ/hfl1h/XlcDr7k1KH7ThDagpFaA==
8477
8457
  dependencies:
8478
8458
  glob-to-regexp "^0.4.1"
8479
8459
  graceful-fs "^4.1.2"
@@ -8564,9 +8544,9 @@ webpack-log@^2.0.0:
8564
8544
  uuid "^3.3.2"
8565
8545
 
8566
8546
  webpack-merge@^5.7.3:
8567
- version "5.7.3"
8568
- resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.7.3.tgz#2a0754e1877a25a8bbab3d2475ca70a052708213"
8569
- integrity sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==
8547
+ version "5.8.0"
8548
+ resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61"
8549
+ integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==
8570
8550
  dependencies:
8571
8551
  clone-deep "^4.0.1"
8572
8552
  wildcard "^2.0.0"
@@ -8579,18 +8559,18 @@ webpack-sources@^1.1.0, webpack-sources@^1.4.3:
8579
8559
  source-list-map "^2.0.0"
8580
8560
  source-map "~0.6.1"
8581
8561
 
8582
- webpack-sources@^2.1.1:
8583
- version "2.2.0"
8584
- resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.2.0.tgz#058926f39e3d443193b6c31547229806ffd02bac"
8585
- integrity sha512-bQsA24JLwcnWGArOKUxYKhX3Mz/nK1Xf6hxullKERyktjNMC4x8koOeaDNTA2fEJ09BdWLbM/iTW0ithREUP0w==
8562
+ webpack-sources@^2.3.0:
8563
+ version "2.3.0"
8564
+ resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.0.tgz#9ed2de69b25143a4c18847586ad9eccb19278cfa"
8565
+ integrity sha512-WyOdtwSvOML1kbgtXbTDnEW0jkJ7hZr/bDByIwszhWd/4XX1A3XMkrbFMsuH4+/MfLlZCUzlAdg4r7jaGKEIgQ==
8586
8566
  dependencies:
8587
8567
  source-list-map "^2.0.1"
8588
8568
  source-map "^0.6.1"
8589
8569
 
8590
8570
  webpack@^5.28.0:
8591
- version "5.37.0"
8592
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.37.0.tgz#2ab00f613faf494504eb2beef278dab7493cc39d"
8593
- integrity sha512-yvdhgcI6QkQkDe1hINBAJ1UNevqNGTVaCkD2SSJcB8rcrNNl922RI8i2DXUAuNfANoxwsiXXEA4ZPZI9q2oGLA==
8571
+ version "5.38.1"
8572
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.38.1.tgz#5224c7f24c18e729268d3e3bc97240d6e880258e"
8573
+ integrity sha512-OqRmYD1OJbHZph6RUMD93GcCZy4Z4wC0ele4FXyYF0J6AxO1vOSuIlU1hkS/lDlR9CDYBz64MZRmdbdnFFoT2g==
8594
8574
  dependencies:
8595
8575
  "@types/eslint-scope" "^3.7.0"
8596
8576
  "@types/estree" "^0.0.47"
@@ -8602,7 +8582,7 @@ webpack@^5.28.0:
8602
8582
  chrome-trace-event "^1.0.2"
8603
8583
  enhanced-resolve "^5.8.0"
8604
8584
  es-module-lexer "^0.4.0"
8605
- eslint-scope "^5.1.1"
8585
+ eslint-scope "5.1.1"
8606
8586
  events "^3.2.0"
8607
8587
  glob-to-regexp "^0.4.1"
8608
8588
  graceful-fs "^4.2.4"
@@ -8613,8 +8593,8 @@ webpack@^5.28.0:
8613
8593
  schema-utils "^3.0.0"
8614
8594
  tapable "^2.1.1"
8615
8595
  terser-webpack-plugin "^5.1.1"
8616
- watchpack "^2.0.0"
8617
- webpack-sources "^2.1.1"
8596
+ watchpack "^2.2.0"
8597
+ webpack-sources "^2.3.0"
8618
8598
 
8619
8599
  webpackbar@^5.0.0-3:
8620
8600
  version "5.0.0-3"
@@ -8727,16 +8707,16 @@ write-file-atomic@^3.0.0:
8727
8707
  typedarray-to-buffer "^3.1.5"
8728
8708
 
8729
8709
  ws@^6.2.1:
8730
- version "6.2.1"
8731
- resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb"
8732
- integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==
8710
+ version "6.2.2"
8711
+ resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e"
8712
+ integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==
8733
8713
  dependencies:
8734
8714
  async-limiter "~1.0.0"
8735
8715
 
8736
8716
  ws@^7.3.1:
8737
- version "7.4.5"
8738
- resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1"
8739
- integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==
8717
+ version "7.4.6"
8718
+ resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c"
8719
+ integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==
8740
8720
 
8741
8721
  xdg-basedir@^4.0.0:
8742
8722
  version "4.0.0"