diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/js/modals.js b/cfgov/unprocessed/apps/teachers-digital-platform/js/modals.js index 4b9bbf5bcb3..e951a9d646e 100644 --- a/cfgov/unprocessed/apps/teachers-digital-platform/js/modals.js +++ b/cfgov/unprocessed/apps/teachers-digital-platform/js/modals.js @@ -1,7 +1,8 @@ const { closest, } = require('@cfpb/cfpb-atomic-component/src/utilities/dom-traverse.js'); -const CustomEvt = require('customevent'); +const analytics = require('./tdp-analytics'); + import { handleSurveyResultsModalClose } from './tdp-analytics.js'; /** @@ -29,7 +30,7 @@ class Modal { const el = this.getElement(); - const event = new CustomEvt('modal:open:before', { + const event = new CustomEvent('modal:open:before', { bubbles: true, detail: { modal: this }, }); diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/ChoiceField.js b/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/ChoiceField.js index a77984103a6..2205acdeb35 100644 --- a/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/ChoiceField.js +++ b/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/ChoiceField.js @@ -1,8 +1,6 @@ const { closest, } = require('@cfpb/cfpb-atomic-component/src/utilities/dom-traverse.js'); -const objectValues = require('object.values'); -const objectEntries = require('object.entries'); const $ = document.querySelector.bind(document); const $$ = document.querySelectorAll.bind(document); @@ -69,7 +67,7 @@ ChoiceField.get = (name) => { * @returns {ChoiceField[]} unset choice fields */ ChoiceField.findUnsets = () => - objectValues(ChoiceField.cache).filter((cf) => cf.value === null); + Object.values(ChoiceField.cache).filter((cf) => cf.value === null); /** * Remove all the error indicators @@ -102,7 +100,7 @@ ChoiceField.restoreFromSession = (key) => { } }; - objectEntries(ChoiceField.cache).forEach(checkCache); + Object.entries(ChoiceField.cache).forEach(checkCache); if (update) { sessionStorage.setItem(key, JSON.stringify(store)); diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/ProgressBar.js b/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/ProgressBar.js index 9b6dd7736bd..37e9acb8460 100644 --- a/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/ProgressBar.js +++ b/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/ProgressBar.js @@ -1,11 +1,9 @@ -const CustomEvt = require('customevent'); - class ProgressBar { constructor(totalNum, numDone) { this.totalNum = totalNum; this.numDone = numDone; - const event = new CustomEvt(ProgressBar.UPDATE_EVT, { + const event = new CustomEvent(ProgressBar.UPDATE_EVT, { detail: { progressBar: this }, }); document.dispatchEvent(event); @@ -18,7 +16,7 @@ class ProgressBar { update(numDone) { this.numDone = numDone; - const event = new CustomEvt(ProgressBar.UPDATE_EVT, { + const event = new CustomEvent(ProgressBar.UPDATE_EVT, { detail: { progressBar: this }, }); document.dispatchEvent(event); diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/survey-page.js b/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/survey-page.js index e617cfe9ff8..013ea3b882b 100644 --- a/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/survey-page.js +++ b/cfgov/unprocessed/apps/teachers-digital-platform/js/survey/survey-page.js @@ -1,7 +1,6 @@ const { closest, } = require('@cfpb/cfpb-atomic-component/src/utilities/dom-traverse.js'); -const objectEntries = require('object.entries'); const Cookie = require('js-cookie'); const { ANSWERS_SESS_KEY, @@ -75,7 +74,7 @@ function readSurveyData() { * @type {SurveyData} */ const data = Object.create(null); - objectEntries(el.dataset).forEach(([k, v]) => { + Object.entries(el.dataset).forEach(([k, v]) => { try { data[k] = JSON.parse(v); } catch (err) { diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/call-bind-1.0.2.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/call-bind-1.0.2.tgz deleted file mode 100644 index 68c4361aa91..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/call-bind-1.0.2.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/customevent-1.0.1.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/customevent-1.0.1.tgz deleted file mode 100644 index 39d1667c3d9..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/customevent-1.0.1.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/define-properties-1.1.4.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/define-properties-1.1.4.tgz deleted file mode 100644 index dd9e0a7f1bb..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/define-properties-1.1.4.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/es-abstract-1.20.4.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/es-abstract-1.20.4.tgz deleted file mode 100644 index c6f2bc55106..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/es-abstract-1.20.4.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/es-to-primitive-1.2.1.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/es-to-primitive-1.2.1.tgz deleted file mode 100644 index da832997711..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/es-to-primitive-1.2.1.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/function-bind-1.1.1.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/function-bind-1.1.1.tgz deleted file mode 100644 index 44bef1635cf..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/function-bind-1.1.1.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/function.prototype.name-1.1.5.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/function.prototype.name-1.1.5.tgz deleted file mode 100644 index bb64aade184..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/function.prototype.name-1.1.5.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/functions-have-names-1.2.3.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/functions-have-names-1.2.3.tgz deleted file mode 100644 index 3b4b9fa65d8..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/functions-have-names-1.2.3.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/get-intrinsic-1.1.3.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/get-intrinsic-1.1.3.tgz deleted file mode 100644 index 3539e411026..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/get-intrinsic-1.1.3.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/get-symbol-description-1.0.0.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/get-symbol-description-1.0.0.tgz deleted file mode 100644 index c7ef12e840d..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/get-symbol-description-1.0.0.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-1.0.3.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-1.0.3.tgz deleted file mode 100644 index 90c33297e27..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-1.0.3.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-bigints-1.0.2.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-bigints-1.0.2.tgz deleted file mode 100644 index eafa4c9886b..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-bigints-1.0.2.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-property-descriptors-1.0.0.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-property-descriptors-1.0.0.tgz deleted file mode 100644 index ee60a4f9e02..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-property-descriptors-1.0.0.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-symbols-1.0.3.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-symbols-1.0.3.tgz deleted file mode 100644 index a5f34be724d..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-symbols-1.0.3.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-tostringtag-1.0.0.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-tostringtag-1.0.0.tgz deleted file mode 100644 index a99311d774d..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/has-tostringtag-1.0.0.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/internal-slot-1.0.3.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/internal-slot-1.0.3.tgz deleted file mode 100644 index d39a244fce3..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/internal-slot-1.0.3.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-bigint-1.0.4.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-bigint-1.0.4.tgz deleted file mode 100644 index a5a0ab18040..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-bigint-1.0.4.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-boolean-object-1.1.2.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-boolean-object-1.1.2.tgz deleted file mode 100644 index 1e59a0f9082..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-boolean-object-1.1.2.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-callable-1.2.7.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-callable-1.2.7.tgz deleted file mode 100644 index c73fcdd6fa9..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-callable-1.2.7.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-date-object-1.0.5.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-date-object-1.0.5.tgz deleted file mode 100644 index 1440801d796..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-date-object-1.0.5.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-negative-zero-2.0.2.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-negative-zero-2.0.2.tgz deleted file mode 100644 index 93684af9065..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-negative-zero-2.0.2.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-number-object-1.0.7.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-number-object-1.0.7.tgz deleted file mode 100644 index 68bac5b7391..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-number-object-1.0.7.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-regex-1.1.4.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-regex-1.1.4.tgz deleted file mode 100644 index 19a6ddfbdc7..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-regex-1.1.4.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-shared-array-buffer-1.0.2.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-shared-array-buffer-1.0.2.tgz deleted file mode 100644 index 8e7ace75f94..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-shared-array-buffer-1.0.2.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-string-1.0.7.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-string-1.0.7.tgz deleted file mode 100644 index 35785f82e73..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-string-1.0.7.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-symbol-1.0.4.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-symbol-1.0.4.tgz deleted file mode 100644 index f2e9c12d597..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-symbol-1.0.4.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-weakref-1.0.2.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-weakref-1.0.2.tgz deleted file mode 100644 index 9c298c773b0..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/is-weakref-1.0.2.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object-inspect-1.12.2.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object-inspect-1.12.2.tgz deleted file mode 100644 index 1aa045114d7..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object-inspect-1.12.2.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object-keys-1.1.1.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object-keys-1.1.1.tgz deleted file mode 100644 index 3e52f10dfe2..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object-keys-1.1.1.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object.assign-4.1.4.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object.assign-4.1.4.tgz deleted file mode 100644 index b3113739c46..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object.assign-4.1.4.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object.entries-1.1.4.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object.entries-1.1.4.tgz deleted file mode 100644 index 5e88a4a1e81..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object.entries-1.1.4.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object.values-1.1.4.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object.values-1.1.4.tgz deleted file mode 100644 index 214ef50d88d..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/object.values-1.1.4.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/regexp.prototype.flags-1.4.3.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/regexp.prototype.flags-1.4.3.tgz deleted file mode 100644 index 9c3fb7cc84a..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/regexp.prototype.flags-1.4.3.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/safe-regex-test-1.0.0.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/safe-regex-test-1.0.0.tgz deleted file mode 100644 index 741521c887d..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/safe-regex-test-1.0.0.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/side-channel-1.0.4.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/side-channel-1.0.4.tgz deleted file mode 100644 index 228914ab77e..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/side-channel-1.0.4.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/string.prototype.trimend-1.0.5.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/string.prototype.trimend-1.0.5.tgz deleted file mode 100644 index 44c5facc96b..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/string.prototype.trimend-1.0.5.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/string.prototype.trimstart-1.0.5.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/string.prototype.trimstart-1.0.5.tgz deleted file mode 100644 index bb4e9952442..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/string.prototype.trimstart-1.0.5.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/unbox-primitive-1.0.2.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/unbox-primitive-1.0.2.tgz deleted file mode 100644 index 2eda1f55f8e..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/unbox-primitive-1.0.2.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/which-boxed-primitive-1.0.2.tgz b/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/which-boxed-primitive-1.0.2.tgz deleted file mode 100644 index 5f004310bcf..00000000000 Binary files a/cfgov/unprocessed/apps/teachers-digital-platform/npm-packages-offline-cache/which-boxed-primitive-1.0.2.tgz and /dev/null differ diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/package.json b/cfgov/unprocessed/apps/teachers-digital-platform/package.json index 5ca9e74bfbc..04c070a503b 100644 --- a/cfgov/unprocessed/apps/teachers-digital-platform/package.json +++ b/cfgov/unprocessed/apps/teachers-digital-platform/package.json @@ -18,10 +18,7 @@ "dependencies": { "aos": "3.0.0-beta.6", "copy-to-clipboard": "3.3.1", - "customevent": "1.0.1", "js-cookie": "2.2.1", - "object.entries": "1.1.4", - "object.values": "1.1.4", "stickyfilljs": "2.1.0" } } diff --git a/cfgov/unprocessed/apps/teachers-digital-platform/yarn.lock b/cfgov/unprocessed/apps/teachers-digital-platform/yarn.lock index 10f364cb238..6898016e23b 100644 --- a/cfgov/unprocessed/apps/teachers-digital-platform/yarn.lock +++ b/cfgov/unprocessed/apps/teachers-digital-platform/yarn.lock @@ -11,14 +11,6 @@ aos@3.0.0-beta.6: lodash.debounce "^4.0.8" lodash.throttle "^4.1.1" -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - classlist-polyfill@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/classlist-polyfill/-/classlist-polyfill-1.2.0.tgz#935bc2dfd9458a876b279617514638bcaa964a2e" @@ -31,210 +23,6 @@ copy-to-clipboard@3.3.1: dependencies: toggle-selection "^1.0.6" -customevent@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/customevent/-/customevent-1.0.1.tgz#7262e33e30ff33e213141c48ef1c86eee7089538" - integrity sha512-unzY6+LO/eir/HZr99MkbjkOp4RA1ihRa7W5LgHsYB8e2VbfkbBTgBox8TW9tKeJrx3tX/Nd+lfQF7/Kth1ezA== - -define-properties@^1.1.3, define-properties@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" - integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== - dependencies: - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -es-abstract@^1.18.2, es-abstract@^1.19.0, es-abstract@^1.19.5: - version "1.20.4" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" - integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== - dependencies: - call-bind "^1.0.2" - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - function.prototype.name "^1.1.5" - get-intrinsic "^1.1.3" - get-symbol-description "^1.0.0" - has "^1.0.3" - has-property-descriptors "^1.0.0" - has-symbols "^1.0.3" - internal-slot "^1.0.3" - is-callable "^1.2.7" - is-negative-zero "^2.0.2" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - is-string "^1.0.7" - is-weakref "^1.0.2" - object-inspect "^1.12.2" - object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.4.3" - safe-regex-test "^1.0.0" - string.prototype.trimend "^1.0.5" - string.prototype.trimstart "^1.0.5" - unbox-primitive "^1.0.2" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -function.prototype.name@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" - integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.0" - functions-have-names "^1.2.2" - -functions-have-names@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" - integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== - -get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" - integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.3" - -get-symbol-description@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" - integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" - -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== - dependencies: - get-intrinsic "^1.1.1" - -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -internal-slot@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" - integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== - dependencies: - get-intrinsic "^1.1.0" - has "^1.0.3" - side-channel "^1.0.4" - -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== - dependencies: - has-bigints "^1.0.1" - -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-callable@^1.1.4, is-callable@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - -is-date-object@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-negative-zero@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" - integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== - dependencies: - has-tostringtag "^1.0.0" - -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-shared-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" - integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== - dependencies: - call-bind "^1.0.2" - -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== - dependencies: - call-bind "^1.0.2" - js-cookie@2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-2.2.1.tgz#69e106dc5d5806894562902aa5baec3744e9b2b8" @@ -250,116 +38,12 @@ lodash.throttle@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== -object-inspect@^1.12.2, object-inspect@^1.9.0: - version "1.12.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" - integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== - -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - has-symbols "^1.0.3" - object-keys "^1.1.1" - -object.entries@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd" - integrity sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.18.2" - -object.values@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30" - integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.18.2" - -regexp.prototype.flags@^1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" - integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - functions-have-names "^1.2.2" - -safe-regex-test@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" - integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" - is-regex "^1.1.4" - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - stickyfilljs@2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/stickyfilljs/-/stickyfilljs-2.1.0.tgz#46dabb599d8275d185bdb97db597f86a2e3afa7b" integrity sha512-LkG0BXArL5HbW2O09IAXfnBQfpScgGqJuUDUrI3Ire5YKjRz/EhakIZEJogHwgXeQ4qnTicM9sK9uYfWN11qKg== -string.prototype.trimend@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" - integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" - -string.prototype.trimstart@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" - integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.19.5" - toggle-selection@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" integrity sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ== - -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" - integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== - dependencies: - call-bind "^1.0.2" - has-bigints "^1.0.2" - has-symbols "^1.0.3" - which-boxed-primitive "^1.0.2" - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== - dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3"