block_editor 0.1.3 → 1.0.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.
- checksums.yaml +4 -4
- data/README.md +35 -14
- data/app/assets/images/block_editor/contact-form-block.svg +1 -0
- data/app/assets/stylesheets/block_editor/_utilities.scss +16 -0
- data/app/assets/stylesheets/block_editor/backend.scss +70 -2
- data/app/assets/stylesheets/block_editor/blocks/_backend.scss +7 -0
- data/app/assets/stylesheets/block_editor/blocks/_frontend.scss +11 -0
- data/app/assets/stylesheets/block_editor/blocks/be-accordion/_frontend.scss +3 -0
- data/app/assets/stylesheets/block_editor/blocks/be-alert/_frontend.scss +13 -0
- data/app/assets/stylesheets/block_editor/blocks/be-card/_backend.scss +7 -0
- data/app/assets/stylesheets/block_editor/{backend/blocks.scss → blocks/be-card/_frontend.scss} +0 -0
- data/app/assets/stylesheets/block_editor/blocks/be-contact-form/_backend.scss +22 -0
- data/app/assets/stylesheets/block_editor/blocks/be-cover/_backend.scss +8 -0
- data/app/assets/stylesheets/block_editor/blocks/be-cover/_frontend.scss +37 -0
- data/app/assets/stylesheets/block_editor/blocks/block/_backend.scss +11 -0
- data/app/assets/stylesheets/block_editor/blocks/button/_frontend.scss +46 -0
- data/app/assets/stylesheets/block_editor/blocks/buttons/_backend.scss +10 -0
- data/app/assets/stylesheets/block_editor/blocks/buttons/_frontend.scss +3 -0
- data/app/assets/stylesheets/block_editor/blocks/column/_frontend.scss +18 -0
- data/app/assets/stylesheets/block_editor/blocks/columns/_backend.scss +8 -0
- data/app/assets/stylesheets/block_editor/blocks/columns/_frontend.scss +14 -0
- data/app/assets/stylesheets/block_editor/blocks/image/_backend.scss +10 -0
- data/app/assets/stylesheets/block_editor/blocks/image/_frontend.scss +21 -0
- data/app/assets/stylesheets/block_editor/blocks/seperator/_frontend.scss +19 -0
- data/app/assets/stylesheets/block_editor/blocks/table/_frontend.scss +67 -0
- data/app/assets/stylesheets/block_editor/host_app/_variables.scss +1 -0
- data/app/assets/stylesheets/block_editor/host_app/blocks/_backend.scss +1 -0
- data/app/assets/stylesheets/block_editor/host_app/blocks/_frontend.scss +1 -0
- data/app/javascript/block_editor/blocks/be-accordion/index.js +108 -0
- data/app/javascript/block_editor/blocks/be-alert/index.js +51 -0
- data/app/javascript/block_editor/blocks/be-card/index.js +205 -0
- data/app/javascript/block_editor/blocks/be-contact-form/index.js +24 -0
- data/app/javascript/block_editor/blocks/be-cover/index.js +135 -0
- data/app/javascript/block_editor/blocks/block/edit-panel/index.js +132 -0
- data/app/javascript/block_editor/blocks/block/edit.js +163 -0
- data/app/javascript/block_editor/blocks/button/edit.js +0 -13
- data/app/javascript/block_editor/blocks/index.js +51 -102
- data/app/javascript/block_editor/components/block-editor/index.js +107 -36
- data/app/javascript/block_editor/components/block-editor/popover-wrapper.js +60 -0
- data/app/javascript/block_editor/components/block-editor/styles.scss +0 -11
- data/app/javascript/block_editor/components/header/index.js +28 -6
- data/app/javascript/block_editor/components/header/redo.js +1 -1
- data/app/javascript/block_editor/components/header/styles.scss +12 -11
- data/app/javascript/block_editor/components/media-upload/index.js +3 -3
- data/app/javascript/block_editor/components/sidebar/index.js +1 -3
- data/app/javascript/block_editor/components/sidebar/styles.scss +35 -35
- data/app/javascript/block_editor/stores/actions.js +12 -0
- data/app/javascript/block_editor/stores/reducer.js +23 -3
- data/app/javascript/block_editor/stores/selectors.js +14 -3
- data/app/javascript/controllers/block_editor_controller.jsx +15 -8
- data/app/javascript/controllers/index.js +2 -0
- data/app/javascript/packs/block_editor/application.scss +70 -26
- data/app/models/block_editor/block_list.rb +45 -1
- data/app/models/block_editor/block_list_connection.rb +6 -0
- data/app/views/block_editor/blocks/be/contact-form/_block.html +3 -0
- data/db/migrate/20210506220328_create_block_list_connections.rb +8 -0
- data/lib/block_editor.rb +3 -1
- data/lib/block_editor/block_list_renderer.rb +12 -6
- data/lib/block_editor/blocks/base.rb +1 -1
- data/lib/block_editor/blocks/contact_form.rb +11 -0
- data/lib/block_editor/blocks/reusable.rb +16 -0
- data/lib/block_editor/version.rb +1 -1
- data/package.json +16 -7
- data/yarn.lock +727 -530
- metadata +42 -8
- data/app/assets/stylesheets/block_editor/frontend.scss +0 -1
- data/app/assets/stylesheets/block_editor/frontend/blocks.scss +0 -0
- data/app/javascript/block_editor/blocks/image/edit.js +0 -656
@@ -2,6 +2,50 @@ module BlockEditor
|
|
2
2
|
# Represents a block list
|
3
3
|
class BlockList < ApplicationRecord
|
4
4
|
# Associations
|
5
|
-
belongs_to :listable, polymorphic: true, touch: true
|
5
|
+
belongs_to :listable, polymorphic: true, touch: true, optional: true
|
6
|
+
has_many :inverse_block_list_connections, class_name: "BlockListConnection", foreign_key: "child_id"
|
7
|
+
has_many :block_list_connections, foreign_key: 'parent_id'
|
8
|
+
has_many :parents, :through => :inverse_block_list_connections
|
9
|
+
has_many :reusable_blocks, through: :block_list_connections, source: 'child'
|
10
|
+
|
11
|
+
# Callbacks
|
12
|
+
after_save_commit :touch_parents
|
13
|
+
after_save_commit :set_reusable_blocks
|
14
|
+
before_validation :set_defaults
|
15
|
+
|
16
|
+
# Validations
|
17
|
+
validates :name, presence: true
|
18
|
+
|
19
|
+
# Scopes
|
20
|
+
scope :reusable, -> { where(listable_id: nil, listable_type: nil) }
|
21
|
+
scope :search, ->(query) { where('lower(name) LIKE ?', "%#{query.downcase}%") }
|
22
|
+
|
23
|
+
def reusable?
|
24
|
+
listable_type.nil? && listable_id.nil?
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
def touch_parents
|
30
|
+
parents.touch_all if reusable?
|
31
|
+
end
|
32
|
+
|
33
|
+
def set_reusable_blocks
|
34
|
+
# Find all instances of a reusable block
|
35
|
+
html = Nokogiri::HTML(content)
|
36
|
+
ids = html.xpath('//comment()').select {|comment| comment.inner_text.starts_with?(" wp:#{BlockEditor::Blocks::Reusable.name}") }.map do |block_instance|
|
37
|
+
block_attributes = block_instance.inner_text.split(" wp:#{BlockEditor::Blocks::Reusable.name}")[1][0...-1]
|
38
|
+
block_attributes = block_attributes.blank? ? {} : JSON.parse(block_attributes)
|
39
|
+
block_attributes['ref']
|
40
|
+
end
|
41
|
+
|
42
|
+
self.reusable_block_ids = ids || []
|
43
|
+
end
|
44
|
+
|
45
|
+
def set_defaults
|
46
|
+
if self.name.blank?
|
47
|
+
self.name = Time.now
|
48
|
+
end
|
49
|
+
end
|
6
50
|
end
|
7
51
|
end
|
data/lib/block_editor.rb
CHANGED
@@ -3,6 +3,8 @@ require "block_editor/engine"
|
|
3
3
|
|
4
4
|
require "block_editor/instance"
|
5
5
|
require 'block_editor/blocks/base'
|
6
|
+
require 'block_editor/blocks/contact_form'
|
7
|
+
require 'block_editor/blocks/reusable'
|
6
8
|
require 'block_editor/block_list_renderer'
|
7
9
|
|
8
10
|
module BlockEditor
|
@@ -18,7 +20,7 @@ module BlockEditor
|
|
18
20
|
end
|
19
21
|
|
20
22
|
mattr_accessor :dynamic_blocks
|
21
|
-
@@dynamic_blocks = []
|
23
|
+
@@dynamic_blocks = ['BlockEditor::Blocks::Reusable', 'BlockEditor::Blocks::ContactForm']
|
22
24
|
|
23
25
|
mattr_accessor :frontend_parent_controller
|
24
26
|
@@frontend_parent_controller = 'ApplicationController'
|
@@ -7,19 +7,23 @@ module BlockEditor
|
|
7
7
|
#
|
8
8
|
# @return [String] Parsed content
|
9
9
|
def self.render(raw_html)
|
10
|
-
html = Nokogiri::HTML(raw_html)
|
10
|
+
html = Nokogiri::HTML::DocumentFragment.parse(raw_html)
|
11
11
|
|
12
|
-
#
|
12
|
+
# Find & render all instances of a dynamic block (including reusable blocks)
|
13
13
|
BlockEditor.dynamic_blocks.each do |dynamic_block|
|
14
|
-
|
14
|
+
dynamic_block = dynamic_block.constantize
|
15
|
+
|
16
|
+
html.search('.//comment()').select {|comment| comment.inner_text.starts_with?(" wp:#{dynamic_block.name}") }.each do |block_instance|
|
15
17
|
block_attributes = block_instance.inner_text.split(" wp:#{dynamic_block.name}")[1][0...-1]
|
16
18
|
block_attributes = block_attributes.blank? ? {} : JSON.parse(block_attributes)
|
17
|
-
|
19
|
+
block_content = render_block(dynamic_block, block_attributes)
|
20
|
+
|
21
|
+
block_instance.replace(block_content)
|
18
22
|
end
|
19
23
|
end
|
20
24
|
|
21
|
-
html.
|
22
|
-
html.
|
25
|
+
html.search('.//comment()').remove
|
26
|
+
html.to_s.html_safe
|
23
27
|
end
|
24
28
|
|
25
29
|
# Renders a specific block using the provided options
|
@@ -41,3 +45,5 @@ module BlockEditor
|
|
41
45
|
end
|
42
46
|
end
|
43
47
|
end
|
48
|
+
|
49
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module BlockEditor
|
2
|
+
# Blocks used to render dynamic content
|
3
|
+
module Blocks
|
4
|
+
# Outputs Reusable block
|
5
|
+
class Reusable < Base
|
6
|
+
def self.name
|
7
|
+
'block'
|
8
|
+
end
|
9
|
+
|
10
|
+
# Render the block
|
11
|
+
def self.render(options = {})
|
12
|
+
BlockListRenderer.render(BlockEditor::BlockList.find(options['ref']).content)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
data/lib/block_editor/version.rb
CHANGED
data/package.json
CHANGED
@@ -5,13 +5,15 @@
|
|
5
5
|
"dependencies": {
|
6
6
|
"@babel/core": "7.9.0",
|
7
7
|
"@rails/webpacker": "^5.2.1",
|
8
|
-
"@wordpress/base-styles": "
|
9
|
-
"@wordpress/block-editor": "
|
10
|
-
"@wordpress/block-library": "
|
11
|
-
"@wordpress/components": "
|
12
|
-
"@wordpress/editor": "
|
13
|
-
"@wordpress/format-library": "
|
14
|
-
"@wordpress/interface": "
|
8
|
+
"@wordpress/base-styles": "3.2.0",
|
9
|
+
"@wordpress/block-editor": "5.1.0",
|
10
|
+
"@wordpress/block-library": "2.26.0",
|
11
|
+
"@wordpress/components": "11.1.0",
|
12
|
+
"@wordpress/editor": "9.24.0",
|
13
|
+
"@wordpress/format-library": "1.25.0",
|
14
|
+
"@wordpress/interface": "0.10.0",
|
15
|
+
"@wordpress/reusable-blocks": "1.0.0",
|
16
|
+
"@wordpress/server-side-render": "1.19.0",
|
15
17
|
"babel-loader": "8.1.0",
|
16
18
|
"babel-preset-react-app": "^9.1.2",
|
17
19
|
"react": "^16.13.1",
|
@@ -26,5 +28,12 @@
|
|
26
28
|
},
|
27
29
|
"devDependencies": {
|
28
30
|
"webpack-dev-server": "^3.11.0"
|
31
|
+
},
|
32
|
+
"resolutions": {
|
33
|
+
"**/@wordpress/block-editor": "5.1.0",
|
34
|
+
"**/@wordpress/editor": "9.24.0",
|
35
|
+
"**/@wordpress/reusable-blocks": "1.0.0",
|
36
|
+
"**/@wordpress/components": "11.1.0",
|
37
|
+
"**/@wordpress/server-side-render": "1.19.0"
|
29
38
|
}
|
30
39
|
}
|
data/yarn.lock
CHANGED
@@ -1744,6 +1744,13 @@
|
|
1744
1744
|
dependencies:
|
1745
1745
|
regenerator-runtime "^0.13.4"
|
1746
1746
|
|
1747
|
+
"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10":
|
1748
|
+
version "7.14.0"
|
1749
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6"
|
1750
|
+
integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==
|
1751
|
+
dependencies:
|
1752
|
+
regenerator-runtime "^0.13.4"
|
1753
|
+
|
1747
1754
|
"@babel/runtime@^7.11.2":
|
1748
1755
|
version "7.12.5"
|
1749
1756
|
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e"
|
@@ -1751,7 +1758,7 @@
|
|
1751
1758
|
dependencies:
|
1752
1759
|
regenerator-runtime "^0.13.4"
|
1753
1760
|
|
1754
|
-
"@babel/runtime@^7.3.1", "@babel/runtime@^7.
|
1761
|
+
"@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4":
|
1755
1762
|
version "7.9.6"
|
1756
1763
|
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz#a9102eb5cadedf3f31d08a9ecf294af7827ea29f"
|
1757
1764
|
integrity sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==
|
@@ -1985,10 +1992,10 @@
|
|
1985
1992
|
dependencies:
|
1986
1993
|
mkdirp "^1.0.4"
|
1987
1994
|
|
1988
|
-
"@popperjs/core@^2.4.
|
1989
|
-
version "2.
|
1990
|
-
resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.
|
1991
|
-
integrity sha512-
|
1995
|
+
"@popperjs/core@^2.4.2", "@popperjs/core@^2.5.4":
|
1996
|
+
version "2.9.2"
|
1997
|
+
resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.9.2.tgz#adea7b6953cbb34651766b0548468e743c6a2353"
|
1998
|
+
integrity sha512-VZMYa7+fXHdwIq1TDhSXoVmSPEGM/aa+6Aiq3nVVJ9bXr24zScr+NlKFKC3iPljA7ho/GAZr+d2jOf5GIRC30Q==
|
1992
1999
|
|
1993
2000
|
"@rails/webpacker@^5.2.1":
|
1994
2001
|
version "5.2.1"
|
@@ -2117,11 +2124,37 @@
|
|
2117
2124
|
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
|
2118
2125
|
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
|
2119
2126
|
|
2127
|
+
"@types/prop-types@*":
|
2128
|
+
version "15.7.3"
|
2129
|
+
resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"
|
2130
|
+
integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==
|
2131
|
+
|
2120
2132
|
"@types/q@^1.5.1":
|
2121
2133
|
version "1.5.4"
|
2122
2134
|
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24"
|
2123
2135
|
integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==
|
2124
2136
|
|
2137
|
+
"@types/react-dom@^16.9.0":
|
2138
|
+
version "16.9.12"
|
2139
|
+
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.12.tgz#55cd6b17e73922edb9545e5355a0016c1734e6f4"
|
2140
|
+
integrity sha512-i7NPZZpPte3jtVOoW+eLB7G/jsX5OM6GqQnH+lC0nq0rqwlK0x8WcMEvYDgFWqWhWMlTltTimzdMax6wYfZssA==
|
2141
|
+
dependencies:
|
2142
|
+
"@types/react" "^16"
|
2143
|
+
|
2144
|
+
"@types/react@^16", "@types/react@^16.9.0":
|
2145
|
+
version "16.14.6"
|
2146
|
+
resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.6.tgz#d933a2a6bc1bfe320a5eea480e8f45ba8126d6ee"
|
2147
|
+
integrity sha512-Ol/aFKune+P0FSFKIgf+XbhGzYGyz0p7g5befSt4rmbzfGLaZR0q7jPew9k7d3bvrcuaL8dPy9Oz3XGZmf9n+w==
|
2148
|
+
dependencies:
|
2149
|
+
"@types/prop-types" "*"
|
2150
|
+
"@types/scheduler" "*"
|
2151
|
+
csstype "^3.0.2"
|
2152
|
+
|
2153
|
+
"@types/scheduler@*":
|
2154
|
+
version "0.16.1"
|
2155
|
+
resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275"
|
2156
|
+
integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==
|
2157
|
+
|
2125
2158
|
"@webassemblyjs/ast@1.9.0":
|
2126
2159
|
version "1.9.0"
|
2127
2160
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
|
@@ -2267,607 +2300,676 @@
|
|
2267
2300
|
"@webassemblyjs/wast-parser" "1.9.0"
|
2268
2301
|
"@xtuc/long" "4.2.2"
|
2269
2302
|
|
2270
|
-
"@wordpress/a11y@^2.
|
2271
|
-
version "2.
|
2272
|
-
resolved "https://registry.yarnpkg.com/@wordpress/a11y/-/a11y-2.
|
2273
|
-
integrity sha512-
|
2303
|
+
"@wordpress/a11y@^2.13.0", "@wordpress/a11y@^2.15.3":
|
2304
|
+
version "2.15.3"
|
2305
|
+
resolved "https://registry.yarnpkg.com/@wordpress/a11y/-/a11y-2.15.3.tgz#6644aeec483d18c872003b281a0e05f4633ad735"
|
2306
|
+
integrity sha512-uoCznHY3/TaNWeXutLI6juC198ykaBwZ34P51PNHHQqi3WzVoBhFx6AnAR/9Uupl3tZcekefpkVHy7AJHMAPIA==
|
2274
2307
|
dependencies:
|
2275
|
-
"@babel/runtime" "^7.
|
2276
|
-
"@wordpress/dom-ready" "^2.
|
2308
|
+
"@babel/runtime" "^7.13.10"
|
2309
|
+
"@wordpress/dom-ready" "^2.13.2"
|
2310
|
+
"@wordpress/i18n" "^3.20.0"
|
2277
2311
|
|
2278
|
-
"@wordpress/api-fetch@^3.
|
2279
|
-
version "3.
|
2280
|
-
resolved "https://registry.yarnpkg.com/@wordpress/api-fetch/-/api-fetch-3.
|
2281
|
-
integrity sha512-
|
2312
|
+
"@wordpress/api-fetch@^3.20.0":
|
2313
|
+
version "3.23.1"
|
2314
|
+
resolved "https://registry.yarnpkg.com/@wordpress/api-fetch/-/api-fetch-3.23.1.tgz#2a9eb9304bbb19395bf83bc51c7f63e7b32b1369"
|
2315
|
+
integrity sha512-dmeigLuvqYAzpQ2hWUQT1P5VQAjkj9hS1z7PgNi1CcULFPbY8BWW+KiBETUu6Wm+rlSbUL2dC8qrA4JDv9ja5A==
|
2282
2316
|
dependencies:
|
2283
|
-
"@babel/runtime" "^7.
|
2284
|
-
"@wordpress/
|
2285
|
-
"@wordpress/
|
2286
|
-
"@wordpress/i18n" "^3.12.0"
|
2287
|
-
"@wordpress/url" "^2.15.0"
|
2317
|
+
"@babel/runtime" "^7.13.10"
|
2318
|
+
"@wordpress/i18n" "^3.19.2"
|
2319
|
+
"@wordpress/url" "^2.22.2"
|
2288
2320
|
|
2289
|
-
"@wordpress/
|
2290
|
-
version "
|
2291
|
-
resolved "https://registry.yarnpkg.com/@wordpress/
|
2292
|
-
integrity sha512-
|
2321
|
+
"@wordpress/api-fetch@^4.0.0":
|
2322
|
+
version "4.0.0"
|
2323
|
+
resolved "https://registry.yarnpkg.com/@wordpress/api-fetch/-/api-fetch-4.0.0.tgz#86fa1ab40f320dc972d32635ed60059e90678a0d"
|
2324
|
+
integrity sha512-4nWH/gEpG7/VnEJbjbOWS0AWBnX5snPc3ZaKcXNZsLQlv9YgsS8idL/BNkUl9/ylZeez/UX4lJLVkOR5clvg8A==
|
2293
2325
|
dependencies:
|
2294
|
-
"@babel/runtime" "^7.
|
2326
|
+
"@babel/runtime" "^7.13.10"
|
2327
|
+
"@wordpress/i18n" "^3.20.0"
|
2328
|
+
"@wordpress/url" "^2.22.2"
|
2295
2329
|
|
2296
|
-
"@wordpress/
|
2297
|
-
version "
|
2298
|
-
resolved "https://registry.yarnpkg.com/@wordpress/
|
2299
|
-
integrity sha512-
|
2300
|
-
|
2301
|
-
"@wordpress/blob@^2.8.0":
|
2302
|
-
version "2.8.0"
|
2303
|
-
resolved "https://registry.yarnpkg.com/@wordpress/blob/-/blob-2.8.0.tgz#5d35d7017d7ea340714de9b54f53ee2656f680f0"
|
2304
|
-
integrity sha512-5obAEfhdMaDftitAqMXkc8kWyDim1qS8FvVk7m+fZHnkJXFmxdZHJvCAerjjwI//GMVUvZEbpakdWGoW27TIWg==
|
2330
|
+
"@wordpress/autop@^2.10.0", "@wordpress/autop@^2.11.0", "@wordpress/autop@^2.12.2":
|
2331
|
+
version "2.12.2"
|
2332
|
+
resolved "https://registry.yarnpkg.com/@wordpress/autop/-/autop-2.12.2.tgz#c006292f795deeb936b52bb7eeaa9b2258351452"
|
2333
|
+
integrity sha512-c3taxJCmf1Bib33GPm7ihrgFvuzKHycdyE+XWnpa9G3JgZUJTpssFSC5rC3VZ3u+QD8agStBtlOBOyxj6pjQSA==
|
2305
2334
|
dependencies:
|
2306
|
-
"@babel/runtime" "^7.
|
2335
|
+
"@babel/runtime" "^7.13.10"
|
2307
2336
|
|
2308
|
-
"@wordpress/
|
2309
|
-
version "
|
2310
|
-
resolved "https://registry.yarnpkg.com/@wordpress/
|
2311
|
-
integrity sha512-
|
2312
|
-
dependencies:
|
2313
|
-
"@wordpress/api-fetch" "^3.15.0"
|
2314
|
-
"@wordpress/block-editor" "^3.11.0"
|
2315
|
-
"@wordpress/blocks" "^6.16.0"
|
2316
|
-
"@wordpress/components" "^9.6.0"
|
2317
|
-
"@wordpress/compose" "^3.15.0"
|
2318
|
-
"@wordpress/data" "^4.18.0"
|
2319
|
-
"@wordpress/element" "^2.14.0"
|
2320
|
-
"@wordpress/i18n" "^3.12.0"
|
2321
|
-
"@wordpress/icons" "^2.0.0"
|
2322
|
-
"@wordpress/plugins" "^2.16.0"
|
2323
|
-
lodash "^4.17.15"
|
2337
|
+
"@wordpress/base-styles@3.2.0":
|
2338
|
+
version "3.2.0"
|
2339
|
+
resolved "https://registry.yarnpkg.com/@wordpress/base-styles/-/base-styles-3.2.0.tgz#908f19a316bd06e5c5a747c1eb3259aaf1c6bd67"
|
2340
|
+
integrity sha512-Ru6vp8CoBSUcge4ihScwMzf27q5BCl8WyQrVsxOcy8TeOz3cgGBaHMKspZaE0nH2MotYAhep+YDMzfbrJj81TA==
|
2324
2341
|
|
2325
|
-
"@wordpress/
|
2326
|
-
version "
|
2327
|
-
resolved "https://registry.yarnpkg.com/@wordpress/
|
2328
|
-
integrity sha512-
|
2329
|
-
dependencies:
|
2330
|
-
"@babel/runtime" "^7.
|
2331
|
-
|
2332
|
-
|
2333
|
-
|
2334
|
-
|
2335
|
-
|
2336
|
-
|
2337
|
-
"@
|
2338
|
-
"@wordpress/
|
2339
|
-
"@wordpress/
|
2340
|
-
"@wordpress/
|
2341
|
-
"@wordpress/
|
2342
|
-
"@wordpress/
|
2343
|
-
"@wordpress/
|
2344
|
-
"@wordpress/
|
2345
|
-
"@wordpress/
|
2346
|
-
"@wordpress/
|
2347
|
-
"@wordpress/
|
2348
|
-
"@wordpress/
|
2349
|
-
"@wordpress/
|
2350
|
-
"@wordpress/
|
2351
|
-
"@wordpress/
|
2352
|
-
"@wordpress/
|
2353
|
-
"@wordpress/
|
2342
|
+
"@wordpress/blob@^2.11.0", "@wordpress/blob@^2.12.0", "@wordpress/blob@^2.13.2":
|
2343
|
+
version "2.13.2"
|
2344
|
+
resolved "https://registry.yarnpkg.com/@wordpress/blob/-/blob-2.13.2.tgz#b77797cc045db575bf287d9901446425d202701e"
|
2345
|
+
integrity sha512-Us71BMrvjiMjW9WTV1UzZbEBd+Q7W05P0WW+Tfo6qHJLBMYXPDN9dP9s6JhK6fzzL+U/PzotMJwA6P85BqL30w==
|
2346
|
+
dependencies:
|
2347
|
+
"@babel/runtime" "^7.13.10"
|
2348
|
+
|
2349
|
+
"@wordpress/block-editor@5.1.0", "@wordpress/block-editor@^5.1.0":
|
2350
|
+
version "5.1.0"
|
2351
|
+
resolved "https://registry.yarnpkg.com/@wordpress/block-editor/-/block-editor-5.1.0.tgz#2e7797c169d5112bb27451f903bd68b74a49aa14"
|
2352
|
+
integrity sha512-gOnJ5k1TlUH75IUUn3aLqgK6FAeSUZAQyRukNpVjxatz9mTBbK59PZO8do0nDdx/gEOjWKtMlcta4/r8DqW5rw==
|
2353
|
+
dependencies:
|
2354
|
+
"@babel/runtime" "^7.11.2"
|
2355
|
+
"@wordpress/a11y" "^2.13.0"
|
2356
|
+
"@wordpress/blob" "^2.11.0"
|
2357
|
+
"@wordpress/blocks" "^6.24.0"
|
2358
|
+
"@wordpress/components" "^11.1.0"
|
2359
|
+
"@wordpress/compose" "^3.22.0"
|
2360
|
+
"@wordpress/data" "^4.25.0"
|
2361
|
+
"@wordpress/deprecated" "^2.10.0"
|
2362
|
+
"@wordpress/dom" "^2.15.0"
|
2363
|
+
"@wordpress/element" "^2.18.0"
|
2364
|
+
"@wordpress/hooks" "^2.10.0"
|
2365
|
+
"@wordpress/html-entities" "^2.9.0"
|
2366
|
+
"@wordpress/i18n" "^3.16.0"
|
2367
|
+
"@wordpress/icons" "^2.8.0"
|
2368
|
+
"@wordpress/is-shallow-equal" "^2.3.0"
|
2369
|
+
"@wordpress/keyboard-shortcuts" "^1.12.0"
|
2370
|
+
"@wordpress/keycodes" "^2.16.0"
|
2371
|
+
"@wordpress/notices" "^2.11.0"
|
2372
|
+
"@wordpress/rich-text" "^3.23.0"
|
2373
|
+
"@wordpress/shortcode" "^2.11.0"
|
2374
|
+
"@wordpress/token-list" "^1.13.0"
|
2375
|
+
"@wordpress/url" "^2.19.0"
|
2376
|
+
"@wordpress/viewport" "^2.24.0"
|
2377
|
+
"@wordpress/warning" "^1.3.0"
|
2378
|
+
"@wordpress/wordcount" "^2.13.0"
|
2354
2379
|
classnames "^2.2.5"
|
2355
2380
|
css-mediaquery "^0.1.2"
|
2356
2381
|
diff "^4.0.2"
|
2357
2382
|
dom-scroll-into-view "^1.2.1"
|
2358
2383
|
inherits "^2.0.3"
|
2359
|
-
lodash "^4.17.
|
2384
|
+
lodash "^4.17.19"
|
2360
2385
|
memize "^1.1.0"
|
2361
2386
|
react-autosize-textarea "^3.0.2"
|
2362
2387
|
react-spring "^8.0.19"
|
2388
|
+
react-transition-group "^2.9.0"
|
2389
|
+
reakit "1.1.0"
|
2363
2390
|
redux-multi "^0.1.12"
|
2364
2391
|
refx "^3.0.0"
|
2365
2392
|
rememo "^3.0.0"
|
2366
2393
|
tinycolor2 "^1.4.1"
|
2367
2394
|
traverse "^0.6.6"
|
2368
2395
|
|
2369
|
-
"@wordpress/block-library
|
2370
|
-
version "2.
|
2371
|
-
resolved "https://registry.yarnpkg.com/@wordpress/block-library/-/block-library-2.
|
2372
|
-
integrity sha512-
|
2373
|
-
dependencies:
|
2374
|
-
"@babel/runtime" "^7.
|
2375
|
-
"@wordpress/a11y" "^2.
|
2376
|
-
"@wordpress/api-fetch" "^3.
|
2377
|
-
"@wordpress/autop" "^2.
|
2378
|
-
"@wordpress/blob" "^2.
|
2379
|
-
"@wordpress/block-editor" "^
|
2380
|
-
"@wordpress/blocks" "^6.
|
2381
|
-
"@wordpress/components" "^
|
2382
|
-
"@wordpress/compose" "^3.
|
2383
|
-
"@wordpress/core-data" "^2.
|
2384
|
-
"@wordpress/data" "^4.
|
2385
|
-
"@wordpress/date" "^3.
|
2386
|
-
"@wordpress/deprecated" "^2.
|
2387
|
-
"@wordpress/dom" "^2.
|
2388
|
-
"@wordpress/editor" "^9.
|
2389
|
-
"@wordpress/element" "^2.
|
2390
|
-
"@wordpress/escape-html" "^1.
|
2391
|
-
"@wordpress/
|
2392
|
-
"@wordpress/
|
2393
|
-
"@wordpress/
|
2394
|
-
"@wordpress/
|
2395
|
-
"@wordpress/
|
2396
|
-
"@wordpress/
|
2397
|
-
"@wordpress/
|
2398
|
-
"@wordpress/
|
2399
|
-
"@wordpress/
|
2396
|
+
"@wordpress/block-library@2.26.0":
|
2397
|
+
version "2.26.0"
|
2398
|
+
resolved "https://registry.yarnpkg.com/@wordpress/block-library/-/block-library-2.26.0.tgz#c731015818209a7be337fcc5b6907a2f2dbb3203"
|
2399
|
+
integrity sha512-FeLOJMKmSFVYnKQ7/7YwG/AhHKvzCQOq+nqayjo52HgOma8tCfWI7lPgTM8P9VJq1fj/tf4A4jcyAJX/0DMEOA==
|
2400
|
+
dependencies:
|
2401
|
+
"@babel/runtime" "^7.11.2"
|
2402
|
+
"@wordpress/a11y" "^2.13.0"
|
2403
|
+
"@wordpress/api-fetch" "^3.20.0"
|
2404
|
+
"@wordpress/autop" "^2.10.0"
|
2405
|
+
"@wordpress/blob" "^2.11.0"
|
2406
|
+
"@wordpress/block-editor" "^5.1.0"
|
2407
|
+
"@wordpress/blocks" "^6.24.0"
|
2408
|
+
"@wordpress/components" "^11.1.0"
|
2409
|
+
"@wordpress/compose" "^3.22.0"
|
2410
|
+
"@wordpress/core-data" "^2.24.0"
|
2411
|
+
"@wordpress/data" "^4.25.0"
|
2412
|
+
"@wordpress/date" "^3.12.0"
|
2413
|
+
"@wordpress/deprecated" "^2.10.0"
|
2414
|
+
"@wordpress/dom" "^2.15.0"
|
2415
|
+
"@wordpress/editor" "^9.24.0"
|
2416
|
+
"@wordpress/element" "^2.18.0"
|
2417
|
+
"@wordpress/escape-html" "^1.10.0"
|
2418
|
+
"@wordpress/hooks" "^2.10.0"
|
2419
|
+
"@wordpress/i18n" "^3.16.0"
|
2420
|
+
"@wordpress/icons" "^2.8.0"
|
2421
|
+
"@wordpress/is-shallow-equal" "^2.3.0"
|
2422
|
+
"@wordpress/keycodes" "^2.16.0"
|
2423
|
+
"@wordpress/notices" "^2.11.0"
|
2424
|
+
"@wordpress/primitives" "^1.10.0"
|
2425
|
+
"@wordpress/reusable-blocks" "^1.0.0"
|
2426
|
+
"@wordpress/rich-text" "^3.23.0"
|
2427
|
+
"@wordpress/server-side-render" "^1.19.0"
|
2428
|
+
"@wordpress/url" "^2.19.0"
|
2429
|
+
"@wordpress/viewport" "^2.24.0"
|
2400
2430
|
classnames "^2.2.5"
|
2401
2431
|
fast-average-color "4.3.0"
|
2402
|
-
lodash "^4.17.
|
2432
|
+
lodash "^4.17.19"
|
2403
2433
|
memize "^1.1.0"
|
2404
2434
|
moment "^2.22.1"
|
2435
|
+
react-easy-crop "^3.0.0"
|
2436
|
+
reakit "1.1.0"
|
2405
2437
|
tinycolor2 "^1.4.1"
|
2406
2438
|
|
2407
|
-
"@wordpress/block-serialization-default-parser@^3.
|
2408
|
-
version "3.
|
2409
|
-
resolved "https://registry.yarnpkg.com/@wordpress/block-serialization-default-parser/-/block-serialization-default-parser-3.
|
2410
|
-
integrity sha512-
|
2411
|
-
dependencies:
|
2412
|
-
"@babel/runtime" "^7.
|
2413
|
-
|
2414
|
-
"@wordpress/blocks@^6.
|
2415
|
-
version "6.
|
2416
|
-
resolved "https://registry.yarnpkg.com/@wordpress/blocks/-/blocks-6.
|
2417
|
-
integrity sha512-
|
2418
|
-
dependencies:
|
2419
|
-
"@babel/runtime" "^7.
|
2420
|
-
"@wordpress/autop" "^2.
|
2421
|
-
"@wordpress/blob" "^2.
|
2422
|
-
"@wordpress/block-serialization-default-parser" "^3.
|
2423
|
-
"@wordpress/compose" "^3.
|
2424
|
-
"@wordpress/data" "^4.
|
2425
|
-
"@wordpress/
|
2426
|
-
"@wordpress/
|
2427
|
-
"@wordpress/
|
2428
|
-
"@wordpress/
|
2429
|
-
"@wordpress/
|
2430
|
-
"@wordpress/
|
2431
|
-
"@wordpress/
|
2432
|
-
"@wordpress/
|
2439
|
+
"@wordpress/block-serialization-default-parser@^3.10.2", "@wordpress/block-serialization-default-parser@^3.9.0":
|
2440
|
+
version "3.10.2"
|
2441
|
+
resolved "https://registry.yarnpkg.com/@wordpress/block-serialization-default-parser/-/block-serialization-default-parser-3.10.2.tgz#6dce84b262e3d506d09cceafab115c24bc7abeb3"
|
2442
|
+
integrity sha512-0vyHHTcEw3ijY+stJqCf0iVR4bHpb84dbTZVaT2VSzISGzeVuAJpcYhIJMHvDTMcX1E2pgAfanIL8xloS6W7gQ==
|
2443
|
+
dependencies:
|
2444
|
+
"@babel/runtime" "^7.13.10"
|
2445
|
+
|
2446
|
+
"@wordpress/blocks@^6.24.0":
|
2447
|
+
version "6.25.2"
|
2448
|
+
resolved "https://registry.yarnpkg.com/@wordpress/blocks/-/blocks-6.25.2.tgz#4d04fcd1e959cfa16eb1e410bab4d7d29f06bdc1"
|
2449
|
+
integrity sha512-dYleqt8o030Bw2dV6HKrafhcTQf/AqOAVagA9rBKRVfl6ABrm26Gb8YsgwTMMrxIIGRy9uqqqNWH1o8ae3JE2A==
|
2450
|
+
dependencies:
|
2451
|
+
"@babel/runtime" "^7.12.5"
|
2452
|
+
"@wordpress/autop" "^2.11.0"
|
2453
|
+
"@wordpress/blob" "^2.12.0"
|
2454
|
+
"@wordpress/block-serialization-default-parser" "^3.9.0"
|
2455
|
+
"@wordpress/compose" "^3.24.0"
|
2456
|
+
"@wordpress/data" "^4.26.2"
|
2457
|
+
"@wordpress/deprecated" "^2.11.0"
|
2458
|
+
"@wordpress/dom" "^2.16.1"
|
2459
|
+
"@wordpress/element" "^2.19.0"
|
2460
|
+
"@wordpress/hooks" "^2.11.0"
|
2461
|
+
"@wordpress/html-entities" "^2.10.0"
|
2462
|
+
"@wordpress/i18n" "^3.17.0"
|
2463
|
+
"@wordpress/icons" "^2.9.0"
|
2464
|
+
"@wordpress/is-shallow-equal" "^3.0.0"
|
2465
|
+
"@wordpress/shortcode" "^2.12.0"
|
2433
2466
|
hpq "^1.3.0"
|
2434
|
-
lodash "^4.17.
|
2467
|
+
lodash "^4.17.19"
|
2435
2468
|
rememo "^3.0.0"
|
2436
2469
|
showdown "^1.9.1"
|
2437
2470
|
simple-html-tokenizer "^0.5.7"
|
2438
2471
|
tinycolor2 "^1.4.1"
|
2439
|
-
uuid "^
|
2472
|
+
uuid "^8.3.0"
|
2473
|
+
|
2474
|
+
"@wordpress/blocks@^8.0.3":
|
2475
|
+
version "8.0.3"
|
2476
|
+
resolved "https://registry.yarnpkg.com/@wordpress/blocks/-/blocks-8.0.3.tgz#67e578ea66753ff2a51f5d6ed0f42d9faaf66156"
|
2477
|
+
integrity sha512-/zXk5gEI/TCzsVSUIht5cmO+pFC6u3mpNV8ye0Cy4CEQVtauW969GvgEM+LVf8Mk8R5NcLdLPE88n8xxsFaRoQ==
|
2478
|
+
dependencies:
|
2479
|
+
"@babel/runtime" "^7.13.10"
|
2480
|
+
"@wordpress/autop" "^2.12.2"
|
2481
|
+
"@wordpress/blob" "^2.13.2"
|
2482
|
+
"@wordpress/block-serialization-default-parser" "^3.10.2"
|
2483
|
+
"@wordpress/compose" "^3.25.3"
|
2484
|
+
"@wordpress/data" "^4.27.3"
|
2485
|
+
"@wordpress/deprecated" "^2.12.3"
|
2486
|
+
"@wordpress/dom" "^2.18.0"
|
2487
|
+
"@wordpress/element" "^2.20.3"
|
2488
|
+
"@wordpress/hooks" "^2.12.3"
|
2489
|
+
"@wordpress/html-entities" "^2.11.2"
|
2490
|
+
"@wordpress/i18n" "^3.20.0"
|
2491
|
+
"@wordpress/icons" "^2.10.3"
|
2492
|
+
"@wordpress/is-shallow-equal" "^3.1.3"
|
2493
|
+
"@wordpress/shortcode" "^2.13.2"
|
2494
|
+
hpq "^1.3.0"
|
2495
|
+
lodash "^4.17.19"
|
2496
|
+
rememo "^3.0.0"
|
2497
|
+
showdown "^1.9.1"
|
2498
|
+
simple-html-tokenizer "^0.5.7"
|
2499
|
+
tinycolor2 "^1.4.2"
|
2500
|
+
uuid "^8.3.0"
|
2440
2501
|
|
2441
|
-
"@wordpress/components@^
|
2442
|
-
version "
|
2443
|
-
resolved "https://registry.yarnpkg.com/@wordpress/components/-/components-
|
2444
|
-
integrity sha512-
|
2502
|
+
"@wordpress/components@11.1.0", "@wordpress/components@^11.1.0":
|
2503
|
+
version "11.1.0"
|
2504
|
+
resolved "https://registry.yarnpkg.com/@wordpress/components/-/components-11.1.0.tgz#07631da48859fadb148f80635014740e4f536995"
|
2505
|
+
integrity sha512-R9/jHbp5UWsyLXIchl1z/Gx5IJVhhlqZbYHgBzSA/3rdSmXBr8nb7roVwMrJQ1CRkJc8g1V3FLkOsiU1dB6WyQ==
|
2445
2506
|
dependencies:
|
2446
|
-
"@babel/runtime" "^7.
|
2507
|
+
"@babel/runtime" "^7.11.2"
|
2447
2508
|
"@emotion/core" "^10.0.22"
|
2448
2509
|
"@emotion/css" "^10.0.22"
|
2449
2510
|
"@emotion/native" "^10.0.22"
|
2450
2511
|
"@emotion/styled" "^10.0.23"
|
2451
|
-
"@wordpress/a11y" "^2.
|
2452
|
-
"@wordpress/compose" "^3.
|
2453
|
-
"@wordpress/
|
2454
|
-
"@wordpress/
|
2455
|
-
"@wordpress/
|
2456
|
-
"@wordpress/
|
2457
|
-
"@wordpress/
|
2458
|
-
"@wordpress/
|
2459
|
-
"@wordpress/
|
2460
|
-
"@wordpress/
|
2461
|
-
"@wordpress/
|
2462
|
-
"@wordpress/
|
2463
|
-
"@wordpress/
|
2512
|
+
"@wordpress/a11y" "^2.13.0"
|
2513
|
+
"@wordpress/compose" "^3.22.0"
|
2514
|
+
"@wordpress/date" "^3.12.0"
|
2515
|
+
"@wordpress/deprecated" "^2.10.0"
|
2516
|
+
"@wordpress/dom" "^2.15.0"
|
2517
|
+
"@wordpress/element" "^2.18.0"
|
2518
|
+
"@wordpress/hooks" "^2.10.0"
|
2519
|
+
"@wordpress/i18n" "^3.16.0"
|
2520
|
+
"@wordpress/icons" "^2.8.0"
|
2521
|
+
"@wordpress/is-shallow-equal" "^2.3.0"
|
2522
|
+
"@wordpress/keycodes" "^2.16.0"
|
2523
|
+
"@wordpress/primitives" "^1.10.0"
|
2524
|
+
"@wordpress/rich-text" "^3.23.0"
|
2525
|
+
"@wordpress/warning" "^1.3.0"
|
2464
2526
|
classnames "^2.2.5"
|
2465
|
-
clipboard "^2.0.1"
|
2466
2527
|
dom-scroll-into-view "^1.2.1"
|
2467
|
-
downshift "^4.0
|
2528
|
+
downshift "^5.4.0"
|
2468
2529
|
gradient-parser "^0.1.5"
|
2469
|
-
lodash "^4.17.
|
2530
|
+
lodash "^4.17.19"
|
2470
2531
|
memize "^1.1.0"
|
2471
2532
|
moment "^2.22.1"
|
2472
|
-
re-resizable "^6.
|
2533
|
+
re-resizable "^6.4.0"
|
2473
2534
|
react-dates "^17.1.1"
|
2535
|
+
react-merge-refs "^1.0.0"
|
2536
|
+
react-resize-aware "^3.0.1"
|
2474
2537
|
react-spring "^8.0.20"
|
2475
|
-
|
2538
|
+
react-use-gesture "^7.0.15"
|
2539
|
+
reakit "^1.1.0"
|
2476
2540
|
rememo "^3.0.0"
|
2477
2541
|
tinycolor2 "^1.4.1"
|
2478
2542
|
uuid "^7.0.2"
|
2479
2543
|
|
2480
|
-
"@wordpress/compose@^3.
|
2481
|
-
version "3.
|
2482
|
-
resolved "https://registry.yarnpkg.com/@wordpress/compose/-/compose-3.
|
2483
|
-
integrity sha512-
|
2484
|
-
dependencies:
|
2485
|
-
"@babel/runtime" "^7.
|
2486
|
-
"@wordpress/
|
2487
|
-
"@wordpress/
|
2488
|
-
|
2489
|
-
|
2490
|
-
|
2491
|
-
|
2492
|
-
"
|
2493
|
-
|
2494
|
-
|
2495
|
-
|
2496
|
-
|
2497
|
-
|
2498
|
-
|
2499
|
-
|
2500
|
-
|
2501
|
-
|
2502
|
-
|
2503
|
-
|
2504
|
-
"@
|
2505
|
-
"@wordpress/
|
2506
|
-
"@wordpress/
|
2544
|
+
"@wordpress/compose@^3.22.0", "@wordpress/compose@^3.24.0", "@wordpress/compose@^3.25.3":
|
2545
|
+
version "3.25.3"
|
2546
|
+
resolved "https://registry.yarnpkg.com/@wordpress/compose/-/compose-3.25.3.tgz#fcf2c4cef46d376905124ab75dedc1284ee09e16"
|
2547
|
+
integrity sha512-tCO2EnJCkCH548OqA0uU8V1k/1skz2QwBlHs8ZQSpimqUS4OWWsAlndCEFe4U4vDTqFt2ow7tzAir+05Cw8MAg==
|
2548
|
+
dependencies:
|
2549
|
+
"@babel/runtime" "^7.13.10"
|
2550
|
+
"@wordpress/deprecated" "^2.12.3"
|
2551
|
+
"@wordpress/dom" "^2.18.0"
|
2552
|
+
"@wordpress/element" "^2.20.3"
|
2553
|
+
"@wordpress/is-shallow-equal" "^3.1.3"
|
2554
|
+
"@wordpress/keycodes" "^2.19.3"
|
2555
|
+
"@wordpress/priority-queue" "^1.11.2"
|
2556
|
+
clipboard "^2.0.1"
|
2557
|
+
lodash "^4.17.19"
|
2558
|
+
memize "^1.1.0"
|
2559
|
+
mousetrap "^1.6.5"
|
2560
|
+
react-resize-aware "^3.1.0"
|
2561
|
+
use-memo-one "^1.1.1"
|
2562
|
+
|
2563
|
+
"@wordpress/core-data@^2.24.0":
|
2564
|
+
version "2.26.3"
|
2565
|
+
resolved "https://registry.yarnpkg.com/@wordpress/core-data/-/core-data-2.26.3.tgz#8d671ddd0681b0cdd142b7dad85a7caa0ffc188f"
|
2566
|
+
integrity sha512-cbwOXB5AM37kBiZUUiXdSkbyJFNJ6CtkhkHkUvKoWkvvwLfGDre+BITr60NPJgw9o+MgsM/RfcBAsdRnz8/uJA==
|
2567
|
+
dependencies:
|
2568
|
+
"@babel/runtime" "^7.13.10"
|
2569
|
+
"@wordpress/api-fetch" "^4.0.0"
|
2570
|
+
"@wordpress/blocks" "^8.0.3"
|
2571
|
+
"@wordpress/data" "^4.27.3"
|
2572
|
+
"@wordpress/data-controls" "^1.21.3"
|
2573
|
+
"@wordpress/element" "^2.20.3"
|
2574
|
+
"@wordpress/html-entities" "^2.11.2"
|
2575
|
+
"@wordpress/i18n" "^3.20.0"
|
2576
|
+
"@wordpress/is-shallow-equal" "^3.1.3"
|
2577
|
+
"@wordpress/url" "^2.22.2"
|
2507
2578
|
equivalent-key-map "^0.2.2"
|
2508
|
-
lodash "^4.17.
|
2579
|
+
lodash "^4.17.19"
|
2509
2580
|
rememo "^3.0.0"
|
2510
|
-
|
2511
|
-
|
2512
|
-
|
2513
|
-
|
2514
|
-
|
2515
|
-
|
2516
|
-
|
2517
|
-
"@
|
2518
|
-
|
2519
|
-
"@wordpress/data
|
2520
|
-
|
2521
|
-
|
2522
|
-
|
2523
|
-
|
2524
|
-
|
2525
|
-
|
2526
|
-
|
2527
|
-
"@
|
2528
|
-
"@wordpress/
|
2529
|
-
"@wordpress/
|
2530
|
-
"@wordpress/
|
2581
|
+
uuid "^8.3.0"
|
2582
|
+
|
2583
|
+
"@wordpress/data-controls@^1.19.0", "@wordpress/data-controls@^1.21.3":
|
2584
|
+
version "1.21.3"
|
2585
|
+
resolved "https://registry.yarnpkg.com/@wordpress/data-controls/-/data-controls-1.21.3.tgz#a82e2dedf7a8d190b3cb086dd13fe49a88e74149"
|
2586
|
+
integrity sha512-aLpx/HvKaxCQfWSLGIz699SB9Guyq8Yoq5XLlH8eNWnf/8HkQg8hQ6yagDY8BinV/t8HScc5A7a6n6pvZNGtjg==
|
2587
|
+
dependencies:
|
2588
|
+
"@babel/runtime" "^7.13.10"
|
2589
|
+
"@wordpress/api-fetch" "^4.0.0"
|
2590
|
+
"@wordpress/data" "^4.27.3"
|
2591
|
+
"@wordpress/deprecated" "^2.12.3"
|
2592
|
+
|
2593
|
+
"@wordpress/data@^4.25.0", "@wordpress/data@^4.26.2", "@wordpress/data@^4.27.3":
|
2594
|
+
version "4.27.3"
|
2595
|
+
resolved "https://registry.yarnpkg.com/@wordpress/data/-/data-4.27.3.tgz#a54b94b84e7aa5e42da5b19564f2ab306c28e481"
|
2596
|
+
integrity sha512-5763NgNV9IIa1CC3Q80dAvrH6108tJtj3IrHfUCZmUk1atSNsOMBCkLdQ7tGTTi2JFejeGEMg1LJI22JD5zM6Q==
|
2597
|
+
dependencies:
|
2598
|
+
"@babel/runtime" "^7.13.10"
|
2599
|
+
"@wordpress/compose" "^3.25.3"
|
2600
|
+
"@wordpress/deprecated" "^2.12.3"
|
2601
|
+
"@wordpress/element" "^2.20.3"
|
2602
|
+
"@wordpress/is-shallow-equal" "^3.1.3"
|
2603
|
+
"@wordpress/priority-queue" "^1.11.2"
|
2604
|
+
"@wordpress/redux-routine" "^3.14.2"
|
2531
2605
|
equivalent-key-map "^0.2.2"
|
2532
2606
|
is-promise "^4.0.0"
|
2533
|
-
lodash "^4.17.
|
2607
|
+
lodash "^4.17.19"
|
2534
2608
|
memize "^1.1.0"
|
2535
2609
|
redux "^4.0.0"
|
2536
2610
|
turbo-combine-reducers "^1.0.2"
|
2537
2611
|
use-memo-one "^1.1.1"
|
2538
2612
|
|
2539
|
-
"@wordpress/date@^3.
|
2540
|
-
version "3.
|
2541
|
-
resolved "https://registry.yarnpkg.com/@wordpress/date/-/date-3.
|
2542
|
-
integrity sha512-
|
2613
|
+
"@wordpress/date@^3.12.0":
|
2614
|
+
version "3.15.1"
|
2615
|
+
resolved "https://registry.yarnpkg.com/@wordpress/date/-/date-3.15.1.tgz#9b7fa184363462e92f5ac3cdd9f743cb9d87f4c4"
|
2616
|
+
integrity sha512-SuHiObvjbegL8RpaSQ6JqFnG+QyGP+oUhx1FZDMdt1nOQA9HE7D5ssVlZFlMEAdo6iS8xMuW+4SgJN3Eo1fb4w==
|
2543
2617
|
dependencies:
|
2544
|
-
"@babel/runtime" "^7.
|
2618
|
+
"@babel/runtime" "^7.13.10"
|
2545
2619
|
moment "^2.22.1"
|
2546
|
-
moment-timezone "^0.5.
|
2620
|
+
moment-timezone "^0.5.31"
|
2547
2621
|
|
2548
|
-
"@wordpress/deprecated@^2.
|
2549
|
-
version "2.
|
2550
|
-
resolved "https://registry.yarnpkg.com/@wordpress/deprecated/-/deprecated-2.
|
2551
|
-
integrity sha512-
|
2622
|
+
"@wordpress/deprecated@^2.10.0", "@wordpress/deprecated@^2.11.0", "@wordpress/deprecated@^2.12.3":
|
2623
|
+
version "2.12.3"
|
2624
|
+
resolved "https://registry.yarnpkg.com/@wordpress/deprecated/-/deprecated-2.12.3.tgz#ccce4b195919d8fbe06f01e88233bca1f8ffa000"
|
2625
|
+
integrity sha512-qr+yDfTQfI3M4h6oY6IeHWwoHr4jxbILjSlV+Ht6Jjto9Owap6OuzSqR13Ev4xqIoG4C7b5B3gZXVfwVDae1zg==
|
2552
2626
|
dependencies:
|
2553
|
-
"@babel/runtime" "^7.
|
2554
|
-
"@wordpress/hooks" "^2.
|
2627
|
+
"@babel/runtime" "^7.13.10"
|
2628
|
+
"@wordpress/hooks" "^2.12.3"
|
2555
2629
|
|
2556
|
-
"@wordpress/dom-ready@^2.
|
2557
|
-
version "2.
|
2558
|
-
resolved "https://registry.yarnpkg.com/@wordpress/dom-ready/-/dom-ready-2.
|
2559
|
-
integrity sha512-
|
2630
|
+
"@wordpress/dom-ready@^2.13.2":
|
2631
|
+
version "2.13.2"
|
2632
|
+
resolved "https://registry.yarnpkg.com/@wordpress/dom-ready/-/dom-ready-2.13.2.tgz#c3960a669791f28e12e0a88c100b33c4deb16e82"
|
2633
|
+
integrity sha512-COH7n2uZfBq4FtluSbl37N3nCEcdMXzV42ETCWKUcumiP1Zd3qnkfQKcsxTaHWY8aVt/358RvJ7ghWe3xAd+fg==
|
2560
2634
|
dependencies:
|
2561
|
-
"@babel/runtime" "^7.
|
2635
|
+
"@babel/runtime" "^7.13.10"
|
2562
2636
|
|
2563
|
-
"@wordpress/dom@^2.
|
2564
|
-
version "2.
|
2565
|
-
resolved "https://registry.yarnpkg.com/@wordpress/dom/-/dom-2.
|
2566
|
-
integrity sha512-
|
2637
|
+
"@wordpress/dom@^2.15.0", "@wordpress/dom@^2.16.1", "@wordpress/dom@^2.18.0":
|
2638
|
+
version "2.18.0"
|
2639
|
+
resolved "https://registry.yarnpkg.com/@wordpress/dom/-/dom-2.18.0.tgz#8394f42e86dcca3f3bcddb805d05fdd65e9cfd07"
|
2640
|
+
integrity sha512-tM2WeQuSObl3nzWjUTF0/dyLnA7sdl/MXaSe32D64OF89bjSyJvjUipI7gjKzI3kJ7ddGhwcTggGvSB06MOoCQ==
|
2567
2641
|
dependencies:
|
2568
|
-
"@babel/runtime" "^7.
|
2569
|
-
lodash "^4.17.
|
2642
|
+
"@babel/runtime" "^7.13.10"
|
2643
|
+
lodash "^4.17.19"
|
2570
2644
|
|
2571
|
-
"@wordpress/editor@^9.
|
2572
|
-
version "9.
|
2573
|
-
resolved "https://registry.yarnpkg.com/@wordpress/editor/-/editor-9.
|
2574
|
-
integrity sha512-
|
2575
|
-
dependencies:
|
2576
|
-
"@babel/runtime" "^7.
|
2577
|
-
"@wordpress/api-fetch" "^3.
|
2578
|
-
"@wordpress/autop" "^2.
|
2579
|
-
"@wordpress/blob" "^2.
|
2580
|
-
"@wordpress/block-
|
2581
|
-
"@wordpress/
|
2582
|
-
"@wordpress/
|
2583
|
-
"@wordpress/
|
2584
|
-
"@wordpress/
|
2585
|
-
"@wordpress/
|
2586
|
-
"@wordpress/data" "^
|
2587
|
-
"@wordpress/
|
2588
|
-
"@wordpress/
|
2589
|
-
"@wordpress/
|
2590
|
-
"@wordpress/
|
2591
|
-
"@wordpress/
|
2592
|
-
"@wordpress/
|
2593
|
-
"@wordpress/
|
2594
|
-
"@wordpress/
|
2595
|
-
"@wordpress/
|
2596
|
-
"@wordpress/
|
2597
|
-
"@wordpress/
|
2598
|
-
"@wordpress/
|
2599
|
-
"@wordpress/
|
2600
|
-
"@wordpress/rich-text" "^3.
|
2601
|
-
"@wordpress/server-side-render" "^1.
|
2602
|
-
"@wordpress/url" "^2.
|
2603
|
-
"@wordpress/viewport" "^2.
|
2604
|
-
"@wordpress/wordcount" "^2.
|
2645
|
+
"@wordpress/editor@9.24.0", "@wordpress/editor@^9.24.0":
|
2646
|
+
version "9.24.0"
|
2647
|
+
resolved "https://registry.yarnpkg.com/@wordpress/editor/-/editor-9.24.0.tgz#0677615e5332b4383bf1b5f8cedc2176ee67c102"
|
2648
|
+
integrity sha512-J/vMS2KDh442JJEzDMGPU9XBSdfOytvRzO13zXuAx1F048TuUHFatJcjjxTWaDI2vTUBnPaH5GvHFTd2Qme4uA==
|
2649
|
+
dependencies:
|
2650
|
+
"@babel/runtime" "^7.11.2"
|
2651
|
+
"@wordpress/api-fetch" "^3.20.0"
|
2652
|
+
"@wordpress/autop" "^2.10.0"
|
2653
|
+
"@wordpress/blob" "^2.11.0"
|
2654
|
+
"@wordpress/block-editor" "^5.1.0"
|
2655
|
+
"@wordpress/blocks" "^6.24.0"
|
2656
|
+
"@wordpress/components" "^11.1.0"
|
2657
|
+
"@wordpress/compose" "^3.22.0"
|
2658
|
+
"@wordpress/core-data" "^2.24.0"
|
2659
|
+
"@wordpress/data" "^4.25.0"
|
2660
|
+
"@wordpress/data-controls" "^1.19.0"
|
2661
|
+
"@wordpress/date" "^3.12.0"
|
2662
|
+
"@wordpress/deprecated" "^2.10.0"
|
2663
|
+
"@wordpress/element" "^2.18.0"
|
2664
|
+
"@wordpress/hooks" "^2.10.0"
|
2665
|
+
"@wordpress/html-entities" "^2.9.0"
|
2666
|
+
"@wordpress/i18n" "^3.16.0"
|
2667
|
+
"@wordpress/icons" "^2.8.0"
|
2668
|
+
"@wordpress/is-shallow-equal" "^2.3.0"
|
2669
|
+
"@wordpress/keyboard-shortcuts" "^1.12.0"
|
2670
|
+
"@wordpress/keycodes" "^2.16.0"
|
2671
|
+
"@wordpress/media-utils" "^1.18.0"
|
2672
|
+
"@wordpress/notices" "^2.11.0"
|
2673
|
+
"@wordpress/reusable-blocks" "^1.0.0"
|
2674
|
+
"@wordpress/rich-text" "^3.23.0"
|
2675
|
+
"@wordpress/server-side-render" "^1.19.0"
|
2676
|
+
"@wordpress/url" "^2.19.0"
|
2677
|
+
"@wordpress/viewport" "^2.24.0"
|
2678
|
+
"@wordpress/wordcount" "^2.13.0"
|
2605
2679
|
classnames "^2.2.5"
|
2606
|
-
lodash "^4.17.
|
2680
|
+
lodash "^4.17.19"
|
2607
2681
|
memize "^1.1.0"
|
2608
2682
|
react-autosize-textarea "^3.0.2"
|
2609
2683
|
redux-optimist "^1.0.0"
|
2610
2684
|
refx "^3.0.0"
|
2611
2685
|
rememo "^3.0.0"
|
2612
2686
|
|
2613
|
-
"@wordpress/element@^2.
|
2614
|
-
version "2.
|
2615
|
-
resolved "https://registry.yarnpkg.com/@wordpress/element/-/element-2.
|
2616
|
-
integrity sha512-
|
2687
|
+
"@wordpress/element@^2.18.0", "@wordpress/element@^2.19.0", "@wordpress/element@^2.20.3":
|
2688
|
+
version "2.20.3"
|
2689
|
+
resolved "https://registry.yarnpkg.com/@wordpress/element/-/element-2.20.3.tgz#a86a20e90be41d6fe4ea1f0ce580f7f2f1d839e7"
|
2690
|
+
integrity sha512-f4ZPTDf9CxiiOXiMxc4v1K7jcBMT4dsiehVOpkKzCDKboNXp4qVf8oe5PE23VGZNEjcOj5Mkg9hB57R0nqvMTw==
|
2617
2691
|
dependencies:
|
2618
|
-
"@babel/runtime" "^7.
|
2619
|
-
"@
|
2620
|
-
|
2621
|
-
|
2622
|
-
|
2692
|
+
"@babel/runtime" "^7.13.10"
|
2693
|
+
"@types/react" "^16.9.0"
|
2694
|
+
"@types/react-dom" "^16.9.0"
|
2695
|
+
"@wordpress/escape-html" "^1.12.2"
|
2696
|
+
lodash "^4.17.19"
|
2697
|
+
react "^16.13.1"
|
2698
|
+
react-dom "^16.13.1"
|
2623
2699
|
|
2624
|
-
"@wordpress/escape-html@^1.
|
2625
|
-
version "1.
|
2626
|
-
resolved "https://registry.yarnpkg.com/@wordpress/escape-html/-/escape-html-1.
|
2627
|
-
integrity sha512-
|
2628
|
-
dependencies:
|
2629
|
-
"@babel/runtime" "^7.
|
2630
|
-
|
2631
|
-
"@wordpress/format-library@^1.18.0":
|
2632
|
-
version "1.18.0"
|
2633
|
-
resolved "https://registry.yarnpkg.com/@wordpress/format-library/-/format-library-1.18.0.tgz#9f5fda46ffaf5a7d0a6a61feac0dc5aa4dbd02a6"
|
2634
|
-
integrity sha512-DFn6uNWrlkatNvQqzVpvTOemluHCupRx9E13lc9va7k2wOhN87yNcVCi/TPhDuKsT3dHJ0sUQDgGNJzskF6v1A==
|
2635
|
-
dependencies:
|
2636
|
-
"@babel/runtime" "^7.9.2"
|
2637
|
-
"@wordpress/block-editor" "^3.11.0"
|
2638
|
-
"@wordpress/components" "^9.6.0"
|
2639
|
-
"@wordpress/data" "^4.18.0"
|
2640
|
-
"@wordpress/dom" "^2.9.0"
|
2641
|
-
"@wordpress/element" "^2.14.0"
|
2642
|
-
"@wordpress/html-entities" "^2.7.0"
|
2643
|
-
"@wordpress/i18n" "^3.12.0"
|
2644
|
-
"@wordpress/icons" "^2.0.0"
|
2645
|
-
"@wordpress/keycodes" "^2.12.0"
|
2646
|
-
"@wordpress/rich-text" "^3.16.0"
|
2647
|
-
"@wordpress/url" "^2.15.0"
|
2648
|
-
lodash "^4.17.15"
|
2700
|
+
"@wordpress/escape-html@^1.10.0", "@wordpress/escape-html@^1.12.2":
|
2701
|
+
version "1.12.2"
|
2702
|
+
resolved "https://registry.yarnpkg.com/@wordpress/escape-html/-/escape-html-1.12.2.tgz#dcc92178bacc69952cde9bb8fb1cbbea9deb2cc3"
|
2703
|
+
integrity sha512-FabgSwznhdaUwe6hr1CsGpgxQbzqEoGevv73WIL1B9GvlZ6csRWodgHfWh4P6fYqpzxFL4WYB8wPJ1PdO32XFA==
|
2704
|
+
dependencies:
|
2705
|
+
"@babel/runtime" "^7.13.10"
|
2649
2706
|
|
2650
|
-
"@wordpress/
|
2651
|
-
version "
|
2652
|
-
resolved "https://registry.yarnpkg.com/@wordpress/
|
2653
|
-
integrity sha512
|
2707
|
+
"@wordpress/format-library@1.25.0":
|
2708
|
+
version "1.25.0"
|
2709
|
+
resolved "https://registry.yarnpkg.com/@wordpress/format-library/-/format-library-1.25.0.tgz#b5c8b132934a6fbac3802341e7619928c16f7e9b"
|
2710
|
+
integrity sha512-+J1i7cZiJDuypOodaZmTvCJZbRKiErVs3Kaw2eh0YtLfbTR7vuBOLk3DDSIYvtcyn9zAUbcas5SdOYJTP6j4tQ==
|
2654
2711
|
dependencies:
|
2655
|
-
"@babel/runtime" "^7.
|
2712
|
+
"@babel/runtime" "^7.11.2"
|
2713
|
+
"@wordpress/block-editor" "^5.1.0"
|
2714
|
+
"@wordpress/components" "^11.1.0"
|
2715
|
+
"@wordpress/compose" "^3.22.0"
|
2716
|
+
"@wordpress/data" "^4.25.0"
|
2717
|
+
"@wordpress/dom" "^2.15.0"
|
2718
|
+
"@wordpress/element" "^2.18.0"
|
2719
|
+
"@wordpress/html-entities" "^2.9.0"
|
2720
|
+
"@wordpress/i18n" "^3.16.0"
|
2721
|
+
"@wordpress/icons" "^2.8.0"
|
2722
|
+
"@wordpress/keycodes" "^2.16.0"
|
2723
|
+
"@wordpress/rich-text" "^3.23.0"
|
2724
|
+
"@wordpress/url" "^2.19.0"
|
2725
|
+
lodash "^4.17.19"
|
2656
2726
|
|
2657
|
-
"@wordpress/
|
2658
|
-
version "2.
|
2659
|
-
resolved "https://registry.yarnpkg.com/@wordpress/
|
2660
|
-
integrity sha512-
|
2727
|
+
"@wordpress/hooks@^2.10.0", "@wordpress/hooks@^2.11.0", "@wordpress/hooks@^2.12.3":
|
2728
|
+
version "2.12.3"
|
2729
|
+
resolved "https://registry.yarnpkg.com/@wordpress/hooks/-/hooks-2.12.3.tgz#3086db986d7ed2cae036c5da7b7add4db17ee51c"
|
2730
|
+
integrity sha512-LmKiwKldZt6UYqOxV/a6+eUFXdvALFnB/pQx3RmrMvO64sgFhfR6dhrlv+uVbuuezSuv8dce1jx8lUWAT0krMA==
|
2661
2731
|
dependencies:
|
2662
|
-
"@babel/runtime" "^7.
|
2732
|
+
"@babel/runtime" "^7.13.10"
|
2663
2733
|
|
2664
|
-
"@wordpress/
|
2665
|
-
version "
|
2666
|
-
resolved "https://registry.yarnpkg.com/@wordpress/
|
2667
|
-
integrity sha512-
|
2734
|
+
"@wordpress/html-entities@^2.10.0", "@wordpress/html-entities@^2.11.2", "@wordpress/html-entities@^2.9.0":
|
2735
|
+
version "2.11.2"
|
2736
|
+
resolved "https://registry.yarnpkg.com/@wordpress/html-entities/-/html-entities-2.11.2.tgz#c0e757ee7369239e2a885f7db7e78b81b79f8963"
|
2737
|
+
integrity sha512-WIdEGO9/o7tuTV3jpLHhFC/NBBnNdJeG9nRZbEyb37CL1fvqJA85hTugyDOhGzOVIAtpFTc6kr/gMJK1oTdopw==
|
2738
|
+
dependencies:
|
2739
|
+
"@babel/runtime" "^7.13.10"
|
2740
|
+
|
2741
|
+
"@wordpress/i18n@^3.16.0", "@wordpress/i18n@^3.17.0", "@wordpress/i18n@^3.19.2", "@wordpress/i18n@^3.20.0":
|
2742
|
+
version "3.20.0"
|
2743
|
+
resolved "https://registry.yarnpkg.com/@wordpress/i18n/-/i18n-3.20.0.tgz#dc9b04b9e8c359c1b0dbae78b99b32ef2c0b4729"
|
2744
|
+
integrity sha512-SIoOJFB4UrrYAScS4H91CYCLW9dX3Ghv8pBKc/yHGculb1AdGr6gRMlmJxZV62Cn3CZ4Ga86c+FfR+GiBu0JPg==
|
2668
2745
|
dependencies:
|
2669
|
-
"@babel/runtime" "^7.
|
2746
|
+
"@babel/runtime" "^7.13.10"
|
2747
|
+
"@wordpress/hooks" "^2.12.3"
|
2670
2748
|
gettext-parser "^1.3.1"
|
2671
|
-
lodash "^4.17.
|
2749
|
+
lodash "^4.17.19"
|
2672
2750
|
memize "^1.1.0"
|
2673
2751
|
sprintf-js "^1.1.1"
|
2674
2752
|
tannin "^1.2.0"
|
2675
2753
|
|
2676
|
-
"@wordpress/icons@^2.0.0":
|
2677
|
-
version "2.
|
2678
|
-
resolved "https://registry.yarnpkg.com/@wordpress/icons/-/icons-2.
|
2679
|
-
integrity sha512
|
2754
|
+
"@wordpress/icons@^2.10.3", "@wordpress/icons@^2.8.0", "@wordpress/icons@^2.9.0":
|
2755
|
+
version "2.10.3"
|
2756
|
+
resolved "https://registry.yarnpkg.com/@wordpress/icons/-/icons-2.10.3.tgz#56253dd0119794c600c923cb2255778db66b97f3"
|
2757
|
+
integrity sha512-hVXArGOHLE5pL1G3rHNzsUEuTR4/G6lB+enKYwhYSSIqWuSbyXbZq3nvibxpepPrLy9B3d5t6aR6QUmjMVzIcQ==
|
2680
2758
|
dependencies:
|
2681
|
-
"@babel/runtime" "^7.
|
2682
|
-
"@wordpress/element" "^2.
|
2683
|
-
"@wordpress/primitives" "^1.
|
2759
|
+
"@babel/runtime" "^7.13.10"
|
2760
|
+
"@wordpress/element" "^2.20.3"
|
2761
|
+
"@wordpress/primitives" "^1.12.3"
|
2684
2762
|
|
2685
|
-
"@wordpress/interface
|
2686
|
-
version "0.
|
2687
|
-
resolved "https://registry.yarnpkg.com/@wordpress/interface/-/interface-0.
|
2688
|
-
integrity sha512-
|
2689
|
-
dependencies:
|
2690
|
-
"@babel/runtime" "^7.
|
2691
|
-
"@wordpress/components" "^
|
2692
|
-
"@wordpress/data" "^4.
|
2693
|
-
"@wordpress/element" "^2.
|
2694
|
-
"@wordpress/i18n" "^3.
|
2695
|
-
"@wordpress/icons" "^2.
|
2696
|
-
"@wordpress/plugins" "^2.
|
2763
|
+
"@wordpress/interface@0.10.0":
|
2764
|
+
version "0.10.0"
|
2765
|
+
resolved "https://registry.yarnpkg.com/@wordpress/interface/-/interface-0.10.0.tgz#d1a7a1d07329f1b66efcf9664a4341e723de2fa1"
|
2766
|
+
integrity sha512-nIRzycdXcNlnnry3hDHeLEGuwoMXn51vcu7m+mk5IBr2vKpBrFsJoLEk9Wn9emtxbcRjVRlNf/yiUgQY+RHW7g==
|
2767
|
+
dependencies:
|
2768
|
+
"@babel/runtime" "^7.11.2"
|
2769
|
+
"@wordpress/components" "^11.1.0"
|
2770
|
+
"@wordpress/data" "^4.25.0"
|
2771
|
+
"@wordpress/element" "^2.18.0"
|
2772
|
+
"@wordpress/i18n" "^3.16.0"
|
2773
|
+
"@wordpress/icons" "^2.8.0"
|
2774
|
+
"@wordpress/plugins" "^2.23.0"
|
2697
2775
|
classnames "^2.2.5"
|
2698
|
-
lodash "^4.17.
|
2776
|
+
lodash "^4.17.19"
|
2699
2777
|
|
2700
|
-
"@wordpress/is-shallow-equal@^2.
|
2701
|
-
version "2.
|
2702
|
-
resolved "https://registry.yarnpkg.com/@wordpress/is-shallow-equal/-/is-shallow-equal-2.
|
2703
|
-
integrity sha512-
|
2778
|
+
"@wordpress/is-shallow-equal@^2.3.0":
|
2779
|
+
version "2.3.0"
|
2780
|
+
resolved "https://registry.yarnpkg.com/@wordpress/is-shallow-equal/-/is-shallow-equal-2.3.0.tgz#226a1490e050d20281518114bb83c9c1a360407a"
|
2781
|
+
integrity sha512-BUVCYZNDoT5fRJGoam/nI2Sn8QELu5z/pFe7UL+szFqQqNnMibdWqN/KoW/YO7WLJqqqTRhAs/Fa51g4oXRyHQ==
|
2704
2782
|
dependencies:
|
2705
|
-
"@babel/runtime" "^7.
|
2783
|
+
"@babel/runtime" "^7.11.2"
|
2706
2784
|
|
2707
|
-
"@wordpress/
|
2708
|
-
version "1.
|
2709
|
-
resolved "https://registry.yarnpkg.com/@wordpress/
|
2710
|
-
integrity sha512-
|
2711
|
-
dependencies:
|
2712
|
-
"@babel/runtime" "^7.
|
2713
|
-
|
2714
|
-
|
2715
|
-
|
2716
|
-
|
2717
|
-
|
2785
|
+
"@wordpress/is-shallow-equal@^3.0.0", "@wordpress/is-shallow-equal@^3.1.3":
|
2786
|
+
version "3.1.3"
|
2787
|
+
resolved "https://registry.yarnpkg.com/@wordpress/is-shallow-equal/-/is-shallow-equal-3.1.3.tgz#2fc549ec0c878fc1d4ca4ff107cea8580fc7b79e"
|
2788
|
+
integrity sha512-eDLhfC4aaSgklzqwc6F/F4zmJVpTVTAvhqX+q0SP/8LPcP2HuKErPHVrEc75PMWqIutja2wJg98YSNPdewrj1w==
|
2789
|
+
dependencies:
|
2790
|
+
"@babel/runtime" "^7.13.10"
|
2791
|
+
|
2792
|
+
"@wordpress/keyboard-shortcuts@^1.12.0":
|
2793
|
+
version "1.14.3"
|
2794
|
+
resolved "https://registry.yarnpkg.com/@wordpress/keyboard-shortcuts/-/keyboard-shortcuts-1.14.3.tgz#a78aa8dd880a1c91f8f7e2b19e0e5272f8205712"
|
2795
|
+
integrity sha512-p7dvsaAckYRwFp5FeaeYm1IrA2KoXFq3D9mFALftdDQuLkx3XRk6f0IjgxYTePcWM5hS2Bc07UCAcNKyouFIGw==
|
2796
|
+
dependencies:
|
2797
|
+
"@babel/runtime" "^7.13.10"
|
2798
|
+
"@wordpress/compose" "^3.25.3"
|
2799
|
+
"@wordpress/data" "^4.27.3"
|
2800
|
+
"@wordpress/element" "^2.20.3"
|
2801
|
+
"@wordpress/keycodes" "^2.19.3"
|
2802
|
+
lodash "^4.17.19"
|
2718
2803
|
rememo "^3.0.0"
|
2719
2804
|
|
2720
|
-
"@wordpress/keycodes@^2.
|
2721
|
-
version "2.
|
2722
|
-
resolved "https://registry.yarnpkg.com/@wordpress/keycodes/-/keycodes-2.
|
2723
|
-
integrity sha512-
|
2805
|
+
"@wordpress/keycodes@^2.16.0", "@wordpress/keycodes@^2.19.3":
|
2806
|
+
version "2.19.3"
|
2807
|
+
resolved "https://registry.yarnpkg.com/@wordpress/keycodes/-/keycodes-2.19.3.tgz#723dcb8a6a5979a31a6f0002eb912fe60a49576a"
|
2808
|
+
integrity sha512-8rNdmP5M1ifTgLIL0dt/N1uTGsq/Rx1ydCXy+gg24WdxBRhyu5sudNVCtascVXo26aIfOH9OJRdqRZZTEORhog==
|
2724
2809
|
dependencies:
|
2725
|
-
"@babel/runtime" "^7.
|
2726
|
-
"@wordpress/i18n" "^3.
|
2727
|
-
lodash "^4.17.
|
2810
|
+
"@babel/runtime" "^7.13.10"
|
2811
|
+
"@wordpress/i18n" "^3.20.0"
|
2812
|
+
lodash "^4.17.19"
|
2728
2813
|
|
2729
|
-
"@wordpress/media-utils@^1.
|
2730
|
-
version "1.
|
2731
|
-
resolved "https://registry.yarnpkg.com/@wordpress/media-utils/-/media-utils-1.
|
2732
|
-
integrity sha512-
|
2733
|
-
dependencies:
|
2734
|
-
"@babel/runtime" "^7.
|
2735
|
-
"@wordpress/api-fetch" "^
|
2736
|
-
"@wordpress/blob" "^2.
|
2737
|
-
"@wordpress/element" "^2.
|
2738
|
-
"@wordpress/i18n" "^3.
|
2739
|
-
lodash "^4.17.
|
2814
|
+
"@wordpress/media-utils@^1.18.0":
|
2815
|
+
version "1.20.3"
|
2816
|
+
resolved "https://registry.yarnpkg.com/@wordpress/media-utils/-/media-utils-1.20.3.tgz#ed02f060f39de9d1357697ccc9624d9e2245b864"
|
2817
|
+
integrity sha512-938LnUQPMhC6mKMJ4/fILC0+jseSg3b6ABdhSDkdOQdrSVKy+zabfd/w1BQ9I5MnsuviLsAyeaq5alpTmdHTwg==
|
2818
|
+
dependencies:
|
2819
|
+
"@babel/runtime" "^7.13.10"
|
2820
|
+
"@wordpress/api-fetch" "^4.0.0"
|
2821
|
+
"@wordpress/blob" "^2.13.2"
|
2822
|
+
"@wordpress/element" "^2.20.3"
|
2823
|
+
"@wordpress/i18n" "^3.20.0"
|
2824
|
+
lodash "^4.17.19"
|
2740
2825
|
|
2741
|
-
"@wordpress/notices@^2.
|
2742
|
-
version "2.
|
2743
|
-
resolved "https://registry.yarnpkg.com/@wordpress/notices/-/notices-2.
|
2744
|
-
integrity sha512-
|
2826
|
+
"@wordpress/notices@^2.11.0":
|
2827
|
+
version "2.13.3"
|
2828
|
+
resolved "https://registry.yarnpkg.com/@wordpress/notices/-/notices-2.13.3.tgz#1fc62ec581245275773b9f4f06d7dd5dc7e2e447"
|
2829
|
+
integrity sha512-lutDWWlw5r+EYSHZvJ/l4fHNharjPvF92EexoHjk+B9pVzxMtbtJv2dHeffu8BjcuYvke8OJbydlUYaa0SoeLQ==
|
2745
2830
|
dependencies:
|
2746
|
-
"@babel/runtime" "^7.
|
2747
|
-
"@wordpress/a11y" "^2.
|
2748
|
-
"@wordpress/data" "^4.
|
2749
|
-
lodash "^4.17.
|
2831
|
+
"@babel/runtime" "^7.13.10"
|
2832
|
+
"@wordpress/a11y" "^2.15.3"
|
2833
|
+
"@wordpress/data" "^4.27.3"
|
2834
|
+
lodash "^4.17.19"
|
2750
2835
|
|
2751
|
-
"@wordpress/plugins@^2.
|
2752
|
-
version "2.
|
2753
|
-
resolved "https://registry.yarnpkg.com/@wordpress/plugins/-/plugins-2.
|
2754
|
-
integrity sha512-
|
2836
|
+
"@wordpress/plugins@^2.23.0":
|
2837
|
+
version "2.25.3"
|
2838
|
+
resolved "https://registry.yarnpkg.com/@wordpress/plugins/-/plugins-2.25.3.tgz#adf33411690a5aefaa597f61a6df4fd82c091ab5"
|
2839
|
+
integrity sha512-I61O0cWT2nSXEuOP/C2bmgRU7Hhj6e/SXaUKJyfZd7hs16Ihp1a2NJh23jDhFS3wZ/4SY7bZgRnVNGRaBZAacw==
|
2755
2840
|
dependencies:
|
2756
|
-
"@babel/runtime" "^7.
|
2757
|
-
"@wordpress/compose" "^3.
|
2758
|
-
"@wordpress/element" "^2.
|
2759
|
-
"@wordpress/hooks" "^2.
|
2760
|
-
"@wordpress/icons" "^2.
|
2761
|
-
lodash "^4.17.
|
2841
|
+
"@babel/runtime" "^7.13.10"
|
2842
|
+
"@wordpress/compose" "^3.25.3"
|
2843
|
+
"@wordpress/element" "^2.20.3"
|
2844
|
+
"@wordpress/hooks" "^2.12.3"
|
2845
|
+
"@wordpress/icons" "^2.10.3"
|
2846
|
+
lodash "^4.17.19"
|
2847
|
+
memize "^1.1.0"
|
2762
2848
|
|
2763
|
-
"@wordpress/primitives@^1.
|
2764
|
-
version "1.
|
2765
|
-
resolved "https://registry.yarnpkg.com/@wordpress/primitives/-/primitives-1.
|
2766
|
-
integrity sha512-
|
2849
|
+
"@wordpress/primitives@^1.10.0", "@wordpress/primitives@^1.12.3":
|
2850
|
+
version "1.12.3"
|
2851
|
+
resolved "https://registry.yarnpkg.com/@wordpress/primitives/-/primitives-1.12.3.tgz#6e095e62dae30ad5ce09db83925f8057b4c999ad"
|
2852
|
+
integrity sha512-LIF44bVlJS7CJEVmk6TLuV6HZMdj5iwkyM8do4ukGY6qnZIzrXpBablgJeDBcyjzWrWRLn+w+tiZ/8l+2egoVA==
|
2767
2853
|
dependencies:
|
2768
|
-
"@babel/runtime" "^7.
|
2769
|
-
"@wordpress/element" "^2.
|
2854
|
+
"@babel/runtime" "^7.13.10"
|
2855
|
+
"@wordpress/element" "^2.20.3"
|
2770
2856
|
classnames "^2.2.5"
|
2771
2857
|
|
2772
|
-
"@wordpress/priority-queue@^1.
|
2773
|
-
version "1.
|
2774
|
-
resolved "https://registry.yarnpkg.com/@wordpress/priority-queue/-/priority-queue-1.
|
2775
|
-
integrity sha512-
|
2858
|
+
"@wordpress/priority-queue@^1.11.2":
|
2859
|
+
version "1.11.2"
|
2860
|
+
resolved "https://registry.yarnpkg.com/@wordpress/priority-queue/-/priority-queue-1.11.2.tgz#0c130df3c7af356f39b02f64922a4bdbf14d9686"
|
2861
|
+
integrity sha512-ulwmUOklY3orn1xXpcPnTyGWV5B/oycxI+cHZ6EevBVgM5sq+BW3xo0PKLR/MMm6UNBtFTu/71QAJrNZcD6V1g==
|
2776
2862
|
dependencies:
|
2777
|
-
"@babel/runtime" "^7.
|
2863
|
+
"@babel/runtime" "^7.13.10"
|
2778
2864
|
|
2779
|
-
"@wordpress/redux-routine@^3.
|
2780
|
-
version "3.
|
2781
|
-
resolved "https://registry.yarnpkg.com/@wordpress/redux-routine/-/redux-routine-3.
|
2782
|
-
integrity sha512-
|
2865
|
+
"@wordpress/redux-routine@^3.14.2":
|
2866
|
+
version "3.14.2"
|
2867
|
+
resolved "https://registry.yarnpkg.com/@wordpress/redux-routine/-/redux-routine-3.14.2.tgz#f49ce2e66eecb5bdaef86a1f90b4cc4137d5acf4"
|
2868
|
+
integrity sha512-aqi4UtvMP/+NhULxyCR8ktG0v4BJVTRcMpByAqDg7Oabq2sz2LPuShxd5UY8vxQYQY9t1uUJbslhom4ytcohWg==
|
2783
2869
|
dependencies:
|
2784
|
-
"@babel/runtime" "^7.
|
2870
|
+
"@babel/runtime" "^7.13.10"
|
2785
2871
|
is-promise "^4.0.0"
|
2786
|
-
lodash "^4.17.
|
2872
|
+
lodash "^4.17.19"
|
2787
2873
|
rungen "^0.3.2"
|
2788
2874
|
|
2789
|
-
"@wordpress/
|
2790
|
-
version "
|
2791
|
-
resolved "https://registry.yarnpkg.com/@wordpress/
|
2792
|
-
integrity sha512-
|
2793
|
-
dependencies:
|
2794
|
-
"@
|
2795
|
-
"@wordpress/
|
2796
|
-
"@wordpress/
|
2797
|
-
"@wordpress/
|
2798
|
-
"@wordpress/
|
2799
|
-
"@wordpress/
|
2800
|
-
"@wordpress/
|
2801
|
-
"@wordpress/
|
2875
|
+
"@wordpress/reusable-blocks@1.0.0", "@wordpress/reusable-blocks@^1.0.0":
|
2876
|
+
version "1.0.0"
|
2877
|
+
resolved "https://registry.yarnpkg.com/@wordpress/reusable-blocks/-/reusable-blocks-1.0.0.tgz#319d6d7ef6975a78e41ffd4f1456d4a902849664"
|
2878
|
+
integrity sha512-gj9/3VqIVxZUDeGl4wqa9T6nRnWtdhqcNSBFA2GAKj8iqnre7+s77eJmuGQRACRRiPKoE3YNfo1nWpjQg9gjkw==
|
2879
|
+
dependencies:
|
2880
|
+
"@wordpress/block-editor" "^5.1.0"
|
2881
|
+
"@wordpress/blocks" "^6.24.0"
|
2882
|
+
"@wordpress/components" "^11.1.0"
|
2883
|
+
"@wordpress/compose" "^3.22.0"
|
2884
|
+
"@wordpress/core-data" "^2.24.0"
|
2885
|
+
"@wordpress/data" "^4.25.0"
|
2886
|
+
"@wordpress/element" "^2.18.0"
|
2887
|
+
"@wordpress/i18n" "^3.16.0"
|
2888
|
+
"@wordpress/icons" "^2.8.0"
|
2889
|
+
"@wordpress/notices" "^2.11.0"
|
2890
|
+
lodash "^4.17.19"
|
2891
|
+
|
2892
|
+
"@wordpress/rich-text@^3.23.0":
|
2893
|
+
version "3.25.3"
|
2894
|
+
resolved "https://registry.yarnpkg.com/@wordpress/rich-text/-/rich-text-3.25.3.tgz#af8533cbaa1c1313b4c6fa9667212a7b1c52016f"
|
2895
|
+
integrity sha512-FdqL1/rHTsRxZ1gW1UEWuy0URmUEqMzj5hcAbOhHFPO5m0ENrkzC9bBa195KqZBSNSmBmXnDZdHu4UJUolzcZg==
|
2896
|
+
dependencies:
|
2897
|
+
"@babel/runtime" "^7.13.10"
|
2898
|
+
"@wordpress/compose" "^3.25.3"
|
2899
|
+
"@wordpress/data" "^4.27.3"
|
2900
|
+
"@wordpress/dom" "^2.18.0"
|
2901
|
+
"@wordpress/element" "^2.20.3"
|
2902
|
+
"@wordpress/escape-html" "^1.12.2"
|
2903
|
+
"@wordpress/is-shallow-equal" "^3.1.3"
|
2904
|
+
"@wordpress/keycodes" "^2.19.3"
|
2802
2905
|
classnames "^2.2.5"
|
2803
|
-
lodash "^4.17.
|
2906
|
+
lodash "^4.17.19"
|
2804
2907
|
memize "^1.1.0"
|
2805
2908
|
rememo "^3.0.0"
|
2806
2909
|
|
2807
|
-
"@wordpress/server-side-render@^1.
|
2808
|
-
version "1.
|
2809
|
-
resolved "https://registry.yarnpkg.com/@wordpress/server-side-render/-/server-side-render-1.
|
2810
|
-
integrity sha512-
|
2811
|
-
dependencies:
|
2812
|
-
"@babel/runtime" "^7.
|
2813
|
-
"@wordpress/api-fetch" "^3.
|
2814
|
-
"@wordpress/components" "^
|
2815
|
-
"@wordpress/data" "^4.
|
2816
|
-
"@wordpress/deprecated" "^2.
|
2817
|
-
"@wordpress/element" "^2.
|
2818
|
-
"@wordpress/i18n" "^3.
|
2819
|
-
"@wordpress/url" "^2.
|
2820
|
-
lodash "^4.17.
|
2910
|
+
"@wordpress/server-side-render@1.19.0", "@wordpress/server-side-render@^1.19.0":
|
2911
|
+
version "1.19.0"
|
2912
|
+
resolved "https://registry.yarnpkg.com/@wordpress/server-side-render/-/server-side-render-1.19.0.tgz#d8479bd290844929a8edff072c32a73660824dd4"
|
2913
|
+
integrity sha512-QZDUu2ZLuMcZm4Lu6QRDYCgTsYPpr9JIw1FUrC9tAz75X3nSLgQ328+OkJknGnR7Ias94Eh6saxWxslR2ckmnQ==
|
2914
|
+
dependencies:
|
2915
|
+
"@babel/runtime" "^7.11.2"
|
2916
|
+
"@wordpress/api-fetch" "^3.20.0"
|
2917
|
+
"@wordpress/components" "^11.1.0"
|
2918
|
+
"@wordpress/data" "^4.25.0"
|
2919
|
+
"@wordpress/deprecated" "^2.10.0"
|
2920
|
+
"@wordpress/element" "^2.18.0"
|
2921
|
+
"@wordpress/i18n" "^3.16.0"
|
2922
|
+
"@wordpress/url" "^2.19.0"
|
2923
|
+
lodash "^4.17.19"
|
2821
2924
|
|
2822
|
-
"@wordpress/shortcode@^2.
|
2823
|
-
version "2.
|
2824
|
-
resolved "https://registry.yarnpkg.com/@wordpress/shortcode/-/shortcode-2.
|
2825
|
-
integrity sha512-
|
2925
|
+
"@wordpress/shortcode@^2.11.0", "@wordpress/shortcode@^2.12.0", "@wordpress/shortcode@^2.13.2":
|
2926
|
+
version "2.13.2"
|
2927
|
+
resolved "https://registry.yarnpkg.com/@wordpress/shortcode/-/shortcode-2.13.2.tgz#ee50f53e7a486275d7c635eedcbce72aed83abd0"
|
2928
|
+
integrity sha512-n4O5O66ARGY+h1SCvt0uOIQAJ6B4hd6EjULAWRNYgQuuF9mdhcczpGvSH76BssuvLN6bJU1RjsVy7m56kqO5xw==
|
2826
2929
|
dependencies:
|
2827
|
-
"@babel/runtime" "^7.
|
2828
|
-
lodash "^4.17.
|
2930
|
+
"@babel/runtime" "^7.13.10"
|
2931
|
+
lodash "^4.17.19"
|
2829
2932
|
memize "^1.1.0"
|
2830
2933
|
|
2831
|
-
"@wordpress/token-list@^1.
|
2832
|
-
version "1.
|
2833
|
-
resolved "https://registry.yarnpkg.com/@wordpress/token-list/-/token-list-1.
|
2834
|
-
integrity sha512-
|
2934
|
+
"@wordpress/token-list@^1.13.0":
|
2935
|
+
version "1.15.3"
|
2936
|
+
resolved "https://registry.yarnpkg.com/@wordpress/token-list/-/token-list-1.15.3.tgz#960c06dfc83ff36b7e877b3c56887c15ec0d5b77"
|
2937
|
+
integrity sha512-UrAnXgn05wmlS0GLPoxHZBtjjzB7TA4wX/1MV57LcLngifUKKPuNl0kMur/bQcPU+AAczbHKy/0vSvKHiZdoNg==
|
2835
2938
|
dependencies:
|
2836
|
-
"@babel/runtime" "^7.
|
2837
|
-
lodash "^4.17.
|
2939
|
+
"@babel/runtime" "^7.13.10"
|
2940
|
+
lodash "^4.17.19"
|
2838
2941
|
|
2839
|
-
"@wordpress/url@^2.
|
2840
|
-
version "2.
|
2841
|
-
resolved "https://registry.yarnpkg.com/@wordpress/url/-/url-2.
|
2842
|
-
integrity sha512-
|
2942
|
+
"@wordpress/url@^2.19.0", "@wordpress/url@^2.22.2":
|
2943
|
+
version "2.22.2"
|
2944
|
+
resolved "https://registry.yarnpkg.com/@wordpress/url/-/url-2.22.2.tgz#e4267befa6d421b31b40e6e8ff9c973468a6e947"
|
2945
|
+
integrity sha512-aqpYKQXzyzkCOm+GzZRYlLb+wh58g0cwR1PaKAl0UXaBS4mdS+X6biMriylb4P8CVC/RR7CSw5XI20JC24KDwQ==
|
2843
2946
|
dependencies:
|
2844
|
-
"@babel/runtime" "^7.
|
2845
|
-
lodash "^4.17.
|
2846
|
-
qs "^6.5.2"
|
2947
|
+
"@babel/runtime" "^7.13.10"
|
2948
|
+
lodash "^4.17.19"
|
2847
2949
|
react-native-url-polyfill "^1.1.2"
|
2848
2950
|
|
2849
|
-
"@wordpress/viewport@^2.
|
2850
|
-
version "2.
|
2851
|
-
resolved "https://registry.yarnpkg.com/@wordpress/viewport/-/viewport-2.
|
2852
|
-
integrity sha512-
|
2951
|
+
"@wordpress/viewport@^2.24.0":
|
2952
|
+
version "2.26.3"
|
2953
|
+
resolved "https://registry.yarnpkg.com/@wordpress/viewport/-/viewport-2.26.3.tgz#3163d27dc2e9b0c9b4f5ce8eb145d651eb202893"
|
2954
|
+
integrity sha512-CjTMPgWDmcBIa3sEd3wcIhULFsJgStiHJWEtRVHfM2fp/ZApaXrvldHJJxkoHhT5OuLet9JlNnNoD1ZvcUoE1g==
|
2853
2955
|
dependencies:
|
2854
|
-
"@babel/runtime" "^7.
|
2855
|
-
"@wordpress/compose" "^3.
|
2856
|
-
"@wordpress/data" "^4.
|
2857
|
-
lodash "^4.17.
|
2956
|
+
"@babel/runtime" "^7.13.10"
|
2957
|
+
"@wordpress/compose" "^3.25.3"
|
2958
|
+
"@wordpress/data" "^4.27.3"
|
2959
|
+
lodash "^4.17.19"
|
2858
2960
|
|
2859
|
-
"@wordpress/warning@^1.
|
2860
|
-
version "1.
|
2861
|
-
resolved "https://registry.yarnpkg.com/@wordpress/warning/-/warning-1.
|
2862
|
-
integrity sha512-
|
2961
|
+
"@wordpress/warning@^1.3.0":
|
2962
|
+
version "1.4.2"
|
2963
|
+
resolved "https://registry.yarnpkg.com/@wordpress/warning/-/warning-1.4.2.tgz#433e5b2b711cac5b954bafbe1b5bfc626f933b08"
|
2964
|
+
integrity sha512-MjrkSp6Jyfx+92AE32A83P503noUtGb6//BYUH4GiWzzzSNhDHgbQ0UcOJwJaEYK166DxSNpMk/JXc4YENi1Cw==
|
2863
2965
|
|
2864
|
-
"@wordpress/wordcount@^2.
|
2865
|
-
version "2.
|
2866
|
-
resolved "https://registry.yarnpkg.com/@wordpress/wordcount/-/wordcount-2.
|
2867
|
-
integrity sha512-
|
2966
|
+
"@wordpress/wordcount@^2.13.0":
|
2967
|
+
version "2.15.2"
|
2968
|
+
resolved "https://registry.yarnpkg.com/@wordpress/wordcount/-/wordcount-2.15.2.tgz#5d08113ceafc1ff4318c2695473ce4624ca648d9"
|
2969
|
+
integrity sha512-y7dltZQrdtUatzpDVpZxNfXeDva4xRw30lO57MkxmeqlWOpZCrgCK7czNbebTC1CUXZ9xbKiOrNdnFgE6CnoOw==
|
2868
2970
|
dependencies:
|
2869
|
-
"@babel/runtime" "^7.
|
2870
|
-
lodash "^4.17.
|
2971
|
+
"@babel/runtime" "^7.13.10"
|
2972
|
+
lodash "^4.17.19"
|
2871
2973
|
|
2872
2974
|
"@xtuc/ieee754@^1.2.0":
|
2873
2975
|
version "1.2.0"
|
@@ -3375,6 +3477,11 @@ body-scroll-lock@^3.0.2:
|
|
3375
3477
|
resolved "https://registry.yarnpkg.com/body-scroll-lock/-/body-scroll-lock-3.0.2.tgz#97df9bb3b17a0140c4a09b3568d146ae9af6b981"
|
3376
3478
|
integrity sha512-PtItUun94iIupKry8J/h6SfRCLWZnly77KbPsTSKALmxfR282L8R0Ujkv7bydSZvLxAJS4sBJ3y/E6X8gYkGrQ==
|
3377
3479
|
|
3480
|
+
body-scroll-lock@^3.1.5:
|
3481
|
+
version "3.1.5"
|
3482
|
+
resolved "https://registry.yarnpkg.com/body-scroll-lock/-/body-scroll-lock-3.1.5.tgz#c1392d9217ed2c3e237fee1e910f6cdd80b7aaec"
|
3483
|
+
integrity sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==
|
3484
|
+
|
3378
3485
|
bonjour@^3.5.0:
|
3379
3486
|
version "3.5.0"
|
3380
3487
|
resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"
|
@@ -3953,10 +4060,10 @@ compression@^1.7.4:
|
|
3953
4060
|
safe-buffer "5.1.2"
|
3954
4061
|
vary "~1.1.2"
|
3955
4062
|
|
3956
|
-
compute-scroll-into-view@^1.0.
|
3957
|
-
version "1.0.
|
3958
|
-
resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.
|
3959
|
-
integrity sha512-
|
4063
|
+
compute-scroll-into-view@^1.0.14:
|
4064
|
+
version "1.0.17"
|
4065
|
+
resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab"
|
4066
|
+
integrity sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==
|
3960
4067
|
|
3961
4068
|
computed-style@~0.1.3:
|
3962
4069
|
version "0.1.4"
|
@@ -4364,6 +4471,11 @@ csstype@^2.5.7:
|
|
4364
4471
|
resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b"
|
4365
4472
|
integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w==
|
4366
4473
|
|
4474
|
+
csstype@^3.0.2:
|
4475
|
+
version "3.0.8"
|
4476
|
+
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340"
|
4477
|
+
integrity sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==
|
4478
|
+
|
4367
4479
|
currently-unhandled@^0.4.1:
|
4368
4480
|
version "0.4.1"
|
4369
4481
|
resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
|
@@ -4570,6 +4682,13 @@ document.contains@^1.0.1:
|
|
4570
4682
|
dependencies:
|
4571
4683
|
define-properties "^1.1.3"
|
4572
4684
|
|
4685
|
+
dom-helpers@^3.4.0:
|
4686
|
+
version "3.4.0"
|
4687
|
+
resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.4.0.tgz#e9b369700f959f62ecde5a6babde4bccd9169af8"
|
4688
|
+
integrity sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==
|
4689
|
+
dependencies:
|
4690
|
+
"@babel/runtime" "^7.1.2"
|
4691
|
+
|
4573
4692
|
dom-scroll-into-view@^1.2.1:
|
4574
4693
|
version "1.2.1"
|
4575
4694
|
resolved "https://registry.yarnpkg.com/dom-scroll-into-view/-/dom-scroll-into-view-1.2.1.tgz#e8f36732dd089b0201a88d7815dc3f88e6d66c7e"
|
@@ -4613,15 +4732,15 @@ dot-prop@^5.2.0:
|
|
4613
4732
|
dependencies:
|
4614
4733
|
is-obj "^2.0.0"
|
4615
4734
|
|
4616
|
-
downshift@^4.0
|
4617
|
-
version "4.
|
4618
|
-
resolved "https://registry.yarnpkg.com/downshift/-/downshift-4.
|
4619
|
-
integrity sha512-
|
4735
|
+
downshift@^5.4.0:
|
4736
|
+
version "5.4.7"
|
4737
|
+
resolved "https://registry.yarnpkg.com/downshift/-/downshift-5.4.7.tgz#2ab7b0512cad33011ee6f29630f9a7bb74dff2b5"
|
4738
|
+
integrity sha512-xaH0RNqwJ5pAsyk9qBmR9XJWmg1OOWMfrhzYv0NH2NjJxn77S3zBcfClw341UfhGyKg5v+qVqg/CQzvAgBNCXQ==
|
4620
4739
|
dependencies:
|
4621
|
-
"@babel/runtime" "^7.
|
4622
|
-
compute-scroll-into-view "^1.0.
|
4740
|
+
"@babel/runtime" "^7.10.2"
|
4741
|
+
compute-scroll-into-view "^1.0.14"
|
4623
4742
|
prop-types "^15.7.2"
|
4624
|
-
react-is "^16.
|
4743
|
+
react-is "^16.13.1"
|
4625
4744
|
|
4626
4745
|
duplexify@^3.4.2, duplexify@^3.6.0:
|
4627
4746
|
version "3.7.1"
|
@@ -6696,10 +6815,10 @@ mkdirp@^1.0.3, mkdirp@^1.0.4:
|
|
6696
6815
|
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
|
6697
6816
|
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
|
6698
6817
|
|
6699
|
-
moment-timezone@^0.5.
|
6700
|
-
version "0.5.
|
6701
|
-
resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.
|
6702
|
-
integrity sha512
|
6818
|
+
moment-timezone@^0.5.31:
|
6819
|
+
version "0.5.33"
|
6820
|
+
resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.33.tgz#b252fd6bb57f341c9b59a5ab61a8e51a73bbd22c"
|
6821
|
+
integrity sha512-PTc2vcT8K9J5/9rDEPe5czSIKgLoGsH8UNpA4qZTVw0Vd/Uz19geE9abbIOQKaAQFcnQ3v5YEXrbSc5BpshH+w==
|
6703
6822
|
dependencies:
|
6704
6823
|
moment ">= 2.9.0"
|
6705
6824
|
|
@@ -6708,7 +6827,7 @@ moment-timezone@^0.5.16:
|
|
6708
6827
|
resolved "https://registry.yarnpkg.com/moment/-/moment-2.26.0.tgz#5e1f82c6bafca6e83e808b30c8705eed0dcbd39a"
|
6709
6828
|
integrity sha512-oIixUO+OamkUkwjhAVE18rAMfRJNsNe/Stid/gwHSOfHrOtw9EhAY2AHvdKZ/k/MggcYELFCJz/Sn2pL8b8JMw==
|
6710
6829
|
|
6711
|
-
mousetrap@^1.6.
|
6830
|
+
mousetrap@^1.6.5:
|
6712
6831
|
version "1.6.5"
|
6713
6832
|
resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.5.tgz#8a766d8c272b08393d5f56074e0b5ec183485bf9"
|
6714
6833
|
integrity sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA==
|
@@ -6937,6 +7056,11 @@ normalize-url@^3.0.0:
|
|
6937
7056
|
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
|
6938
7057
|
integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
|
6939
7058
|
|
7059
|
+
normalize-wheel@^1.0.1:
|
7060
|
+
version "1.0.1"
|
7061
|
+
resolved "https://registry.yarnpkg.com/normalize-wheel/-/normalize-wheel-1.0.1.tgz#aec886affdb045070d856447df62ecf86146ec45"
|
7062
|
+
integrity sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU=
|
7063
|
+
|
6940
7064
|
npm-run-path@^2.0.0:
|
6941
7065
|
version "2.0.2"
|
6942
7066
|
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
|
@@ -8221,11 +8345,6 @@ qs@6.7.0:
|
|
8221
8345
|
resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
|
8222
8346
|
integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
|
8223
8347
|
|
8224
|
-
qs@^6.5.2:
|
8225
|
-
version "6.9.4"
|
8226
|
-
resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687"
|
8227
|
-
integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==
|
8228
|
-
|
8229
8348
|
qs@~6.5.2:
|
8230
8349
|
version "6.5.2"
|
8231
8350
|
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
|
@@ -8284,10 +8403,10 @@ raw-body@2.4.0:
|
|
8284
8403
|
iconv-lite "0.4.24"
|
8285
8404
|
unpipe "1.0.0"
|
8286
8405
|
|
8287
|
-
re-resizable@^6.
|
8288
|
-
version "6.
|
8289
|
-
resolved "https://registry.yarnpkg.com/re-resizable/-/re-resizable-6.
|
8290
|
-
integrity sha512-
|
8406
|
+
re-resizable@^6.4.0:
|
8407
|
+
version "6.9.0"
|
8408
|
+
resolved "https://registry.yarnpkg.com/re-resizable/-/re-resizable-6.9.0.tgz#9c3059b389ced6ade602234cc5bb1e12d231cd47"
|
8409
|
+
integrity sha512-3cUDG81ylyqI0Pdgle/RHwwRYq0ORZzsUaySOCO8IbEtNyaRtrIHYm/jMQ5pjcNiKCxR3vsSymIQZHwJq4gg2Q==
|
8291
8410
|
dependencies:
|
8292
8411
|
fast-memoize "^2.5.1"
|
8293
8412
|
|
@@ -8327,7 +8446,7 @@ react-dates@^17.1.1:
|
|
8327
8446
|
react-with-styles "^3.2.0"
|
8328
8447
|
react-with-styles-interface-css "^4.0.2"
|
8329
8448
|
|
8330
|
-
react-dom@^16.13.1
|
8449
|
+
react-dom@^16.13.1:
|
8331
8450
|
version "16.13.1"
|
8332
8451
|
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f"
|
8333
8452
|
integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==
|
@@ -8337,11 +8456,29 @@ react-dom@^16.13.1, react-dom@^16.9.0:
|
|
8337
8456
|
prop-types "^15.6.2"
|
8338
8457
|
scheduler "^0.19.1"
|
8339
8458
|
|
8340
|
-
react-
|
8459
|
+
react-easy-crop@^3.0.0:
|
8460
|
+
version "3.3.3"
|
8461
|
+
resolved "https://registry.yarnpkg.com/react-easy-crop/-/react-easy-crop-3.3.3.tgz#665940d95c3128b0f6b52c5cd8a5d1a5cdba5382"
|
8462
|
+
integrity sha512-CumnUN7GrGaMBK2k3nOG7By8q6IG/JfXO9ytXZHndhx6HFdlUxz1j11vm7hXBmTWDaQ9XtPSZaqSPI9ye5CiGw==
|
8463
|
+
dependencies:
|
8464
|
+
normalize-wheel "^1.0.1"
|
8465
|
+
tslib "2.0.1"
|
8466
|
+
|
8467
|
+
react-is@^16.13.1, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.9.0:
|
8341
8468
|
version "16.13.1"
|
8342
8469
|
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
|
8343
8470
|
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
|
8344
8471
|
|
8472
|
+
react-lifecycles-compat@^3.0.4:
|
8473
|
+
version "3.0.4"
|
8474
|
+
resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362"
|
8475
|
+
integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==
|
8476
|
+
|
8477
|
+
react-merge-refs@^1.0.0:
|
8478
|
+
version "1.1.0"
|
8479
|
+
resolved "https://registry.yarnpkg.com/react-merge-refs/-/react-merge-refs-1.1.0.tgz#73d88b892c6c68cbb7a66e0800faa374f4c38b06"
|
8480
|
+
integrity sha512-alTKsjEL0dKH/ru1Iyn7vliS2QRcBp9zZPGoWxUOvRGWPUYgjo+V01is7p04It6KhgrzhJGnIj9GgX8W4bZoCQ==
|
8481
|
+
|
8345
8482
|
react-moment-proptypes@^1.6.0:
|
8346
8483
|
version "1.7.0"
|
8347
8484
|
resolved "https://registry.yarnpkg.com/react-moment-proptypes/-/react-moment-proptypes-1.7.0.tgz#89881479840a76c13574a86e3bb214c4ba564e7a"
|
@@ -8375,10 +8512,10 @@ react-portal@^4.1.5:
|
|
8375
8512
|
dependencies:
|
8376
8513
|
prop-types "^15.5.8"
|
8377
8514
|
|
8378
|
-
react-resize-aware@^3.0.0:
|
8379
|
-
version "3.
|
8380
|
-
resolved "https://registry.yarnpkg.com/react-resize-aware/-/react-resize-aware-3.
|
8381
|
-
integrity sha512-
|
8515
|
+
react-resize-aware@^3.0.1, react-resize-aware@^3.1.0:
|
8516
|
+
version "3.1.0"
|
8517
|
+
resolved "https://registry.yarnpkg.com/react-resize-aware/-/react-resize-aware-3.1.0.tgz#fa1da751d1d72f90c3b79969d05c2c577dfabd92"
|
8518
|
+
integrity sha512-bIhHlxVTX7xKUz14ksXMEHjzCZPTpQZKZISY3nbTD273pDKPABGFNFBP6Tr42KECxzC5YQiKpMchjTVJCqaxpA==
|
8382
8519
|
|
8383
8520
|
react-spring@^8.0.19, react-spring@^8.0.20:
|
8384
8521
|
version "8.0.27"
|
@@ -8388,6 +8525,21 @@ react-spring@^8.0.19, react-spring@^8.0.20:
|
|
8388
8525
|
"@babel/runtime" "^7.3.1"
|
8389
8526
|
prop-types "^15.5.8"
|
8390
8527
|
|
8528
|
+
react-transition-group@^2.9.0:
|
8529
|
+
version "2.9.0"
|
8530
|
+
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d"
|
8531
|
+
integrity sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==
|
8532
|
+
dependencies:
|
8533
|
+
dom-helpers "^3.4.0"
|
8534
|
+
loose-envify "^1.4.0"
|
8535
|
+
prop-types "^15.6.2"
|
8536
|
+
react-lifecycles-compat "^3.0.4"
|
8537
|
+
|
8538
|
+
react-use-gesture@^7.0.15:
|
8539
|
+
version "7.0.16"
|
8540
|
+
resolved "https://registry.yarnpkg.com/react-use-gesture/-/react-use-gesture-7.0.16.tgz#501985261ef9c815a377b6ff9be6df5a85fbb54f"
|
8541
|
+
integrity sha512-gwgX+E+WQG0T1uFVl3z8j3ZwH3QQGIgVl7VtQEC2m0IscSs668sSps4Ss3CFp3Vns8xx0j9TVK4aBXH6+YrpEg==
|
8542
|
+
|
8391
8543
|
react-with-direction@^1.3.0:
|
8392
8544
|
version "1.3.1"
|
8393
8545
|
resolved "https://registry.yarnpkg.com/react-with-direction/-/react-with-direction-1.3.1.tgz#9fd414564f0ffe6947e5ff176f6132dd83f8b8df"
|
@@ -8420,7 +8572,7 @@ react-with-styles@^3.2.0:
|
|
8420
8572
|
prop-types "^15.6.2"
|
8421
8573
|
react-with-direction "^1.3.0"
|
8422
8574
|
|
8423
|
-
react@^16.13.1
|
8575
|
+
react@^16.13.1:
|
8424
8576
|
version "16.13.1"
|
8425
8577
|
resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e"
|
8426
8578
|
integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==
|
@@ -8491,35 +8643,65 @@ readdirp@~3.5.0:
|
|
8491
8643
|
dependencies:
|
8492
8644
|
picomatch "^2.2.1"
|
8493
8645
|
|
8494
|
-
reakit-system@^0.
|
8495
|
-
version "0.
|
8496
|
-
resolved "https://registry.yarnpkg.com/reakit-system/-/reakit-system-0.
|
8497
|
-
integrity sha512-
|
8646
|
+
reakit-system@^0.13.0:
|
8647
|
+
version "0.13.1"
|
8648
|
+
resolved "https://registry.yarnpkg.com/reakit-system/-/reakit-system-0.13.1.tgz#e756b9a1b9d6cfe75f9a5e77531e5b0f9eb8227b"
|
8649
|
+
integrity sha512-qglfQ53FsJh5+VSkjMtBg7eZiowj9zXOyfJJxfaXh/XYTVe/5ibzWg6rvGHyvSm6C3D7Q2sg/NPCLmCtYGGvQA==
|
8498
8650
|
dependencies:
|
8499
|
-
reakit-utils "^0.
|
8651
|
+
reakit-utils "^0.13.1"
|
8500
8652
|
|
8501
|
-
reakit-
|
8502
|
-
version "0.
|
8503
|
-
resolved "https://registry.yarnpkg.com/reakit-
|
8504
|
-
integrity sha512-
|
8653
|
+
reakit-system@^0.15.1:
|
8654
|
+
version "0.15.1"
|
8655
|
+
resolved "https://registry.yarnpkg.com/reakit-system/-/reakit-system-0.15.1.tgz#bf5cc7a03f60a817373bc9cbb4a689c1f4100547"
|
8656
|
+
integrity sha512-PkqfAyEohtcEu/gUvKriCv42NywDtUgvocEN3147BI45dOFAB89nrT7wRIbIcKJiUT598F+JlPXAZZVLWhc1Kg==
|
8657
|
+
dependencies:
|
8658
|
+
reakit-utils "^0.15.1"
|
8505
8659
|
|
8506
|
-
reakit-
|
8507
|
-
version "0.
|
8508
|
-
resolved "https://registry.yarnpkg.com/reakit-
|
8509
|
-
integrity sha512-
|
8660
|
+
reakit-utils@^0.13.0, reakit-utils@^0.13.1:
|
8661
|
+
version "0.13.1"
|
8662
|
+
resolved "https://registry.yarnpkg.com/reakit-utils/-/reakit-utils-0.13.1.tgz#060b8b2a55eea1170c6d8ff37cd98c10c63ee55c"
|
8663
|
+
integrity sha512-NBKgsot3tU91gZgK5MTInI/PR0T3kIsTmbU5MbGggSOcwU2dG/kbE8IrM2lC6ayCSL2W2QWkijT6kewdrIX7Gw==
|
8664
|
+
|
8665
|
+
reakit-utils@^0.15.1:
|
8666
|
+
version "0.15.1"
|
8667
|
+
resolved "https://registry.yarnpkg.com/reakit-utils/-/reakit-utils-0.15.1.tgz#797f0a43f6a1dbc22d161224d5d2272e287dbfe3"
|
8668
|
+
integrity sha512-6cZgKGvOkAMQgkwU9jdYbHfkuIN1Pr+vwcB19plLvcTfVN0Or10JhIuj9X+JaPZyI7ydqTDFaKNdUcDP69o/+Q==
|
8669
|
+
|
8670
|
+
reakit-warning@^0.4.0:
|
8671
|
+
version "0.4.1"
|
8672
|
+
resolved "https://registry.yarnpkg.com/reakit-warning/-/reakit-warning-0.4.1.tgz#a715302812c5fc7f89f35772d650423f09029b00"
|
8673
|
+
integrity sha512-AgnRN6cf8DYBF/mK2JEMFVL67Sbon8fDbFy1kfm0EDibtGsMOQtsFYfozZL7TwmJ4yg68VMhg8tmPHchVQRrlg==
|
8510
8674
|
dependencies:
|
8511
|
-
reakit-utils "^0.
|
8675
|
+
reakit-utils "^0.13.1"
|
8512
8676
|
|
8513
|
-
reakit@^
|
8514
|
-
version "
|
8515
|
-
resolved "https://registry.yarnpkg.com/reakit/-/reakit-
|
8516
|
-
integrity sha512-
|
8677
|
+
reakit-warning@^0.6.1:
|
8678
|
+
version "0.6.1"
|
8679
|
+
resolved "https://registry.yarnpkg.com/reakit-warning/-/reakit-warning-0.6.1.tgz#dba33bb8866aebe30e67ac433ead707d16d38a36"
|
8680
|
+
integrity sha512-poFUV0EyxB+CcV9uTNBAFmcgsnR2DzAbOTkld4Ul+QOKSeEHZB3b3+MoZQgcYHmbvG19Na1uWaM7ES+/Eyr8tQ==
|
8681
|
+
dependencies:
|
8682
|
+
reakit-utils "^0.15.1"
|
8683
|
+
|
8684
|
+
reakit@1.1.0:
|
8685
|
+
version "1.1.0"
|
8686
|
+
resolved "https://registry.yarnpkg.com/reakit/-/reakit-1.1.0.tgz#c30289907722a1fb1aa6a8c4990dac739c60e9c7"
|
8687
|
+
integrity sha512-d/ERtwgBndBPsyPBPUl5jueyfFgsglIfQCnLMKuxM0PaWiIZ6Ys3XsYaNy/AaG8k46Ee5cQPMdRrR30nVcSToQ==
|
8517
8688
|
dependencies:
|
8518
|
-
"@popperjs/core" "^2.4.
|
8689
|
+
"@popperjs/core" "^2.4.2"
|
8519
8690
|
body-scroll-lock "^3.0.2"
|
8520
|
-
reakit-system "^0.
|
8521
|
-
reakit-utils "^0.
|
8522
|
-
reakit-warning "^0.
|
8691
|
+
reakit-system "^0.13.0"
|
8692
|
+
reakit-utils "^0.13.0"
|
8693
|
+
reakit-warning "^0.4.0"
|
8694
|
+
|
8695
|
+
reakit@^1.1.0:
|
8696
|
+
version "1.3.8"
|
8697
|
+
resolved "https://registry.yarnpkg.com/reakit/-/reakit-1.3.8.tgz#717e1a3b7cc6da803362a0edc2c55d2b6a001baf"
|
8698
|
+
integrity sha512-8SVejx6FUaFi2+Q9eXoDAd4wWi/xAn6v8JgXH8x2xnzye8pb6v5bYvegACVpYVZnrS5w/JUgMTGh1Xy8MkkPww==
|
8699
|
+
dependencies:
|
8700
|
+
"@popperjs/core" "^2.5.4"
|
8701
|
+
body-scroll-lock "^3.1.5"
|
8702
|
+
reakit-system "^0.15.1"
|
8703
|
+
reakit-utils "^0.15.1"
|
8704
|
+
reakit-warning "^0.6.1"
|
8523
8705
|
|
8524
8706
|
redent@^1.0.0:
|
8525
8707
|
version "1.0.0"
|
@@ -9652,6 +9834,11 @@ tinycolor2@^1.4.1:
|
|
9652
9834
|
resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8"
|
9653
9835
|
integrity sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g=
|
9654
9836
|
|
9837
|
+
tinycolor2@^1.4.2:
|
9838
|
+
version "1.4.2"
|
9839
|
+
resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803"
|
9840
|
+
integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==
|
9841
|
+
|
9655
9842
|
to-arraybuffer@^1.0.0:
|
9656
9843
|
version "1.0.1"
|
9657
9844
|
resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
|
@@ -9729,6 +9916,11 @@ ts-pnp@^1.1.6:
|
|
9729
9916
|
resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
|
9730
9917
|
integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==
|
9731
9918
|
|
9919
|
+
tslib@2.0.1:
|
9920
|
+
version "2.0.1"
|
9921
|
+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.1.tgz#410eb0d113e5b6356490eec749603725b021b43e"
|
9922
|
+
integrity sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==
|
9923
|
+
|
9732
9924
|
tslib@^1.9.0:
|
9733
9925
|
version "1.13.0"
|
9734
9926
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043"
|
@@ -9936,6 +10128,11 @@ uuid@^7.0.2:
|
|
9936
10128
|
resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b"
|
9937
10129
|
integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==
|
9938
10130
|
|
10131
|
+
uuid@^8.3.0:
|
10132
|
+
version "8.3.2"
|
10133
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
|
10134
|
+
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
|
10135
|
+
|
9939
10136
|
v8-compile-cache@^2.1.1:
|
9940
10137
|
version "2.2.0"
|
9941
10138
|
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"
|