diff --git a/Gemfile b/Gemfile index fbd69c611..8f4d343df 100644 --- a/Gemfile +++ b/Gemfile @@ -10,6 +10,7 @@ gem "decidim-decidim_awesome", git: "https://github.com/codeforjapan/decidim-mod gem "decidim-term_customizer", git: "https://github.com/codeforjapan/decidim-module-term_customizer.git", branch: "027-ja" +gem "decidim-navigation_maps", git: "https://github.com/codeforjapan/decidim-module-navigation_maps.git", branch: "v1.3.4-2024-01-28" gem "decidim-polis", git: "https://github.com/codeforjapan/decidim-polis.git", branch: "update-0-27-4" gem "bootsnap" diff --git a/Gemfile.lock b/Gemfile.lock index c44bc2524..83333c688 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -8,6 +8,15 @@ GIT decidim-core (>= 0.26.0, < 0.28) sassc (~> 2.3) +GIT + remote: https://github.com/codeforjapan/decidim-module-navigation_maps.git + revision: 52c7f017ea5e3b3e817b411a6bb445800c45dda7 + branch: v1.3.4-2024-01-28 + specs: + decidim-navigation_maps (1.4.0) + decidim-admin (>= 0.27, < 0.28) + decidim-core (>= 0.27, < 0.28) + GIT remote: https://github.com/codeforjapan/decidim-module-term_customizer.git revision: b54c2f2daeab5b371717f706515982629b3cd0dd @@ -908,6 +917,7 @@ DEPENDENCIES decidim (= 0.27.4) decidim-decidim_awesome! decidim-dev (= 0.27.4) + decidim-navigation_maps! decidim-polis! decidim-term_customizer! decidim-user_extension! diff --git a/db/migrate/20240128143437_create_decidim_navigation_maps_blueprints.decidim_navigation_maps.rb b/db/migrate/20240128143437_create_decidim_navigation_maps_blueprints.decidim_navigation_maps.rb new file mode 100644 index 000000000..5beb5dbb1 --- /dev/null +++ b/db/migrate/20240128143437_create_decidim_navigation_maps_blueprints.decidim_navigation_maps.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true +# This migration comes from decidim_navigation_maps (originally 20191022092624) + +class CreateDecidimNavigationMapsBlueprints < ActiveRecord::Migration[5.2] + def change + create_table :decidim_navigation_maps_blueprints do |t| + t.jsonb :blueprint + t.string :image + t.references :decidim_organization, null: false, foreign_key: true, index: { name: "decidim_navigation_maps_constraint_organization" } + + t.timestamps + end + end +end diff --git a/db/migrate/20240128143438_add_title_to_navigation_maps_blueprints.decidim_navigation_maps.rb b/db/migrate/20240128143438_add_title_to_navigation_maps_blueprints.decidim_navigation_maps.rb new file mode 100644 index 000000000..065155f04 --- /dev/null +++ b/db/migrate/20240128143438_add_title_to_navigation_maps_blueprints.decidim_navigation_maps.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true +# This migration comes from decidim_navigation_maps (originally 20191120185739) + +class AddTitleToNavigationMapsBlueprints < ActiveRecord::Migration[5.2] + def change + change_table :decidim_navigation_maps_blueprints do |t| + t.jsonb :title, default: {} + t.jsonb :description, default: {} + end + end +end diff --git a/db/migrate/20240128143439_create_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb b/db/migrate/20240128143439_create_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb new file mode 100644 index 000000000..b51dbbf02 --- /dev/null +++ b/db/migrate/20240128143439_create_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb @@ -0,0 +1,19 @@ +# frozen_string_literal: true +# This migration comes from decidim_navigation_maps (originally 20191125142751) + +class CreateDecidimNavigationMapsBlueprintAreas < ActiveRecord::Migration[5.2] + def change + create_table :decidim_navigation_maps_blueprint_areas do |t| + t.jsonb :area + t.references :decidim_navigation_maps_blueprint, null: false, foreign_key: true, index: { name: "decidim_navigation_maps_constraint_blueprint_id" } + t.jsonb :title, default: {} + t.jsonb :description, default: {} + t.string :area_type + t.string :url + + t.timestamps + end + + remove_column :decidim_navigation_maps_blueprints, :blueprint, :jsonb + end +end diff --git a/db/migrate/20240128143440_add_link_type_to_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb b/db/migrate/20240128143440_add_link_type_to_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb new file mode 100644 index 000000000..54f7eabcb --- /dev/null +++ b/db/migrate/20240128143440_add_link_type_to_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true +# This migration comes from decidim_navigation_maps (originally 20191126045831) + +class AddLinkTypeToDecidimNavigationMapsBlueprintAreas < ActiveRecord::Migration[5.2] + def change + rename_column :decidim_navigation_maps_blueprint_areas, :url, :link + add_column :decidim_navigation_maps_blueprint_areas, :link_type, :string + end +end diff --git a/db/migrate/20240128143441_add_area_id_to_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb b/db/migrate/20240128143441_add_area_id_to_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb new file mode 100644 index 000000000..7d8ceea85 --- /dev/null +++ b/db/migrate/20240128143441_add_area_id_to_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true +# This migration comes from decidim_navigation_maps (originally 20191126154019) + +class AddAreaIdToDecidimNavigationMapsBlueprintAreas < ActiveRecord::Migration[5.2] + class Area < ApplicationRecord + self.table_name = "decidim_navigation_maps_blueprint_areas" + end + + def change + add_column :decidim_navigation_maps_blueprint_areas, :area_id, :string + + Area.find_each do |area| + area.area_id = area.id + area.save! + end + end +end diff --git a/db/migrate/20240128143442_add_color_to_navigation_maps_blueprint_areas.decidim_navigation_maps.rb b/db/migrate/20240128143442_add_color_to_navigation_maps_blueprint_areas.decidim_navigation_maps.rb new file mode 100644 index 000000000..e84edc1cd --- /dev/null +++ b/db/migrate/20240128143442_add_color_to_navigation_maps_blueprint_areas.decidim_navigation_maps.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true +# This migration comes from decidim_navigation_maps (originally 20191127093746) + +class AddColorToNavigationMapsBlueprintAreas < ActiveRecord::Migration[5.2] + def change + add_column :decidim_navigation_maps_blueprint_areas, :color, :string + end +end diff --git a/db/migrate/20240128143443_add_reference_to_content_block_to_blueprints_table.decidim_navigation_maps.rb b/db/migrate/20240128143443_add_reference_to_content_block_to_blueprints_table.decidim_navigation_maps.rb new file mode 100644 index 000000000..78637927d --- /dev/null +++ b/db/migrate/20240128143443_add_reference_to_content_block_to_blueprints_table.decidim_navigation_maps.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true +# This migration comes from decidim_navigation_maps (originally 20201105130724) + +class AddReferenceToContentBlockToBlueprintsTable < ActiveRecord::Migration[5.2] + def change + add_reference( + :decidim_navigation_maps_blueprints, + :decidim_content_block, + foreign_key: true, + index: { name: "decidim_navigation_maps_constraint_content_block" } + ) + end +end diff --git a/db/migrate/20240128143444_add_height_to_navigation_maps_blueprints.decidim_navigation_maps.rb b/db/migrate/20240128143444_add_height_to_navigation_maps_blueprints.decidim_navigation_maps.rb new file mode 100644 index 000000000..f7563d29d --- /dev/null +++ b/db/migrate/20240128143444_add_height_to_navigation_maps_blueprints.decidim_navigation_maps.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true +# This migration comes from decidim_navigation_maps (originally 20210112135817) + +class AddHeightToNavigationMapsBlueprints < ActiveRecord::Migration[5.2] + def change + add_column :decidim_navigation_maps_blueprints, :height, :integer, null: false, default: 475 + end +end diff --git a/db/schema.rb b/db/schema.rb index 5a0c93a43..c3ef0edd6 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2023_08_08_035643) do +ActiveRecord::Schema.define(version: 2024_01_28_143444) do # These are extensions that must be enabled in order to support this database enable_extension "ltree" @@ -939,6 +939,34 @@ t.index ["report_count"], name: "decidim_moderations_report_count" end + create_table "decidim_navigation_maps_blueprint_areas", force: :cascade do |t| + t.jsonb "area" + t.bigint "decidim_navigation_maps_blueprint_id", null: false + t.jsonb "title", default: {} + t.jsonb "description", default: {} + t.string "area_type" + t.string "link" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.string "link_type" + t.string "area_id" + t.string "color" + t.index ["decidim_navigation_maps_blueprint_id"], name: "decidim_navigation_maps_constraint_blueprint_id" + end + + create_table "decidim_navigation_maps_blueprints", force: :cascade do |t| + t.string "image" + t.bigint "decidim_organization_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.jsonb "title", default: {} + t.jsonb "description", default: {} + t.bigint "decidim_content_block_id" + t.integer "height", default: 475, null: false + t.index ["decidim_content_block_id"], name: "decidim_navigation_maps_constraint_content_block" + t.index ["decidim_organization_id"], name: "decidim_navigation_maps_constraint_organization" + end + create_table "decidim_newsletters", id: :serial, force: :cascade do |t| t.jsonb "subject" t.integer "organization_id" @@ -1732,6 +1760,9 @@ add_foreign_key "decidim_editor_images", "decidim_organizations" add_foreign_key "decidim_editor_images", "decidim_users", column: "decidim_author_id" add_foreign_key "decidim_identities", "decidim_organizations" + add_foreign_key "decidim_navigation_maps_blueprint_areas", "decidim_navigation_maps_blueprints" + add_foreign_key "decidim_navigation_maps_blueprints", "decidim_content_blocks" + add_foreign_key "decidim_navigation_maps_blueprints", "decidim_organizations" add_foreign_key "decidim_newsletters", "decidim_users", column: "author_id" add_foreign_key "decidim_participatory_process_steps", "decidim_participatory_processes" add_foreign_key "decidim_participatory_process_types", "decidim_organizations" diff --git a/package.json b/package.json index 2581e6141..a4eebb499 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "@decidim/core": "^0.27.4", "@decidim/elections": "^0.27.4", "@decidim/webpacker": "^0.27.4", + "@geoman-io/leaflet-geoman-free": "^2.15.0", "@rails/webpacker": "^6.0.0-rc.6", "codemirror": "^5.65.9", "europa": "^4.0.0", @@ -14,8 +15,10 @@ "highlight.js": "^11.6.0", "inline-attachment": "^2.0.3", "inscrybmde": "^1.11.6", + "jquery-form": "^4.3.0", "jquery-ui": "^1.13.2", "jsrender": "^1.0.12", + "jsviews": "^1.0.13", "leaflet.featuregroup.subgroup": "^1.0.2", "select2": "^4.1.0-rc.0" }, @@ -33,9 +36,9 @@ "@decidim/eslint-config": "^0.27.4", "@decidim/stylelint-config": "^0.27.4", "eslint": "^7.32.0", - "eslint-config-prettier": "^8.5.0", + "eslint-config-prettier": "^8.10.0", "eslint-config-standard": "^11.0.0", - "eslint-plugin-import": "^2.26.0", + "eslint-plugin-import": "^2.29.1", "stylelint": "^13.11.0" } } diff --git a/yarn.lock b/yarn.lock index 192913e94..07c149f32 100644 --- a/yarn.lock +++ b/yarn.lock @@ -981,12 +981,12 @@ "resolved" "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz" "version" "0.8.0" -"@babel/runtime@^7.11.2", "@babel/runtime@^7.15.3", "@babel/runtime@^7.15.4", "@babel/runtime@^7.20.7", "@babel/runtime@^7.8.4": - "integrity" "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==" - "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz" - "version" "7.21.0" +"@babel/runtime@^7.11.2", "@babel/runtime@^7.15.3", "@babel/runtime@^7.15.4", "@babel/runtime@^7.23.2", "@babel/runtime@^7.8.4": + "integrity" "sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.6.tgz" + "version" "7.23.6" dependencies: - "regenerator-runtime" "^0.13.11" + "regenerator-runtime" "^0.14.0" "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.22.5": "integrity" "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==" @@ -1027,32 +1027,6 @@ "resolved" "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-1.3.0.tgz" "version" "1.3.0" -"@codemirror/language@^0.20.0": - "integrity" "sha512-WB3Bnuusw0xhVvhBocieYKwJm04SOk5bPoOEYksVHKHcGHFOaYaw+eZVxR4gIqMMcGzOIUil0FsCmFk8yrhHpw==" - "resolved" "https://registry.npmjs.org/@codemirror/language/-/language-0.20.2.tgz" - "version" "0.20.2" - dependencies: - "@codemirror/state" "^0.20.0" - "@codemirror/view" "^0.20.0" - "@lezer/common" "^0.16.0" - "@lezer/highlight" "^0.16.0" - "@lezer/lr" "^0.16.0" - "style-mod" "^4.0.0" - -"@codemirror/state@^0.20.0": - "integrity" "sha512-ms0tlV5A02OK0pFvTtSUGMLkoarzh1F8mr6jy1cD7ucSC2X/VLHtQCxfhdSEGqTYlQF2hoZtmLv+amqhdgbwjQ==" - "resolved" "https://registry.npmjs.org/@codemirror/state/-/state-0.20.1.tgz" - "version" "0.20.1" - -"@codemirror/view@^0.20.0": - "integrity" "sha512-pqEPCb9QFTOtHgAH5XU/oVy9UR/Anj6r+tG5CRmkNVcqSKEPmBU05WtN/jxJCFZBXf6HumzWC9ydE4qstO3TxQ==" - "resolved" "https://registry.npmjs.org/@codemirror/view/-/view-0.20.7.tgz" - "version" "0.20.7" - dependencies: - "@codemirror/state" "^0.20.0" - "style-mod" "^4.0.0" - "w3c-keyname" "^2.2.4" - "@csstools/postcss-cascade-layers@^1.1.1": "integrity" "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==" "resolved" "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz" @@ -1347,6 +1321,18 @@ dependencies: "@fortawesome/fontawesome-common-types" "^0.2.36" +"@geoman-io/leaflet-geoman-free@^2.15.0": + "integrity" "sha512-esann1pQ8cCX3pMR7XkXuf1vwwJLz1mAbkeyRWOfoLMKA8LBnbRxChIBZzzwzyGIxybNO93Bl6LaK8wEj8uzlA==" + "resolved" "https://registry.npmjs.org/@geoman-io/leaflet-geoman-free/-/leaflet-geoman-free-2.15.0.tgz" + "version" "2.15.0" + dependencies: + "@turf/boolean-contains" "^6.5.0" + "@turf/kinks" "^6.5.0" + "@turf/line-intersect" "^6.5.0" + "@turf/line-split" "^6.5.0" + "lodash" "4.17.21" + "polygon-clipping" "0.15.3" + "@graphiql/react@^0.10.0": "integrity" "sha512-8Xo1O6SQps6R+mOozN7Ht85/07RwyXgJcKNeR2dWPkJz/1Lww8wVHIKM/AUpo0Aaoh6Ps3UK9ep8DDRfBT4XrQ==" "resolved" "https://registry.npmjs.org/@graphiql/react/-/react-0.10.0.tgz" @@ -1412,16 +1398,7 @@ "@jridgewell/set-array" "^1.0.0" "@jridgewell/sourcemap-codec" "^1.4.10" -"@jridgewell/gen-mapping@^0.3.0": - "integrity" "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==" - "resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz" - "version" "0.3.2" - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/gen-mapping@^0.3.2": +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": "integrity" "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==" "resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz" "version" "0.3.2" @@ -1461,25 +1438,6 @@ "@jridgewell/resolve-uri" "3.1.0" "@jridgewell/sourcemap-codec" "1.4.14" -"@lezer/common@^0.16.0": - "integrity" "sha512-qPmG7YTZ6lATyTOAWf8vXE+iRrt1NJd4cm2nJHK+v7X9TsOF6+HtuU/ctaZy2RCrluxDb89hI6KWQ5LfQGQWuA==" - "resolved" "https://registry.npmjs.org/@lezer/common/-/common-0.16.1.tgz" - "version" "0.16.1" - -"@lezer/highlight@^0.16.0": - "integrity" "sha512-iE5f4flHlJ1g1clOStvXNLbORJoiW4Kytso6ubfYzHnaNo/eo5SKhxs4wv/rtvwZQeZrK3we8S9SyA7OGOoRKQ==" - "resolved" "https://registry.npmjs.org/@lezer/highlight/-/highlight-0.16.0.tgz" - "version" "0.16.0" - dependencies: - "@lezer/common" "^0.16.0" - -"@lezer/lr@^0.16.0": - "integrity" "sha512-pau7um4eAw94BEuuShUIeQDTf3k4Wt6oIUOYxMmkZgDHdqtIcxWND4LRxi8nI9KuT4I1bXQv67BCapkxt7Ywqw==" - "resolved" "https://registry.npmjs.org/@lezer/lr/-/lr-0.16.3.tgz" - "version" "0.16.3" - dependencies: - "@lezer/common" "^0.16.0" - "@n1ru4l/push-pull-async-iterable-iterator@^3.1.0": "integrity" "sha512-3fkKj25kEjsfObL6IlKPAlHYPq/oYwUkkQ03zsTTiDjD7vg/RxjdiLeCydqtxHZP0JgsXL3D/X5oAkMGzuUp/Q==" "resolved" "https://registry.npmjs.org/@n1ru4l/push-pull-async-iterable-iterator/-/push-pull-async-iterable-iterator-3.2.0.tgz" @@ -1643,6 +1601,156 @@ "resolved" "https://registry.npmjs.org/@tarekraafat/autocomplete.js/-/autocomplete.js-10.2.7.tgz" "version" "10.2.7" +"@turf/bbox@*", "@turf/bbox@^6.5.0": + "integrity" "sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw==" + "resolved" "https://registry.npmjs.org/@turf/bbox/-/bbox-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/meta" "^6.5.0" + +"@turf/bearing@^6.5.0": + "integrity" "sha512-dxINYhIEMzgDOztyMZc20I7ssYVNEpSv04VbMo5YPQsqa80KO3TFvbuCahMsCAW5z8Tncc8dwBlEFrmRjJG33A==" + "resolved" "https://registry.npmjs.org/@turf/bearing/-/bearing-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + +"@turf/boolean-contains@^6.5.0": + "integrity" "sha512-4m8cJpbw+YQcKVGi8y0cHhBUnYT+QRfx6wzM4GI1IdtYH3p4oh/DOBJKrepQyiDzFDaNIjxuWXBh0ai1zVwOQQ==" + "resolved" "https://registry.npmjs.org/@turf/boolean-contains/-/boolean-contains-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/bbox" "^6.5.0" + "@turf/boolean-point-in-polygon" "^6.5.0" + "@turf/boolean-point-on-line" "^6.5.0" + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + +"@turf/boolean-point-in-polygon@^6.5.0": + "integrity" "sha512-DtSuVFB26SI+hj0SjrvXowGTUCHlgevPAIsukssW6BG5MlNSBQAo70wpICBNJL6RjukXg8d2eXaAWuD/CqL00A==" + "resolved" "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + +"@turf/boolean-point-on-line@^6.5.0": + "integrity" "sha512-A1BbuQ0LceLHvq7F/P7w3QvfpmZqbmViIUPHdNLvZimFNLo4e6IQunmzbe+8aSStH9QRZm3VOflyvNeXvvpZEQ==" + "resolved" "https://registry.npmjs.org/@turf/boolean-point-on-line/-/boolean-point-on-line-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + +"@turf/destination@^6.5.0": + "integrity" "sha512-4cnWQlNC8d1tItOz9B4pmJdWpXqS0vEvv65bI/Pj/genJnsL7evI0/Xw42RvEGROS481MPiU80xzvwxEvhQiMQ==" + "resolved" "https://registry.npmjs.org/@turf/destination/-/destination-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + +"@turf/distance@^6.5.0": + "integrity" "sha512-xzykSLfoURec5qvQJcfifw/1mJa+5UwByZZ5TZ8iaqjGYN0vomhV9aiSLeYdUGtYRESZ+DYC/OzY+4RclZYgMg==" + "resolved" "https://registry.npmjs.org/@turf/distance/-/distance-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + +"@turf/helpers@^6.5.0", "@turf/helpers@6.x": + "integrity" "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==" + "resolved" "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz" + "version" "6.5.0" + +"@turf/invariant@^6.5.0": + "integrity" "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==" + "resolved" "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + +"@turf/kinks@^6.5.0": + "integrity" "sha512-ViCngdPt1eEL7hYUHR2eHR662GvCgTc35ZJFaNR6kRtr6D8plLaDju0FILeFFWSc+o8e3fwxZEJKmFj9IzPiIQ==" + "resolved" "https://registry.npmjs.org/@turf/kinks/-/kinks-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + +"@turf/line-intersect@^6.5.0": + "integrity" "sha512-CS6R1tZvVQD390G9Ea4pmpM6mJGPWoL82jD46y0q1KSor9s6HupMIo1kY4Ny+AEYQl9jd21V3Scz20eldpbTVA==" + "resolved" "https://registry.npmjs.org/@turf/line-intersect/-/line-intersect-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + "@turf/line-segment" "^6.5.0" + "@turf/meta" "^6.5.0" + "geojson-rbush" "3.x" + +"@turf/line-segment@^6.5.0": + "integrity" "sha512-jI625Ho4jSuJESNq66Mmi290ZJ5pPZiQZruPVpmHkUw257Pew0alMmb6YrqYNnLUuiVVONxAAKXUVeeUGtycfw==" + "resolved" "https://registry.npmjs.org/@turf/line-segment/-/line-segment-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + "@turf/meta" "^6.5.0" + +"@turf/line-split@^6.5.0": + "integrity" "sha512-/rwUMVr9OI2ccJjw7/6eTN53URtGThNSD5I0GgxyFXMtxWiloRJ9MTff8jBbtPWrRka/Sh2GkwucVRAEakx9Sw==" + "resolved" "https://registry.npmjs.org/@turf/line-split/-/line-split-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/bbox" "^6.5.0" + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + "@turf/line-intersect" "^6.5.0" + "@turf/line-segment" "^6.5.0" + "@turf/meta" "^6.5.0" + "@turf/nearest-point-on-line" "^6.5.0" + "@turf/square" "^6.5.0" + "@turf/truncate" "^6.5.0" + "geojson-rbush" "3.x" + +"@turf/meta@^6.5.0", "@turf/meta@6.x": + "integrity" "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==" + "resolved" "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + +"@turf/nearest-point-on-line@^6.5.0": + "integrity" "sha512-WthrvddddvmymnC+Vf7BrkHGbDOUu6Z3/6bFYUGv1kxw8tiZ6n83/VG6kHz4poHOfS0RaNflzXSkmCi64fLBlg==" + "resolved" "https://registry.npmjs.org/@turf/nearest-point-on-line/-/nearest-point-on-line-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/bearing" "^6.5.0" + "@turf/destination" "^6.5.0" + "@turf/distance" "^6.5.0" + "@turf/helpers" "^6.5.0" + "@turf/invariant" "^6.5.0" + "@turf/line-intersect" "^6.5.0" + "@turf/meta" "^6.5.0" + +"@turf/square@^6.5.0": + "integrity" "sha512-BM2UyWDmiuHCadVhHXKIx5CQQbNCpOxB6S/aCNOCLbhCeypKX5Q0Aosc5YcmCJgkwO5BERCC6Ee7NMbNB2vHmQ==" + "resolved" "https://registry.npmjs.org/@turf/square/-/square-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/distance" "^6.5.0" + "@turf/helpers" "^6.5.0" + +"@turf/truncate@^6.5.0": + "integrity" "sha512-pFxg71pLk+eJj134Z9yUoRhIi8vqnnKvCYwdT4x/DQl/19RVdq1tV3yqOT3gcTQNfniteylL5qV1uTBDV5sgrg==" + "resolved" "https://registry.npmjs.org/@turf/truncate/-/truncate-6.5.0.tgz" + "version" "6.5.0" + dependencies: + "@turf/helpers" "^6.5.0" + "@turf/meta" "^6.5.0" + "@types/eslint-scope@^3.7.3": "integrity" "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==" "resolved" "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz" @@ -1669,6 +1777,11 @@ "resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz" "version" "0.0.39" +"@types/geojson@7946.0.8": + "integrity" "sha512-1rkryxURpr6aWP7R786/UQOkJ3PcpQiWkAXBmdWc7ryFWqN6a4xfK7BtjXvFBKO9LjQ+MWQSWxYeZX1OApnArA==" + "resolved" "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.8.tgz" + "version" "7946.0.8" + "@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": "integrity" "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz" @@ -1951,7 +2064,7 @@ "json-schema-traverse" "^0.4.1" "uri-js" "^4.2.2" -"ajv@^8.0.0": +"ajv@^8.0.0", "ajv@^8.8.0", "ajv@^8.8.2": "integrity" "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==" "resolved" "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz" "version" "8.11.0" @@ -1981,16 +2094,6 @@ "require-from-string" "^2.0.2" "uri-js" "^4.2.2" -"ajv@^8.8.0", "ajv@^8.8.2": - "integrity" "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==" - "resolved" "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz" - "version" "8.11.0" - dependencies: - "fast-deep-equal" "^3.1.1" - "json-schema-traverse" "^1.0.0" - "require-from-string" "^2.0.2" - "uri-js" "^4.2.2" - "ansi-colors@^4.1.1": "integrity" "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" "resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz" @@ -2008,14 +2111,7 @@ dependencies: "color-convert" "^1.9.0" -"ansi-styles@^4.0.0": - "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" - "version" "4.3.0" - dependencies: - "color-convert" "^2.0.1" - -"ansi-styles@^4.1.0": +"ansi-styles@^4.0.0", "ansi-styles@^4.1.0": "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" "version" "4.3.0" @@ -2034,7 +2130,7 @@ "resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" "version" "2.0.1" -"aria-query@^5.1.3": +"aria-query@^5.3.0": "integrity" "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==" "resolved" "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz" "version" "5.3.0" @@ -2049,15 +2145,15 @@ "call-bind" "^1.0.2" "is-array-buffer" "^3.0.1" -"array-includes@^3.1.4", "array-includes@^3.1.6": - "integrity" "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==" - "resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz" - "version" "3.1.6" +"array-includes@^3.1.6", "array-includes@^3.1.7": + "integrity" "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==" + "resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz" + "version" "3.1.7" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" - "get-intrinsic" "^1.1.3" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" + "get-intrinsic" "^1.2.1" "is-string" "^1.0.7" "array-union@^2.1.0": @@ -2065,46 +2161,70 @@ "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" "version" "2.1.0" -"array.prototype.flat@^1.2.5", "array.prototype.flat@^1.3.1": - "integrity" "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==" - "resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz" - "version" "1.3.1" +"array.prototype.findlastindex@^1.2.3": + "integrity" "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==" + "resolved" "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz" + "version" "1.2.3" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" "es-shim-unscopables" "^1.0.0" + "get-intrinsic" "^1.2.1" -"array.prototype.flatmap@^1.3.1": - "integrity" "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==" - "resolved" "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz" - "version" "1.3.1" +"array.prototype.flat@^1.3.1", "array.prototype.flat@^1.3.2": + "integrity" "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==" + "resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz" + "version" "1.3.2" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" + "es-shim-unscopables" "^1.0.0" + +"array.prototype.flatmap@^1.3.1", "array.prototype.flatmap@^1.3.2": + "integrity" "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==" + "resolved" "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz" + "version" "1.3.2" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" "es-shim-unscopables" "^1.0.0" "array.prototype.tosorted@^1.1.1": - "integrity" "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==" - "resolved" "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz" - "version" "1.1.1" + "integrity" "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==" + "resolved" "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz" + "version" "1.1.2" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" "es-shim-unscopables" "^1.0.0" - "get-intrinsic" "^1.1.3" + "get-intrinsic" "^1.2.1" + +"arraybuffer.prototype.slice@^1.0.2": + "integrity" "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==" + "resolved" "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "array-buffer-byte-length" "^1.0.0" + "call-bind" "^1.0.2" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" + "get-intrinsic" "^1.2.1" + "is-array-buffer" "^3.0.2" + "is-shared-array-buffer" "^1.0.2" "arrify@^1.0.1": "integrity" "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==" "resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" "version" "1.0.1" -"ast-types-flow@^0.0.7": - "integrity" "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" - "resolved" "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz" - "version" "0.0.7" +"ast-types-flow@^0.0.8": + "integrity" "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" + "resolved" "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz" + "version" "0.0.8" "astral-regex@^2.0.0": "integrity" "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" @@ -2123,6 +2243,13 @@ "resolved" "https://registry.npmjs.org/async/-/async-3.2.4.tgz" "version" "3.2.4" +"asynciterator.prototype@^1.0.0": + "integrity" "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==" + "resolved" "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "has-symbols" "^1.0.3" + "at-least-node@^1.0.0": "integrity" "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" "resolved" "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" @@ -2158,10 +2285,10 @@ "resolved" "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz" "version" "1.0.5" -"axe-core@^4.1.4", "axe-core@^4.6.2": - "integrity" "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==" - "resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz" - "version" "4.6.3" +"axe-core@^4.1.4", "axe-core@=4.7.0": + "integrity" "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==" + "resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz" + "version" "4.7.0" "axios@^0.21.4": "integrity" "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" @@ -2170,7 +2297,7 @@ dependencies: "follow-redirects" "^1.14.0" -"axobject-query@^3.1.1": +"axobject-query@^3.2.1": "integrity" "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==" "resolved" "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz" "version" "3.2.1" @@ -2296,13 +2423,14 @@ "resolved" "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz" "version" "3.3.0" -"call-bind@^1.0.0", "call-bind@^1.0.2": - "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" - "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" - "version" "1.0.2" +"call-bind@^1.0.0", "call-bind@^1.0.2", "call-bind@^1.0.4", "call-bind@^1.0.5": + "integrity" "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" + "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz" + "version" "1.0.5" dependencies: - "function-bind" "^1.1.1" - "get-intrinsic" "^1.0.2" + "function-bind" "^1.1.2" + "get-intrinsic" "^1.2.1" + "set-function-length" "^1.1.1" "callsites@^3.0.0": "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" @@ -2337,31 +2465,7 @@ "escape-string-regexp" "^1.0.5" "supports-color" "^5.3.0" -"chalk@^4.0.0": - "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "ansi-styles" "^4.1.0" - "supports-color" "^7.1.0" - -"chalk@^4.0.2": - "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "ansi-styles" "^4.1.0" - "supports-color" "^7.1.0" - -"chalk@^4.0": - "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "ansi-styles" "^4.1.0" - "supports-color" "^7.1.0" - -"chalk@^4.1.0": +"chalk@^4.0", "chalk@^4.0.0", "chalk@^4.0.2", "chalk@^4.1.0": "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" "version" "4.1.2" @@ -2856,13 +2960,6 @@ "resolved" "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz" "version" "1.11.9" -"debug@^2.6.9": - "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" - "version" "2.6.9" - dependencies: - "ms" "2.0.0" - "debug@^3.2.7": "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" @@ -2917,11 +3014,21 @@ "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" "version" "4.2.2" -"define-properties@^1.1.3", "define-properties@^1.1.4": - "integrity" "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==" - "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz" - "version" "1.1.4" +"define-data-property@^1.0.1", "define-data-property@^1.1.1": + "integrity" "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" + "resolved" "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "get-intrinsic" "^1.2.1" + "gopd" "^1.0.1" + "has-property-descriptors" "^1.0.0" + +"define-properties@^1.1.3", "define-properties@^1.1.4", "define-properties@^1.2.0", "define-properties@^1.2.1": + "integrity" "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" + "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz" + "version" "1.2.1" dependencies: + "define-data-property" "^1.0.1" "has-property-descriptors" "^1.0.0" "object-keys" "^1.1.1" @@ -3063,25 +3170,26 @@ dependencies: "is-arrayish" "^0.2.1" -"es-abstract@^1.19.0", "es-abstract@^1.20.4": - "integrity" "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==" - "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz" - "version" "1.21.2" +"es-abstract@^1.20.4", "es-abstract@^1.22.1": + "integrity" "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==" + "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz" + "version" "1.22.3" dependencies: "array-buffer-byte-length" "^1.0.0" + "arraybuffer.prototype.slice" "^1.0.2" "available-typed-arrays" "^1.0.5" - "call-bind" "^1.0.2" + "call-bind" "^1.0.5" "es-set-tostringtag" "^2.0.1" "es-to-primitive" "^1.2.1" - "function.prototype.name" "^1.1.5" - "get-intrinsic" "^1.2.0" + "function.prototype.name" "^1.1.6" + "get-intrinsic" "^1.2.2" "get-symbol-description" "^1.0.0" "globalthis" "^1.0.3" "gopd" "^1.0.1" - "has" "^1.0.3" "has-property-descriptors" "^1.0.0" "has-proto" "^1.0.1" "has-symbols" "^1.0.3" + "hasown" "^2.0.0" "internal-slot" "^1.0.5" "is-array-buffer" "^3.0.2" "is-callable" "^1.2.7" @@ -3089,19 +3197,43 @@ "is-regex" "^1.1.4" "is-shared-array-buffer" "^1.0.2" "is-string" "^1.0.7" - "is-typed-array" "^1.1.10" + "is-typed-array" "^1.1.12" "is-weakref" "^1.0.2" - "object-inspect" "^1.12.3" + "object-inspect" "^1.13.1" "object-keys" "^1.1.1" "object.assign" "^4.1.4" - "regexp.prototype.flags" "^1.4.3" + "regexp.prototype.flags" "^1.5.1" + "safe-array-concat" "^1.0.1" "safe-regex-test" "^1.0.0" - "string.prototype.trim" "^1.2.7" - "string.prototype.trimend" "^1.0.6" - "string.prototype.trimstart" "^1.0.6" + "string.prototype.trim" "^1.2.8" + "string.prototype.trimend" "^1.0.7" + "string.prototype.trimstart" "^1.0.7" + "typed-array-buffer" "^1.0.0" + "typed-array-byte-length" "^1.0.0" + "typed-array-byte-offset" "^1.0.0" "typed-array-length" "^1.0.4" "unbox-primitive" "^1.0.2" - "which-typed-array" "^1.1.9" + "which-typed-array" "^1.1.13" + +"es-iterator-helpers@^1.0.12", "es-iterator-helpers@^1.0.15": + "integrity" "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==" + "resolved" "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz" + "version" "1.0.15" + dependencies: + "asynciterator.prototype" "^1.0.0" + "call-bind" "^1.0.2" + "define-properties" "^1.2.1" + "es-abstract" "^1.22.1" + "es-set-tostringtag" "^2.0.1" + "function-bind" "^1.1.1" + "get-intrinsic" "^1.2.1" + "globalthis" "^1.0.3" + "has-property-descriptors" "^1.0.0" + "has-proto" "^1.0.1" + "has-symbols" "^1.0.3" + "internal-slot" "^1.0.5" + "iterator.prototype" "^1.1.2" + "safe-array-concat" "^1.0.1" "es-module-lexer@^1.2.1": "integrity" "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==" @@ -3158,31 +3290,31 @@ "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" "version" "4.0.0" -"eslint-config-prettier@^8.2.0", "eslint-config-prettier@^8.5.0": - "integrity" "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==" - "resolved" "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz" - "version" "8.5.0" +"eslint-config-prettier@^8.10.0", "eslint-config-prettier@^8.2.0": + "integrity" "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==" + "resolved" "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz" + "version" "8.10.0" "eslint-config-standard@^11.0.0": "integrity" "sha512-oDdENzpViEe5fwuRCWla7AXQd++/oyIp8zP+iP9jiUPG6NBj3SHgdgtl/kTn00AjeN+1HNvavTKmYbMo+xMOlw==" "resolved" "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-11.0.0.tgz" "version" "11.0.0" -"eslint-import-resolver-node@^0.3.6": - "integrity" "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==" - "resolved" "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz" - "version" "0.3.6" +"eslint-import-resolver-node@^0.3.9": + "integrity" "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==" + "resolved" "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz" + "version" "0.3.9" dependencies: "debug" "^3.2.7" - "resolve" "^1.20.0" + "is-core-module" "^2.13.0" + "resolve" "^1.22.4" -"eslint-module-utils@^2.7.3": - "integrity" "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==" - "resolved" "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz" - "version" "2.7.3" +"eslint-module-utils@^2.8.0": + "integrity" "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==" + "resolved" "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz" + "version" "2.8.0" dependencies: "debug" "^3.2.7" - "find-up" "^2.1.0" "eslint-plugin-es@^3.0.0": "integrity" "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==" @@ -3192,46 +3324,50 @@ "eslint-utils" "^2.0.0" "regexpp" "^3.0.0" -"eslint-plugin-import@^2.22.0", "eslint-plugin-import@^2.26.0", "eslint-plugin-import@>=2.8.0": - "integrity" "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==" - "resolved" "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz" - "version" "2.26.0" +"eslint-plugin-import@^2.22.0", "eslint-plugin-import@^2.29.1", "eslint-plugin-import@>=2.8.0": + "integrity" "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==" + "resolved" "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz" + "version" "2.29.1" dependencies: - "array-includes" "^3.1.4" - "array.prototype.flat" "^1.2.5" - "debug" "^2.6.9" + "array-includes" "^3.1.7" + "array.prototype.findlastindex" "^1.2.3" + "array.prototype.flat" "^1.3.2" + "array.prototype.flatmap" "^1.3.2" + "debug" "^3.2.7" "doctrine" "^2.1.0" - "eslint-import-resolver-node" "^0.3.6" - "eslint-module-utils" "^2.7.3" - "has" "^1.0.3" - "is-core-module" "^2.8.1" + "eslint-import-resolver-node" "^0.3.9" + "eslint-module-utils" "^2.8.0" + "hasown" "^2.0.0" + "is-core-module" "^2.13.1" "is-glob" "^4.0.3" "minimatch" "^3.1.2" - "object.values" "^1.1.5" - "resolve" "^1.22.0" - "tsconfig-paths" "^3.14.1" + "object.fromentries" "^2.0.7" + "object.groupby" "^1.0.1" + "object.values" "^1.1.7" + "semver" "^6.3.1" + "tsconfig-paths" "^3.15.0" "eslint-plugin-jsx-a11y@^6.3.1": - "integrity" "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==" - "resolved" "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz" - "version" "6.7.1" + "integrity" "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==" + "resolved" "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz" + "version" "6.8.0" dependencies: - "@babel/runtime" "^7.20.7" - "aria-query" "^5.1.3" - "array-includes" "^3.1.6" - "array.prototype.flatmap" "^1.3.1" - "ast-types-flow" "^0.0.7" - "axe-core" "^4.6.2" - "axobject-query" "^3.1.1" + "@babel/runtime" "^7.23.2" + "aria-query" "^5.3.0" + "array-includes" "^3.1.7" + "array.prototype.flatmap" "^1.3.2" + "ast-types-flow" "^0.0.8" + "axe-core" "=4.7.0" + "axobject-query" "^3.2.1" "damerau-levenshtein" "^1.0.8" "emoji-regex" "^9.2.2" - "has" "^1.0.3" - "jsx-ast-utils" "^3.3.3" - "language-tags" "=1.0.5" + "es-iterator-helpers" "^1.0.15" + "hasown" "^2.0.0" + "jsx-ast-utils" "^3.3.5" + "language-tags" "^1.0.9" "minimatch" "^3.1.2" - "object.entries" "^1.1.6" - "object.fromentries" "^2.0.6" - "semver" "^6.3.0" + "object.entries" "^1.1.7" + "object.fromentries" "^2.0.7" "eslint-plugin-node@^11.1.0", "eslint-plugin-node@>=5.2.1": "integrity" "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==" @@ -3251,14 +3387,15 @@ "version" "3.8.0" "eslint-plugin-react@^7.20.6": - "integrity" "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==" - "resolved" "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz" - "version" "7.32.2" + "integrity" "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==" + "resolved" "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz" + "version" "7.33.2" dependencies: "array-includes" "^3.1.6" "array.prototype.flatmap" "^1.3.1" "array.prototype.tosorted" "^1.1.1" "doctrine" "^2.1.0" + "es-iterator-helpers" "^1.0.12" "estraverse" "^5.3.0" "jsx-ast-utils" "^2.4.1 || ^3.0.0" "minimatch" "^3.1.2" @@ -3268,7 +3405,7 @@ "object.values" "^1.1.6" "prop-types" "^15.8.1" "resolve" "^2.0.0-next.4" - "semver" "^6.3.0" + "semver" "^6.3.1" "string.prototype.matchall" "^4.0.8" "eslint-plugin-standard@^3.1.0", "eslint-plugin-standard@>=3.0.1": @@ -3291,17 +3428,17 @@ dependencies: "eslint-visitor-keys" "^1.1.0" -"eslint-visitor-keys@^1.1.0": +"eslint-visitor-keys@^1.1.0", "eslint-visitor-keys@^1.3.0": "integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" "version" "1.3.0" -"eslint-visitor-keys@^1.3.0": - "integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" - "version" "1.3.0" +"eslint-visitor-keys@^2.0.0": + "integrity" "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" + "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" + "version" "2.1.0" -"eslint-visitor-keys@^2.0.0", "eslint-visitor-keys@^2.1.0": +"eslint-visitor-keys@^2.1.0": "integrity" "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" "version" "2.1.0" @@ -3505,22 +3642,7 @@ "make-dir" "^3.0.2" "pkg-dir" "^4.1.0" -"find-up@^2.1.0": - "integrity" "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==" - "resolved" "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "locate-path" "^2.0.0" - -"find-up@^4.0.0": - "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" - "version" "4.1.0" - dependencies: - "locate-path" "^5.0.0" - "path-exists" "^4.0.0" - -"find-up@^4.1.0": +"find-up@^4.0.0", "find-up@^4.1.0": "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" "version" "4.1.0" @@ -3623,32 +3745,27 @@ "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" "version" "1.0.0" -"fsevents@~2.3.2": - "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" - "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" - "version" "2.3.2" - -"function-bind@^1.1.1": - "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" - "version" "1.1.1" +"function-bind@^1.1.1", "function-bind@^1.1.2": + "integrity" "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" + "version" "1.1.2" -"function.prototype.name@^1.1.5": - "integrity" "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==" - "resolved" "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz" - "version" "1.1.5" +"function.prototype.name@^1.1.5", "function.prototype.name@^1.1.6": + "integrity" "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==" + "resolved" "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz" + "version" "1.1.6" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.3" - "es-abstract" "^1.19.0" - "functions-have-names" "^1.2.2" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" + "functions-have-names" "^1.2.3" "functional-red-black-tree@^1.0.1": "integrity" "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==" "resolved" "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz" "version" "1.0.1" -"functions-have-names@^1.2.2": +"functions-have-names@^1.2.3": "integrity" "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" "resolved" "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" "version" "1.2.3" @@ -3663,14 +3780,26 @@ "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" "version" "1.0.0-beta.2" -"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.1", "get-intrinsic@^1.1.3", "get-intrinsic@^1.2.0": - "integrity" "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==" - "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz" - "version" "1.2.0" +"geojson-rbush@3.x": + "integrity" "sha512-oVltQTXolxvsz1sZnutlSuLDEcQAKYC/uXt9zDzJJ6bu0W+baTI8LZBaTup5afzibEH4N3jlq2p+a152wlBJ7w==" + "resolved" "https://registry.npmjs.org/geojson-rbush/-/geojson-rbush-3.2.0.tgz" + "version" "3.2.0" dependencies: - "function-bind" "^1.1.1" - "has" "^1.0.3" + "@turf/bbox" "*" + "@turf/helpers" "6.x" + "@turf/meta" "6.x" + "@types/geojson" "7946.0.8" + "rbush" "^3.0.1" + +"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.1", "get-intrinsic@^1.1.3", "get-intrinsic@^1.2.0", "get-intrinsic@^1.2.1", "get-intrinsic@^1.2.2": + "integrity" "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==" + "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz" + "version" "1.2.2" + dependencies: + "function-bind" "^1.1.2" + "has-proto" "^1.0.1" "has-symbols" "^1.0.3" + "hasown" "^2.0.0" "get-own-enumerable-property-symbols@^3.0.0": "integrity" "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" @@ -3818,17 +3947,7 @@ dependencies: "tslib" "^2.1.0" -"graphql-ws@^5.5.5", "graphql-ws@>= 4.5.0": - "integrity" "sha512-itrUTQZP/TgswR4GSSYuwWUzrE/w5GhbwM2GX3ic2U7aw33jgEsayfIlvaj7/GcIvZgNMzsPTrE5hqPuFUiE5g==" - "resolved" "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.14.0.tgz" - "version" "5.14.0" - -"graphql@^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", "graphql@^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0", "graphql@^14.0.0 || ^15.0.0 || ^16.0.0", "graphql@^15.5.0 || ^16.0.0", "graphql@>=0.11 <=16": - "integrity" "sha512-DRYR9tf+UGU0KOsMcKAlXeFfX89UiiIZ0dRU3mR0yJfu6OjZqUcp68NnFLnqQU5RexygFoDy1EW+ccOYcPfmHg==" - "resolved" "https://registry.npmjs.org/graphql/-/graphql-16.7.1.tgz" - "version" "16.7.1" - -"graphql@^15.4.0": +"graphql@^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", "graphql@^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0", "graphql@^14.0.0 || ^15.0.0 || ^16.0.0", "graphql@^15.4.0", "graphql@^15.5.0 || ^16.0.0": "integrity" "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==" "resolved" "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz" "version" "15.8.0" @@ -3889,6 +4008,13 @@ dependencies: "function-bind" "^1.1.1" +"hasown@^2.0.0": + "integrity" "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" + "resolved" "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "function-bind" "^1.1.2" + "highlight.js@^11.6.0": "integrity" "sha512-1rRqesRFhMO/PRF+G86evnyJkCgaZFOI+Z6kdj15TA18funfoqJXvgPCLSf0SWq3SRfg1j3HlDs8o4s3EGq1oQ==" "resolved" "https://registry.npmjs.org/highlight.js/-/highlight.js-11.7.0.tgz" @@ -3970,9 +4096,9 @@ "version" "4.0.6" "ignore@^5.1.1": - "integrity" "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" - "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz" - "version" "5.2.4" + "integrity" "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" + "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz" + "version" "5.3.0" "ignore@^5.1.8": "integrity" "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" @@ -4106,6 +4232,13 @@ "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" "version" "0.2.1" +"is-async-function@^2.0.0": + "integrity" "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==" + "resolved" "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "has-tostringtag" "^1.0.0" + "is-bigint@^1.0.1": "integrity" "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" "resolved" "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" @@ -4131,14 +4264,14 @@ "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" "version" "1.2.7" -"is-core-module@^2.5.0", "is-core-module@^2.8.1", "is-core-module@^2.9.0": - "integrity" "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==" - "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz" - "version" "2.9.0" +"is-core-module@^2.13.0", "is-core-module@^2.13.1", "is-core-module@^2.5.0": + "integrity" "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" + "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz" + "version" "2.13.1" dependencies: - "has" "^1.0.3" + "hasown" "^2.0.0" -"is-date-object@^1.0.1": +"is-date-object@^1.0.1", "is-date-object@^1.0.5": "integrity" "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" "resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" "version" "1.0.5" @@ -4155,11 +4288,25 @@ "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" "version" "2.1.1" +"is-finalizationregistry@^1.0.2": + "integrity" "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==" + "resolved" "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "call-bind" "^1.0.2" + "is-fullwidth-code-point@^3.0.0": "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" "version" "3.0.0" +"is-generator-function@^1.0.10": + "integrity" "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==" + "resolved" "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz" + "version" "1.0.10" + dependencies: + "has-tostringtag" "^1.0.0" + "is-glob@^4.0.0", "is-glob@^4.0.1", "is-glob@^4.0.3": "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" @@ -4172,6 +4319,11 @@ "resolved" "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz" "version" "1.0.4" +"is-map@^2.0.1": + "integrity" "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" + "resolved" "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz" + "version" "2.0.2" + "is-module@^1.0.0": "integrity" "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" "resolved" "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz" @@ -4239,6 +4391,11 @@ "resolved" "https://registry.npmjs.org/is-regexp/-/is-regexp-2.1.0.tgz" "version" "2.1.0" +"is-set@^2.0.1": + "integrity" "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" + "resolved" "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz" + "version" "2.0.2" + "is-shared-array-buffer@^1.0.2": "integrity" "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" "resolved" "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz" @@ -4265,16 +4422,12 @@ dependencies: "has-symbols" "^1.0.2" -"is-typed-array@^1.1.10", "is-typed-array@^1.1.9": - "integrity" "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==" - "resolved" "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz" - "version" "1.1.10" +"is-typed-array@^1.1.10", "is-typed-array@^1.1.12", "is-typed-array@^1.1.9": + "integrity" "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" + "resolved" "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz" + "version" "1.1.12" dependencies: - "available-typed-arrays" "^1.0.5" - "call-bind" "^1.0.2" - "for-each" "^0.3.3" - "gopd" "^1.0.1" - "has-tostringtag" "^1.0.0" + "which-typed-array" "^1.1.11" "is-typedarray@^1.0.0": "integrity" "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" @@ -4286,6 +4439,11 @@ "resolved" "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" "version" "0.1.0" +"is-weakmap@^2.0.1": + "integrity" "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" + "resolved" "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz" + "version" "2.0.1" + "is-weakref@^1.0.2": "integrity" "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" "resolved" "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" @@ -4293,6 +4451,19 @@ dependencies: "call-bind" "^1.0.2" +"is-weakset@^2.0.1": + "integrity" "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==" + "resolved" "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "call-bind" "^1.0.2" + "get-intrinsic" "^1.1.1" + +"isarray@^2.0.5": + "integrity" "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + "resolved" "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" + "version" "2.0.5" + "isexe@^2.0.0": "integrity" "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" @@ -4303,6 +4474,17 @@ "resolved" "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" "version" "3.0.1" +"iterator.prototype@^1.1.2": + "integrity" "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==" + "resolved" "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "define-properties" "^1.2.1" + "get-intrinsic" "^1.2.1" + "has-symbols" "^1.0.3" + "reflect.getprototypeof" "^1.0.4" + "set-function-name" "^2.0.1" + "jake@^10.8.5": "integrity" "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" "resolved" "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz" @@ -4331,6 +4513,13 @@ "merge-stream" "^2.0.0" "supports-color" "^8.0.0" +"jquery-form@^4.3.0": + "integrity" "sha512-q3uaVCEWdLOYUCI6dpNdwf/7cJFOsUgdpq6r0taxtGQ5NJSkOzofyWm4jpOuJ5YxdmL1FI5QR+q+HB63HHLGnQ==" + "resolved" "https://registry.npmjs.org/jquery-form/-/jquery-form-4.3.0.tgz" + "version" "4.3.0" + dependencies: + "jquery" ">=1.7.2" + "jquery-serializejson@2.9.0": "integrity" "sha512-xR7rjl0tRKIVioV5lOkOSv7K8BHMvGzYzC7Ech1iAYuZiYf0ksEpLC8OqjA5VApXf/qn/49O9hTmW70+/EA0vA==" "resolved" "https://registry.npmjs.org/jquery-serializejson/-/jquery-serializejson-2.9.0.tgz" @@ -4348,7 +4537,7 @@ dependencies: "jquery" ">=1.8.0 <4.0.0" -"jquery@^3.2.1", "jquery@>=1.8.0 <4.0.0", "jquery@>=2.2.0", "jquery@>=3.4.1", "jquery@>=3.6.0": +"jquery@^3.2.1", "jquery@^3.4.1", "jquery@>=1.7.2", "jquery@>=1.8.0 <4.0.0", "jquery@>=3.4.1", "jquery@>=3.6.0": "integrity" "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==" "resolved" "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz" "version" "3.6.0" @@ -4420,6 +4609,13 @@ dependencies: "minimist" "^1.2.0" +"json5@^1.0.2": + "integrity" "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" + "resolved" "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "minimist" "^1.2.0" + "json5@^2.1.2", "json5@^2.2.0", "json5@^2.2.2": "integrity" "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" @@ -4456,16 +4652,21 @@ "version" "5.0.1" "jsrender@^1.0.12": - "integrity" "sha512-YQ52tFsEglJTVJOqk/bYVc+aat0wQ2STsYpF7SD2CYHO4XekXRyjUvOVsZYQxqQl7n34v33l7t60WRsmSFaoiw==" - "resolved" "https://registry.npmjs.org/jsrender/-/jsrender-1.0.12.tgz" - "version" "1.0.12" + "version" "v1.0.12" dependencies: "through2" "^3.0.1" -"jsx-ast-utils@^2.4.1 || ^3.0.0", "jsx-ast-utils@^3.3.3": - "integrity" "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==" - "resolved" "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz" - "version" "3.3.4" +"jsviews@^1.0.13": + "integrity" "sha512-BdqeXIYNeoLPj2zBr+S2fVWmEi2CuAPB6Rcl3CgfH8tOlCwm4q2ubq6wqw9sJwZ3TtWGlVLt2FOpPb9PRfHUzg==" + "resolved" "https://registry.npmjs.org/jsviews/-/jsviews-1.0.13.tgz" + "version" "1.0.13" + dependencies: + "jquery" "^3.4.1" + +"jsx-ast-utils@^2.4.1 || ^3.0.0", "jsx-ast-utils@^3.3.5": + "integrity" "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" + "resolved" "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz" + "version" "3.3.5" dependencies: "array-includes" "^3.1.6" "array.prototype.flat" "^1.3.1" @@ -4487,17 +4688,17 @@ "resolved" "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.21.0.tgz" "version" "0.21.0" -"language-subtag-registry@~0.3.2": +"language-subtag-registry@^0.3.20": "integrity" "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" "resolved" "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz" "version" "0.3.22" -"language-tags@=1.0.5": - "integrity" "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==" - "resolved" "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz" - "version" "1.0.5" +"language-tags@^1.0.9": + "integrity" "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==" + "resolved" "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz" + "version" "1.0.9" dependencies: - "language-subtag-registry" "~0.3.2" + "language-subtag-registry" "^0.3.20" "leaflet-tilelayer-here@1.0.2": "integrity" "sha512-PQytY0goCZLANGabPCPQJDhCrXrwdVP6F5NEgw/zjunrfFhQ1XwnBUNCWi0irUWQsETNntcwfkomikhlQ7uCRQ==" @@ -4514,7 +4715,7 @@ "resolved" "https://registry.npmjs.org/leaflet.markercluster/-/leaflet.markercluster-1.4.1.tgz" "version" "1.4.1" -"leaflet@~1.3.1", "leaflet@1.3.1": +"leaflet@^1.2.0", "leaflet@~1.3.1", "leaflet@1.3.1": "integrity" "sha512-adQOIzh+bfdridLM1xIgJ9VnJbAUY3wqs/ueF+ITla+PLQ1z47USdBKUf+iD9FuUA8RtlT6j6hZBfZoA6mW+XQ==" "resolved" "https://registry.npmjs.org/leaflet/-/leaflet-1.3.1.tgz" "version" "1.3.1" @@ -4567,14 +4768,6 @@ "emojis-list" "^3.0.0" "json5" "^2.1.2" -"locate-path@^2.0.0": - "integrity" "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==" - "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "p-locate" "^2.0.0" - "path-exists" "^3.0.0" - "locate-path@^5.0.0": "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" @@ -4619,7 +4812,7 @@ "resolved" "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz" "version" "4.4.2" -"lodash@^4.17.14", "lodash@^4.17.20", "lodash@^4.17.21": +"lodash@^4.17.14", "lodash@^4.17.20", "lodash@^4.17.21", "lodash@4.17.21": "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" "version" "4.17.21" @@ -4852,21 +5045,11 @@ "resolved" "https://registry.npmjs.org/morphdom/-/morphdom-2.6.1.tgz" "version" "2.6.1" -"motion-ui@latest": - "integrity" "sha512-7GjtcXXqRHUQGH9Gm8KLbvx9sz5tNGlftsaJ/J5d4q33PzfgKnUm+OynDji4VR3fiZXPT3nMkzBQlZsifYTIOg==" - "resolved" "https://registry.npmjs.org/motion-ui/-/motion-ui-2.0.4.tgz" - "version" "2.0.4" - "ms@^2.1.1", "ms@2.1.2": "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" "version" "2.1.2" -"ms@2.0.0": - "integrity" "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" - "version" "2.0.0" - "nanoid@^3.3.6": "integrity" "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz" @@ -4952,10 +5135,10 @@ "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" "version" "4.1.1" -"object-inspect@^1.12.3", "object-inspect@^1.9.0": - "integrity" "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" - "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz" - "version" "1.12.3" +"object-inspect@^1.13.1", "object-inspect@^1.9.0": + "integrity" "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" + "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz" + "version" "1.13.1" "object-is@^1.0.1": "integrity" "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" @@ -4980,40 +5163,50 @@ "has-symbols" "^1.0.3" "object-keys" "^1.1.1" -"object.entries@^1.1.6": - "integrity" "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==" - "resolved" "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz" - "version" "1.1.6" +"object.entries@^1.1.6", "object.entries@^1.1.7": + "integrity" "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==" + "resolved" "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz" + "version" "1.1.7" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" -"object.fromentries@^2.0.6": - "integrity" "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==" - "resolved" "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz" - "version" "2.0.6" +"object.fromentries@^2.0.6", "object.fromentries@^2.0.7": + "integrity" "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==" + "resolved" "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz" + "version" "2.0.7" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" + +"object.groupby@^1.0.1": + "integrity" "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==" + "resolved" "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" + "get-intrinsic" "^1.2.1" "object.hasown@^1.1.2": - "integrity" "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==" - "resolved" "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz" - "version" "1.1.2" + "integrity" "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==" + "resolved" "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz" + "version" "1.1.3" dependencies: - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" -"object.values@^1.1.5", "object.values@^1.1.6": - "integrity" "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==" - "resolved" "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz" - "version" "1.1.6" +"object.values@^1.1.6", "object.values@^1.1.7": + "integrity" "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==" + "resolved" "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz" + "version" "1.1.7" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" "once@^1.3.0": "integrity" "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" @@ -5042,13 +5235,6 @@ "type-check" "^0.4.0" "word-wrap" "^1.2.3" -"p-limit@^1.1.0": - "integrity" "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" - "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz" - "version" "1.3.0" - dependencies: - "p-try" "^1.0.0" - "p-limit@^2.2.0": "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" @@ -5056,13 +5242,6 @@ dependencies: "p-try" "^2.0.0" -"p-locate@^2.0.0": - "integrity" "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==" - "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "p-limit" "^1.1.0" - "p-locate@^4.1.0": "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" @@ -5070,11 +5249,6 @@ dependencies: "p-limit" "^2.2.0" -"p-try@^1.0.0": - "integrity" "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==" - "resolved" "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz" - "version" "1.0.0" - "p-try@^2.0.0": "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" "resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" @@ -5124,11 +5298,6 @@ "resolved" "https://registry.npmjs.org/path-complete-extname/-/path-complete-extname-1.0.0.tgz" "version" "1.0.0" -"path-exists@^3.0.0": - "integrity" "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" - "version" "3.0.0" - "path-exists@^4.0.0": "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" @@ -5193,6 +5362,13 @@ dependencies: "ts-pnp" "^1.1.6" +"polygon-clipping@0.15.3": + "integrity" "sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==" + "resolved" "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.3.tgz" + "version" "0.15.3" + dependencies: + "splaytree" "^3.1.0" + "postcss-attribute-case-insensitive@^5.0.2": "integrity" "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==" "resolved" "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz" @@ -5551,7 +5727,7 @@ "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" "version" "4.2.0" -"postcss@^7.0.0 || ^8.0.1", "postcss@^8", "postcss@^8.0.0", "postcss@^8.0.3", "postcss@^8.1.0", "postcss@^8.1.4", "postcss@^8.2", "postcss@^8.3", "postcss@^8.4", "postcss@^8.4.19", "postcss@^8.4.21", "postcss@^8.4.5", "postcss@^8.4.6", "postcss@>=5.0.0", "postcss@>=7.0.0": +"postcss@^7.0.0 || ^8.0.1", "postcss@^8", "postcss@^8.0.0", "postcss@^8.0.3", "postcss@^8.1.0", "postcss@^8.1.4", "postcss@^8.2", "postcss@^8.3", "postcss@^8.4", "postcss@^8.4.19", "postcss@^8.4.21", "postcss@^8.4.5", "postcss@^8.4.6": "integrity" "sha512-jrXHFF8iTloAenySjM/ob3gSj7pCu0Ji49hnjqzsgSRa50hkWCKD0HQ+gMNJkW38jBI68MpAAg7ZWwHwX8NMMw==" "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.4.26.tgz" "version" "8.4.26" @@ -5592,7 +5768,15 @@ "picocolors" "^0.2.1" "source-map" "^0.6.1" -"postcss@^7.0.32", "postcss@^7.0.35", "postcss@^7.0.6": +"postcss@^7.0.32", "postcss@^7.0.35", "postcss@>=5.0.0", "postcss@>=7.0.0": + "integrity" "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==" + "resolved" "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz" + "version" "7.0.39" + dependencies: + "picocolors" "^0.2.1" + "source-map" "^0.6.1" + +"postcss@^7.0.6": "integrity" "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==" "resolved" "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz" "version" "7.0.39" @@ -5661,6 +5845,11 @@ "resolved" "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz" "version" "4.0.1" +"quickselect@^2.0.0": + "integrity" "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==" + "resolved" "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz" + "version" "2.0.0" + "quill-delta@^3.6.2": "integrity" "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==" "resolved" "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz" @@ -5696,6 +5885,13 @@ dependencies: "safe-buffer" "^5.1.0" +"rbush@^3.0.1": + "integrity" "sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==" + "resolved" "https://registry.npmjs.org/rbush/-/rbush-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "quickselect" "^2.0.0" + "react-dom@^16.3.0", "react-dom@^16.8.0 || ^17.0.0 || ^18.0.0": "integrity" "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==" "resolved" "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz" @@ -5779,6 +5975,18 @@ "indent-string" "^4.0.0" "strip-indent" "^3.0.0" +"reflect.getprototypeof@^1.0.4": + "integrity" "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==" + "resolved" "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" + "get-intrinsic" "^1.2.1" + "globalthis" "^1.0.3" + "which-builtin-type" "^1.1.3" + "regenerate-unicode-properties@^10.1.0": "integrity" "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==" "resolved" "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz" @@ -5791,11 +5999,16 @@ "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" "version" "1.4.2" -"regenerator-runtime@^0.13.11", "regenerator-runtime@^0.13.7": +"regenerator-runtime@^0.13.7": "integrity" "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" "version" "0.13.11" +"regenerator-runtime@^0.14.0": + "integrity" "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz" + "version" "0.14.0" + "regenerator-transform@^0.15.1": "integrity" "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==" "resolved" "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz" @@ -5803,14 +6016,14 @@ dependencies: "@babel/runtime" "^7.8.4" -"regexp.prototype.flags@^1.2.0", "regexp.prototype.flags@^1.4.3": - "integrity" "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==" - "resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz" - "version" "1.4.3" +"regexp.prototype.flags@^1.2.0", "regexp.prototype.flags@^1.4.3", "regexp.prototype.flags@^1.5.1": + "integrity" "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==" + "resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz" + "version" "1.5.1" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.3" - "functions-have-names" "^1.2.2" + "define-properties" "^1.2.0" + "set-function-name" "^2.0.0" "regexpp@^3.0.0", "regexpp@^3.1.0": "integrity" "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" @@ -5886,21 +6099,21 @@ "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" "version" "5.0.0" -"resolve@^1.1.7", "resolve@^1.10.0", "resolve@^1.10.1", "resolve@^1.14.2", "resolve@^1.19.0", "resolve@^1.20.0", "resolve@^1.22.0", "resolve@^1.9.0": - "integrity" "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==" - "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz" - "version" "1.22.0" +"resolve@^1.1.7", "resolve@^1.10.0", "resolve@^1.10.1", "resolve@^1.14.2", "resolve@^1.19.0", "resolve@^1.22.4", "resolve@^1.9.0": + "integrity" "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" + "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz" + "version" "1.22.8" dependencies: - "is-core-module" "^2.8.1" + "is-core-module" "^2.13.0" "path-parse" "^1.0.7" "supports-preserve-symlinks-flag" "^1.0.0" "resolve@^2.0.0-next.4": - "integrity" "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==" - "resolved" "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz" - "version" "2.0.0-next.4" + "integrity" "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==" + "resolved" "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz" + "version" "2.0.0-next.5" dependencies: - "is-core-module" "^2.9.0" + "is-core-module" "^2.13.0" "path-parse" "^1.0.7" "supports-preserve-symlinks-flag" "^1.0.0" @@ -5964,6 +6177,16 @@ dependencies: "tslib" "^2.1.0" +"safe-array-concat@^1.0.1": + "integrity" "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==" + "resolved" "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "call-bind" "^1.0.2" + "get-intrinsic" "^1.2.1" + "has-symbols" "^1.0.3" + "isarray" "^2.0.5" + "safe-buffer@^5.1.0", "safe-buffer@~5.1.1": "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" @@ -5988,9 +6211,7 @@ "resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" "version" "2.1.2" -"sass-embedded-darwin-arm64@1.63.6": - "integrity" "sha512-eUz2p3fXkLVXvnonm7WyWX0fV1lhfP2ZE/NXYDJhCKlAs1KfSxmZ8udFsfHp+LM+/zWJmrv///8fyt8whewwvA==" - "resolved" "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.63.6.tgz" +"sass-embedded-linux-arm64@1.63.6": "version" "1.63.6" "sass-embedded@^1.49.9": @@ -6031,25 +6252,7 @@ "ajv" "^6.12.4" "ajv-keywords" "^3.5.2" -"schema-utils@^3.0.0": - "integrity" "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" - "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" - "version" "3.1.1" - dependencies: - "@types/json-schema" "^7.0.8" - "ajv" "^6.12.5" - "ajv-keywords" "^3.5.2" - -"schema-utils@^3.0": - "integrity" "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" - "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" - "version" "3.1.1" - dependencies: - "@types/json-schema" "^7.0.8" - "ajv" "^6.12.5" - "ajv-keywords" "^3.5.2" - -"schema-utils@^3.1.1": +"schema-utils@^3.0", "schema-utils@^3.0.0", "schema-utils@^3.1.1": "integrity" "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" "version" "3.1.1" @@ -6087,12 +6290,7 @@ "resolved" "https://registry.npmjs.org/select2/-/select2-4.1.0-rc.0.tgz" "version" "4.1.0-rc.0" -"semver@^6.0.0", "semver@^6.1.0", "semver@^6.1.1", "semver@^6.1.2", "semver@^6.3.0": - "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" - "version" "6.3.0" - -"semver@^6.3.1": +"semver@^6.0.0", "semver@^6.1.0", "semver@^6.1.1", "semver@^6.1.2", "semver@^6.3.0", "semver@^6.3.1": "integrity" "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" "version" "6.3.1" @@ -6144,6 +6342,25 @@ dependencies: "randombytes" "^2.1.0" +"set-function-length@^1.1.1": + "integrity" "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==" + "resolved" "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "define-data-property" "^1.1.1" + "get-intrinsic" "^1.2.1" + "gopd" "^1.0.1" + "has-property-descriptors" "^1.0.0" + +"set-function-name@^2.0.0", "set-function-name@^2.0.1": + "integrity" "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==" + "resolved" "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "define-data-property" "^1.0.1" + "functions-have-names" "^1.2.3" + "has-property-descriptors" "^1.0.0" + "set-value@^4.1.0": "integrity" "sha512-zTEg4HL0RwVrqcWs3ztF+x1vkxfm0lP+MQQFPiMJTKVceBwEV0A569Ou8l9IYQG8jOZdMVI1hGsc0tmeD2o/Lw==" "resolved" "https://registry.npmjs.org/set-value/-/set-value-4.1.0.tgz" @@ -6278,6 +6495,11 @@ "resolved" "https://registry.npmjs.org/specificity/-/specificity-0.4.1.tgz" "version" "0.4.1" +"splaytree@^3.1.0": + "integrity" "sha512-4OM2BJgC5UzrhVnnJA4BkHKGtjXNzzUfpQjCO8I05xYPsfS/VuQDwjCGGMi8rYQilHEV4j8NBqTFbls/PZEE7A==" + "resolved" "https://registry.npmjs.org/splaytree/-/splaytree-3.1.2.tgz" + "version" "3.1.2" + "sprintf-js@~1.0.2": "integrity" "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" "resolved" "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" @@ -6323,32 +6545,32 @@ "regexp.prototype.flags" "^1.4.3" "side-channel" "^1.0.4" -"string.prototype.trim@^1.2.7": - "integrity" "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==" - "resolved" "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz" - "version" "1.2.7" +"string.prototype.trim@^1.2.8": + "integrity" "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==" + "resolved" "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz" + "version" "1.2.8" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" -"string.prototype.trimend@^1.0.6": - "integrity" "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==" - "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz" - "version" "1.0.6" +"string.prototype.trimend@^1.0.7": + "integrity" "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==" + "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz" + "version" "1.0.7" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" -"string.prototype.trimstart@^1.0.6": - "integrity" "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==" - "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz" - "version" "1.0.6" +"string.prototype.trimstart@^1.0.7": + "integrity" "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==" + "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz" + "version" "1.0.7" dependencies: "call-bind" "^1.0.2" - "define-properties" "^1.1.4" - "es-abstract" "^1.20.4" + "define-properties" "^1.2.0" + "es-abstract" "^1.22.1" "stringify-object@^3.3.0": "integrity" "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" @@ -6393,11 +6615,6 @@ "resolved" "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz" "version" "3.3.3" -"style-mod@^4.0.0": - "integrity" "sha512-78Jv8kYJdjbvRwwijtCevYADfsI0lGzYJe4mMFdceO8l75DFFDoqBhR1jVDicDRRaX4//g1u9wKeo+ztc2h1Rw==" - "resolved" "https://registry.npmjs.org/style-mod/-/style-mod-4.0.3.tgz" - "version" "4.0.3" - "style-search@^0.1.0": "integrity" "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==" "resolved" "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz" @@ -6471,14 +6688,7 @@ dependencies: "has-flag" "^3.0.0" -"supports-color@^7.0.0": - "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" - "version" "7.2.0" - dependencies: - "has-flag" "^4.0.0" - -"supports-color@^7.1.0": +"supports-color@^7.0.0", "supports-color@^7.1.0": "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" "version" "7.2.0" @@ -6645,13 +6855,13 @@ "resolved" "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz" "version" "1.2.0" -"tsconfig-paths@^3.14.1": - "integrity" "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==" - "resolved" "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz" - "version" "3.14.1" +"tsconfig-paths@^3.15.0": + "integrity" "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==" + "resolved" "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz" + "version" "3.15.0" dependencies: "@types/json5" "^0.0.29" - "json5" "^1.0.1" + "json5" "^1.0.2" "minimist" "^1.2.6" "strip-bom" "^3.0.0" @@ -6712,6 +6922,36 @@ "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" "version" "0.8.1" +"typed-array-buffer@^1.0.0": + "integrity" "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" + "resolved" "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "call-bind" "^1.0.2" + "get-intrinsic" "^1.2.1" + "is-typed-array" "^1.1.10" + +"typed-array-byte-length@^1.0.0": + "integrity" "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" + "resolved" "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "call-bind" "^1.0.2" + "for-each" "^0.3.3" + "has-proto" "^1.0.1" + "is-typed-array" "^1.1.10" + +"typed-array-byte-offset@^1.0.0": + "integrity" "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" + "resolved" "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "available-typed-arrays" "^1.0.5" + "call-bind" "^1.0.2" + "for-each" "^0.3.3" + "has-proto" "^1.0.1" + "is-typed-array" "^1.1.10" + "typed-array-length@^1.0.4": "integrity" "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" "resolved" "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz" @@ -6900,11 +7140,6 @@ "resolved" "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz" "version" "3.17.3" -"w3c-keyname@^2.2.4": - "integrity" "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==" - "resolved" "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz" - "version" "2.2.8" - "watchpack@^2.4.0": "integrity" "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" "resolved" "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz" @@ -7000,11 +7235,6 @@ "watchpack" "^2.4.0" "webpack-sources" "^3.2.3" -"what-input@>=5.2.10": - "integrity" "sha512-3yrSa7nGSXGJS6wZeSkO6VNm95pB1mZ9i3wFzC1hhY7mn4/afue/MvXz04OXNdBC8bfo4AB4RRd3Dem9jXM58Q==" - "resolved" "https://registry.npmjs.org/what-input/-/what-input-5.2.12.tgz" - "version" "5.2.12" - "whatwg-url@^7.0.0": "integrity" "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==" "resolved" "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz" @@ -7025,17 +7255,44 @@ "is-string" "^1.0.5" "is-symbol" "^1.0.3" -"which-typed-array@^1.1.9": - "integrity" "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==" - "resolved" "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz" - "version" "1.1.9" +"which-builtin-type@^1.1.3": + "integrity" "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==" + "resolved" "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz" + "version" "1.1.3" + dependencies: + "function.prototype.name" "^1.1.5" + "has-tostringtag" "^1.0.0" + "is-async-function" "^2.0.0" + "is-date-object" "^1.0.5" + "is-finalizationregistry" "^1.0.2" + "is-generator-function" "^1.0.10" + "is-regex" "^1.1.4" + "is-weakref" "^1.0.2" + "isarray" "^2.0.5" + "which-boxed-primitive" "^1.0.2" + "which-collection" "^1.0.1" + "which-typed-array" "^1.1.9" + +"which-collection@^1.0.1": + "integrity" "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==" + "resolved" "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "is-map" "^2.0.1" + "is-set" "^2.0.1" + "is-weakmap" "^2.0.1" + "is-weakset" "^2.0.1" + +"which-typed-array@^1.1.11", "which-typed-array@^1.1.13", "which-typed-array@^1.1.9": + "integrity" "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==" + "resolved" "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz" + "version" "1.1.13" dependencies: "available-typed-arrays" "^1.0.5" - "call-bind" "^1.0.2" + "call-bind" "^1.0.4" "for-each" "^0.3.3" "gopd" "^1.0.1" "has-tostringtag" "^1.0.0" - "is-typed-array" "^1.1.10" "which@^1.3.1": "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="