diff --git a/.github/workflows/analyze-dependents.yml b/.github/workflows/analyze-dependents.yml index 6ef31e2c45..58c2ce6c1c 100644 --- a/.github/workflows/analyze-dependents.yml +++ b/.github/workflows/analyze-dependents.yml @@ -260,10 +260,10 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Setup Nodejs - uses: actions/setup-node@v3 - name: Setup Nodejs Env run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV + - name: Setup Nodejs + uses: actions/setup-node@v3 with: node-version: ${{ env.NODE_VER }} - name: Download analysis output diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index fec11d6c25..bfb5f7e35e 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -1,4 +1,5 @@ # Run commitlint on the commit messages in a pull request. +# Currently overrides common openedx action as a workaround for fixing https://github.com/conventional-changelog/commitlint/issues/3256 name: Lint Commit Messages @@ -7,4 +8,24 @@ on: jobs: commitlint: - uses: openedx/.github/.github/workflows/commitlint.yml@master + runs-on: ubuntu-20.04 + steps: + - name: Check out the repo + uses: actions/checkout@v3 + with: + # Fetch 100 commits. Should be enough? + fetch-depth: 100 + + # This step is needed to fix https://github.com/conventional-changelog/commitlint/issues/3256 + - name: Remove tsconfig file + run: rm tsconfig.json + + - name: Download a local configuration file if needed + run: | + if [[ ! -f commitlint.config.js ]]; then + echo "Downloading the default commitlint config from edx_lint" + wget --no-verbose -O commitlint.config.js https://raw.githubusercontent.com/openedx/edx-lint/HEAD/edx_lint/files/commitlint.config.js + fi + + - name: Run commitlint + uses: wagoid/commitlint-github-action@v5 diff --git a/bin/paragon-scripts.js b/bin/paragon-scripts.js new file mode 100755 index 0000000000..acf1252236 --- /dev/null +++ b/bin/paragon-scripts.js @@ -0,0 +1,27 @@ +#!/usr/bin/env node +const chalk = require('chalk'); +const themeCommand = require('../lib/install-theme'); + +// command: executor function +const COMMANDS = { + 'install-theme': themeCommand, +}; + +(async () => { + const [command] = process.argv.slice(2); + const executor = COMMANDS[command]; + + if (!executor) { + // eslint-disable-next-line no-console + console.log(chalk.red.bold('Unknown command. Usage: paragon ')); + return; + } + + try { + await executor(); + } catch (error) { + // eslint-disable-next-line no-console + console.error(chalk.red.bold('An error occurred:', error.message)); + process.exit(1); + } +})(); diff --git a/component-generator/constants.js b/component-generator/constants.js index 059807e30f..4c6b3158b7 100644 --- a/component-generator/constants.js +++ b/component-generator/constants.js @@ -23,8 +23,8 @@ exports.COMPONENT_FILES = [ templatePath: path.resolve(__dirname, './templates/README.md'), }, { - targetPath: path.resolve(__dirname, '../src/componentName/componentName.scss'), - templatePath: path.resolve(__dirname, './templates/styles.scss'), + targetPath: path.resolve(__dirname, '../src/componentName/index.scss'), + templatePath: path.resolve(__dirname, './templates/index.scss'), }, { targetPath: path.resolve(__dirname, '../src/componentName/componentName.test.jsx'), diff --git a/component-generator/templates/styles.scss b/component-generator/templates/index.scss similarity index 100% rename from component-generator/templates/styles.scss rename to component-generator/templates/index.scss diff --git a/component-generator/utils.js b/component-generator/utils.js index 1b43376264..5d4b4c2585 100644 --- a/component-generator/utils.js +++ b/component-generator/utils.js @@ -81,7 +81,7 @@ function addComponentToExports(componentName) { ); fs.appendFileSync( path.resolve(__dirname, '../src/index.scss'), - `@import './${componentName}/${componentName}.scss';\n`, + `@import "./${componentName}";\n`, ); } diff --git a/dependent-usage.json b/dependent-usage.json index f40f32154d..320b49f4a4 100644 --- a/dependent-usage.json +++ b/dependent-usage.json @@ -1,207 +1,18 @@ { - "lastModified": 1684332564598, + "lastModified": 1693490899404, "projectUsages": [ { - "version": "19.19.1", + "version": "21.1.2", "name": "edx-credentials", "repository": { "type": "git", "url": "git://github.com/openedx/credentials" }, "folderName": "credentials", - "usages": { - "DataTable": [ - { - "filePath": "credentials/static/components/FoldingTable.jsx", - "line": 27, - "column": 6, - "index": 781 - } - ], - "Button.Deprecated": [ - { - "filePath": "credentials/static/components/MasqueradeBanner.jsx", - "line": 103, - "column": 12, - "index": 3662 - }, - { - "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 283, - "column": 14, - "index": 8756 - }, - { - "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 290, - "column": 12, - "index": 9024 - }, - { - "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 302, - "column": 12, - "index": 9452 - }, - { - "filePath": "credentials/static/components/SendLearnerRecordModal.jsx", - "line": 144, - "column": 10, - "index": 4940 - }, - { - "filePath": "credentials/static/components/ShareProgramRecordModal.jsx", - "line": 180, - "column": 18, - "index": 5803 - } - ], - "Alert": [ - { - "filePath": "credentials/static/components/MasqueradeBanner.jsx", - "line": 110, - "column": 8, - "index": 3868 - }, - { - "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 311, - "column": 8, - "index": 9764 - }, - { - "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 320, - "column": 8, - "index": 10150 - }, - { - "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 334, - "column": 8, - "index": 10805 - }, - { - "filePath": "credentials/static/components/SendLearnerRecordModal.jsx", - "line": 111, - "column": 14, - "index": 3555 - }, - { - "filePath": "credentials/static/components/ShareProgramRecordModal.jsx", - "line": 139, - "column": 14, - "index": 4145 - }, - { - "filePath": "credentials/static/components/ShareProgramRecordModal.jsx", - "line": 152, - "column": 14, - "index": 4597 - } - ], - "Alert.Heading": [ - { - "filePath": "credentials/static/components/MasqueradeBanner.jsx", - "line": 116, - "column": 10, - "index": 4052 - }, - { - "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 318, - "column": 10, - "index": 10043 - }, - { - "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 326, - "column": 10, - "index": 10334 - }, - { - "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 340, - "column": 10, - "index": 10990 - }, - { - "filePath": "credentials/static/components/SendLearnerRecordModal.jsx", - "line": 116, - "column": 16, - "index": 3684 - }, - { - "filePath": "credentials/static/components/ShareProgramRecordModal.jsx", - "line": 144, - "column": 16, - "index": 4274 - } - ], - "Icon": [ - { - "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 315, - "column": 22, - "index": 9926 - }, - { - "filePath": "credentials/static/components/ShareProgramRecordModal.jsx", - "line": 194, - "column": 16, - "index": 6367 - } - ], - "Modal": [ - { - "filePath": "credentials/static/components/SendLearnerRecordModal.jsx", - "line": 92, - "column": 6, - "index": 2853 - }, - { - "filePath": "credentials/static/components/ShareProgramRecordModal.jsx", - "line": 131, - "column": 6, - "index": 3925 - } - ], - "Form.CheckboxSet": [ - { - "filePath": "credentials/static/components/SendLearnerRecordModal.jsx", - "line": 124, - "column": 12, - "index": 4142 - } - ], - "Form.Checkbox": [ - { - "filePath": "credentials/static/components/SendLearnerRecordModal.jsx", - "line": 126, - "column": 16, - "index": 4255 - } - ], - "Form.Group": [ - { - "filePath": "credentials/static/components/ShareProgramRecordModal.jsx", - "line": 166, - "column": 18, - "index": 5230 - } - ], - "Form.Control": [ - { - "filePath": "credentials/static/components/ShareProgramRecordModal.jsx", - "line": 167, - "column": 20, - "index": 5263 - } - ] - } + "usages": {} }, { - "version": "12.3.0", + "version": "12.8.0", "name": "edx-enterprise", "repository": { "type": "git", @@ -341,21 +152,21 @@ }, { "filePath": "lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx", - "line": 48, + "line": 50, "column": 24, - "index": 1895 + "index": 2019 }, { "filePath": "lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/ReportStatus/ReportStatus.jsx", - "line": 13, + "line": 14, "column": 12, - "index": 386 + "index": 451 }, { "filePath": "lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/ReportStatus/ReportStatus.jsx", - "line": 23, + "line": 24, "column": 14, - "index": 696 + "index": 761 }, { "filePath": "lms/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", @@ -397,87 +208,87 @@ "Button": [ { "filePath": "cms/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 45, + "line": 47, "column": 16, - "index": 1132 + "index": 1253 }, { "filePath": "cms/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 51, - "column": 11, - "index": 1356 + "line": 54, + "column": 12, + "index": 1491 }, { "filePath": "cms/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 78, + "line": 83, "column": 12, - "index": 2013 + "index": 2267 }, { "filePath": "cms/static/xmodule_js/common_static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 45, + "line": 47, "column": 16, - "index": 1132 + "index": 1253 }, { "filePath": "cms/static/xmodule_js/common_static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 51, - "column": 11, - "index": 1356 + "line": 54, + "column": 12, + "index": 1491 }, { "filePath": "cms/static/xmodule_js/common_static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 78, + "line": 83, "column": 12, - "index": 2013 + "index": 2267 }, { "filePath": "common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 45, + "line": 47, "column": 16, - "index": 1132 + "index": 1253 }, { "filePath": "common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 51, - "column": 11, - "index": 1356 + "line": 54, + "column": 12, + "index": 1491 }, { "filePath": "common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 78, + "line": 83, "column": 12, - "index": 2013 + "index": 2267 }, { "filePath": "lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx", - "line": 38, + "line": 39, "column": 27, - "index": 1295 + "index": 1366 }, { "filePath": "lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx", - "line": 76, + "line": 79, "column": 20, - "index": 2822 + "index": 3015 }, { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 116, + "line": 117, "column": 20, - "index": 3769 + "index": 3821 }, { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 121, + "line": 122, "column": 20, - "index": 3966 + "index": 4018 }, { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/Main/Main.jsx", - "line": 39, + "line": 41, "column": 16, - "index": 1170 + "index": 1298 }, { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/Search/Search.jsx", @@ -487,9 +298,9 @@ }, { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/Table/EntitlementSupportTable.jsx", - "line": 60, + "line": 61, "column": 16, - "index": 1423 + "index": 1477 }, { "filePath": "lms/djangoapps/support/static/support/jsx/logged_in_user.jsx", @@ -505,51 +316,51 @@ }, { "filePath": "lms/djangoapps/support/static/support/jsx/program_enrollments/index.jsx", - "line": 41, + "line": 42, "column": 8, - "index": 1272 + "index": 1337 }, { "filePath": "lms/djangoapps/support/static/support/jsx/program_enrollments/inspector.jsx", - "line": 182, + "line": 189, "column": 12, - "index": 7658 + "index": 8088 }, { "filePath": "lms/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 45, + "line": 47, "column": 16, - "index": 1132 + "index": 1253 }, { "filePath": "lms/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 51, - "column": 11, - "index": 1356 + "line": 54, + "column": 12, + "index": 1491 }, { "filePath": "lms/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 78, + "line": 83, "column": 12, - "index": 2013 + "index": 2267 }, { "filePath": "lms/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 116, + "line": 117, "column": 20, - "index": 3769 + "index": 3821 }, { "filePath": "lms/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 121, + "line": 122, "column": 20, - "index": 3966 + "index": 4018 }, { "filePath": "lms/static/support/jsx/entitlements/components/Main/Main.jsx", - "line": 39, + "line": 41, "column": 16, - "index": 1170 + "index": 1298 }, { "filePath": "lms/static/support/jsx/entitlements/components/Search/Search.jsx", @@ -559,9 +370,9 @@ }, { "filePath": "lms/static/support/jsx/entitlements/components/Table/EntitlementSupportTable.jsx", - "line": 60, + "line": 61, "column": 16, - "index": 1423 + "index": 1477 }, { "filePath": "lms/static/support/jsx/logged_in_user.jsx", @@ -577,77 +388,77 @@ }, { "filePath": "lms/static/support/jsx/program_enrollments/index.jsx", - "line": 41, + "line": 42, "column": 8, - "index": 1272 + "index": 1337 }, { "filePath": "lms/static/support/jsx/program_enrollments/inspector.jsx", - "line": 182, + "line": 189, "column": 12, - "index": 7658 + "index": 8088 }, { "filePath": "lms/static/xmodule_js/common_static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 45, + "line": 47, "column": 16, - "index": 1132 + "index": 1253 }, { "filePath": "lms/static/xmodule_js/common_static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 51, - "column": 11, - "index": 1356 + "line": 54, + "column": 12, + "index": 1491 }, { "filePath": "lms/static/xmodule_js/common_static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 78, + "line": 83, "column": 12, - "index": 2013 + "index": 2267 }, { "filePath": "openedx/features/announcements/static/announcements/jsx/Announcements.jsx", - "line": 91, + "line": 97, "column": 20, - "index": 2306 + "index": 2726 }, { "filePath": "openedx/features/announcements/static/announcements/jsx/Announcements.jsx", - "line": 103, + "line": 109, "column": 20, - "index": 2805 + "index": 3225 }, { "filePath": "xmodule/js/common_static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 45, + "line": 47, "column": 16, - "index": 1132 + "index": 1253 }, { "filePath": "xmodule/js/common_static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 51, - "column": 11, - "index": 1356 + "line": 54, + "column": 12, + "index": 1491 }, { "filePath": "xmodule/js/common_static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx", - "line": 78, + "line": 83, "column": 12, - "index": 2013 + "index": 2267 } ], "InputText": [ { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 82, + "line": 83, "column": 16, - "index": 2442 + "index": 2494 }, { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 89, + "line": 90, "column": 16, - "index": 2705 + "index": 2757 }, { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/Search/Search.jsx", @@ -657,33 +468,33 @@ }, { "filePath": "lms/djangoapps/support/static/support/jsx/program_enrollments/index.jsx", - "line": 30, + "line": 31, "column": 8, - "index": 921 + "index": 986 }, { "filePath": "lms/djangoapps/support/static/support/jsx/program_enrollments/inspector.jsx", - "line": 159, + "line": 166, "column": 16, - "index": 6817 + "index": 7247 }, { "filePath": "lms/djangoapps/support/static/support/jsx/program_enrollments/inspector.jsx", - "line": 175, + "line": 182, "column": 16, - "index": 7357 + "index": 7787 }, { "filePath": "lms/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 82, + "line": 83, "column": 16, - "index": 2442 + "index": 2494 }, { "filePath": "lms/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 89, + "line": 90, "column": 16, - "index": 2705 + "index": 2757 }, { "filePath": "lms/static/support/jsx/entitlements/components/Search/Search.jsx", @@ -693,81 +504,81 @@ }, { "filePath": "lms/static/support/jsx/program_enrollments/index.jsx", - "line": 30, + "line": 31, "column": 8, - "index": 921 + "index": 986 }, { "filePath": "lms/static/support/jsx/program_enrollments/inspector.jsx", - "line": 159, + "line": 166, "column": 16, - "index": 6817 + "index": 7247 }, { "filePath": "lms/static/support/jsx/program_enrollments/inspector.jsx", - "line": 175, + "line": 182, "column": 16, - "index": 7357 + "index": 7787 } ], "InputSelect": [ { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 96, + "line": 97, "column": 16, - "index": 2959 + "index": 3011 }, { "filePath": "lms/djangoapps/support/static/support/jsx/program_enrollments/inspector.jsx", - "line": 167, + "line": 174, "column": 16, - "index": 7096 + "index": 7526 }, { "filePath": "lms/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 96, + "line": 97, "column": 16, - "index": 2959 + "index": 3011 }, { "filePath": "lms/static/support/jsx/program_enrollments/inspector.jsx", - "line": 167, + "line": 174, "column": 16, - "index": 7096 + "index": 7526 } ], "TextArea": [ { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 109, + "line": 110, "column": 16, - "index": 3531 + "index": 3583 }, { "filePath": "lms/djangoapps/support/static/support/jsx/program_enrollments/index.jsx", - "line": 35, + "line": 36, "column": 8, - "index": 1054 + "index": 1119 }, { "filePath": "lms/static/support/jsx/entitlements/components/EntitlementForm/index.jsx", - "line": 109, + "line": 110, "column": 16, - "index": 3531 + "index": 3583 }, { "filePath": "lms/static/support/jsx/program_enrollments/index.jsx", - "line": 35, + "line": 36, "column": 8, - "index": 1054 + "index": 1119 } ], "StatusAlert": [ { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/Main/Main.jsx", - "line": 12, + "line": 13, "column": 8, - "index": 454 + "index": 518 }, { "filePath": "lms/djangoapps/support/static/support/jsx/logged_in_user.jsx", @@ -777,27 +588,27 @@ }, { "filePath": "lms/djangoapps/support/static/support/jsx/program_enrollments/index.jsx", - "line": 12, + "line": 13, "column": 12, - "index": 404 + "index": 469 }, { "filePath": "lms/djangoapps/support/static/support/jsx/program_enrollments/index.jsx", - "line": 23, + "line": 24, "column": 12, - "index": 746 + "index": 811 }, { "filePath": "lms/djangoapps/support/static/support/jsx/program_enrollments/inspector.jsx", - "line": 148, + "line": 155, "column": 16, - "index": 6384 + "index": 6816 }, { "filePath": "lms/static/support/jsx/entitlements/components/Main/Main.jsx", - "line": 12, + "line": 13, "column": 8, - "index": 454 + "index": 518 }, { "filePath": "lms/static/support/jsx/logged_in_user.jsx", @@ -807,55 +618,55 @@ }, { "filePath": "lms/static/support/jsx/program_enrollments/index.jsx", - "line": 12, + "line": 13, "column": 12, - "index": 404 + "index": 469 }, { "filePath": "lms/static/support/jsx/program_enrollments/index.jsx", - "line": 23, + "line": 24, "column": 12, - "index": 746 + "index": 811 }, { "filePath": "lms/static/support/jsx/program_enrollments/inspector.jsx", - "line": 148, + "line": 155, "column": 16, - "index": 6384 + "index": 6816 } ], "Hyperlink": [ { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/Table/EntitlementSupportTable.jsx", - "line": 56, + "line": 57, "column": 21, - "index": 1285 + "index": 1339 }, { "filePath": "lms/static/support/jsx/entitlements/components/Table/EntitlementSupportTable.jsx", - "line": 56, + "line": 57, "column": 21, - "index": 1285 + "index": 1339 } ], "Table": [ { "filePath": "lms/djangoapps/support/static/support/jsx/entitlements/components/Table/EntitlementSupportTable.jsx", - "line": 70, + "line": 72, "column": 4, - "index": 1679 + "index": 1797 }, { "filePath": "lms/static/support/jsx/entitlements/components/Table/EntitlementSupportTable.jsx", - "line": 70, + "line": 72, "column": 4, - "index": 1679 + "index": 1797 } ] } }, { - "version": "20.36.0", + "version": "20.46.2", "name": "@edx/frontend-app-account", "repository": { "type": "git", @@ -866,27 +677,27 @@ "Alert": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 205, + "line": 207, "column": 8, - "index": 7334 + "index": 7469 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 227, + "line": 229, "column": 8, - "index": 8048 + "index": 8183 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 320, + "line": 322, "column": 4, - "index": 11378 + "index": 11513 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 106, "column": 8, - "index": 2998 + "index": 3008 }, { "filePath": "src/account-settings/OneTimeDismissibleAlert.jsx", @@ -908,17 +719,17 @@ }, { "filePath": "src/id-verification/panels/SummaryPanel.jsx", - "line": 150, + "line": 151, "column": 8, - "index": 5156 + "index": 5212 } ], "Hyperlink": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 235, + "line": 237, "column": 16, - "index": 8527 + "index": 8662 }, { "filePath": "src/account-settings/BetaLanguageBanner.jsx", @@ -982,45 +793,45 @@ }, { "filePath": "src/id-verification/panels/SummaryPanel.jsx", - "line": 52, + "line": 53, "column": 14, - "index": 2035 + "index": 2073 } ], "CheckCircle": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 281, + "line": 283, "column": 14, - "index": 9900 + "index": 10035 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 381, + "line": 383, "column": 27, - "index": 13256 + "index": 13391 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 511, + "line": 513, "column": 20, - "index": 17606 + "index": 17741 } ], "Error": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 296, + "line": 298, "column": 14, - "index": 10466 + "index": 10601 } ], "Button": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 305, + "line": 307, "column": 16, - "index": 10895 + "index": 11030 }, { "filePath": "src/account-settings/BetaLanguageBanner.jsx", @@ -1116,7 +927,7 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 137, "column": 8, - "index": 3908 + "index": 3918 }, { "filePath": "src/id-verification/CollapsibleImageHelp.jsx", @@ -1126,37 +937,43 @@ }, { "filePath": "src/id-verification/IdVerificationPage.jsx", - "line": 72, - "column": 12, - "index": 3354 + "line": 74, + "column": 10, + "index": 3245 }, { "filePath": "src/id-verification/panels/SummaryPanel.jsx", - "line": 91, + "line": 92, "column": 6, - "index": 3197 + "index": 3253 + }, + { + "filePath": "src/notification-preferences/NotificationCourses.jsx", + "line": 73, + "column": 8, + "index": 2380 } ], "WarningFilled": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 322, + "line": 324, "column": 12, - "index": 11421 + "index": 11556 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 383, + "line": 385, "column": 27, - "index": 13400 + "index": 13535 } ], "Alert.Heading": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 324, + "line": 326, "column": 6, - "index": 11448 + "index": 11583 }, { "filePath": "src/account-settings/OneTimeDismissibleAlert.jsx", @@ -1168,15 +985,39 @@ "Icon": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 381, + "line": 383, "column": 16, - "index": 13245 + "index": 13380 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 383, + "line": 385, + "column": 16, + "index": 13524 + }, + { + "filePath": "src/account-settings/JumpNav.jsx", + "line": 88, "column": 16, - "index": 13389 + "index": 3207 + }, + { + "filePath": "src/notification-preferences/NotificationCourses.jsx", + "line": 56, + "column": 16, + "index": 1942 + }, + { + "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", + "line": 56, + "column": 14, + "index": 1938 + }, + { + "filePath": "src/notification-preferences/NotificationPreferences.jsx", + "line": 65, + "column": 12, + "index": 2323 } ], "Form.Checkbox": [ @@ -1210,13 +1051,13 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 156, "column": 4, - "index": 4359 + "index": 4369 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", - "line": 77, - "column": 8, - "index": 3528 + "line": 79, + "column": 6, + "index": 3409 } ], "Form": [ @@ -1230,13 +1071,13 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 163, "column": 6, - "index": 4483 + "index": 4493 }, { "filePath": "src/id-verification/panels/GetNameIdPanel.jsx", - "line": 52, + "line": 53, "column": 6, - "index": 1549 + "index": 1614 } ], "ModalDialog.Header": [ @@ -1256,13 +1097,13 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 164, "column": 8, - "index": 4522 + "index": 4532 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", - "line": 84, - "column": 10, - "index": 3720 + "line": 86, + "column": 8, + "index": 3587 } ], "ModalDialog.Title": [ @@ -1282,13 +1123,13 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 165, "column": 10, - "index": 4553 + "index": 4563 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", - "line": 85, - "column": 12, - "index": 3753 + "line": 87, + "column": 10, + "index": 3618 } ], "ModalDialog.Body": [ @@ -1308,13 +1149,13 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 170, "column": 8, - "index": 4671 + "index": 4681 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", - "line": 89, - "column": 10, - "index": 3955 + "line": 91, + "column": 8, + "index": 3812 } ], "Form.Group": [ @@ -1364,7 +1205,7 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 118, "column": 6, - "index": 3308 + "index": 3318 }, { "filePath": "src/id-verification/Camera.jsx", @@ -1374,9 +1215,9 @@ }, { "filePath": "src/id-verification/panels/GetNameIdPanel.jsx", - "line": 53, + "line": 54, "column": 8, - "index": 1588 + "index": 1653 } ], "Form.Label": [ @@ -1420,13 +1261,13 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 119, "column": 8, - "index": 3381 + "index": 3391 }, { "filePath": "src/id-verification/panels/GetNameIdPanel.jsx", - "line": 54, + "line": 55, "column": 10, - "index": 1611 + "index": 1676 } ], "Form.RadioSet": [ @@ -1468,13 +1309,13 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 174, "column": 8, - "index": 4785 + "index": 4795 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", - "line": 112, - "column": 10, - "index": 4865 + "line": 114, + "column": 8, + "index": 4676 } ], "ActionRow": [ @@ -1500,13 +1341,13 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 175, "column": 10, - "index": 4816 + "index": 4826 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", - "line": 113, - "column": 12, - "index": 4914 + "line": 115, + "column": 10, + "index": 4723 } ], "ModalDialog.CloseButton": [ @@ -1526,13 +1367,13 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 176, "column": 12, - "index": 4840 + "index": 4850 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", - "line": 114, - "column": 14, - "index": 4940 + "line": 116, + "column": 12, + "index": 4747 } ], "StatefulButton": [ @@ -1570,7 +1411,7 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 144, "column": 6, - "index": 4112 + "index": 4122 }, { "filePath": "src/account-settings/reset-password/ResetPassword.jsx", @@ -1644,17 +1485,17 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 122, "column": 8, - "index": 3511 + "index": 3521 }, { "filePath": "src/id-verification/panels/GetNameIdPanel.jsx", - "line": 57, + "line": 58, "column": 10, - "index": 1790 + "index": 1855 }, { "filePath": "src/id-verification/panels/SummaryPanel.jsx", - "line": 211, + "line": 208, "column": 10, "index": 7336 } @@ -1665,6 +1506,12 @@ "line": 44, "column": 6, "index": 1500 + }, + { + "filePath": "src/notification-preferences/ToggleSwitch.jsx", + "line": 11, + "column": 2, + "index": 176 } ], "AlertModal": [ @@ -1744,17 +1591,25 @@ "useWindowSize": [ { "filePath": "src/account-settings/JumpNav.jsx", - "line": 15, + "line": 19, "column": 21, - "index": 514 + "index": 736 } ], "breakpoints": [ { "filePath": "src/account-settings/JumpNav.jsx", - "line": 15, + "line": 19, "column": 45, - "index": 538 + "index": 760 + } + ], + "OpenInNew": [ + { + "filePath": "src/account-settings/JumpNav.jsx", + "line": 88, + "column": 72, + "index": 3263 } ], "Col": [ @@ -1762,7 +1617,7 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 118, "column": 22, - "index": 3324 + "index": 3334 } ], "TransitionReplace": [ @@ -1790,9 +1645,21 @@ }, { "filePath": "src/id-verification/panels/SummaryPanel.jsx", - "line": 240, + "line": 235, "column": 23, - "index": 8296 + "index": 8264 + }, + { + "filePath": "src/notification-preferences/NotificationCourses.jsx", + "line": 64, + "column": 10, + "index": 2147 + }, + { + "filePath": "src/notification-preferences/NotificationPreferences.jsx", + "line": 74, + "column": 10, + "index": 2636 } ], "Collapsible": [ @@ -1824,15 +1691,93 @@ "Alert.Link": [ { "filePath": "src/id-verification/panels/SummaryPanel.jsx", - "line": 132, + "line": 133, "column": 12, - "index": 4691 + "index": 4747 + } + ], + "Container": [ + { + "filePath": "src/notification-preferences/NotificationCourses.jsx", + "line": 41, + "column": 4, + "index": 1398 + }, + { + "filePath": "src/notification-preferences/NotificationPreferences.jsx", + "line": 58, + "column": 4, + "index": 2020 + } + ], + "ArrowForwardIos": [ + { + "filePath": "src/notification-preferences/NotificationCourses.jsx", + "line": 56, + "column": 27, + "index": 1953 + } + ], + "Collapsible.Advanced": [ + { + "filePath": "src/notification-preferences/NotificationPreferenceApp.jsx", + "line": 41, + "column": 4, + "index": 1396 + } + ], + "Collapsible.Trigger": [ + { + "filePath": "src/notification-preferences/NotificationPreferenceApp.jsx", + "line": 42, + "column": 6, + "index": 1490 + } + ], + "Collapsible.Body": [ + { + "filePath": "src/notification-preferences/NotificationPreferenceApp.jsx", + "line": 57, + "column": 6, + "index": 2024 + } + ], + "OverlayTrigger": [ + { + "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", + "line": 45, + "column": 10, + "index": 1630 + } + ], + "Tooltip": [ + { + "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", + "line": 50, + "column": 14, + "index": 1773 + } + ], + "InfoOutline": [ + { + "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", + "line": 56, + "column": 25, + "index": 1949 + } + ], + "ArrowBack": [ + { + "filePath": "src/notification-preferences/NotificationPreferences.jsx", + "line": 65, + "column": 52, + "index": 2363 } ] } }, { - "version": "20.26.3", + "version": "20.39.2", "name": "frontend-app-admin-portal", "repository": "https://github.com/openedx/frontend-app-admin-portal", "folderName": "frontend-app-admin-portal", @@ -1848,7 +1793,7 @@ "filePath": "src/components/Admin/SubscriptionDetails.jsx", "line": 48, "column": 18, - "index": 1997 + "index": 1993 }, { "filePath": "src/components/BulkEnrollmentPage/BulkEnrollButton.jsx", @@ -1914,37 +1859,37 @@ "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", "line": 38, "column": 4, - "index": 1053 + "index": 1051 }, { "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 411, + "line": 414, "column": 10, - "index": 12248 + "index": 12369 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 273, + "line": 275, "column": 12, - "index": 8103 + "index": 8125 }, { "filePath": "src/components/CodeReminderModal/index.jsx", - "line": 223, + "line": 226, "column": 10, - "index": 6272 + "index": 6465 }, { "filePath": "src/components/CodeRevokeModal/index.jsx", "line": 237, "column": 10, - "index": 6658 + "index": 6630 }, { "filePath": "src/components/CodeSearchResults/CodeSearchResultsHeading.jsx", - "line": 13, + "line": 14, "column": 6, - "index": 487 + "index": 531 }, { "filePath": "src/components/ConfirmationModal/index.jsx", @@ -2044,39 +1989,51 @@ }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 617, + "line": 601, "column": 26, - "index": 18808 + "index": 18457 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 632, + "line": 616, "column": 26, - "index": 19471 + "index": 19120 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 663, + "line": 647, "column": 28, - "index": 21027 + "index": 20676 }, { "filePath": "src/components/DownloadCsvButton/index.jsx", - "line": 25, + "line": 27, "column": 6, - "index": 671 + "index": 694 }, { "filePath": "src/components/FileInput/index.jsx", - "line": 130, + "line": 131, "column": 12, - "index": 3171 + "index": 3215 }, { "filePath": "src/components/InviteLearnersModal/index.jsx", "line": 188, "column": 10, - "index": 5245 + "index": 5248 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 52, + "column": 4, + "index": 1467 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 54, + "column": 4, + "index": 1586 }, { "filePath": "src/components/NewFeatureAlertBrowseAndRequest/index.jsx", @@ -2086,27 +2043,21 @@ }, { "filePath": "src/components/NumberCard/index.jsx", - "line": 200, + "line": 201, "column": 14, - "index": 5917 + "index": 5987 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 433, + "line": 434, "column": 12, - "index": 16626 + "index": 16720 }, { "filePath": "src/components/RequestCodesPage/RequestCodesForm.jsx", - "line": 118, + "line": 117, "column": 14, - "index": 3209 - }, - { - "filePath": "src/components/settings/ConfigError.jsx", - "line": 24, - "column": 8, - "index": 672 + "index": 3175 }, { "filePath": "src/components/settings/SettingsAccessTab/ActionsTableCell.jsx", @@ -2162,113 +2113,101 @@ "column": 8, "index": 1268 }, - { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 30, - "column": 8, - "index": 813 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 33, - "column": 8, - "index": 932 - }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 151, "column": 10, - "index": 5167 + "index": 5177 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 153, "column": 12, - "index": 5309 + "index": 5319 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 161, "column": 10, - "index": 5502 + "index": 5512 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 163, "column": 12, - "index": 5648 + "index": 5658 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 165, "column": 10, - "index": 5727 + "index": 5737 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 171, "column": 8, - "index": 5904 + "index": 5914 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 173, "column": 10, - "index": 6046 + "index": 6056 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 188, "column": 12, - "index": 6405 + "index": 6415 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 195, "column": 12, - "index": 6620 + "index": 6630 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 106, + "line": 105, "column": 17, - "index": 3051 + "index": 3050 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 110, + "line": 109, "column": 15, - "index": 3241 + "index": 3240 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 112, + "line": 111, "column": 15, - "index": 3394 + "index": 3393 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 143, + "line": 142, "column": 12, - "index": 4486 + "index": 4485 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 150, + "line": 149, "column": 12, - "index": 4701 + "index": 4700 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 156, + "line": 161, "column": 12, - "index": 5912 + "index": 6175 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 175, + "line": 180, "column": 14, - "index": 6481 + "index": 6744 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", @@ -2364,7 +2303,7 @@ "filePath": "src/components/SidebarToggle/index.jsx", "line": 18, "column": 4, - "index": 374 + "index": 382 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/EnrollBulkAction.jsx", @@ -2386,15 +2325,15 @@ }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 61, + "line": 56, "column": 6, - "index": 1604 + "index": 1588 }, { "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 40, + "line": 39, "column": 12, - "index": 1581 + "index": 1505 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", @@ -2474,7 +2413,7 @@ "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", "line": 132, "column": 8, - "index": 4122 + "index": 4145 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", @@ -2528,19 +2467,19 @@ "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", "line": 87, "column": 10, - "index": 3034 + "index": 3009 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 216, "column": 37, - "index": 7221 + "index": 7236 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 195, + "line": 200, "column": 55, - "index": 7106 + "index": 7369 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", @@ -2602,13 +2541,13 @@ "filePath": "src/components/Admin/AdminSearchForm.jsx", "line": 58, "column": 14, - "index": 1757 + "index": 1732 }, { "filePath": "src/components/Admin/AdminSearchForm.jsx", "line": 79, "column": 14, - "index": 2543 + "index": 2518 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", @@ -2644,7 +2583,7 @@ "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 59, "column": 4, - "index": 1849 + "index": 1819 }, { "filePath": "src/components/ReduxFormSelect/index.jsx", @@ -2794,19 +2733,19 @@ "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 176, "column": 10, - "index": 5269 + "index": 5266 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 186, "column": 10, - "index": 5673 + "index": 5670 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 196, "column": 10, - "index": 5981 + "index": 5978 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", @@ -2832,31 +2771,31 @@ "filePath": "src/components/Admin/AdminSearchForm.jsx", "line": 59, "column": 16, - "index": 1786 + "index": 1761 }, { "filePath": "src/components/Admin/AdminSearchForm.jsx", "line": 80, "column": 16, - "index": 2572 + "index": 2547 }, { "filePath": "src/components/Admin/AdminSearchForm.jsx", "line": 111, "column": 14, - "index": 3855 + "index": 3821 }, { "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 60, "column": 6, - "index": 1898 + "index": 1868 }, { "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 65, "column": 6, - "index": 2022 + "index": 1992 }, { "filePath": "src/components/ReduxFormSelect/index.jsx", @@ -2880,19 +2819,19 @@ "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 177, "column": 12, - "index": 5330 + "index": 5327 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 187, "column": 12, - "index": 5730 + "index": 5727 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 197, "column": 12, - "index": 6041 + "index": 6038 }, { "filePath": "src/components/TextAreaAutoSize/index.jsx", @@ -2906,19 +2845,19 @@ "filePath": "src/components/Admin/AdminSearchForm.jsx", "line": 60, "column": 16, - "index": 1874 + "index": 1849 }, { "filePath": "src/components/Admin/AdminSearchForm.jsx", "line": 88, "column": 16, - "index": 2941 + "index": 2908 }, { "filePath": "src/components/Admin/EmbeddedSubscription.jsx", "line": 45, "column": 22, - "index": 1967 + "index": 1964 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitleInput.jsx", @@ -2948,7 +2887,7 @@ "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 77, "column": 6, - "index": 2288 + "index": 2258 }, { "filePath": "src/components/RenderField/index.jsx", @@ -3110,19 +3049,19 @@ "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 178, "column": 12, - "index": 5386 + "index": 5383 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 188, "column": 12, - "index": 5772 + "index": 5769 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 198, "column": 12, - "index": 6096 + "index": 6093 }, { "filePath": "src/components/TextAreaAutoSize/index.jsx", @@ -3131,30 +3070,170 @@ "index": 371 } ], + "Info": [ + { + "filePath": "src/components/Admin/AdminSearchForm.jsx", + "line": 83, + "column": 26, + "index": 2690 + }, + { + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 175, + "column": 36, + "index": 4869 + }, + { + "filePath": "src/components/CodeRevokeModal/index.jsx", + "line": 203, + "column": 18, + "index": 5905 + }, + { + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 41, + "column": 16, + "index": 853 + }, + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 47, + "column": 18, + "index": 1591 + }, + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 70, + "column": 16, + "index": 2071 + }, + { + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 85, + "column": 14, + "index": 2592 + }, + { + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 131, + "column": 16, + "index": 4348 + }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", + "line": 9, + "column": 15, + "index": 257 + }, + { + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 81, + "column": 14, + "index": 2621 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 44, + "column": 21, + "index": 984 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 93, + "column": 21, + "index": 3139 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 108, + "column": 23, + "index": 3871 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", + "line": 41, + "column": 21, + "index": 1166 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", + "line": 56, + "column": 21, + "index": 1746 + }, + { + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 100, + "column": 14, + "index": 4061 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 177, + "column": 16, + "index": 6639 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 210, + "column": 16, + "index": 7290 + }, + { + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 100, + "column": 20, + "index": 2832 + }, + { + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 152, + "column": 20, + "index": 4859 + }, + { + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 99, + "column": 20, + "index": 2973 + }, + { + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 151, + "column": 20, + "index": 5141 + }, + { + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 75, + "column": 18, + "index": 1881 + } + ], "Icon": [ { "filePath": "src/components/Admin/EmbeddedSubscription.jsx", "line": 61, "column": 16, - "index": 2767 + "index": 2764 }, { "filePath": "src/components/Admin/EmbeddedSubscription.jsx", "line": 75, "column": 18, - "index": 3374 + "index": 3371 }, { "filePath": "src/components/Admin/index.jsx", "line": 228, "column": 8, - "index": 7657 + "index": 7672 }, { "filePath": "src/components/Admin/index.jsx", "line": 245, "column": 8, - "index": 8313 + "index": 8328 }, { "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", @@ -3168,23 +3247,17 @@ "column": 22, "index": 614 }, - { - "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 418, - "column": 60, - "index": 12520 - }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 280, + "line": 282, "column": 16, - "index": 8298 + "index": 8320 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 289, + "line": 291, "column": 16, - "index": 8622 + "index": 8675 }, { "filePath": "src/components/CodeModal/ModalError.jsx", @@ -3192,29 +3265,17 @@ "column": 6, "index": 298 }, - { - "filePath": "src/components/CodeReminderModal/index.jsx", - "line": 229, - "column": 51, - "index": 6517 - }, - { - "filePath": "src/components/CodeRevokeModal/index.jsx", - "line": 243, - "column": 58, - "index": 6910 - }, { "filePath": "src/components/CodeSearchResults/CodeSearchResultsHeading.jsx", - "line": 18, + "line": 19, "column": 8, - "index": 616 + "index": 660 }, { "filePath": "src/components/CodeSearchResults/CodeSearchResultsTable.jsx", - "line": 115, + "line": 116, "column": 8, - "index": 2836 + "index": 2877 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentConfirmContentCard.jsx", @@ -3242,39 +3303,33 @@ }, { "filePath": "src/components/Coupon/index.jsx", - "line": 90, + "line": 91, "column": 6, - "index": 2478 + "index": 2529 }, { "filePath": "src/components/Coupon/index.jsx", - "line": 99, + "line": 101, "column": 6, - "index": 2669 + "index": 2740 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 417, - "column": 10, - "index": 12383 - }, - { - "filePath": "src/components/DownloadCsvButton/index.jsx", - "line": 37, + "line": 401, "column": 10, - "index": 1031 + "index": 12050 }, { "filePath": "src/components/FileInput/index.jsx", - "line": 139, + "line": 140, "column": 14, - "index": 3495 + "index": 3539 }, { - "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 195, - "column": 29, - "index": 5496 + "filePath": "src/components/IconWithTooltip/index.jsx", + "line": 23, + "column": 6, + "index": 685 }, { "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", @@ -3296,75 +3351,57 @@ }, { "filePath": "src/components/NumberCard/index.jsx", - "line": 153, - "column": 15, - "index": 4638 - }, - { - "filePath": "src/components/NumberCard/index.jsx", - "line": 184, + "line": 185, "column": 16, - "index": 5430 + "index": 5508 }, { "filePath": "src/components/NumberCard/index.jsx", - "line": 214, + "line": 215, "column": 20, - "index": 6599 + "index": 6669 }, { "filePath": "src/components/ReportingConfig/index.jsx", - "line": 145, - "column": 20, - "index": 4679 + "line": 147, + "column": 22, + "index": 4771 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 422, - "column": 25, - "index": 16181 + "filePath": "src/components/ReportingConfig/index.jsx", + "line": 152, + "column": 22, + "index": 4945 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", "line": 423, "column": 25, - "index": 16243 + "index": 16297 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 424, + "line": 425, "column": 26, - "index": 16313 + "index": 16431 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 425, + "line": 426, "column": 23, - "index": 16370 + "index": 16476 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 437, + "line": 438, "column": 14, - "index": 16780 - }, - { - "filePath": "src/components/RequestCodesPage/RequestCodesForm.jsx", - "line": 124, - "column": 33, - "index": 3404 - }, - { - "filePath": "src/components/SaveTemplateButton/index.jsx", - "line": 152, - "column": 19, - "index": 4868 + "index": 16874 }, { "filePath": "src/components/SaveTemplateButton/index.jsx", - "line": 153, + "line": 154, "column": 20, - "index": 4932 + "index": 5007 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", @@ -3374,57 +3411,57 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 73, + "line": 74, "column": 19, - "index": 2110 + "index": 2111 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 75, + "line": 76, "column": 20, - "index": 2232 + "index": 2233 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 76, + "line": 77, "column": 23, - "index": 2277 + "index": 2278 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 99, "column": 12, - "index": 3815 + "index": 3825 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 109, "column": 12, - "index": 4165 + "index": 4175 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 121, + "line": 120, "column": 51, - "index": 3746 + "index": 3745 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 125, + "line": 124, "column": 43, - "index": 3969 + "index": 3968 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 179, + "line": 178, "column": 24, - "index": 5633 + "index": 5632 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 268, + "line": 267, "column": 14, - "index": 8991 + "index": 8990 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", @@ -3442,7 +3479,7 @@ "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 120, "column": 28, - "index": 3550 + "index": 3565 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", @@ -3450,23 +3487,71 @@ "column": 14, "index": 4060 }, + { + "filePath": "src/components/Sidebar/IconLink.test.jsx", + "line": 31, + "column": 12, + "index": 875 + }, + { + "filePath": "src/components/Sidebar/IconLink.test.jsx", + "line": 41, + "column": 12, + "index": 1245 + }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 102, + "line": 73, "column": 12, - "index": 3577 + "index": 2386 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 109, + "line": 78, "column": 12, - "index": 3830 + "index": 2530 }, { - "filePath": "src/components/StatusAlert/index.jsx", - "line": 31, - "column": 14, - "index": 640 + "filePath": "src/components/Sidebar/index.jsx", + "line": 84, + "column": 12, + "index": 2755 + }, + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 91, + "column": 12, + "index": 3048 + }, + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 99, + "column": 12, + "index": 3368 + }, + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 106, + "column": 12, + "index": 3621 + }, + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 112, + "column": 12, + "index": 3886 + }, + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 119, + "column": 12, + "index": 4152 + }, + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 125, + "column": 12, + "index": 4336 }, { "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", @@ -3482,9 +3567,9 @@ }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 197, + "line": 198, "column": 23, - "index": 5913 + "index": 5911 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", @@ -3498,6 +3583,12 @@ "column": 18, "index": 3780 }, + { + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 40, + "column": 14, + "index": 1554 + }, { "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", "line": 8, @@ -3510,7 +3601,7 @@ "filePath": "src/components/Admin/EmbeddedSubscription.jsx", "line": 61, "column": 27, - "index": 2778 + "index": 2775 } ], "ArrowOutward": [ @@ -3518,2245 +3609,2555 @@ "filePath": "src/components/Admin/EmbeddedSubscription.jsx", "line": 75, "column": 60, - "index": 3416 + "index": 3413 } ], - "Badge": [ + "Undo": [ { - "filePath": "src/components/Admin/licenses/LicenseAllocationHeader.jsx", - "line": 22, - "column": 8, - "index": 1068 + "filePath": "src/components/Admin/index.jsx", + "line": 228, + "column": 19, + "index": 7683 }, { - "filePath": "src/components/Admin/licenses/LicenseAllocationHeader.jsx", - "line": 26, - "column": 8, - "index": 1252 - }, + "filePath": "src/components/Admin/index.jsx", + "line": 245, + "column": 19, + "index": 8339 + } + ], + "Alert": [ { - "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", - "line": 76, - "column": 14, - "index": 2663 + "filePath": "src/components/Admin/index.jsx", + "line": 253, + "column": 6, + "index": 8457 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", - "line": 78, - "column": 14, - "index": 2735 + "filePath": "src/components/Admin/index.jsx", + "line": 265, + "column": 6, + "index": 8728 }, { - "filePath": "src/components/settings/SettingsAccessTab/StatusTableCell.jsx", - "line": 8, - "column": 4, - "index": 192 + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 139, + "column": 6, + "index": 4274 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 239, - "column": 18, - "index": 7886 + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 149, + "column": 6, + "index": 4484 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 253, - "column": 20, - "index": 8501 + "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", + "line": 13, + "column": 4, + "index": 380 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 258, - "column": 16, - "index": 8675 + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", + "line": 64, + "column": 14, + "index": 1798 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 168, - "column": 43, - "index": 5550 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 175, + "column": 6, + "index": 4839 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 169, - "column": 63, - "index": 5660 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 216, + "column": 6, + "index": 6116 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 170, - "column": 64, - "index": 5766 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 231, + "column": 6, + "index": 6530 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementUserBadge.jsx", - "line": 18, - "column": 11, - "index": 352 + "filePath": "src/components/CodeModal/ModalError.jsx", + "line": 11, + "column": 4, + "index": 267 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 76, - "column": 10, - "index": 1951 + "filePath": "src/components/CodeSearchResults/index.jsx", + "line": 61, + "column": 4, + "index": 1456 }, { - "filePath": "src/components/SubsidyRequestManagementTable/RequestStatusCell.jsx", - "line": 23, - "column": 4, - "index": 519 - } - ], - "DataTable": [ + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 40, + "column": 8, + "index": 830 + }, { - "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 53, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 45, "column": 10, - "index": 2195 + "index": 1537 }, { - "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 54, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 68, "column": 8, - "index": 2237 + "index": 2021 }, { - "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 208, + "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", + "line": 26, "column": 6, - "index": 7121 + "index": 937 }, { - "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 217, - "column": 34, - "index": 7395 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 83, + "column": 6, + "index": 2546 }, { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 158, - "column": 6, - "index": 4703 + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 126, + "column": 8, + "index": 4194 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", - "line": 95, - "column": 4, - "index": 3358 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 110, + "column": 6, + "index": 3581 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 22, - "column": 4, - "index": 587 + "filePath": "src/components/CouponDetails/index.jsx", + "line": 459, + "column": 6, + "index": 13916 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 134, - "column": 8, - "index": 4608 + "filePath": "src/components/CouponDetails/index.jsx", + "line": 476, + "column": 6, + "index": 14230 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", - "line": 91, + "filePath": "src/components/CouponDetails/index.jsx", + "line": 496, "column": 6, - "index": 2639 + "index": 14698 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", - "line": 93, - "column": 6, - "index": 2754 + "filePath": "src/components/ErrorPage/index.jsx", + "line": 29, + "column": 10, + "index": 735 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 51, - "column": 10, - "index": 1772 + "filePath": "src/components/FeatureAnnouncementBanner/index.jsx", + "line": 50, + "column": 6, + "index": 1609 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 52, + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 157, "column": 8, - "index": 1814 + "index": 4576 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 200, + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 56, "column": 6, - "index": 6312 + "index": 1725 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 207, - "column": 34, - "index": 6561 + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 78, + "column": 6, + "index": 2542 }, { - "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 61, + "filePath": "src/components/NewFeatureAlertBrowseAndRequest/index.jsx", + "line": 45, "column": 4, - "index": 1367 - } - ], - "DataTable.EmptyTable": [ + "index": 1515 + }, { - "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 236, - "column": 19, - "index": 7983 + "filePath": "src/components/PlotlyAnalytics/PlotlyAnalyticsPage.jsx", + "line": 28, + "column": 4, + "index": 746 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", - "line": 154, + "filePath": "src/components/RequestCodesPage/RequestCodesForm.jsx", + "line": 30, "column": 6, - "index": 4921 + "index": 811 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 76, - "column": 17, - "index": 2229 + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 44, + "column": 8, + "index": 971 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 186, - "column": 28, - "index": 6232 + "line": 93, + "column": 8, + "index": 3126 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", - "line": 146, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 108, + "column": 10, + "index": 3858 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", + "line": 41, "column": 8, - "index": 4198 + "index": 1153 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", - "line": 154, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", + "line": 56, "column": 8, - "index": 4485 + "index": 1733 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 227, - "column": 19, - "index": 7193 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 97, + "column": 6, + "index": 3970 }, { - "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 93, + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 174, "column": 8, - "index": 2232 - } - ], - "Toast": [ + "index": 6538 + }, { - "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 317, - "column": 6, - "index": 10742 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 71, + "column": 10, + "index": 2887 }, { - "filePath": "src/components/Admin/SubscriptionDetails.jsx", - "line": 66, + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 76, + "column": 10, + "index": 3080 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", + "line": 18, "column": 6, - "index": 2749 + "index": 676 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 155, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 199, "column": 8, - "index": 4507 + "index": 6974 }, { - "filePath": "src/components/BulkEnrollmentResultsDownloadPage/index.jsx", - "line": 51, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConnectStep.jsx", + "line": 54, "column": 8, - "index": 1687 + "index": 2177 }, { - "filePath": "src/components/BulkEnrollmentResultsDownloadPage/index.jsx", - "line": 64, - "column": 8, - "index": 1964 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConnectStep.jsx", + "line": 59, + "column": 30, + "index": 2412 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightToast.jsx", - "line": 16, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", + "line": 122, "column": 4, - "index": 502 + "index": 4156 }, { - "filePath": "src/components/settings/SettingsAccessTab/LinkCopiedToast.jsx", - "line": 5, - "column": 2, - "index": 105 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 164, + "column": 12, + "index": 4822 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 136, - "column": 6, - "index": 5082 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 159, + "column": 12, + "index": 4359 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 58, - "column": 5, - "index": 1701 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 171, + "column": 12, + "index": 4854 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 254, - "column": 8, - "index": 8294 + "filePath": "src/components/subscriptions/SubscriptionData.jsx", + "line": 36, + "column": 4, + "index": 841 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 218, - "column": 8, - "index": 7894 + "filePath": "src/components/subsidy-request-management-alerts/NoAvailableCodesBanner.jsx", + "line": 23, + "column": 4, + "index": 602 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 81, - "column": 12, - "index": 3278 + "filePath": "src/components/subsidy-request-management-alerts/NoAvailableLicensesBanner.jsx", + "line": 19, + "column": 4, + "index": 476 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 311, - "column": 6, - "index": 9992 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 98, + "column": 12, + "index": 2774 }, { - "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 100, - "column": 6, - "index": 4088 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 151, + "column": 12, + "index": 4832 }, { - "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", - "line": 36, - "column": 6, - "index": 1387 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 97, + "column": 12, + "index": 2915 }, { - "filePath": "src/components/UserActivationPage/index.jsx", - "line": 62, - "column": 8, - "index": 1888 - } - ], - "Row": [ + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 150, + "column": 12, + "index": 5114 + }, { - "filePath": "src/components/Admin/SubscriptionDetails.jsx", - "line": 35, - "column": 6, - "index": 1435 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 74, + "column": 10, + "index": 1856 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewStep.jsx", - "line": 29, + "filePath": "src/components/TableComponent/index.jsx", + "line": 130, "column": 6, - "index": 844 + "index": 3995 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 43, + "filePath": "src/components/TableComponent/index.jsx", + "line": 142, "column": 6, - "index": 1458 + "index": 4259 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 66, - "column": 4, - "index": 1946 + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 84, + "column": 10, + "index": 2697 + } + ], + "Error": [ + { + "filePath": "src/components/Admin/index.jsx", + "line": 255, + "column": 14, + "index": 8503 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", - "line": 142, - "column": 6, - "index": 4376 + "filePath": "src/components/Admin/index.jsx", + "line": 268, + "column": 14, + "index": 8799 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", - "line": 11, - "column": 4, - "index": 377 + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", + "line": 17, + "column": 50, + "index": 446 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", - "line": 16, - "column": 4, - "index": 493 + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 141, + "column": 14, + "index": 4320 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 12, - "column": 4, - "index": 321 + "filePath": "src/components/Coupon/index.jsx", + "line": 103, + "column": 13, + "index": 2811 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 41, - "column": 4, - "index": 1438 + "filePath": "src/components/CouponDetails/index.jsx", + "line": 401, + "column": 63, + "index": 12103 }, { - "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 61, - "column": 6, - "index": 2711 + "filePath": "src/components/CouponDetails/index.jsx", + "line": 461, + "column": 14, + "index": 13962 }, { - "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 66, - "column": 6, - "index": 2810 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 99, + "column": 23, + "index": 3836 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", - "line": 14, - "column": 2, - "index": 307 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 30, + "column": 8, + "index": 1203 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", "line": 40, - "column": 10, - "index": 1114 + "column": 37, + "index": 1537 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 112, - "column": 8, - "index": 2734 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 120, + "column": 101, + "index": 3795 }, { - "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 38, - "column": 8, - "index": 1495 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 39, + "column": 70, + "index": 1469 }, { - "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 48, - "column": 6, - "index": 1857 + "filePath": "src/components/TableComponent/index.jsx", + "line": 132, + "column": 14, + "index": 4041 }, { - "filePath": "src/components/UserActivationPage/index.jsx", - "line": 77, - "column": 6, - "index": 2377 + "filePath": "src/components/TableComponent/index.jsx", + "line": 144, + "column": 14, + "index": 4306 } ], - "Col": [ + "Alert.Heading": [ { - "filePath": "src/components/Admin/SubscriptionDetails.jsx", - "line": 36, + "filePath": "src/components/Admin/index.jsx", + "line": 257, "column": 8, - "index": 1466 + "index": 8526 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 44, + "filePath": "src/components/Admin/index.jsx", + "line": 270, "column": 8, - "index": 1491 + "index": 8822 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 67, + "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", + "line": 20, "column": 6, - "index": 1977 + "index": 527 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", - "line": 143, + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 176, "column": 8, - "index": 4390 - }, - { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", - "line": 12, - "column": 6, - "index": 389 + "index": 4884 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", - "line": 17, - "column": 6, - "index": 505 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 223, + "column": 8, + "index": 6324 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 13, - "column": 6, - "index": 333 + "filePath": "src/components/CodeModal/ModalError.jsx", + "line": 14, + "column": 8, + "index": 397 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 42, - "column": 6, - "index": 1467 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 44, + "column": 10, + "index": 906 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 11, - "column": 4, - "index": 225 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 49, + "column": 12, + "index": 1621 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 20, - "column": 4, - "index": 548 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 81, + "column": 10, + "index": 2401 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 29, - "column": 4, - "index": 871 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 91, + "column": 8, + "index": 2758 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 59, + "filePath": "src/components/CouponDetails/index.jsx", + "line": 463, "column": 8, - "index": 1539 + "index": 13985 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 71, + "filePath": "src/components/CouponDetails/index.jsx", + "line": 483, "column": 8, - "index": 2016 + "index": 14456 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 83, + "filePath": "src/components/CouponDetails/index.jsx", + "line": 500, "column": 8, - "index": 2486 + "index": 14829 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 107, - "column": 6, - "index": 3313 + "filePath": "src/components/ErrorPage/index.jsx", + "line": 33, + "column": 12, + "index": 824 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", - "line": 10, - "column": 4, - "index": 299 + "filePath": "src/components/FeatureAnnouncementBanner/index.jsx", + "line": 51, + "column": 8, + "index": 1673 }, { - "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 62, - "column": 8, - "index": 2725 + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 161, + "column": 10, + "index": 4657 }, { - "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 67, + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 72, "column": 8, - "index": 2865 + "index": 2232 }, { - "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 73, + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 92, "column": 8, - "index": 3118 + "index": 2972 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", - "line": 15, - "column": 4, - "index": 317 + "filePath": "src/components/PlotlyAnalytics/PlotlyAnalyticsPage.jsx", + "line": 34, + "column": 6, + "index": 957 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", - "line": 19, - "column": 4, - "index": 391 + "filePath": "src/components/RequestCodesPage/RequestCodesForm.jsx", + "line": 35, + "column": 8, + "index": 905 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 41, - "column": 12, - "index": 1132 + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 45, + "column": 10, + "index": 1030 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 114, - "column": 12, - "index": 2899 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 94, + "column": 10, + "index": 3185 }, { - "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 49, - "column": 8, - "index": 1888 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", + "line": 42, + "column": 10, + "index": 1212 }, { - "filePath": "src/components/UserActivationPage/index.jsx", - "line": 78, - "column": 8, - "index": 2434 - } - ], - "BookOpen": [ - { - "filePath": "src/components/BulkEnrollmentPage/BulkEnrollButton.jsx", - "line": 18, - "column": 16, - "index": 668 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", + "line": 57, + "column": 10, + "index": 1792 }, { - "filePath": "src/components/Sidebar/index.jsx", - "line": 109, - "column": 23, - "index": 3841 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 105, + "column": 8, + "index": 4172 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/EnrollBulkAction.jsx", - "line": 115, - "column": 20, - "index": 4068 - } - ], - "AlertModal": [ - { - "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", - "line": 14, - "column": 2, - "index": 321 + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 184, + "column": 10, + "index": 6829 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 36, - "column": 2, - "index": 909 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", + "line": 32, + "column": 8, + "index": 1004 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 106, - "column": 6, - "index": 3573 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 212, + "column": 10, + "index": 7316 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 356, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", + "line": 33, "column": 6, - "index": 13419 + "index": 1291 }, { - "filePath": "src/components/settings/ConfigError.jsx", - "line": 16, - "column": 2, - "index": 495 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", + "line": 42, + "column": 6, + "index": 1622 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 32, - "column": 4, - "index": 594 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", + "line": 52, + "column": 6, + "index": 2033 }, { - "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", - "line": 52, - "column": 4, - "index": 1144 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", + "line": 59, + "column": 6, + "index": 2222 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 181, + "filePath": "src/components/subsidy-request-management-alerts/NoAvailableCodesBanner.jsx", + "line": 32, "column": 6, - "index": 6195 + "index": 802 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 136, + "filePath": "src/components/subsidy-request-management-alerts/NoAvailableLicensesBanner.jsx", + "line": 28, "column": 6, - "index": 4276 - } - ], - "Error": [ + "index": 676 + }, { - "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", - "line": 17, - "column": 50, - "index": 446 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 104, + "column": 14, + "index": 2971 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 99, - "column": 23, - "index": 3826 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 156, + "column": 14, + "index": 5003 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 34, - "column": 8, - "index": 1209 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 103, + "column": 14, + "index": 3108 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 44, - "column": 37, - "index": 1543 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 155, + "column": 14, + "index": 5287 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 121, - "column": 101, - "index": 3796 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 79, + "column": 12, + "index": 2002 }, { - "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 39, - "column": 70, - "index": 1469 + "filePath": "src/components/TableComponent/index.jsx", + "line": 134, + "column": 8, + "index": 4064 } ], - "ActionRow": [ + "Badge": [ { - "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", + "filePath": "src/components/Admin/licenses/LicenseAllocationHeader.jsx", "line": 23, - "column": 6, - "index": 560 + "column": 8, + "index": 1181 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 41, - "column": 6, - "index": 1026 + "filePath": "src/components/Admin/licenses/LicenseAllocationHeader.jsx", + "line": 27, + "column": 8, + "index": 1365 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 55, - "column": 6, - "index": 1153 + "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", + "line": 76, + "column": 14, + "index": 2654 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 67, - "column": 6, - "index": 2177 + "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", + "line": 78, + "column": 14, + "index": 2726 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", - "line": 10, - "column": 6, - "index": 352 + "filePath": "src/components/settings/SettingsAccessTab/StatusTableCell.jsx", + "line": 8, + "column": 4, + "index": 192 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", - "line": 20, - "column": 6, - "index": 602 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 239, + "column": 18, + "index": 7901 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 111, - "column": 10, - "index": 3699 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 252, + "column": 20, + "index": 8500 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 364, - "column": 8, - "index": 13652 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 257, + "column": 16, + "index": 8674 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", - "line": 11, - "column": 2, - "index": 281 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 168, + "column": 43, + "index": 5565 }, { - "filePath": "src/components/settings/ConfigError.jsx", - "line": 22, - "column": 6, - "index": 623 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 169, + "column": 63, + "index": 5675 }, { - "filePath": "src/components/settings/SettingsAccessTab/ActionsTableCell.jsx", - "line": 70, - "column": 8, - "index": 2106 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 170, + "column": 64, + "index": 5781 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 37, - "column": 8, - "index": 708 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementUserBadge.jsx", + "line": 18, + "column": 11, + "index": 352 }, { - "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", - "line": 57, - "column": 8, - "index": 1262 + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 71, + "column": 10, + "index": 1935 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 144, - "column": 8, - "index": 5476 - }, + "filePath": "src/components/SubsidyRequestManagementTable/RequestStatusCell.jsx", + "line": 23, + "column": 4, + "index": 519 + } + ], + "DataTable": [ { - "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", - "line": 40, - "column": 6, - "index": 1126 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 54, + "column": 10, + "index": 2194 }, { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 29, - "column": 6, - "index": 793 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 55, + "column": 8, + "index": 2236 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 150, - "column": 8, - "index": 5145 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 209, + "column": 6, + "index": 7119 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 160, - "column": 8, - "index": 5480 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 218, + "column": 34, + "index": 7393 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 170, + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 159, "column": 6, - "index": 5884 + "index": 4678 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 187, - "column": 10, - "index": 6381 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 57, + "column": 4, + "index": 2157 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 142, - "column": 10, - "index": 4462 + "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", + "line": 25, + "column": 4, + "index": 670 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 36, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 112, "column": 8, - "index": 1283 + "index": 4041 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 57, - "column": 8, - "index": 1893 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", + "line": 92, + "column": 6, + "index": 2640 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 210, - "column": 8, - "index": 6449 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", + "line": 93, + "column": 6, + "index": 2754 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 186, - "column": 8, - "index": 5497 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 51, + "column": 10, + "index": 1770 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 162, - "column": 10, - "index": 5236 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 52, + "column": 8, + "index": 1812 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 161, - "column": 10, - "index": 5531 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 200, + "column": 6, + "index": 6309 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 108, - "column": 8, - "index": 3163 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 207, + "column": 34, + "index": 6558 }, { - "filePath": "src/components/SubsidyRequestManagementTable/ActionCell.jsx", - "line": 15, + "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", + "line": 61, "column": 4, - "index": 288 + "index": 1367 } ], - "DataTable.TableControlBar": [ + "DataTable.EmptyTable": [ { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 177, - "column": 8, - "index": 5335 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 237, + "column": 19, + "index": 7981 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", - "line": 140, + "line": 116, "column": 6, - "index": 4538 + "index": 3720 + }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", + "line": 86, + "column": 17, + "index": 2551 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 184, - "column": 10, - "index": 6144 + "line": 164, + "column": 28, + "index": 5601 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", - "line": 144, + "line": 147, "column": 8, - "index": 4132 + "index": 4199 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", - "line": 152, + "line": 154, "column": 8, - "index": 4419 + "index": 4485 + }, + { + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 227, + "column": 19, + "index": 7190 }, { "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 90, - "column": 6, - "index": 2145 + "line": 93, + "column": 8, + "index": 2232 } ], - "DataTable.Table": [ + "Toast": [ { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 178, - "column": 8, - "index": 5373 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 318, + "column": 6, + "index": 10740 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", - "line": 153, - "column": 33, - "index": 4893 + "filePath": "src/components/Admin/SubscriptionDetails.jsx", + "line": 66, + "column": 6, + "index": 2745 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 185, - "column": 10, - "index": 6184 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 155, + "column": 8, + "index": 4507 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", - "line": 145, + "filePath": "src/components/BulkEnrollmentResultsDownloadPage/index.jsx", + "line": 51, "column": 8, - "index": 4170 + "index": 1687 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", - "line": 153, + "filePath": "src/components/BulkEnrollmentResultsDownloadPage/index.jsx", + "line": 64, "column": 8, - "index": 4457 + "index": 1964 }, { - "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 91, - "column": 6, - "index": 2181 - } - ], - "DataTable.TableFooter": [ + "filePath": "src/components/ContentHighlights/ContentHighlightToast.jsx", + "line": 16, + "column": 4, + "index": 502 + }, { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 179, - "column": 8, - "index": 5401 + "filePath": "src/components/settings/SettingsAccessTab/LinkCopiedToast.jsx", + "line": 5, + "column": 2, + "index": 105 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", - "line": 155, + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 136, "column": 6, - "index": 4979 + "index": 5082 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", - "line": 147, - "column": 8, - "index": 4258 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 59, + "column": 5, + "index": 1702 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", - "line": 155, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 254, "column": 8, - "index": 4545 + "index": 8309 }, { - "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 95, - "column": 6, - "index": 2299 - } - ], - "DataTable.RowStatus": [ - { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 180, - "column": 10, - "index": 5435 + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 223, + "column": 8, + "index": 8157 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", - "line": 12, - "column": 4, - "index": 297 - } - ], - "Stepper": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 50, - "column": 4, - "index": 1648 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 81, + "column": 12, + "index": 3278 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 258, + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 311, "column": 6, - "index": 9704 + "index": 9989 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 136, + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 99, "column": 6, - "index": 5169 - } - ], - "ModalDialog": [ + "index": 3998 + }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 51, + "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", + "line": 36, "column": 6, - "index": 1688 + "index": 1387 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 28, - "column": 2, - "index": 537 - }, + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 64, + "column": 8, + "index": 1998 + } + ], + "Row": [ { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 66, - "column": 4, - "index": 2663 + "filePath": "src/components/Admin/SubscriptionDetails.jsx", + "line": 35, + "column": 6, + "index": 1433 }, { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 14, - "column": 2, - "index": 466 + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewStep.jsx", + "line": 29, + "column": 6, + "index": 844 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 160, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 43, "column": 6, - "index": 5766 + "index": 1458 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 21, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 66, "column": 4, - "index": 679 + "index": 1946 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 34, - "column": 4, - "index": 1140 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 142, + "column": 6, + "index": 4376 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 150, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", + "line": 11, "column": 4, - "index": 4495 + "index": 377 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 144, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", + "line": 16, "column": 4, - "index": 4031 + "index": 493 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 85, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", + "line": 12, "column": 4, - "index": 2438 + "index": 321 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 84, + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", + "line": 41, "column": 4, - "index": 2580 + "index": 1438 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 62, - "column": 4, - "index": 1554 - } - ], - "ModalDialog.Header": [ + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 87, + "column": 6, + "index": 2213 + }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 60, - "column": 8, - "index": 1915 + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 114, + "column": 6, + "index": 3090 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 35, - "column": 4, - "index": 667 + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 89, + "column": 6, + "index": 2324 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 74, + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 116, "column": 6, - "index": 2820 + "index": 3201 }, { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 20, - "column": 4, - "index": 574 + "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", + "line": 39, + "column": 12, + "index": 961 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 165, - "column": 8, - "index": 5894 + "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", + "line": 17, + "column": 4, + "index": 263 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 40, + "filePath": "src/components/settings/SettingsAccessTab/index.jsx", + "line": 61, "column": 6, - "index": 1279 + "index": 2711 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 156, + "filePath": "src/components/settings/SettingsAccessTab/index.jsx", + "line": 66, "column": 6, - "index": 4619 + "index": 2810 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 150, - "column": 6, - "index": 4155 + "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", + "line": 14, + "column": 2, + "index": 307 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 93, + "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", + "line": 40, + "column": 10, + "index": 1114 + }, + { + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 107, "column": 8, - "index": 2627 + "index": 2718 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 92, + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 37, "column": 8, - "index": 2765 + "index": 1419 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 69, + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 47, "column": 6, - "index": 1724 + "index": 1770 + }, + { + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 82, + "column": 6, + "index": 2603 } ], - "ModalDialog.Title": [ + "Col": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 61, - "column": 10, - "index": 1946 + "filePath": "src/components/Admin/SubscriptionDetails.jsx", + "line": 36, + "column": 8, + "index": 1464 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 36, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 44, + "column": 8, + "index": 1491 + }, + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 67, "column": 6, - "index": 694 + "index": 1977 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 75, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 143, "column": 8, - "index": 2849 + "index": 4390 }, { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 21, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", + "line": 12, "column": 6, - "index": 601 + "index": 389 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 166, - "column": 10, - "index": 5948 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", + "line": 17, + "column": 6, + "index": 505 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 41, - "column": 8, - "index": 1308 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", + "line": 13, + "column": 6, + "index": 333 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 157, + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", + "line": 42, + "column": 6, + "index": 1467 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 88, "column": 8, - "index": 4648 + "index": 2285 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 151, + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 92, "column": 8, - "index": 4184 + "index": 2461 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 94, - "column": 10, - "index": 2658 + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 115, + "column": 8, + "index": 3120 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 93, - "column": 10, - "index": 2796 + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 90, + "column": 8, + "index": 2396 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 70, + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 94, "column": 8, - "index": 1753 - } - ], - "ModalDialog.Body": [ + "index": 2572 + }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 65, + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 117, "column": 8, - "index": 2071 + "index": 3231 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 51, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 11, "column": 4, - "index": 1066 + "index": 225 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 81, - "column": 6, - "index": 3009 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 20, + "column": 4, + "index": 548 }, { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 25, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 29, "column": 4, - "index": 700 + "index": 871 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 170, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 59, "column": 8, - "index": 6080 + "index": 1539 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 27, - "column": 6, - "index": 813 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 71, + "column": 8, + "index": 2016 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 46, - "column": 6, - "index": 1479 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 83, + "column": 8, + "index": 2486 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 161, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 107, "column": 6, - "index": 4749 + "index": 3313 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 155, + "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", + "line": 10, + "column": 4, + "index": 299 + }, + { + "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", + "line": 40, + "column": 14, + "index": 981 + }, + { + "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", + "line": 18, "column": 6, - "index": 4285 + "index": 275 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 109, + "filePath": "src/components/settings/SettingsAccessTab/index.jsx", + "line": 62, "column": 8, - "index": 3133 + "index": 2725 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 108, + "filePath": "src/components/settings/SettingsAccessTab/index.jsx", + "line": 67, "column": 8, - "index": 3270 + "index": 2865 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 84, - "column": 6, - "index": 2148 - } - ], - "Stepper.Step": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 66, - "column": 10, - "index": 2100 + "filePath": "src/components/settings/SettingsAccessTab/index.jsx", + "line": 72, + "column": 8, + "index": 3039 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 74, - "column": 10, - "index": 2436 + "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", + "line": 15, + "column": 4, + "index": 317 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 328, - "column": 10, - "index": 12317 + "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", + "line": 19, + "column": 4, + "index": 391 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 338, - "column": 10, - "index": 12702 + "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", + "line": 41, + "column": 12, + "index": 1132 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 346, - "column": 10, - "index": 13022 + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 109, + "column": 12, + "index": 2883 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 140, - "column": 10, - "index": 5288 + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 48, + "column": 8, + "index": 1801 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 144, - "column": 10, - "index": 5414 + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 83, + "column": 8, + "index": 2660 + } + ], + "BookOpen": [ + { + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollButton.jsx", + "line": 18, + "column": 16, + "index": 668 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 148, - "column": 10, - "index": 5563 + "filePath": "src/components/Sidebar/index.jsx", + "line": 106, + "column": 23, + "index": 3632 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 166, - "column": 10, - "index": 6331 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/EnrollBulkAction.jsx", + "line": 115, + "column": 20, + "index": 4068 } ], - "ModalDialog.Footer": [ + "AlertModal": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 81, - "column": 8, - "index": 2724 + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", + "line": 14, + "column": 2, + "index": 321 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 54, - "column": 4, - "index": 1126 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 36, + "column": 2, + "index": 909 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 143, + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 106, "column": 6, - "index": 5447 + "index": 3573 }, { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 28, + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 356, + "column": 6, + "index": 13419 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 32, "column": 4, - "index": 766 + "index": 594 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 175, - "column": 8, - "index": 6259 + "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", + "line": 52, + "column": 4, + "index": 1144 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 35, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 181, "column": 6, - "index": 1254 + "index": 6205 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 56, + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 135, "column": 6, - "index": 1864 - }, + "index": 4275 + } + ], + "ActionRow": [ { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 209, + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", + "line": 23, "column": 6, - "index": 6420 + "index": 560 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 185, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 41, "column": 6, - "index": 5468 + "index": 1026 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 161, - "column": 8, - "index": 5205 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 55, + "column": 6, + "index": 1153 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 160, - "column": 8, - "index": 5500 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 67, + "column": 6, + "index": 2177 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 107, + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 10, "column": 6, - "index": 3134 - } - ], - "Stepper.ActionRow": [ + "index": 352 + }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 82, - "column": 10, - "index": 2755 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 20, + "column": 6, + "index": 602 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 91, + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 111, "column": 10, - "index": 3091 + "index": 3699 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 267, - "column": 14, - "index": 10053 + "line": 364, + "column": 8, + "index": 13652 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 287, - "column": 14, - "index": 10890 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 11, + "column": 2, + "index": 281 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 305, - "column": 14, - "index": 11553 + "filePath": "src/components/settings/SettingsAccessTab/ActionsTableCell.jsx", + "line": 70, + "column": 8, + "index": 2106 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 176, - "column": 10, - "index": 6677 + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 37, + "column": 8, + "index": 708 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 204, - "column": 10, - "index": 7647 + "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", + "line": 57, + "column": 8, + "index": 1262 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 218, - "column": 10, - "index": 8193 + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 144, + "column": 8, + "index": 5476 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 239, - "column": 10, - "index": 8919 - } - ], - "MailtoLink": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 48, + "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", + "line": 40, "column": 6, - "index": 1180 + "index": 1126 }, { - "filePath": "src/components/ForbiddenPage/index.jsx", - "line": 17, - "column": 10, - "index": 511 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 150, + "column": 8, + "index": 5155 }, { - "filePath": "src/components/UserActivationPage/index.jsx", - "line": 88, - "column": 14, - "index": 2909 - } - ], - "useToggle": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 100, - "column": 74, - "index": 3004 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 160, + "column": 8, + "index": 5490 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", - "line": 44, - "column": 42, - "index": 1235 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 170, + "column": 6, + "index": 5894 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 25, - "column": 32, - "index": 1008 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 187, + "column": 10, + "index": 6391 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 52, - "column": 62, - "index": 2048 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 141, + "column": 10, + "index": 4461 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 23, - "column": 65, - "index": 1256 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 36, + "column": 8, + "index": 1283 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 37, - "column": 32, - "index": 1162 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 57, + "column": 8, + "index": 1893 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 40, - "column": 47, - "index": 1626 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 210, + "column": 8, + "index": 6446 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", - "line": 16, - "column": 47, - "index": 414 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 187, + "column": 8, + "index": 5495 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 46, - "column": 62, - "index": 1778 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 162, + "column": 10, + "index": 5236 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 19, - "column": 47, - "index": 779 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 161, + "column": 10, + "index": 5531 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationModals.jsx", - "line": 84, - "column": 68, - "index": 3499 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 108, + "column": 8, + "index": 3163 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationModals.jsx", - "line": 85, - "column": 71, - "index": 3604 + "filePath": "src/components/SubsidyRequestManagementTable/ActionCell.jsx", + "line": 15, + "column": 4, + "index": 288 } ], - "Stack": [ + "ErrorOutline": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 138, + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 151, + "column": 14, + "index": 4531 + } + ], + "DataTable.TableControlBar": [ + { + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 178, + "column": 8, + "index": 5310 + }, + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 102, "column": 6, - "index": 3994 + "index": 3337 }, { - "filePath": "src/components/CodeManagement/ManageRequestsTab.jsx", - "line": 49, - "column": 4, - "index": 1838 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 162, + "column": 10, + "index": 5513 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightCardContainer.jsx", - "line": 12, - "column": 4, - "index": 511 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", + "line": 145, + "column": 8, + "index": 4133 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlights.jsx", - "line": 10, - "column": 2, - "index": 267 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", + "line": 152, + "column": 8, + "index": 4419 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 14, - "column": 4, - "index": 452 + "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", + "line": 90, + "column": 6, + "index": 2145 + } + ], + "DataTable.Table": [ + { + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 179, + "column": 8, + "index": 5348 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", - "line": 8, - "column": 2, - "index": 194 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 115, + "column": 33, + "index": 3692 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", - "line": 74, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 163, "column": 10, - "index": 2567 + "index": 5553 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 75, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", + "line": 146, "column": 8, - "index": 1902 + "index": 4171 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 132, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", + "line": 153, "column": 8, - "index": 3409 + "index": 4457 }, { - "filePath": "src/components/subscriptions/SubscriptionSubsidyRequests.jsx", - "line": 44, - "column": 4, - "index": 1770 + "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", + "line": 91, + "column": 6, + "index": 2181 } ], - "Form.Checkbox": [ + "DataTable.TableFooter": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 139, + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 180, "column": 8, - "index": 4041 + "index": 5376 }, { - "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 369, - "column": 10, - "index": 11349 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 117, + "column": 6, + "index": 3778 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 223, - "column": 10, - "index": 7772 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", + "line": 148, + "column": 8, + "index": 4259 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigServiceProviderStep.jsx", - "line": 44, - "column": 6, - "index": 1580 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", + "line": 155, + "column": 8, + "index": 4545 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 89, - "column": 8, - "index": 2353 + "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", + "line": 95, + "column": 6, + "index": 2299 + } + ], + "DataTable.RowStatus": [ + { + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 181, + "column": 10, + "index": 5410 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 97, - "column": 8, - "index": 2674 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 12, + "column": 4, + "index": 297 } ], - "Alert": [ + "Stepper": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", - "line": 13, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 50, "column": 4, - "index": 380 + "index": 1648 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", - "line": 64, - "column": 14, - "index": 1798 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 258, + "column": 6, + "index": 9704 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 173, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 136, "column": 6, - "index": 4817 - }, + "index": 5169 + } + ], + "ModalDialog": [ { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 214, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 51, "column": 6, - "index": 6094 + "index": 1688 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 229, - "column": 6, - "index": 6508 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 28, + "column": 2, + "index": 537 }, { - "filePath": "src/components/CodeModal/ModalError.jsx", - "line": 11, + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 66, "column": 4, - "index": 267 + "index": 2663 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 40, - "column": 8, - "index": 830 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 160, + "column": 6, + "index": 5766 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 45, - "column": 10, - "index": 1537 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 21, + "column": 4, + "index": 679 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 68, - "column": 8, - "index": 2021 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 34, + "column": 4, + "index": 1140 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", - "line": 26, - "column": 6, - "index": 937 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 150, + "column": 4, + "index": 4492 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 83, - "column": 6, - "index": 2546 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 145, + "column": 4, + "index": 4029 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 126, - "column": 8, - "index": 4194 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 85, + "column": 4, + "index": 2438 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", - "line": 110, - "column": 6, - "index": 3581 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 84, + "column": 4, + "index": 2580 }, { - "filePath": "src/components/ErrorPage/index.jsx", - "line": 27, - "column": 10, - "index": 670 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 62, + "column": 4, + "index": 1554 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 60, + "column": 8, + "index": 1915 }, { - "filePath": "src/components/FeatureAnnouncementBanner/index.jsx", - "line": 50, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 35, + "column": 4, + "index": 667 + }, + { + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 74, "column": 6, - "index": 1609 + "index": 2820 }, { - "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 157, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 165, "column": 8, - "index": 4573 + "index": 5894 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 56, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 40, "column": 6, - "index": 1725 + "index": 1279 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 78, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 156, "column": 6, - "index": 2542 + "index": 4616 }, { - "filePath": "src/components/NewFeatureAlertBrowseAndRequest/index.jsx", - "line": 45, - "column": 4, - "index": 1515 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 151, + "column": 6, + "index": 4153 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 44, + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 93, "column": 8, - "index": 971 + "index": 2627 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 120, + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 92, "column": 8, - "index": 3977 + "index": 2765 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", - "line": 41, - "column": 8, - "index": 1153 - }, + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 69, + "column": 6, + "index": 1724 + } + ], + "ModalDialog.Title": [ { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", - "line": 56, - "column": 8, - "index": 1733 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 61, + "column": 10, + "index": 1946 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 97, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 36, "column": 6, - "index": 3970 + "index": 694 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 169, + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 75, "column": 8, - "index": 6275 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 71, - "column": 10, - "index": 2887 + "index": 2849 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 76, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 166, "column": 10, - "index": 3080 + "index": 5948 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 18, - "column": 6, - "index": 676 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 41, + "column": 8, + "index": 1308 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 199, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 157, "column": 8, - "index": 6974 + "index": 4645 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConnectStep.jsx", - "line": 54, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 152, "column": 8, - "index": 2177 + "index": 4182 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConnectStep.jsx", - "line": 59, - "column": 30, - "index": 2412 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 94, + "column": 10, + "index": 2658 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 122, - "column": 4, - "index": 4156 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 93, + "column": 10, + "index": 2796 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 164, - "column": 12, - "index": 4825 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 70, + "column": 8, + "index": 1753 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 65, + "column": 8, + "index": 2071 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 158, - "column": 12, - "index": 4361 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 51, + "column": 4, + "index": 1066 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 81, + "column": 6, + "index": 3009 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 170, - "column": 12, - "index": 4856 + "column": 8, + "index": 6080 }, { - "filePath": "src/components/subscriptions/SubscriptionData.jsx", - "line": 36, - "column": 4, - "index": 841 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 27, + "column": 6, + "index": 813 }, { - "filePath": "src/components/subsidy-request-management-alerts/NoAvailableCodesBanner.jsx", - "line": 23, - "column": 4, - "index": 606 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 46, + "column": 6, + "index": 1479 }, { - "filePath": "src/components/subsidy-request-management-alerts/NoAvailableLicensesBanner.jsx", - "line": 19, - "column": 4, - "index": 476 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 161, + "column": 6, + "index": 4746 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 98, - "column": 12, - "index": 2774 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 156, + "column": 6, + "index": 4283 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 151, - "column": 12, - "index": 4832 + "line": 109, + "column": 8, + "index": 3133 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 97, - "column": 12, - "index": 2915 + "line": 108, + "column": 8, + "index": 3270 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 150, - "column": 12, - "index": 5114 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 84, + "column": 6, + "index": 2148 + } + ], + "Stepper.Step": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 66, + "column": 10, + "index": 2100 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", "line": 74, "column": 10, - "index": 1856 + "index": 2436 }, { - "filePath": "src/components/UserActivationPage/index.jsx", - "line": 79, + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 328, "column": 10, - "index": 2471 - } - ], - "WarningFilled": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", - "line": 16, - "column": 12, - "index": 441 + "index": 12317 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 229, - "column": 37, - "index": 6539 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 338, + "column": 10, + "index": 12702 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 59, - "column": 14, - "index": 1807 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 346, + "column": 10, + "index": 13022 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 71, - "column": 41, - "index": 2918 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 140, + "column": 10, + "index": 5288 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 76, - "column": 41, - "index": 3111 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 144, + "column": 10, + "index": 5414 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 21, - "column": 14, - "index": 739 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 148, + "column": 10, + "index": 5563 }, { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 8, - "column": 15, - "index": 265 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 166, + "column": 10, + "index": 6331 } ], - "Alert.Heading": [ + "ModalDialog.Footer": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", - "line": 20, - "column": 6, - "index": 527 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 81, + "column": 8, + "index": 2724 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 174, - "column": 8, - "index": 4862 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 54, + "column": 4, + "index": 1126 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 221, - "column": 8, - "index": 6302 + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 143, + "column": 6, + "index": 5447 }, { - "filePath": "src/components/CodeModal/ModalError.jsx", - "line": 14, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 175, "column": 8, - "index": 397 + "index": 6259 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 44, - "column": 10, - "index": 906 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 35, + "column": 6, + "index": 1254 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 49, - "column": 12, - "index": 1621 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 56, + "column": 6, + "index": 1864 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 81, - "column": 10, - "index": 2401 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 209, + "column": 6, + "index": 6417 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 91, - "column": 8, - "index": 2758 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 186, + "column": 6, + "index": 5466 }, { - "filePath": "src/components/ErrorPage/index.jsx", - "line": 31, - "column": 12, - "index": 759 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 161, + "column": 8, + "index": 5205 }, { - "filePath": "src/components/FeatureAnnouncementBanner/index.jsx", - "line": 51, + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 160, "column": 8, - "index": 1673 + "index": 5500 }, { - "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 161, + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 107, + "column": 6, + "index": 3134 + } + ], + "Stepper.ActionRow": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 82, "column": 10, - "index": 4654 + "index": 2755 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 72, - "column": 8, - "index": 2232 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 91, + "column": 10, + "index": 3091 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 92, - "column": 8, - "index": 2972 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 267, + "column": 14, + "index": 10053 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 45, - "column": 10, - "index": 1030 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 287, + "column": 14, + "index": 10890 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 121, - "column": 10, - "index": 4036 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 305, + "column": 14, + "index": 11553 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", - "line": 42, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 176, "column": 10, - "index": 1212 + "index": 6677 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", - "line": 57, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 204, "column": 10, - "index": 1792 + "index": 7647 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 105, - "column": 8, - "index": 4172 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 218, + "column": 10, + "index": 8193 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 179, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 239, "column": 10, - "index": 6566 - }, + "index": 8919 + } + ], + "MailtoLink": [ { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 32, - "column": 8, - "index": 1004 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 48, + "column": 6, + "index": 1180 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 212, + "filePath": "src/components/ForbiddenPage/index.jsx", + "line": 17, "column": 10, - "index": 7316 + "index": 511 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 33, - "column": 6, - "index": 1291 + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 98, + "column": 32, + "index": 3479 + } + ], + "useToggle": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 100, + "column": 74, + "index": 3004 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 42, - "column": 6, - "index": 1622 + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", + "line": 44, + "column": 42, + "index": 1235 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 25, + "column": 32, + "index": 1008 + }, + { + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", "line": 52, - "column": 6, - "index": 2033 + "column": 62, + "index": 2048 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 59, - "column": 6, - "index": 2222 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 23, + "column": 65, + "index": 1256 }, { - "filePath": "src/components/subsidy-request-management-alerts/NoAvailableCodesBanner.jsx", - "line": 32, - "column": 6, - "index": 806 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 38, + "column": 32, + "index": 1163 }, { - "filePath": "src/components/subsidy-request-management-alerts/NoAvailableLicensesBanner.jsx", - "line": 28, - "column": 6, - "index": 676 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 40, + "column": 47, + "index": 1636 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 104, - "column": 14, - "index": 2971 + "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", + "line": 14, + "column": 47, + "index": 421 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 156, - "column": 14, - "index": 5003 + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 46, + "column": 62, + "index": 1797 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 103, - "column": 14, - "index": 3108 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 19, + "column": 47, + "index": 789 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 155, - "column": 14, - "index": 5287 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationModals.jsx", + "line": 84, + "column": 68, + "index": 3499 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 79, - "column": 12, - "index": 2002 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationModals.jsx", + "line": 85, + "column": 71, + "index": 3604 } ], - "Card": [ + "Stack": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", - "line": 19, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 138, "column": 6, - "index": 398 + "index": 3994 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 34, + "filePath": "src/components/CodeManagement/ManageRequestsTab.jsx", + "line": 50, "column": 4, - "index": 1159 + "index": 1835 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", - "line": 34, + "filePath": "src/components/ContentHighlights/ContentHighlightCardContainer.jsx", + "line": 12, "column": 4, - "index": 951 + "index": 511 }, { - "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", - "line": 5, + "filePath": "src/components/ContentHighlights/CurrentContentHighlights.jsx", + "line": 10, "column": 2, - "index": 103 - }, - { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 43, - "column": 8, - "index": 1518 + "index": 267 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 12, - "column": 6, - "index": 295 + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 113, + "column": 4, + "index": 3076 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 21, - "column": 6, - "index": 618 + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 132, + "column": 16, + "index": 3518 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 30, - "column": 6, - "index": 914 + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 115, + "column": 4, + "index": 3187 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 60, - "column": 10, - "index": 1613 + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 134, + "column": 16, + "index": 3639 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 146, + "column": 18, + "index": 4094 + }, + { + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 14, + "column": 4, + "index": 452 + }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", + "line": 8, + "column": 2, + "index": 194 + }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", + "line": 74, + "column": 10, + "index": 2558 + }, + { + "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", + "line": 34, + "column": 6, + "index": 803 + }, + { + "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", + "line": 16, + "column": 2, + "index": 251 + }, + { + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 70, + "column": 8, + "index": 1886 + }, + { + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 127, + "column": 8, + "index": 3393 + }, + { + "filePath": "src/components/subscriptions/SubscriptionSubsidyRequests.jsx", + "line": 44, + "column": 4, + "index": 1770 + } + ], + "Form.Checkbox": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 139, + "column": 8, + "index": 4041 + }, + { + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 372, + "column": 10, + "index": 11454 + }, + { + "filePath": "src/components/CouponDetails/index.jsx", + "line": 245, + "column": 8, + "index": 7192 + }, + { + "filePath": "src/components/CouponDetails/index.jsx", + "line": 417, + "column": 8, + "index": 12740 + }, + { + "filePath": "src/components/ReduxFormCheckbox/index.jsx", + "line": 16, + "column": 6, + "index": 256 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 223, + "column": 10, + "index": 7772 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigServiceProviderStep.jsx", + "line": 44, + "column": 6, + "index": 1580 + }, + { + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 89, + "column": 8, + "index": 2353 + }, + { + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 97, + "column": 8, + "index": 2674 + } + ], + "WarningFilled": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", + "line": 16, + "column": 12, + "index": 441 + }, + { + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 231, + "column": 37, + "index": 6561 + }, + { + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 59, + "column": 14, + "index": 1807 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 71, + "column": 41, + "index": 2918 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 76, + "column": 41, + "index": 3111 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", + "line": 21, + "column": 14, + "index": 739 + }, + { + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 8, + "column": 15, + "index": 265 + } + ], + "Card": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", + "line": 19, + "column": 6, + "index": 398 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 34, + "column": 4, + "index": 1159 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", + "line": 34, + "column": 4, + "index": 951 + }, + { + "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", + "line": 5, + "column": 2, + "index": 103 + }, + { + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", + "line": 43, + "column": 8, + "index": 1518 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 128, + "column": 12, + "index": 3417 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 130, + "column": 12, + "index": 3538 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 142, + "column": 14, + "index": 3985 + }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 12, + "column": 6, + "index": 295 + }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 21, + "column": 6, + "index": 618 + }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 30, + "column": 6, + "index": 914 + }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 60, + "column": 10, + "index": 1613 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", @@ -5776,6 +6177,12 @@ "column": 8, "index": 3385 }, + { + "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", + "line": 37, + "column": 8, + "index": 893 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", "line": 25, @@ -5786,13 +6193,13 @@ "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 226, "column": 10, - "index": 7486 + "index": 7501 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 165, + "line": 164, "column": 6, - "index": 5157 + "index": 5156 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", @@ -5804,7 +6211,7 @@ "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 103, "column": 10, - "index": 2948 + "index": 2963 }, { "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", @@ -5820,9 +6227,9 @@ }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 125, + "line": 120, "column": 4, - "index": 3232 + "index": 3216 }, { "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", @@ -5862,6 +6269,18 @@ "column": 2, "index": 173 }, + { + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 83, + "column": 4, + "index": 2153 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 85, + "column": 4, + "index": 2264 + }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 13, @@ -5904,6 +6323,12 @@ "column": 10, "index": 3420 }, + { + "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", + "line": 38, + "column": 10, + "index": 910 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", "line": 26, @@ -5914,7 +6339,7 @@ "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 227, "column": 12, - "index": 7522 + "index": 7537 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", @@ -5936,9 +6361,9 @@ }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 108, + "line": 103, "column": 6, - "index": 2665 + "index": 2649 }, { "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", @@ -5970,19 +6395,19 @@ "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 94, "column": 12, - "index": 2966 + "index": 2936 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 177, + "line": 176, "column": 20, - "index": 5566 + "index": 5565 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 118, "column": 24, - "index": 3475 + "index": 3490 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", @@ -6014,7 +6439,7 @@ "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 154, "column": 24, - "index": 5074 + "index": 5089 } ], "DataTableContext.Provider": [ @@ -6044,13 +6469,13 @@ "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", "line": 12, "column": 2, - "index": 330 + "index": 328 }, { "filePath": "src/components/IconWithTooltip/index.jsx", "line": 13, "column": 4, - "index": 556 + "index": 447 }, { "filePath": "src/components/InfoHover/index.jsx", @@ -6072,15 +6497,15 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 36, + "line": 32, "column": 8, - "index": 1274 + "index": 1268 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 238, + "line": 237, "column": 16, - "index": 7866 + "index": 7865 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", @@ -6124,7 +6549,7 @@ "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", "line": 18, "column": 6, - "index": 435 + "index": 433 }, { "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", @@ -6134,15 +6559,15 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 42, + "line": 38, "column": 12, - "index": 1428 + "index": 1422 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 243, + "line": 242, "column": 20, - "index": 8077 + "index": 8076 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", @@ -6162,7 +6587,7 @@ "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", "line": 19, "column": 8, - "index": 481 + "index": 479 }, { "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", @@ -6172,9 +6597,9 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 244, + "line": 243, "column": 22, - "index": 8161 + "index": 8160 }, { "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", @@ -6188,7 +6613,7 @@ "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", "line": 20, "column": 8, - "index": 528 + "index": 526 }, { "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", @@ -6198,15 +6623,15 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 43, + "line": 39, "column": 14, - "index": 1488 + "index": 1482 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 245, + "line": 244, "column": 22, - "index": 8233 + "index": 8232 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", @@ -6224,27 +6649,125 @@ "Modal": [ { "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 405, + "line": 408, "column": 6, - "index": 12074 + "index": 12195 }, { "filePath": "src/components/CodeReminderModal/index.jsx", - "line": 217, + "line": 220, "column": 6, - "index": 6100 + "index": 6293 }, { "filePath": "src/components/CodeRevokeModal/index.jsx", "line": 231, "column": 6, - "index": 6488 + "index": 6460 }, { "filePath": "src/components/InviteLearnersModal/index.jsx", "line": 182, "column": 6, - "index": 5080 + "index": 5083 + } + ], + "Spinner": [ + { + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 421, + "column": 60, + "index": 12641 + }, + { + "filePath": "src/components/CodeReminderModal/index.jsx", + "line": 232, + "column": 51, + "index": 6710 + }, + { + "filePath": "src/components/CodeRevokeModal/index.jsx", + "line": 243, + "column": 58, + "index": 6882 + }, + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 118, + "column": 12, + "index": 4643 + }, + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 141, + "column": 12, + "index": 5646 + }, + { + "filePath": "src/components/DownloadCsvButton/index.jsx", + "line": 39, + "column": 24, + "index": 1068 + }, + { + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 195, + "column": 29, + "index": 5499 + }, + { + "filePath": "src/components/NumberCard/index.jsx", + "line": 154, + "column": 15, + "index": 4706 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 424, + "column": 25, + "index": 16347 + }, + { + "filePath": "src/components/RequestCodesPage/RequestCodesForm.jsx", + "line": 123, + "column": 33, + "index": 3370 + }, + { + "filePath": "src/components/SaveTemplateButton/index.jsx", + "line": 153, + "column": 19, + "index": 4927 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", + "line": 32, + "column": 8, + "index": 607 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 75, + "column": 19, + "index": 2155 + }, + { + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", + "line": 52, + "column": 17, + "index": 1746 + }, + { + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 221, + "column": 23, + "index": 6863 + }, + { + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 199, + "column": 23, + "index": 5963 } ], "Tab": [ @@ -6274,39 +6797,39 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", - "line": 24, + "line": 22, "column": 8, - "index": 829 + "index": 826 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", - "line": 29, + "line": 27, "column": 8, - "index": 1159 + "index": 1156 }, { "filePath": "src/components/settings/SettingsTabs.jsx", "line": 53, "column": 8, - "index": 1478 + "index": 1487 }, { "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 72, + "line": 68, "column": 8, - "index": 2213 + "index": 1950 }, { "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 86, + "line": 87, "column": 8, - "index": 2611 + "index": 2685 }, { "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 103, + "line": 101, "column": 8, - "index": 3143 + "index": 3083 }, { "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", @@ -6336,9 +6859,9 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", - "line": 18, + "line": 16, "column": 6, - "index": 686 + "index": 683 }, { "filePath": "src/components/settings/SettingsTabs.jsx", @@ -6400,7 +6923,7 @@ "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", "line": 65, "column": 6, - "index": 2167 + "index": 2165 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", @@ -6422,205 +6945,187 @@ }, { "filePath": "src/components/UserActivationPage/index.jsx", - "line": 76, + "line": 81, "column": 4, - "index": 2333 + "index": 2559 } ], - "Info": [ + "Pagination": [ { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 173, - "column": 36, - "index": 4847 - }, - { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 41, - "column": 16, - "index": 853 + "line": 199, + "column": 10, + "index": 5669 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 47, - "column": 18, - "index": 1591 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 20, + "column": 4, + "index": 524 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 70, - "column": 16, - "index": 2071 - }, + "filePath": "src/components/TableComponent/index.jsx", + "line": 106, + "column": 12, + "index": 3395 + } + ], + "CheckCircle": [ { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 85, + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 220, "column": 14, - "index": 2592 - }, - { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 131, - "column": 16, - "index": 4348 + "index": 6275 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", - "line": 9, - "column": 15, - "index": 257 + "filePath": "src/components/CodeSearchResults/index.jsx", + "line": 63, + "column": 12, + "index": 1499 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 81, + "filePath": "src/components/CouponDetails/index.jsx", + "line": 478, "column": 14, - "index": 2621 + "index": 14277 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 44, - "column": 21, - "index": 984 + "filePath": "src/components/SaveTemplateButton/index.jsx", + "line": 154, + "column": 31, + "index": 5018 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 120, - "column": 21, - "index": 3990 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", + "line": 26, + "column": 10, + "index": 699 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", - "line": 41, - "column": 21, - "index": 1166 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 109, + "column": 23, + "index": 4186 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", - "line": 56, - "column": 21, - "index": 1746 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 26, + "column": 31, + "index": 1021 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 100, - "column": 14, - "index": 4061 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 124, + "column": 94, + "index": 4019 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 172, - "column": 16, - "index": 6376 - }, + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 123, + "column": 10, + "index": 4476 + } + ], + "SpinnerIcon": [ { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 210, - "column": 16, - "index": 7290 - }, + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 282, + "column": 71, + "index": 8375 + } + ], + "Plus": [ { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 100, - "column": 20, - "index": 2832 - }, + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 291, + "column": 27, + "index": 8686 + } + ], + "Warning": [ { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 152, - "column": 20, - "index": 4859 - }, + "filePath": "src/components/CodeModal/ModalError.jsx", + "line": 12, + "column": 17, + "index": 309 + } + ], + "Close": [ { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 99, - "column": 20, - "index": 2973 + "filePath": "src/components/CodeSearchResults/CodeSearchResultsHeading.jsx", + "line": 19, + "column": 36, + "index": 688 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 151, - "column": 20, - "index": 5141 + "filePath": "src/components/FileInput/index.jsx", + "line": 140, + "column": 25, + "index": 3550 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 75, - "column": 18, - "index": 1881 - } - ], - "Pagination": [ + "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", + "line": 94, + "column": 47, + "index": 2971 + }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 197, - "column": 10, - "index": 5647 + "filePath": "src/components/ReportingConfig/index.jsx", + "line": 154, + "column": 29, + "index": 5038 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", - "line": 20, - "column": 4, - "index": 524 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 426, + "column": 34, + "index": 16487 }, { - "filePath": "src/components/TableComponent/index.jsx", - "line": 103, - "column": 12, - "index": 3302 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 438, + "column": 25, + "index": 16885 } ], - "CheckCircle": [ + "Check": [ { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 218, - "column": 14, - "index": 6253 + "filePath": "src/components/CodeSearchResults/CodeSearchResultsTable.jsx", + "line": 116, + "column": 44, + "index": 2913 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", - "line": 26, - "column": 10, - "index": 699 + "filePath": "src/components/ReportingConfig/index.jsx", + "line": 149, + "column": 29, + "index": 4865 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 109, - "column": 23, - "index": 4176 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 425, + "column": 37, + "index": 16442 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 30, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 76, "column": 31, - "index": 1027 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 125, - "column": 94, - "index": 4020 + "index": 2244 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 123, - "column": 10, - "index": 4476 - } - ], - "Warning": [ - { - "filePath": "src/components/CodeModal/ModalError.jsx", - "line": 12, - "column": 17, - "index": 309 + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", + "line": 53, + "column": 29, + "index": 1833 } ], "TransitionReplace": [ { "filePath": "src/components/CodeSearchResults/index.jsx", - "line": 78, + "line": 79, "column": 6, - "index": 1818 + "index": 1832 } ], "StatefulButton": [ @@ -6644,15 +7149,15 @@ }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 411, + "line": 412, "column": 12, - "index": 15839 + "index": 15955 }, { "filePath": "src/components/SaveTemplateButton/index.jsx", - "line": 141, + "line": 142, "column": 6, - "index": 4501 + "index": 4560 }, { "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", @@ -6668,15 +7173,15 @@ }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessGenerateLinkButton.jsx", - "line": 52, + "line": 50, "column": 4, - "index": 1493 + "index": 1362 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 62, + "line": 63, "column": 6, - "index": 1786 + "index": 1787 }, { "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", @@ -6688,13 +7193,13 @@ "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 214, "column": 10, - "index": 6582 + "index": 6579 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 190, + "line": 191, "column": 10, - "index": 5630 + "index": 5628 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", @@ -6735,10 +7240,10 @@ "index": 1154 }, { - "filePath": "src/components/settings/ConfigError.jsx", - "line": 25, - "column": 10, - "index": 709 + "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", + "line": 46, + "column": 16, + "index": 1304 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", @@ -6750,31 +7255,31 @@ "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 152, "column": 10, - "index": 5257 + "index": 5267 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 162, "column": 10, - "index": 5596 + "index": 5606 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 172, "column": 8, - "index": 5996 + "index": 6006 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 49, + "line": 45, "column": 9, - "index": 1780 + "index": 1774 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 147, + "line": 152, "column": 8, - "index": 5591 + "index": 5854 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", @@ -6816,19 +7321,19 @@ "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 168, "column": 16, - "index": 5006 + "index": 5003 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 162, + "line": 163, "column": 16, - "index": 4541 + "index": 4539 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 177, + "line": 178, "column": 10, - "index": 5210 + "index": 5208 }, { "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", @@ -6864,9 +7369,9 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 159, + "line": 164, "column": 26, - "index": 6016 + "index": 6279 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", @@ -6913,50 +7418,6 @@ "index": 3782 } ], - "Spinner": [ - { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", - "line": 118, - "column": 12, - "index": 4643 - }, - { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", - "line": 141, - "column": 12, - "index": 5646 - }, - { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", - "line": 32, - "column": 8, - "index": 607 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 74, - "column": 19, - "index": 2154 - }, - { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 52, - "column": 17, - "index": 1746 - }, - { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 221, - "column": 23, - "index": 6866 - }, - { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 198, - "column": 23, - "index": 5965 - } - ], "Form.Radio": [ { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", @@ -7046,23 +7507,35 @@ "column": 6, "index": 1118 }, + { + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 70, + "column": 6, + "index": 1896 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 72, + "column": 6, + "index": 2015 + }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 170, + "line": 169, "column": 8, - "index": 5287 + "index": 5286 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 107, "column": 12, - "index": 3049 + "index": 3064 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 87, + "line": 82, "column": 6, - "index": 2232 + "index": 2216 } ], "Card.Footer": [ @@ -7092,9 +7565,9 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 264, + "line": 263, "column": 8, - "index": 8803 + "index": 8802 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", @@ -7148,21 +7621,21 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", - "line": 55, + "line": 53, "column": 8, - "index": 1640 + "index": 1652 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", - "line": 71, + "line": 69, "column": 8, - "index": 1970 + "index": 1982 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 92, "column": 6, - "index": 2739 + "index": 2754 } ], "ActionRow.Spacer": [ @@ -7195,12 +7668,6 @@ "line": 19, "column": 4, "index": 499 - }, - { - "filePath": "src/components/settings/ConfigError.jsx", - "line": 23, - "column": 8, - "index": 643 } ], "FullscreenModal": [ @@ -7250,9 +7717,9 @@ "CardView": [ { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", - "line": 142, + "line": 104, "column": 8, - "index": 4611 + "index": 3410 } ], "EditCircle": [ @@ -7271,18 +7738,12 @@ "index": 350 } ], - "CheckBox": [ + "FileDownload": [ { - "filePath": "src/components/CouponDetails/index.jsx", - "line": 245, - "column": 8, - "index": 7174 - }, - { - "filePath": "src/components/CouponDetails/index.jsx", - "line": 433, - "column": 8, - "index": 13086 + "filePath": "src/components/DownloadCsvButton/index.jsx", + "line": 39, + "column": 102, + "index": 1146 } ], "MediaQuery": [ @@ -7302,55 +7763,49 @@ }, { "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 20, + "line": 21, "column": 51, - "index": 536 + "index": 590 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", "line": 60, "column": 53, - "index": 2107 + "index": 2105 }, { "filePath": "src/components/subscriptions/tests/SubscriptionCard.test.jsx", - "line": 31, + "line": 29, "column": 40, - "index": 684 + "index": 679 }, { "filePath": "src/containers/EnterpriseApp/EnterpriseApp.test.jsx", - "line": 185, + "line": 188, "column": 26, - "index": 5454 + "index": 5577 } ], "ErrorIcon": [ { "filePath": "src/components/ErrorPage/index.jsx", - "line": 29, + "line": 31, "column": 18, - "index": 724 + "index": 789 }, { "filePath": "src/components/InviteLearnersModal/index.jsx", "line": 159, "column": 16, - "index": 4623 + "index": 4626 } ], "ValidationFormGroup": [ { "filePath": "src/components/FileInput/index.jsx", - "line": 71, + "line": 72, "column": 6, - "index": 1493 - }, - { - "filePath": "src/components/ReduxFormCheckbox/index.jsx", - "line": 15, - "column": 4, - "index": 264 + "index": 1537 }, { "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", @@ -7366,75 +7821,75 @@ }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 197, + "line": 198, "column": 10, - "index": 6892 + "index": 7008 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 213, + "line": 214, "column": 12, - "index": 7400 + "index": 7516 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 227, + "line": 228, "column": 12, - "index": 8126 + "index": 8242 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 242, + "line": 243, "column": 12, - "index": 8770 + "index": 8886 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 265, + "line": 266, "column": 12, - "index": 9849 + "index": 9965 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 283, + "line": 284, "column": 12, - "index": 10578 + "index": 10694 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 302, + "line": 303, "column": 12, - "index": 11380 + "index": 11496 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 318, + "line": 319, "column": 12, - "index": 12095 + "index": 12211 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 335, + "line": 336, "column": 8, - "index": 12799 + "index": 12915 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 366, + "line": 367, "column": 10, - "index": 13881 + "index": 13997 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 384, + "line": 385, "column": 10, - "index": 14688 + "index": 14804 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 405, + "line": 406, "column": 10, - "index": 15598 + "index": 15714 }, { "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", @@ -7476,15 +7931,15 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 173, + "line": 172, "column": 12, - "index": 5372 + "index": 5371 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 114, "column": 16, - "index": 3265 + "index": 3280 } ], "Dropdown.Toggle": [ @@ -7496,15 +7951,15 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 174, + "line": 173, "column": 14, - "index": 5397 + "index": 5396 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 115, "column": 18, - "index": 3294 + "index": 3309 } ], "AvatarButton": [ @@ -7524,15 +7979,15 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 183, + "line": 182, "column": 14, - "index": 5743 + "index": 5742 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 124, "column": 18, - "index": 3676 + "index": 3691 } ], "Dropdown.Item": [ @@ -7544,51 +7999,51 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 186, + "line": 185, "column": 20, - "index": 5879 + "index": 5878 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 196, + "line": 195, "column": 20, - "index": 6275 + "index": 6274 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 206, + "line": 205, "column": 20, - "index": 6684 + "index": 6683 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 217, + "line": 216, "column": 20, - "index": 7119 + "index": 7118 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 126, "column": 20, - "index": 3779 + "index": 3794 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 133, "column": 20, - "index": 4080 + "index": 4095 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 141, "column": 22, - "index": 4407 + "index": 4422 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 158, "column": 20, - "index": 5201 + "index": 5216 } ], "Navbar": [ @@ -7621,12 +8076,26 @@ "index": 2330 } ], + "useWindowSize": [ + { + "filePath": "src/components/IconWithTooltip/index.jsx", + "line": 10, + "column": 20, + "index": 346 + }, + { + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 59, + "column": 20, + "index": 2035 + } + ], "Tooltip": [ { "filePath": "src/components/IconWithTooltip/index.jsx", "line": 18, "column": 8, - "index": 741 + "index": 583 }, { "filePath": "src/components/InfoHover/index.jsx", @@ -7685,6 +8154,52 @@ "index": 5106 } ], + "Breadcrumb": [ + { + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 116, + "column": 10, + "index": 3144 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 118, + "column": 10, + "index": 3255 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 220, + "column": 10, + "index": 7315 + } + ], + "Card.Body": [ + { + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", + "line": 131, + "column": 14, + "index": 3490 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 133, + "column": 14, + "index": 3611 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 145, + "column": 16, + "index": 4064 + }, + { + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 126, + "column": 6, + "index": 3373 + } + ], "ProgressBar.Annotated": [ { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", @@ -7696,9 +8211,9 @@ "useMediaQuery": [ { "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 20, + "line": 21, "column": 25, - "index": 510 + "index": 564 } ], "Search": [ @@ -7714,13 +8229,13 @@ "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 87, "column": 25, - "index": 2566 + "index": 2536 }, { "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 88, "column": 19, - "index": 2663 + "index": 2633 }, { "filePath": "src/components/ReduxFormSelect/index.jsx", @@ -7746,7 +8261,7 @@ "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 89, "column": 22, - "index": 2754 + "index": 2724 }, { "filePath": "src/components/ReduxFormSelect/index.jsx", @@ -7863,6 +8378,14 @@ "index": 742 } ], + "Groups": [ + { + "filePath": "src/components/NumberCard/NumberCard.test.jsx", + "line": 18, + "column": 12, + "index": 487 + } + ], "ProductTour": [ { "filePath": "src/components/ProductTours/ProductTours.jsx", @@ -7871,12 +8394,36 @@ "index": 2447 } ], - "Form.Check": [ + "Form": [ { "filePath": "src/components/ReduxFormCheckbox/index.jsx", - "line": 19, + "line": 15, + "column": 4, + "index": 243 + }, + { + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 82, + "column": 8, + "index": 3036 + }, + { + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 175, + "column": 8, + "index": 5249 + }, + { + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 92, "column": 6, - "index": 338 + "index": 2612 + }, + { + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 91, + "column": 6, + "index": 2750 } ], "FormControl": [ @@ -7908,69 +8455,69 @@ }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 201, + "line": 202, "column": 12, - "index": 7013 + "index": 7129 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 218, + "line": 219, "column": 14, - "index": 7706 + "index": 7822 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 232, + "line": 233, "column": 14, - "index": 8342 + "index": 8458 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 249, + "line": 250, "column": 14, - "index": 9100 + "index": 9216 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 270, + "line": 271, "column": 14, - "index": 10094 + "index": 10210 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 289, + "line": 290, "column": 14, - "index": 10931 + "index": 11047 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 307, + "line": 308, "column": 14, - "index": 11652 + "index": 11768 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 325, + "line": 326, "column": 14, - "index": 12488 + "index": 12604 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 342, + "line": 343, "column": 10, - "index": 13126 + "index": 13242 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 373, + "line": 374, "column": 12, - "index": 14286 + "index": 14402 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 389, + "line": 390, "column": 12, - "index": 14996 + "index": 15112 }, { "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", @@ -8012,15 +8559,15 @@ "Collapsible": [ { "filePath": "src/components/ReportingConfig/index.jsx", - "line": 140, + "line": 141, "column": 14, - "index": 4482 + "index": 4533 }, { "filePath": "src/components/ReportingConfig/index.jsx", - "line": 175, + "line": 184, "column": 10, - "index": 5983 + "index": 6242 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", @@ -8029,6 +8576,32 @@ "index": 1127 } ], + "Download": [ + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 423, + "column": 36, + "index": 16308 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 74, + "column": 30, + "index": 2122 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 77, + "column": 34, + "index": 2289 + }, + { + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", + "line": 51, + "column": 28, + "index": 1715 + } + ], "SearchField": [ { "filePath": "src/components/SearchBar/index.jsx", @@ -8045,32 +8618,6 @@ "index": 805 } ], - "Form": [ - { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 82, - "column": 8, - "index": 3036 - }, - { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 175, - "column": 8, - "index": 5252 - }, - { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 92, - "column": 6, - "index": 2612 - }, - { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 91, - "column": 6, - "index": 2750 - } - ], "Dropzone": [ { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", @@ -8090,47 +8637,13 @@ "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 233, "column": 16, - "index": 7657 + "index": 7672 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 229, + "line": 228, "column": 14, - "index": 7495 - } - ], - "Download": [ - { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 73, - "column": 30, - "index": 2121 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 76, - "column": 34, - "index": 2288 - }, - { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 51, - "column": 28, - "index": 1715 - } - ], - "Check": [ - { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 75, - "column": 31, - "index": 2243 - }, - { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 53, - "column": 29, - "index": 1833 + "index": 7494 } ], "Card.Status": [ @@ -8138,13 +8651,13 @@ "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 97, "column": 8, - "index": 3685 + "index": 3695 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 107, "column": 8, - "index": 4042 + "index": 4052 } ], "Sync": [ @@ -8152,47 +8665,39 @@ "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 97, "column": 27, - "index": 3704 + "index": 3714 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 107, "column": 27, - "index": 4061 + "index": 4071 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 31, + "line": 27, "column": 34, - "index": 1123 + "index": 1117 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 268, + "line": 267, "column": 48, - "index": 9025 - } - ], - "Breadcrumb": [ - { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 220, - "column": 10, - "index": 7300 + "index": 9024 } ], "MoreVert": [ { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 178, + "line": 177, "column": 21, - "index": 5599 + "index": 5598 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 119, "column": 25, - "index": 3512 + "index": 3527 } ], "PlayCircleFilled": [ @@ -8200,7 +8705,7 @@ "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 129, "column": 22, - "index": 3906 + "index": 3921 } ], "RemoveCircle": [ @@ -8208,13 +8713,13 @@ "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 136, "column": 22, - "index": 4208 + "index": 4223 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 197, + "line": 198, "column": 34, - "index": 5924 + "index": 5922 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RevokeBulkAction.jsx", @@ -8234,7 +8739,7 @@ "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 161, "column": 22, - "index": 5325 + "index": 5340 } ], "ArrowForward": [ @@ -8300,13 +8805,13 @@ "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", "line": 211, "column": 10, - "index": 6471 + "index": 6468 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 187, + "line": 188, "column": 10, - "index": 5519 + "index": 5517 } ], "Bubble": [ @@ -8317,20 +8822,82 @@ "index": 1537 } ], + "School": [ + { + "filePath": "src/components/Sidebar/IconLink.test.jsx", + "line": 31, + "column": 23, + "index": 886 + }, + { + "filePath": "src/components/Sidebar/IconLink.test.jsx", + "line": 41, + "column": 23, + "index": 1256 + } + ], + "TrendingUp": [ + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 73, + "column": 23, + "index": 2397 + } + ], + "InsertChartOutlined": [ + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 78, + "column": 23, + "index": 2541 + } + ], + "Tag": [ + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 84, + "column": 23, + "index": 2766 + } + ], + "CreditCard": [ + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 91, + "column": 23, + "index": 3059 + } + ], "MoneyOutline": [ { "filePath": "src/components/Sidebar/index.jsx", - "line": 102, + "line": 99, "column": 23, - "index": 3588 + "index": 3379 } ], - "StatusAlert": [ + "Description": [ { - "filePath": "src/components/StatusAlert/index.jsx", - "line": 18, - "column": 4, - "index": 335 + "filePath": "src/components/Sidebar/index.jsx", + "line": 112, + "column": 23, + "index": 3897 + } + ], + "Settings": [ + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 119, + "column": 23, + "index": 4163 + } + ], + "Support": [ + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 125, + "column": 23, + "index": 4347 } ], "Email": [ @@ -8347,28 +8914,20 @@ "index": 3216 } ], - "useWindowSize": [ - { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 59, - "column": 20, - "index": 2037 - } - ], - "Card.Body": [ + "ArrowBackIos": [ { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 131, - "column": 6, - "index": 3389 + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 40, + "column": 25, + "index": 1565 } ], "ResponsiveContext.Provider": [ { "filePath": "src/components/subscriptions/tests/SubscriptionCard.test.jsx", - "line": 54, + "line": 52, "column": 6, - "index": 1519 + "index": 1507 } ], "PageBanner": [ @@ -8382,15 +8941,15 @@ "Table": [ { "filePath": "src/components/TableComponent/index.jsx", - "line": 89, + "line": 92, "column": 14, - "index": 2816 + "index": 2909 } ] } }, { - "version": "20.36.2", + "version": "20.46.2", "name": "@edx/frontend-app-authn", "repository": { "type": "git", @@ -8400,58 +8959,82 @@ "usages": { "Hyperlink": [ { - "filePath": "src/base-component/AuthLargeLayout.jsx", + "filePath": "src/base-container/components/default-layout/LargeLayout.jsx", "line": 16, "column": 8, - "index": 445 + "index": 427 }, { - "filePath": "src/base-component/AuthMediumLayout.jsx", + "filePath": "src/base-container/components/default-layout/MediumLayout.jsx", "line": 18, "column": 10, - "index": 522 + "index": 509 }, { - "filePath": "src/base-component/AuthSmallLayout.jsx", - "line": 16, + "filePath": "src/base-container/components/default-layout/SmallLayout.jsx", + "line": 17, + "column": 8, + "index": 461 + }, + { + "filePath": "src/base-container/components/image-layout/ExtraSmallLayout.jsx", + "line": 17, + "column": 6, + "index": 481 + }, + { + "filePath": "src/base-container/components/image-layout/LargeLayout.jsx", + "line": 18, + "column": 6, + "index": 485 + }, + { + "filePath": "src/base-container/components/image-layout/MediumLayout.jsx", + "line": 18, + "column": 6, + "index": 494 + }, + { + "filePath": "src/base-container/components/image-layout/SmallLayout.jsx", + "line": 17, "column": 6, "index": 464 }, { - "filePath": "src/base-component/LargeLayout.jsx", + "filePath": "src/base-container/components/welcome-page-layout/LargeLayout.jsx", "line": 16, "column": 8, - "index": 427 + "index": 441 }, { - "filePath": "src/base-component/MediumLayout.jsx", + "filePath": "src/base-container/components/welcome-page-layout/MediumLayout.jsx", "line": 18, "column": 10, - "index": 509 + "index": 518 }, { - "filePath": "src/base-component/SmallLayout.jsx", - "line": 17, - "column": 8, - "index": 461 + "filePath": "src/base-container/components/welcome-page-layout/SmallLayout.jsx", + "line": 16, + "column": 6, + "index": 460 }, { "filePath": "src/common-components/InstitutionLogistration.jsx", "line": 59, "column": 18, - "index": 1696 + "index": 1700 }, { "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 146, + "line": 143, "column": 14, - "index": 5125 + "index": 5059 }, { "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 160, + "line": 157, "column": 16, - "index": 5709 + "index": 5643 }, { "filePath": "src/login/LoginFailure.jsx", @@ -8467,27 +9050,27 @@ }, { "filePath": "src/login/LoginPage.jsx", - "line": 181, + "line": 180, "column": 10, - "index": 6056 + "index": 6037 }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 193, + "line": 228, "column": 14, - "index": 7200 + "index": 8644 }, { - "filePath": "src/recommendations/RecommendationCard.jsx", - "line": 39, - "column": 6, - "index": 1050 + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 21, + "column": 4, + "index": 415 }, { "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 105, + "line": 71, "column": 10, - "index": 3974 + "index": 2421 }, { "filePath": "src/register/registrationFields/HonorCode.jsx", @@ -8497,97 +9080,151 @@ }, { "filePath": "src/register/registrationFields/HonorCode.jsx", - "line": 38, + "line": 43, "column": 14, - "index": 1539 + "index": 1649 }, { "filePath": "src/register/registrationFields/HonorCode.jsx", - "line": 65, + "line": 75, "column": 14, - "index": 2388 + "index": 2616 }, { "filePath": "src/register/registrationFields/TermsOfService.jsx", "line": 34, "column": 14, - "index": 1110 + "index": 1118 } ], "Image": [ { - "filePath": "src/base-component/AuthLargeLayout.jsx", + "filePath": "src/base-container/components/default-layout/LargeLayout.jsx", "line": 17, "column": 10, - "index": 517 + "index": 499 }, { - "filePath": "src/base-component/AuthMediumLayout.jsx", + "filePath": "src/base-container/components/default-layout/MediumLayout.jsx", "line": 19, "column": 12, - "index": 596 + "index": 583 }, { - "filePath": "src/base-component/AuthSmallLayout.jsx", - "line": 17, + "filePath": "src/base-container/components/default-layout/SmallLayout.jsx", + "line": 18, + "column": 10, + "index": 533 + }, + { + "filePath": "src/base-container/components/image-layout/ExtraSmallLayout.jsx", + "line": 18, + "column": 8, + "index": 551 + }, + { + "filePath": "src/base-container/components/image-layout/LargeLayout.jsx", + "line": 19, + "column": 8, + "index": 555 + }, + { + "filePath": "src/base-container/components/image-layout/MediumLayout.jsx", + "line": 19, + "column": 8, + "index": 564 + }, + { + "filePath": "src/base-container/components/image-layout/SmallLayout.jsx", + "line": 18, "column": 8, "index": 534 }, { - "filePath": "src/base-component/LargeLayout.jsx", + "filePath": "src/base-container/components/welcome-page-layout/LargeLayout.jsx", "line": 17, "column": 10, - "index": 499 + "index": 513 }, { - "filePath": "src/base-component/MediumLayout.jsx", + "filePath": "src/base-container/components/welcome-page-layout/MediumLayout.jsx", "line": 19, "column": 12, - "index": 583 + "index": 592 }, { - "filePath": "src/base-component/SmallLayout.jsx", - "line": 18, - "column": 10, - "index": 533 + "filePath": "src/base-container/components/welcome-page-layout/SmallLayout.jsx", + "line": 17, + "column": 8, + "index": 530 }, { "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 106, + "line": 72, "column": 12, - "index": 4048 + "index": 2495 } ], "breakpoints": [ { - "filePath": "src/base-component/BaseComponent.jsx", - "line": 24, + "filePath": "src/base-container/index.jsx", + "line": 36, "column": 30, - "index": 892 + "index": 1428 }, { - "filePath": "src/base-component/BaseComponent.jsx", - "line": 27, + "filePath": "src/base-container/index.jsx", + "line": 39, "column": 30, - "index": 1067 + "index": 1618 }, { - "filePath": "src/base-component/BaseComponent.jsx", - "line": 27, + "filePath": "src/base-container/index.jsx", + "line": 39, + "column": 68, + "index": 1656 + }, + { + "filePath": "src/base-container/index.jsx", + "line": 42, + "column": 30, + "index": 1836 + }, + { + "filePath": "src/base-container/index.jsx", + "line": 42, "column": 69, - "index": 1106 + "index": 1875 }, { - "filePath": "src/base-component/BaseComponent.jsx", - "line": 30, + "filePath": "src/base-container/index.jsx", + "line": 45, "column": 30, - "index": 1283 + "index": 2057 }, { - "filePath": "src/base-component/BaseComponent.jsx", - "line": 30, - "column": 73, - "index": 1326 + "filePath": "src/base-container/index.jsx", + "line": 59, + "column": 30, + "index": 2512 + }, + { + "filePath": "src/base-container/index.jsx", + "line": 62, + "column": 30, + "index": 2694 + }, + { + "filePath": "src/base-container/index.jsx", + "line": 62, + "column": 69, + "index": 2733 + }, + { + "filePath": "src/base-container/index.jsx", + "line": 65, + "column": 30, + "index": 2917 }, { "filePath": "src/data/utils/useMobileResponsive.js", @@ -8605,33 +9242,33 @@ }, { "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 112, + "line": 109, "column": 10, - "index": 3596 + "index": 3535 }, { "filePath": "src/login/LoginPage.jsx", - "line": 259, + "line": 255, "column": 10, - "index": 9028 + "index": 8929 }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 189, + "line": 224, "column": 8, - "index": 7024 + "index": 8476 }, { "filePath": "src/register/RegistrationPage.jsx", - "line": 543, + "line": 577, "column": 12, - "index": 19566 + "index": 20898 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 177, + "line": 174, "column": 14, - "index": 6007 + "index": 5916 } ], "Button": [ @@ -8645,7 +9282,7 @@ "filePath": "src/common-components/EnterpriseSSO.jsx", "line": 69, "column": 14, - "index": 2589 + "index": 2607 }, { "filePath": "src/common-components/InstitutionLogistration.jsx", @@ -8663,7 +9300,7 @@ "filePath": "src/register/registrationFields/UsernameField.jsx", "line": 24, "column": 10, - "index": 915 + "index": 928 } ], "Icon": [ @@ -8671,7 +9308,7 @@ "filePath": "src/common-components/EnterpriseSSO.jsx", "line": 61, "column": 28, - "index": 2279 + "index": 2297 }, { "filePath": "src/common-components/InstitutionLogistration.jsx", @@ -8731,7 +9368,7 @@ "filePath": "src/common-components/SocialAuthProviders.jsx", "line": 43, "column": 16, - "index": 1517 + "index": 1535 }, { "filePath": "src/field-renderer/FieldRenderer.jsx", @@ -8743,43 +9380,43 @@ "filePath": "src/forgot-password/ForgotPasswordPage.jsx", "line": 92, "column": 6, - "index": 2960 + "index": 2955 }, { "filePath": "src/login/LoginPage.jsx", - "line": 182, + "line": 181, "column": 12, - "index": 6174 + "index": 6155 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 69, + "line": 78, "column": 6, - "index": 2457 + "index": 2673 }, { "filePath": "src/register/registrationFields/EmailField.jsx", "line": 31, "column": 26, - "index": 958 + "index": 981 }, { "filePath": "src/register/registrationFields/UsernameField.jsx", "line": 42, "column": 49, - "index": 1538 + "index": 1556 }, { "filePath": "src/register/registrationFields/UsernameField.jsx", "line": 46, "column": 49, - "index": 1884 + "index": 1934 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 142, + "line": 143, "column": 6, - "index": 4555 + "index": 4594 } ], "Login": [ @@ -8787,13 +9424,13 @@ "filePath": "src/common-components/EnterpriseSSO.jsx", "line": 61, "column": 56, - "index": 2307 + "index": 2325 }, { "filePath": "src/common-components/SocialAuthProviders.jsx", "line": 43, "column": 44, - "index": 1545 + "index": 1563 } ], "Form.Group": [ @@ -8871,7 +9508,7 @@ "filePath": "src/common-components/FormGroup.jsx", "line": 45, "column": 6, - "index": 1318 + "index": 1330 } ], "Institution": [ @@ -8883,9 +9520,9 @@ }, { "filePath": "src/login/LoginPage.jsx", - "line": 182, + "line": 181, "column": 23, - "index": 6185 + "index": 6166 } ], "useToggle": [ @@ -8899,7 +9536,7 @@ "filePath": "src/login/ChangePasswordPrompt.jsx", "line": 30, "column": 32, - "index": 1115 + "index": 1129 } ], "IconButton": [ @@ -8919,13 +9556,13 @@ "filePath": "src/register/registrationFields/UsernameField.jsx", "line": 42, "column": 17, - "index": 1506 + "index": 1524 }, { "filePath": "src/register/registrationFields/UsernameField.jsx", "line": 46, "column": 17, - "index": 1852 + "index": 1902 } ], "VisibilityOff": [ @@ -9027,9 +9664,9 @@ }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 184, + "line": 219, "column": 10, - "index": 6730 + "index": 8182 }, { "filePath": "src/register/RegistrationFailure.jsx", @@ -9083,9 +9720,9 @@ }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 185, + "line": 220, "column": 12, - "index": 6817 + "index": 8269 }, { "filePath": "src/register/RegistrationFailure.jsx", @@ -9123,9 +9760,9 @@ }, { "filePath": "src/register/registrationFields/HonorCode.jsx", - "line": 50, + "line": 60, "column": 6, - "index": 1854 + "index": 2074 }, { "filePath": "src/register/registrationFields/TermsOfService.jsx", @@ -9151,13 +9788,13 @@ "filePath": "src/register/registrationFields/EmailField.jsx", "line": 25, "column": 12, - "index": 767 + "index": 790 }, { "filePath": "src/register/registrationFields/EmailField.jsx", "line": 39, "column": 8, - "index": 1228 + "index": 1263 } ], "ChevronLeft": [ @@ -9165,19 +9802,19 @@ "filePath": "src/forgot-password/ForgotPasswordPage.jsx", "line": 92, "column": 17, - "index": 2971 + "index": 2966 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 69, + "line": 78, "column": 17, - "index": 2468 + "index": 2684 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 142, + "line": 143, "column": 17, - "index": 4566 + "index": 4605 } ], "Tabs": [ @@ -9185,31 +9822,37 @@ "filePath": "src/forgot-password/ForgotPasswordPage.jsx", "line": 105, "column": 8, - "index": 3299 + "index": 3294 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 91, + "line": 99, "column": 16, - "index": 3102 + "index": 3248 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 107, + "line": 115, "column": 18, - "index": 3772 + "index": 3918 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 112, + "line": 120, "column": 18, - "index": 4070 + "index": 4216 + }, + { + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 80, + "column": 12, + "index": 3011 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", "line": 166, "column": 10, - "index": 5404 + "index": 5375 } ], "Tab": [ @@ -9217,89 +9860,101 @@ "filePath": "src/forgot-password/ForgotPasswordPage.jsx", "line": 106, "column": 10, - "index": 3377 + "index": 3405 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 92, + "line": 100, "column": 18, - "index": 3201 + "index": 3347 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 108, + "line": 116, "column": 20, - "index": 3873 + "index": 4019 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 113, + "line": 121, "column": 20, - "index": 4175 + "index": 4321 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 114, + "line": 122, "column": 20, - "index": 4285 + "index": 4431 + }, + { + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 86, + "column": 14, + "index": 3200 + }, + { + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 92, + "column": 14, + "index": 3487 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", "line": 167, "column": 12, - "index": 5484 + "index": 5488 } ], "StatefulButton": [ { "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 131, + "line": 128, "column": 12, - "index": 4541 + "index": 4480 }, { "filePath": "src/login/LoginPage.jsx", - "line": 281, + "line": 277, "column": 12, - "index": 10108 + "index": 10009 }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 206, + "line": 241, "column": 12, - "index": 7726 + "index": 9170 }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 218, + "line": 253, "column": 12, - "index": 8233 + "index": 9680 }, { "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 117, - "column": 14, - "index": 4610 + "line": 101, + "column": 12, + "index": 3858 }, { "filePath": "src/register/RegistrationPage.jsx", - "line": 602, + "line": 637, "column": 14, - "index": 22360 + "index": 23752 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 196, + "line": 193, "column": 16, - "index": 6939 + "index": 6848 } ], "ModalDialog": [ { "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 37, + "line": 41, "column": 4, - "index": 1306 + "index": 1413 }, { "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", @@ -9311,9 +9966,9 @@ "ModalDialog.Header": [ { "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 44, + "line": 48, "column": 6, - "index": 1476 + "index": 1583 }, { "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", @@ -9325,9 +9980,9 @@ "ModalDialog.Title": [ { "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 45, + "line": 49, "column": 8, - "index": 1505 + "index": 1612 }, { "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", @@ -9339,9 +9994,9 @@ "ModalDialog.Body": [ { "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 49, + "line": 53, "column": 6, - "index": 1662 + "index": 1769 }, { "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", @@ -9353,9 +10008,9 @@ "ModalDialog.Footer": [ { "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 52, + "line": 56, "column": 6, - "index": 1784 + "index": 1891 }, { "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", @@ -9367,9 +10022,9 @@ "ActionRow": [ { "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 53, + "line": 57, "column": 8, - "index": 1813 + "index": 1920 }, { "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", @@ -9381,9 +10036,9 @@ "ModalDialog.CloseButton": [ { "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 58, + "line": 62, "column": 12, - "index": 1965 + "index": 2072 } ], "Error": [ @@ -9395,9 +10050,9 @@ }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 184, + "line": 219, "column": 77, - "index": 6797 + "index": 8249 }, { "filePath": "src/register/RegistrationFailure.jsx", @@ -9408,8 +10063,8 @@ { "filePath": "src/register/registrationFields/EmailField.jsx", "line": 22, - "column": 73, - "index": 637 + "column": 84, + "index": 648 }, { "filePath": "src/reset-password/ResetPasswordFailure.jsx", @@ -9420,94 +10075,74 @@ ], "Card": [ { - "filePath": "src/recommendations/RecommendationCard.jsx", - "line": 46, - "column": 8, - "index": 1245 + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 27, + "column": 6, + "index": 546 } ], "Card.ImageCap": [ { - "filePath": "src/recommendations/RecommendationCard.jsx", - "line": 47, - "column": 10, - "index": 1274 + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 32, + "column": 8, + "index": 667 } ], "Card.Header": [ { - "filePath": "src/recommendations/RecommendationCard.jsx", - "line": 53, - "column": 10, - "index": 1505 + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 40, + "column": 8, + "index": 959 } ], "Card.Section": [ { - "filePath": "src/recommendations/RecommendationCard.jsx", - "line": 57, - "column": 10, - "index": 1617 + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 45, + "column": 8, + "index": 1100 } ], - "Card.Footer": [ + "Badge": [ { - "filePath": "src/recommendations/RecommendationCard.jsx", - "line": 58, - "column": 10, - "index": 1644 + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 47, + "column": 12, + "index": 1188 } ], "Container": [ - { - "filePath": "src/recommendations/RecommendationsList.jsx", - "line": 12, - "column": 4, - "index": 272 - } - ], - "Spinner": [ { "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 130, - "column": 12, - "index": 4985 - }, - { - "filePath": "src/register/RegistrationPage.jsx", - "line": 529, - "column": 12, - "index": 19003 - }, - { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 151, - "column": 13, - "index": 4824 + "line": 76, + "column": 10, + "index": 2728 } ], "FormAutosuggestOption": [ { "filePath": "src/register/registrationFields/CountryField.jsx", - "line": 29, + "line": 37, "column": 4, - "index": 947 + "index": 1244 } ], "FormAutosuggest": [ { "filePath": "src/register/registrationFields/CountryField.jsx", - "line": 36, + "line": 44, "column": 6, - "index": 1120 + "index": 1417 } ], "FormControlFeedback": [ { "filePath": "src/register/registrationFields/CountryField.jsx", - "line": 49, + "line": 57, "column": 8, - "index": 1638 + "index": 1921 } ], "Close": [ @@ -9515,25 +10150,39 @@ "filePath": "src/register/registrationFields/EmailField.jsx", "line": 31, "column": 37, - "index": 969 + "index": 992 }, { "filePath": "src/register/registrationFields/UsernameField.jsx", "line": 42, "column": 34, - "index": 1523 + "index": 1541 }, { "filePath": "src/register/registrationFields/UsernameField.jsx", "line": 46, "column": 34, - "index": 1869 + "index": 1919 + } + ], + "Spinner": [ + { + "filePath": "src/register/RegistrationPage.jsx", + "line": 558, + "column": 12, + "index": 20195 + }, + { + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 151, + "column": 13, + "index": 4821 } ] } }, { - "version": "20.30.1", + "version": "20.45.0", "name": "@edx/frontend-app-communications", "repository": { "type": "git", @@ -9550,21 +10199,21 @@ }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 275, + "line": 276, "column": 8, - "index": 9619 + "index": 9676 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 284, + "line": 285, "column": 8, - "index": 10168 + "index": 10225 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 296, + "line": 297, "column": 8, - "index": 10818 + "index": 10875 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", @@ -9582,15 +10231,15 @@ }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 276, + "line": 277, "column": 10, - "index": 9667 + "index": 9724 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 285, + "line": 286, "column": 10, - "index": 10213 + "index": 10270 } ], "Form.CheckboxSet": [ @@ -9640,39 +10289,39 @@ }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 299, + "line": 300, "column": 14, - "index": 10931 + "index": 10988 } ], "useToggle": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 59, + "line": 60, "column": 59, - "index": 2026 + "index": 2083 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 40, + "line": 42, "column": 68, - "index": 1502 + "index": 1560 } ], "Form": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 268, + "line": 269, "column": 6, - "index": 9379 + "index": 9436 } ], "Form.Control": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 277, + "line": 278, "column": 10, - "index": 9787 + "index": 9844 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", @@ -9690,21 +10339,21 @@ "Button": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 323, + "line": 324, "column": 32, - "index": 11863 + "index": 11920 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 110, + "line": 112, "column": 10, - "index": 3778 + "index": 3836 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", - "line": 46, - "column": 10, - "index": 1806 + "line": 52, + "column": 12, + "index": 2104 }, { "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", @@ -9720,177 +10369,177 @@ }, { "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", - "line": 10, + "line": 13, "column": 4, - "index": 298 + "index": 370 } ], "StatefulButton": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 324, + "line": 325, "column": 12, - "index": 11981 + "index": 12038 } ], "Icon": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 333, + "line": 334, "column": 46, - "index": 12303 + "index": 12360 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 334, + "line": 335, "column": 47, - "index": 12371 + "index": 12428 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 335, + "line": 336, "column": 49, - "index": 12442 + "index": 12499 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 336, + "line": 337, "column": 46, - "index": 12510 + "index": 12567 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 337, + "line": 338, "column": 47, - "index": 12609 + "index": 12666 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 338, + "line": 339, "column": 56, - "index": 12687 + "index": 12744 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 339, + "line": 340, "column": 44, - "index": 12753 + "index": 12810 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 173, + "line": 175, "column": 55, - "index": 5592 + "index": 5650 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 176, + "line": 178, "column": 28, - "index": 5740 + "index": 5798 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 185, + "line": 187, "column": 49, - "index": 6093 + "index": 6151 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 147, + "line": 150, "column": 12, - "index": 5172 + "index": 5286 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", - "line": 103, + "line": 104, "column": 12, - "index": 3336 + "index": 3392 }, { "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", - "line": 15, + "line": 18, "column": 6, - "index": 514 + "index": 556 } ], "Send": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 333, + "line": 334, "column": 57, - "index": 12314 + "index": 12371 } ], "Event": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 334, + "line": 335, "column": 58, - "index": 12382 + "index": 12439 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 335, + "line": 336, "column": 60, - "index": 12453 + "index": 12510 } ], "SpinnerSimple": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 336, + "line": 337, "column": 57, - "index": 12521 + "index": 12578 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 147, + "line": 150, "column": 23, - "index": 5183 + "index": 5297 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", - "line": 103, + "line": 104, "column": 23, - "index": 3347 + "index": 3403 } ], "Check": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 337, + "line": 338, "column": 58, - "index": 12620 + "index": 12677 }, { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 338, + "line": 339, "column": 67, - "index": 12698 + "index": 12755 } ], "Cancel": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 339, + "line": 340, "column": 55, - "index": 12764 + "index": 12821 } ], "Toast": [ { "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 358, + "line": 359, "column": 12, - "index": 13850 + "index": 13907 } ], "Alert": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 69, + "line": 71, "column": 8, - "index": 2355 + "index": 2413 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailHistoryTable.jsx", @@ -9900,33 +10549,33 @@ }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", - "line": 11, - "column": 6, - "index": 325 + "line": 13, + "column": 4, + "index": 388 } ], "Info": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 69, + "line": 71, "column": 38, - "index": 2385 + "index": 2443 } ], "Alert.Heading": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 70, + "line": 72, "column": 10, - "index": 2402 + "index": 2460 } ], "DataTable": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 135, + "line": 137, "column": 8, - "index": 4307 + "index": 4365 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailHistoryTable.jsx", @@ -9938,53 +10587,53 @@ "IconButton": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 173, + "line": 175, "column": 18, - "index": 5555 + "index": 5613 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 174, + "line": 176, "column": 18, - "index": 5667 + "index": 5725 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 185, + "line": 187, "column": 18, - "index": 6062 + "index": 6120 } ], "Visibility": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 173, + "line": 175, "column": 35, - "index": 5572 + "index": 5630 } ], "Delete": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 175, + "line": 177, "column": 25, - "index": 5704 + "index": 5762 } ], "Edit": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 185, + "line": 187, "column": 35, - "index": 6079 + "index": 6137 } ], "Collapsible": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 130, + "line": 132, "column": 8, - "index": 4375 + "index": 4433 }, { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", @@ -9996,25 +10645,63 @@ "WarningFilled": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", - "line": 11, - "column": 37, - "index": 356 + "line": 13, + "column": 35, + "index": 419 } ], "Hyperlink": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", - "line": 16, - "column": 8, - "index": 556 + "line": 18, + "column": 6, + "index": 609 } ], - "Modal": [ + "ModalDialog": [ { "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", "line": 15, "column": 6, - "index": 527 + "index": 544 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 20, + "column": 8, + "index": 664 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 47, + "column": 8, + "index": 1853 + } + ], + "ActionRow": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 48, + "column": 10, + "index": 1884 + }, + { + "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", + "line": 25, + "column": 8, + "index": 667 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 49, + "column": 12, + "index": 1908 } ], "Container": [ @@ -10033,20 +10720,12 @@ "index": 508 } ], - "ActionRow": [ - { - "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", - "line": 25, - "column": 8, - "index": 667 - } - ], "ArrowBack": [ { "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", - "line": 16, + "line": 19, "column": 13, - "index": 533 + "index": 575 } ], "Nav": [ @@ -10084,7 +10763,7 @@ } }, { - "version": "20.32.0", + "version": "20.45.4", "name": "@edx/frontend-app-course-authoring", "repository": { "type": "git", @@ -10092,298 +10771,408 @@ }, "folderName": "frontend-app-course-authoring", "usages": { - "Collapsible.Advanced": [ + "Container": [ { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 19, - "column": 2, - "index": 365 - } - ], - "Collapsible.Trigger": [ + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 128, + "column": 6, + "index": 4704 + }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 27, + "filePath": "src/course-team/CourseTeam.jsx", + "line": 60, + "column": 6, + "index": 1613 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 114, + "column": 6, + "index": 3655 + }, + { + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 113, + "column": 6, + "index": 3842 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 116, "column": 4, - "index": 558 - } - ], - "Collapsible.Visible": [ + "index": 3410 + }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 32, + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 107, "column": 6, - "index": 767 + "index": 3807 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 37, + "filePath": "src/schedule-and-details/index.jsx", + "line": 159, "column": 6, - "index": 980 + "index": 4826 + } + ], + "Info": [ + { + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 132, + "column": 20, + "index": 4890 }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", - "line": 14, - "column": 8, - "index": 400 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 214, + "column": 46, + "index": 6556 }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", - "line": 17, - "column": 8, - "index": 549 + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 327, + "column": 46, + "index": 9511 } ], - "IconButton": [ + "TransitionReplace": [ { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 34, + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 139, "column": 10, - "index": 853 + "index": 5201 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 40, - "column": 12, - "index": 1092 + "filePath": "src/generic/FieldFeedback.jsx", + "line": 14, + "column": 4, + "index": 276 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 53, - "column": 10, - "index": 1431 + "filePath": "src/generic/FieldFeedback.jsx", + "line": 24, + "column": 4, + "index": 707 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 41, - "column": 10, - "index": 1313 + "filePath": "src/generic/FormikErrorFeedback.jsx", + "line": 12, + "column": 4, + "index": 377 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 51, + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 39, + "column": 2, + "index": 1347 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 90, "column": 6, - "index": 1603 - } - ], - "ExpandMore": [ + "index": 2919 + }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 34, - "column": 43, - "index": 886 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 103, + "column": 12, + "index": 3541 + }, + { + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 40, + "column": 4, + "index": 1413 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 46, + "column": 2, + "index": 1606 } ], - "Icon": [ + "CheckCircle": [ { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 34, - "column": 63, - "index": 906 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 145, + "column": 22, + "index": 5457 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 47, + "filePath": "src/grading-settings/assignment-section/index.jsx", + "line": 172, "column": 22, - "index": 1305 + "index": 7027 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 53, - "column": 65, - "index": 1486 - }, + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 118, + "column": 18, + "index": 4019 + } + ], + "Layout": [ { - "filePath": "src/pages-and-resources/live/Settings.jsx", - "line": 108, - "column": 24, - "index": 4481 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 161, + "column": 10, + "index": 6198 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 43, - "column": 20, - "index": 1376 + "filePath": "src/course-team/CourseTeam.jsx", + "line": 62, + "column": 10, + "index": 1718 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 53, - "column": 16, - "index": 1654 - } - ], - "Delete": [ + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 149, + "column": 8, + "index": 4840 + }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 46, - "column": 19, - "index": 1275 - } - ], - "ExpandLess": [ + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 127, + "column": 12, + "index": 4404 + }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 53, - "column": 45, - "index": 1466 + "filePath": "src/schedule-and-details/index.jsx", + "line": 184, + "column": 10, + "index": 5721 } ], - "Collapsible.Body": [ + "Layout.Element": [ { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 57, - "column": 4, - "index": 1585 - } - ], - "Card": [ + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 168, + "column": 12, + "index": 6450 + }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 13, - "column": 2, - "index": 225 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 221, + "column": 12, + "index": 9101 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 67, - "column": 4, - "index": 2759 + "filePath": "src/course-team/CourseTeam.jsx", + "line": 69, + "column": 12, + "index": 1970 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", - "line": 120, + "filePath": "src/course-team/CourseTeam.jsx", + "line": 137, "column": 12, - "index": 5462 + "index": 4933 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 73, - "column": 4, - "index": 1854 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 156, + "column": 10, + "index": 5188 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 23, - "column": 4, - "index": 762 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 202, + "column": 10, + "index": 7088 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 62, - "column": 4, - "index": 1856 + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 134, + "column": 14, + "index": 4670 + }, + { + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 206, + "column": 14, + "index": 8255 + }, + { + "filePath": "src/schedule-and-details/index.jsx", + "line": 191, + "column": 12, + "index": 5973 + }, + { + "filePath": "src/schedule-and-details/index.jsx", + "line": 290, + "column": 12, + "index": 10440 } ], - "Card.Header": [ + "Button": [ { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 14, - "column": 4, - "index": 266 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 180, + "column": 22, + "index": 7086 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 74, - "column": 6, - "index": 1897 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 247, + "column": 14, + "index": 10079 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 33, - "column": 6, - "index": 1055 + "filePath": "src/advanced-settings/modal-error/ModalError.jsx", + "line": 18, + "column": 8, + "index": 568 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 68, + "filePath": "src/advanced-settings/modal-error/ModalError.jsx", + "line": 24, + "column": 8, + "index": 764 + }, + { + "filePath": "src/course-team/add-team-member/AddTeamMember.jsx", + "line": 18, "column": 6, - "index": 2018 - } - ], - "Card.Body": [ + "index": 691 + }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 19, - "column": 4, - "index": 361 + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 42, + "column": 14, + "index": 1433 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 79, - "column": 6, - "index": 2054 + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 45, + "column": 14, + "index": 1588 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 50, - "column": 6, - "index": 1697 + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 41, + "column": 12, + "index": 1414 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 78, - "column": 6, - "index": 2325 - } - ], - "Card.Section": [ + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 48, + "column": 12, + "index": 1769 + }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 20, - "column": 6, - "index": 379 + "filePath": "src/course-team/CourseTeam.jsx", + "line": 76, + "column": 22, + "index": 2285 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 80, - "column": 8, - "index": 2074 + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 43, + "column": 10, + "index": 904 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 52, + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 47, + "column": 12, + "index": 1069 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 108, + "column": 12, + "index": 3417 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 129, "column": 10, - "index": 1757 + "index": 4224 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 79, - "column": 8, - "index": 2345 - } - ], - "Card.Footer": [ + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 143, + "column": 12, + "index": 4679 + }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 21, + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 223, + "column": 12, + "index": 7951 + }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 302, + "column": 14, + "index": 9368 + }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 305, + "column": 14, + "index": 9533 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 32, "column": 6, - "index": 471 + "index": 757 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 83, - "column": 8, - "index": 2236 - } - ], - "Button": [ + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 60, + "column": 6, + "index": 1805 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 139, + "column": 12, + "index": 4606 + }, { "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 22, + "line": 26, "column": 8, - "index": 493 + "index": 592 }, { "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 25, + "line": 29, "column": 8, - "index": 590 + "index": 719 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/BlackoutDatesField.jsx", - "line": 74, - "column": 16, - "index": 2417 + "filePath": "src/grading-settings/assignment-section/index.jsx", + "line": 177, + "column": 12, + "index": 7229 + }, + { + "filePath": "src/grading-settings/grading-scale/components/GradingScaleSegment.jsx", + "line": 49, + "column": 6, + "index": 1592 + }, + { + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 196, + "column": 20, + "index": 7873 + }, + { + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 235, + "column": 14, + "index": 9376 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictionSchedules.jsx", + "line": 67, + "column": 14, + "index": 2182 }, { "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", @@ -10403,6 +11192,24 @@ "column": 10, "index": 2416 }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DiscussionRestriction.jsx", + "line": 41, + "column": 4, + "index": 1475 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 170, + "column": 12, + "index": 5687 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 171, + "column": 12, + "index": 5802 + }, { "filePath": "src/pages-and-resources/discussions/app-list/AppListNextButton.jsx", "line": 20, @@ -10417,9 +11224,9 @@ }, { "filePath": "src/pages-and-resources/PagesAndResources.jsx", - "line": 52, + "line": 75, "column": 12, - "index": 1984 + "index": 2784 }, { "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", @@ -10443,377 +11250,3059 @@ "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 404, "column": 8, - "index": 16605 - } - ], - "Alert": [ - { - "filePath": "src/generic/ConnectionErrorAlert.jsx", - "line": 9, - "column": 2, - "index": 289 + "index": 16663 }, { - "filePath": "src/generic/PermissionDeniedAlert.jsx", - "line": 6, - "column": 2, - "index": 170 - }, - { - "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", - "line": 9, - "column": 2, - "index": 297 + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 119, + "column": 10, + "index": 3343 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 213, - "column": 16, - "index": 6507 + "filePath": "src/schedule-and-details/index.jsx", + "line": 320, + "column": 14, + "index": 11468 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 73, + "filePath": "src/schedule-and-details/instructors-section/index.jsx", + "line": 72, "column": 6, - "index": 2213 - }, - { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 126, - "column": 18, - "index": 4058 + "index": 1986 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 255, - "column": 12, - "index": 9731 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 95, + "column": 8, + "index": 3694 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 422, - "column": 6, - "index": 16242 + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 38, + "column": 10, + "index": 1263 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 449, + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 43, "column": 6, - "index": 16972 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 232, - "column": 12, - "index": 8667 + "index": 1339 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 443, + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 61, "column": 6, - "index": 17538 + "index": 1887 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 465, - "column": 6, - "index": 18171 + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 37, + "column": 8, + "index": 1044 } ], - "Alert.Link": [ + "StatefulButton": [ { - "filePath": "src/generic/ConnectionErrorAlert.jsx", - "line": 15, + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 251, "column": 12, - "index": 685 + "index": 10258 }, { - "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", - "line": 15, + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 111, "column": 12, - "index": 697 + "index": 3576 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 157, - "column": 16, - "index": 6447 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 195, + "column": 12, + "index": 6864 + }, + { + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 239, + "column": 12, + "index": 9549 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 202, + "column": 16, + "index": 6065 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigFormSaveButton.jsx", + "line": 36, + "column": 6, + "index": 1528 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 588, + "column": 12, + "index": 22858 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 162, + "column": 6, + "index": 4488 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 314, + "column": 16, + "index": 8972 + }, + { + "filePath": "src/schedule-and-details/index.jsx", + "line": 328, + "column": 12, + "index": 11722 + } + ], + "Warning": [ + { + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 259, + "column": 16, + "index": 10570 + }, + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 106, + "column": 29, + "index": 3078 + }, + { + "filePath": "src/grading-settings/assignment-section/index.jsx", + "line": 137, + "column": 22, + "index": 5397 + }, + { + "filePath": "src/grading-settings/assignment-section/index.jsx", + "line": 158, + "column": 22, + "index": 6360 + }, + { + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 247, + "column": 16, + "index": 9886 + } + ], + "AlertModal": [ + { + "filePath": "src/advanced-settings/modal-error/ModalError.jsx", + "line": 12, + "column": 2, + "index": 413 + }, + { + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 36, + "column": 4, + "index": 730 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 102, + "column": 6, + "index": 3196 + }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 296, + "column": 8, + "index": 9135 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 162, + "column": 6, + "index": 5413 + } + ], + "ActionRow": [ + { + "filePath": "src/advanced-settings/modal-error/ModalError.jsx", + "line": 17, + "column": 6, + "index": 548 + }, + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 64, + "column": 14, + "index": 1601 + }, + { + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 41, + "column": 12, + "index": 1407 + }, + { + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 42, + "column": 8, + "index": 882 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 66, + "column": 6, + "index": 1696 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 107, + "column": 10, + "index": 3393 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 124, + "column": 8, + "index": 4068 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 86, + "column": 12, + "index": 2353 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 103, + "column": 12, + "index": 3002 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 118, + "column": 12, + "index": 3535 + }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 301, + "column": 12, + "index": 9342 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 40, + "column": 12, + "index": 878 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 64, + "column": 10, + "index": 1809 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 135, + "column": 10, + "index": 4419 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 83, + "column": 6, + "index": 2459 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 134, + "column": 10, + "index": 4198 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 169, + "column": 10, + "index": 5663 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 584, + "column": 10, + "index": 22662 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 90, + "column": 6, + "index": 2715 + }, + { + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 67, + "column": 12, + "index": 2125 + } + ], + "Alert": [ + { + "filePath": "src/advanced-settings/modal-error/ModalErrorListItem.jsx", + "line": 13, + "column": 6, + "index": 444 + }, + { + "filePath": "src/generic/alert-message/index.jsx", + "line": 6, + "column": 2, + "index": 165 + }, + { + "filePath": "src/generic/AlertProctoringError.jsx", + "line": 7, + "column": 4, + "index": 223 + }, + { + "filePath": "src/generic/ConnectionErrorAlert.jsx", + "line": 9, + "column": 2, + "index": 289 + }, + { + "filePath": "src/generic/PermissionDeniedAlert.jsx", + "line": 6, + "column": 2, + "index": 170 + }, + { + "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", + "line": 9, + "column": 2, + "index": 297 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 214, + "column": 16, + "index": 6526 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 73, + "column": 8, + "index": 2216 + }, + { + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 126, + "column": 18, + "index": 4058 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 255, + "column": 12, + "index": 9745 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 422, + "column": 6, + "index": 16256 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 449, + "column": 6, + "index": 16986 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 327, + "column": 16, + "index": 9481 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 232, + "column": 12, + "index": 8685 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 443, + "column": 6, + "index": 17596 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 465, + "column": 6, + "index": 18229 + } + ], + "Icon": [ + { + "filePath": "src/advanced-settings/modal-error/ModalErrorListItem.jsx", + "line": 15, + "column": 10, + "index": 527 + }, + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 70, + "column": 26, + "index": 1812 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 59, + "column": 15, + "index": 1574 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 76, + "column": 18, + "index": 2123 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 86, + "column": 18, + "index": 2578 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 96, + "column": 18, + "index": 3003 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 95, + "column": 15, + "index": 3033 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 96, + "column": 15, + "index": 3068 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 95, + "column": 24, + "index": 2664 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 112, + "column": 24, + "index": 3313 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 127, + "column": 24, + "index": 3938 + }, + { + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 28, + "column": 14, + "index": 567 + }, + { + "filePath": "src/files-and-uploads/FileThumbnail.jsx", + "line": 35, + "column": 10, + "index": 796 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 60, + "column": 16, + "index": 1793 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 47, + "column": 14, + "index": 1271 + }, + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 34, + "column": 63, + "index": 906 + }, + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 47, + "column": 22, + "index": 1305 + }, + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 53, + "column": 65, + "index": 1486 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 72, + "column": 16, + "index": 1905 + }, + { + "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", + "line": 48, + "column": 10, + "index": 1351 + }, + { + "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", + "line": 195, + "column": 16, + "index": 6181 + }, + { + "filePath": "src/pages-and-resources/live/Settings.jsx", + "line": 108, + "column": 20, + "index": 4421 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 42, + "column": 20, + "index": 1375 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 52, + "column": 16, + "index": 1653 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 170, + "column": 19, + "index": 4748 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 171, + "column": 19, + "index": 4793 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 172, + "column": 18, + "index": 4863 + }, + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 29, + "column": 8, + "index": 889 + }, + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 37, + "column": 8, + "index": 1127 + }, + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 44, + "column": 8, + "index": 1317 + }, + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 51, + "column": 8, + "index": 1518 + }, + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 58, + "column": 8, + "index": 1710 + }, + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 65, + "column": 8, + "index": 1899 + }, + { + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 101, + "column": 10, + "index": 2977 + } + ], + "Error": [ + { + "filePath": "src/advanced-settings/modal-error/ModalErrorListItem.jsx", + "line": 15, + "column": 21, + "index": 538 + } + ], + "useToggle": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 33, + "column": 32, + "index": 793 + }, + { + "filePath": "src/course-team/hooks.jsx", + "line": 32, + "column": 59, + "index": 1075 + }, + { + "filePath": "src/course-team/hooks.jsx", + "line": 33, + "column": 46, + "index": 1139 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 33, + "column": 86, + "index": 829 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 52, + "column": 32, + "index": 1547 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 53, + "column": 59, + "index": 1624 + }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 54, + "column": 56, + "index": 1360 + }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 55, + "column": 47, + "index": 1425 + }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 57, + "column": 86, + "index": 1585 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 25, + "column": 59, + "index": 497 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 25, + "column": 59, + "index": 494 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 25, + "column": 44, + "index": 589 + } + ], + "Card": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 60, + "column": 6, + "index": 1460 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 37, + "column": 6, + "index": 754 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 37, + "column": 6, + "index": 751 + }, + { + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 17, + "column": 2, + "index": 304 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 110, + "column": 6, + "index": 2880 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 67, + "column": 4, + "index": 2759 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", + "line": 122, + "column": 12, + "index": 5585 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 73, + "column": 4, + "index": 1854 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 23, + "column": 4, + "index": 762 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 61, + "column": 4, + "index": 1855 + }, + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 95, + "column": 4, + "index": 2629 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 17, + "column": 4, + "index": 459 + }, + { + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 18, + "column": 6, + "index": 547 + }, + { + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 31, + "column": 6, + "index": 977 + } + ], + "Card.Body": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 61, + "column": 8, + "index": 1512 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 51, + "column": 8, + "index": 1387 + }, + { + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 23, + "column": 4, + "index": 440 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 111, + "column": 8, + "index": 2895 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 79, + "column": 6, + "index": 2054 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 50, + "column": 6, + "index": 1697 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 77, + "column": 6, + "index": 2324 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 18, + "column": 6, + "index": 500 + }, + { + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 19, + "column": 8, + "index": 562 + }, + { + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 43, + "column": 12, + "index": 1371 + } + ], + "Card.Header": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 62, + "column": 10, + "index": 1553 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 38, + "column": 8, + "index": 832 + }, + { + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 18, + "column": 4, + "index": 345 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 74, + "column": 6, + "index": 1897 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 33, + "column": 6, + "index": 1055 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 67, + "column": 6, + "index": 2017 + }, + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 96, + "column": 6, + "index": 2642 + } + ], + "IconButton": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 66, + "column": 16, + "index": 1671 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 93, + "column": 14, + "index": 2594 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 110, + "column": 14, + "index": 3243 + }, + { + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 26, + "column": 10, + "index": 521 + }, + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 34, + "column": 10, + "index": 853 + }, + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 40, + "column": 12, + "index": 1092 + }, + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 53, + "column": 10, + "index": 1431 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 69, + "column": 6, + "index": 1831 + }, + { + "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", + "line": 190, + "column": 6, + "index": 6007 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 40, + "column": 10, + "index": 1312 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 50, + "column": 6, + "index": 1602 + } + ], + "InfoOutline": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 69, + "column": 23, + "index": 1773 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 126, + "column": 21, + "index": 3901 + } + ], + "ModalPopup": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 75, + "column": 16, + "index": 1998 + } + ], + "Card.Section": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 92, + "column": 10, + "index": 2590 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 54, + "column": 8, + "index": 1376 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 52, + "column": 10, + "index": 1409 + }, + { + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 24, + "column": 6, + "index": 458 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 80, + "column": 8, + "index": 2074 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 52, + "column": 10, + "index": 1757 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 78, + "column": 8, + "index": 2344 + }, + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 101, + "column": 6, + "index": 2761 + }, + { + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 32, + "column": 8, + "index": 992 + } + ], + "Form.Group": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 93, + "column": 12, + "index": 2617 + }, + { + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 27, + "column": 12, + "index": 688 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 108, + "column": 4, + "index": 2786 + }, + { + "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", + "line": 37, + "column": 4, + "index": 902 + }, + { + "filePath": "src/generic/FormikControl.jsx", + "line": 23, + "column": 4, + "index": 613 + }, + { + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 24, + "column": 4, + "index": 557 + }, + { + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", + "line": 24, + "column": 4, + "index": 415 + }, + { + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", + "line": 17, + "column": 6, + "index": 531 + }, + { + "filePath": "src/grading-settings/credit-section/index.jsx", + "line": 34, + "column": 4, + "index": 844 + }, + { + "filePath": "src/grading-settings/deadline-section/index.jsx", + "line": 31, + "column": 4, + "index": 937 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 99, + "column": 12, + "index": 3870 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 117, + "column": 12, + "index": 4573 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 134, + "column": 12, + "index": 5250 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 152, + "column": 12, + "index": 6024 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictDatesInput.jsx", + "line": 39, + "column": 4, + "index": 1021 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 112, + "column": 8, + "index": 3153 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 109, + "column": 22, + "index": 3803 + }, + { + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 54, + "column": 6, + "index": 1740 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 298, + "column": 12, + "index": 11150 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 324, + "column": 10, + "index": 12311 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 355, + "column": 12, + "index": 13852 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 378, + "column": 12, + "index": 14946 + }, + { + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 98, + "column": 12, + "index": 4168 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 243, + "column": 8, + "index": 9026 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 265, + "column": 12, + "index": 10009 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 309, + "column": 10, + "index": 11917 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 333, + "column": 10, + "index": 13039 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 366, + "column": 12, + "index": 14858 + }, + { + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 24, + "column": 6, + "index": 793 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 21, + "column": 12, + "index": 560 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 35, + "column": 12, + "index": 1144 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 49, + "column": 12, + "index": 1733 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 64, + "column": 12, + "index": 2399 + }, + { + "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", + "line": 55, + "column": 8, + "index": 1705 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 91, + "column": 8, + "index": 2563 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 112, + "column": 10, + "index": 3303 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 121, + "column": 12, + "index": 3727 + }, + { + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 14, + "column": 4, + "index": 391 + }, + { + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 31, + "column": 4, + "index": 926 + }, + { + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 60, + "column": 10, + "index": 1875 + }, + { + "filePath": "src/schedule-and-details/license-section/license-display/index.jsx", + "line": 11, + "column": 2, + "index": 367 + }, + { + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 48, + "column": 4, + "index": 1308 + }, + { + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 21, + "column": 6, + "index": 645 + }, + { + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 27, + "column": 4, + "index": 810 + }, + { + "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", + "line": 14, + "column": 2, + "index": 342 + }, + { + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 30, + "column": 4, + "index": 930 + }, + { + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 69, + "column": 8, + "index": 2319 + }, + { + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 124, + "column": 8, + "index": 3807 + } + ], + "Form.Control": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 94, + "column": 14, + "index": 2660 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 123, + "column": 10, + "index": 3285 + }, + { + "filePath": "src/generic/FormikControl.jsx", + "line": 25, + "column": 6, + "index": 668 + }, + { + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", + "line": 29, + "column": 6, + "index": 607 + }, + { + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", + "line": 24, + "column": 8, + "index": 800 + }, + { + "filePath": "src/grading-settings/credit-section/index.jsx", + "line": 42, + "column": 6, + "index": 1113 + }, + { + "filePath": "src/grading-settings/deadline-section/index.jsx", + "line": 35, + "column": 6, + "index": 1104 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 105, + "column": 14, + "index": 4070 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 122, + "column": 14, + "index": 4735 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 135, + "column": 14, + "index": 5330 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictDatesInput.jsx", + "line": 44, + "column": 6, + "index": 1178 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 117, + "column": 10, + "index": 3309 + }, + { + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 62, + "column": 8, + "index": 2082 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 302, + "column": 14, + "index": 11394 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 328, + "column": 12, + "index": 12551 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 317, + "column": 12, + "index": 12280 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 341, + "column": 12, + "index": 13405 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 25, + "column": 14, + "index": 748 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 39, + "column": 14, + "index": 1333 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 53, + "column": 14, + "index": 1929 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 68, + "column": 14, + "index": 2586 + }, + { + "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", + "line": 57, + "column": 10, + "index": 1825 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 95, + "column": 10, + "index": 2734 + }, + { + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 33, + "column": 10, + "index": 1030 + }, + { + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 38, + "column": 6, + "index": 1148 + }, + { + "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", + "line": 23, + "column": 6, + "index": 633 + }, + { + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 73, + "column": 10, + "index": 2478 + } + ], + "Card.Status": [ + { + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 106, + "column": 10, + "index": 3059 + } + ], + "IconAdd": [ + { + "filePath": "src/course-team/add-team-member/AddTeamMember.jsx", + "line": 20, + "column": 20, + "index": 753 + }, + { + "filePath": "src/course-team/CourseTeam.jsx", + "line": 78, + "column": 36, + "index": 2379 + }, + { + "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", + "line": 194, + "column": 13, + "index": 6156 + }, + { + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 198, + "column": 34, + "index": 7963 + } + ], + "Form.Label": [ + { + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 29, + "column": 14, + "index": 835 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 109, + "column": 6, + "index": 2841 + }, + { + "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", + "line": 38, + "column": 6, + "index": 969 + }, + { + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 30, + "column": 10, + "index": 767 + }, + { + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", + "line": 28, + "column": 6, + "index": 542 + }, + { + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", + "line": 21, + "column": 8, + "index": 666 + }, + { + "filePath": "src/grading-settings/credit-section/index.jsx", + "line": 39, + "column": 6, + "index": 986 + }, + { + "filePath": "src/grading-settings/deadline-section/index.jsx", + "line": 32, + "column": 6, + "index": 973 + }, + { + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 55, + "column": 8, + "index": 1814 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 299, + "column": 14, + "index": 11212 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 325, + "column": 12, + "index": 12380 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 356, + "column": 14, + "index": 13913 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 379, + "column": 14, + "index": 15010 + }, + { + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 99, + "column": 14, + "index": 4224 + }, + { + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 128, + "column": 21, + "index": 5539 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 266, + "column": 14, + "index": 10070 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 310, + "column": 12, + "index": 11977 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 334, + "column": 12, + "index": 13108 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 367, + "column": 14, + "index": 14922 + }, + { + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 25, + "column": 8, + "index": 862 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 22, + "column": 14, + "index": 626 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 36, + "column": 14, + "index": 1210 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 50, + "column": 14, + "index": 1799 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 65, + "column": 14, + "index": 2465 + }, + { + "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", + "line": 56, + "column": 10, + "index": 1776 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 92, + "column": 10, + "index": 2616 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 113, + "column": 12, + "index": 3358 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 122, + "column": 14, + "index": 3784 + }, + { + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 15, + "column": 6, + "index": 440 + }, + { + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 35, + "column": 6, + "index": 1028 + }, + { + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 23, + "column": 10, + "index": 697 + }, + { + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 28, + "column": 6, + "index": 859 + }, + { + "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", + "line": 19, + "column": 4, + "index": 469 + }, + { + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 34, + "column": 6, + "index": 1051 + }, + { + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 70, + "column": 10, + "index": 2372 + }, + { + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 125, + "column": 10, + "index": 3860 + } + ], + "Badge": [ + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 26, + "column": 8, + "index": 699 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 232, + "column": 24, + "index": 7436 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/CollapseCardHeading.jsx", + "line": 18, + "column": 22, + "index": 386 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 70, + "column": 10, + "index": 2102 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 277, + "column": 18, + "index": 10526 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 344, + "column": 22, + "index": 10316 + } + ], + "MailtoLink": [ + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 35, + "column": 8, + "index": 1191 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 76, + "column": 16, + "index": 3127 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 89, + "column": 16, + "index": 3532 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", + "line": 50, + "column": 16, + "index": 1464 + }, + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 113, + "column": 8, + "index": 3151 + } + ], + "DeleteOutlineIcon": [ + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 53, + "column": 26, + "index": 1942 + } + ], + "SpinnerSimple": [ + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 59, + "column": 26, + "index": 1585 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 96, + "column": 26, + "index": 3079 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 171, + "column": 30, + "index": 4804 + } + ], + "ActionRow.Spacer": [ + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 70, + "column": 8, + "index": 1853 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 128, + "column": 10, + "index": 4193 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 92, + "column": 14, + "index": 2559 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 109, + "column": 14, + "index": 3208 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 131, + "column": 14, + "index": 4032 + }, + { + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 77, + "column": 14, + "index": 2474 + } + ], + "IconButtonWithTooltip": [ + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 71, + "column": 8, + "index": 1882 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 81, + "column": 8, + "index": 2287 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 91, + "column": 8, + "index": 2756 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 122, + "column": 14, + "index": 3696 + } + ], + "EditOutline": [ + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 75, + "column": 15, + "index": 2092 + } + ], + "DeleteOutline": [ + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 95, + "column": 15, + "index": 2970 + } + ], + "Add": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 95, + "column": 26, + "index": 3044 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 130, + "column": 24, + "index": 4256 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 60, + "column": 26, + "index": 1825 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictionSchedules.jsx", + "line": 70, + "column": 28, + "index": 2300 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", + "line": 81, + "column": 30, + "index": 3061 + }, + { + "filePath": "src/pages-and-resources/teams/Settings.jsx", + "line": 150, + "column": 34, + "index": 5517 + } + ], + "Breadcrumb": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 116, + "column": 10, + "index": 3749 + } + ], + "Hyperlink": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 136, + "column": 10, + "index": 4449 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 90, + "column": 12, + "index": 2369 + }, + { + "filePath": "src/generic/help-sidebar/HelpSidebarLink.jsx", + "line": 9, + "column": 6, + "index": 247 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 164, + "column": 4, + "index": 5026 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", + "line": 30, + "column": 16, + "index": 834 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 75, + "column": 10, + "index": 2348 + }, + { + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 73, + "column": 6, + "index": 2336 + }, + { + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 94, + "column": 16, + "index": 3173 + }, + { + "filePath": "src/pages-and-resources/ora_settings/Settings.jsx", + "line": 27, + "column": 8, + "index": 913 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 39, + "column": 8, + "index": 1260 + }, + { + "filePath": "src/pages-and-resources/PagesAndResources.jsx", + "line": 69, + "column": 10, + "index": 2604 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 239, + "column": 4, + "index": 9245 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 260, + "column": 6, + "index": 7471 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 273, + "column": 6, + "index": 7778 + }, + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 102, + "column": 8, + "index": 2806 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 43, + "column": 10, + "index": 1217 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 61, + "column": 10, + "index": 1734 + }, + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 18, + "column": 6, + "index": 609 + }, + { + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 49, + "column": 22, + "index": 1633 + } + ], + "ModalDialog": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 234, + "column": 8, + "index": 8292 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 39, + "column": 4, + "index": 802 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 63, + "column": 6, + "index": 1949 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 65, + "column": 2, + "index": 2043 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 119, + "column": 6, + "index": 3525 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 555, + "column": 4, + "index": 21726 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 72, + "column": 2, + "index": 2299 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 240, + "column": 10, + "index": 8466 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 46, + "column": 6, + "index": 942 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 70, + "column": 8, + "index": 2140 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 74, + "column": 4, + "index": 2206 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 125, + "column": 8, + "index": 3736 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 566, + "column": 8, + "index": 22019 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 81, + "column": 4, + "index": 2462 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 241, + "column": 12, + "index": 8499 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 47, + "column": 8, + "index": 971 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 71, + "column": 10, + "index": 2171 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 75, + "column": 6, + "index": 2233 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 126, + "column": 10, + "index": 3784 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 567, + "column": 10, + "index": 22050 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 82, + "column": 6, + "index": 2489 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 245, + "column": 10, + "index": 8665 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 55, + "column": 6, + "index": 1254 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 75, + "column": 8, + "index": 2327 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 79, + "column": 4, + "index": 2352 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 130, + "column": 8, + "index": 3995 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 571, + "column": 8, + "index": 22175 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 86, + "column": 4, + "index": 2608 + } + ], + "Image": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 246, + "column": 12, + "index": 8696 + }, + { + "filePath": "src/files-and-uploads/FileThumbnail.jsx", + "line": 24, + "column": 8, + "index": 431 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 57, + "column": 14, + "index": 1519 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 44, + "column": 12, + "index": 1003 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 61, + "column": 6, + "index": 1666 + } + ], + "Toast": [ + { + "filePath": "src/files-and-uploads/ApiStatusToast.jsx", + "line": 22, + "column": 4, + "index": 429 + } + ], + "Truncate": [ + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 49, + "column": 12, + "index": 1055 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 88, + "column": 16, + "index": 2437 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 105, + "column": 16, + "index": 3086 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 65, + "column": 12, + "index": 1971 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 54, + "column": 14, + "index": 1492 + } + ], + "Stack": [ + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 66, + "column": 10, + "index": 1653 + }, + { + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 58, + "column": 6, + "index": 1808 + }, + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 27, + "column": 4, + "index": 769 + }, + { + "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", + "line": 22, + "column": 4, + "index": 579 + } + ], + "ContentCopy": [ + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 94, + "column": 21, + "index": 2627 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 111, + "column": 21, + "index": 3276 + } + ], + "CheckboxControl": [ + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 132, + "column": 14, + "index": 4067 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 38, + "column": 12, + "index": 1339 + }, + { + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 68, + "column": 14, + "index": 2151 + } + ], + "Dropdown": [ + { + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 23, + "column": 2, + "index": 400 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 35, + "column": 6, + "index": 892 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 172, - "column": 35, - "index": 7054 + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 26, + "column": 8, + "index": 940 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 437, - "column": 14, - "index": 16701 + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 35, + "column": 6, + "index": 1127 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 466, - "column": 14, - "index": 17595 + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 128, + "column": 10, + "index": 3975 + } + ], + "Dropdown.Toggle": [ + { + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 24, + "column": 4, + "index": 456 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 148, - "column": 35, - "index": 5739 + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 36, + "column": 8, + "index": 928 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 160, - "column": 35, - "index": 6295 + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 27, + "column": 10, + "index": 961 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 457, - "column": 40, - "index": 18024 + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 36, + "column": 8, + "index": 1146 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 483, - "column": 14, - "index": 18806 + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 129, + "column": 12, + "index": 3998 } ], - "TransitionReplace": [ + "Dropdown.Menu": [ { - "filePath": "src/generic/FieldFeedback.jsx", - "line": 14, + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 32, "column": 4, - "index": 276 + "index": 638 }, { - "filePath": "src/generic/FieldFeedback.jsx", - "line": 24, - "column": 4, - "index": 709 + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 43, + "column": 8, + "index": 1161 }, { - "filePath": "src/generic/FormikErrorFeedback.jsx", - "line": 12, - "column": 4, - "index": 377 + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 30, + "column": 10, + "index": 1100 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "filePath": "src/schedule-and-details/requirements-section/index.jsx", "line": 39, - "column": 0, - "index": 1345 + "column": 8, + "index": 1285 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 90, + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 132, + "column": 12, + "index": 4160 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 33, "column": 6, - "index": 2906 + "index": 660 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 103, - "column": 12, - "index": 3528 + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 38, + "column": 6, + "index": 837 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 43, + "column": 6, + "index": 1011 + }, + { + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 46, + "column": 6, + "index": 1153 + }, + { + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 49, + "column": 6, + "index": 1328 + }, + { + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 53, + "column": 6, + "index": 1473 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 44, + "column": 10, + "index": 1187 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 51, + "column": 10, + "index": 1459 + }, + { + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 32, + "column": 14, + "index": 1177 + }, + { + "filePath": "src/schedule-and-details/requirements-section/index.jsx", "line": 40, - "column": 4, - "index": 1413 + "column": 10, + "index": 1311 + }, + { + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 47, + "column": 12, + "index": 1624 + }, + { + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 134, + "column": 16, + "index": 4248 } ], - "Form.Group": [ + "Dropdown.Divider": [ { - "filePath": "src/generic/FormikControl.jsx", - "line": 23, - "column": 4, - "index": 613 + "filePath": "src/files-and-uploads/FileMenu.jsx", + "line": 52, + "column": 6, + "index": 1446 }, { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 24, - "column": 4, - "index": 557 + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 50, + "column": 10, + "index": 1428 + } + ], + "DataTable": [ + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 192, + "column": 8, + "index": 5424 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 99, + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", + "line": 60, + "column": 4, + "index": 2244 + } + ], + "Dropzone": [ + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 261, "column": 12, - "index": 3870 + "index": 7466 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 117, - "column": 12, - "index": 4573 + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 112, + "column": 10, + "index": 2940 + } + ], + "DataTable.TableControlBar": [ + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 272, + "column": 14, + "index": 7921 + } + ], + "CardView": [ + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 273, + "column": 42, + "index": 7993 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 134, - "column": 12, - "index": 5250 + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 274, + "column": 42, + "index": 8149 + } + ], + "DataTable.EmptyTable": [ + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 275, + "column": 14, + "index": 8276 + } + ], + "DataTable.TableFooter": [ + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 276, + "column": 14, + "index": 8376 + } + ], + "MoreVert": [ + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 47, + "column": 25, + "index": 1167 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 152, - "column": 12, - "index": 6024 + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 71, + "column": 23, + "index": 2084 + } + ], + "Card.Footer": [ + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 70, + "column": 8, + "index": 2142 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesInput.jsx", - "line": 34, - "column": 4, - "index": 868 + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 63, + "column": 8, + "index": 1785 + }, + { + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 25, + "column": 6, + "index": 570 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 122, + "column": 8, + "index": 3243 }, { "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 112, + "line": 83, "column": 8, - "index": 3153 + "index": 2236 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 109, - "column": 22, - "index": 3790 + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 112, + "column": 6, + "index": 3091 }, { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 54, + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 94, "column": 6, - "index": 1740 + "index": 3649 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 298, - "column": 12, - "index": 11136 + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 32, + "column": 8, + "index": 988 + } + ], + "Chip": [ + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 71, + "column": 10, + "index": 2166 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 324, + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 58, + "column": 12, + "index": 1649 + } + ], + "SelectableBox.Set": [ + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 76, "column": 10, - "index": 12297 + "index": 2356 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 355, + "filePath": "src/pages-and-resources/live/Settings.jsx", + "line": 97, + "column": 12, + "index": 3905 + } + ], + "SelectableBox": [ + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 84, "column": 12, - "index": 13838 + "index": 2585 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 378, + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 92, "column": 12, - "index": 14932 + "index": 2876 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 98, + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 100, "column": 12, - "index": 4168 + "index": 3165 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 243, + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 108, + "column": 12, + "index": 3461 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 116, + "column": 12, + "index": 3753 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 124, + "column": 12, + "index": 4040 + }, + { + "filePath": "src/pages-and-resources/live/Settings.jsx", + "line": 106, + "column": 16, + "index": 4263 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 134, "column": 8, - "index": 9008 + "index": 4388 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 265, + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 82, + "column": 4, + "index": 2416 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 133, + "column": 8, + "index": 4167 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 579, + "column": 8, + "index": 22557 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 89, + "column": 4, + "index": 2672 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 136, "column": 12, - "index": 9991 + "index": 4443 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 309, + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 84, "column": 8, - "index": 11897 + "index": 2479 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 333, - "column": 10, - "index": 12981 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 135, + "column": 12, + "index": 4222 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 366, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 585, "column": 12, - "index": 14800 + "index": 22686 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 91, + "column": 8, + "index": 2735 } ], - "Form.Control": [ + "Alert.Heading": [ { - "filePath": "src/generic/FormikControl.jsx", - "line": 25, + "filePath": "src/generic/alert-message/index.jsx", + "line": 7, + "column": 4, + "index": 188 + }, + { + "filePath": "src/generic/AlertProctoringError.jsx", + "line": 10, + "column": 10, + "index": 338 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 215, + "column": 18, + "index": 6596 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 328, + "column": 18, + "index": 9551 + } + ], + "Collapsible.Advanced": [ + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 19, + "column": 2, + "index": 365 + }, + { + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 99, "column": 6, - "index": 668 + "index": 2856 + } + ], + "Collapsible.Trigger": [ + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 27, + "column": 4, + "index": 558 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 105, + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 100, + "column": 8, + "index": 2887 + } + ], + "Collapsible.Visible": [ + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 32, + "column": 6, + "index": 767 + }, + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 37, + "column": 6, + "index": 980 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", + "line": 14, + "column": 8, + "index": 400 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", + "line": 17, + "column": 8, + "index": 549 + } + ], + "ExpandMore": [ + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 34, + "column": 43, + "index": 886 + } + ], + "Delete": [ + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 46, + "column": 19, + "index": 1275 + } + ], + "ExpandLess": [ + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 53, + "column": 45, + "index": 1466 + } + ], + "Collapsible.Body": [ + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 57, + "column": 4, + "index": 1585 + }, + { + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 104, + "column": 8, + "index": 3136 + } + ], + "Alert.Link": [ + { + "filePath": "src/generic/ConnectionErrorAlert.jsx", + "line": 15, + "column": 10, + "index": 681 + }, + { + "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", + "line": 15, + "column": 10, + "index": 693 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 157, + "column": 16, + "index": 6463 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 172, + "column": 35, + "index": 7068 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 437, "column": 14, - "index": 4070 + "index": 16715 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 122, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 466, "column": 14, - "index": 4735 + "index": 17609 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 135, - "column": 14, - "index": 5330 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 148, + "column": 35, + "index": 5757 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesInput.jsx", - "line": 39, - "column": 6, - "index": 1025 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 160, + "column": 35, + "index": 6313 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 117, - "column": 10, - "index": 3309 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 457, + "column": 40, + "index": 18082 }, { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 62, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 483, + "column": 14, + "index": 18864 + } + ], + "FileUploadIcon": [ + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 71, + "column": 13, + "index": 1873 + } + ], + "Card.Divider": [ + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 121, "column": 8, - "index": 2082 + "index": 3218 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 302, - "column": 14, - "index": 11380 + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 111, + "column": 6, + "index": 3068 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 328, - "column": 12, - "index": 12537 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 93, + "column": 6, + "index": 3626 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 317, - "column": 10, - "index": 12244 + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 31, + "column": 8, + "index": 963 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 341, + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 42, "column": 12, - "index": 13347 + "index": 1342 + } + ], + "Calendar": [ + { + "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", + "line": 49, + "column": 17, + "index": 1374 } ], "Form.Text": [ @@ -10839,13 +14328,13 @@ "filePath": "src/pages-and-resources/proctoring/Settings.jsx", "line": 311, "column": 14, - "index": 11757 + "index": 11771 }, { "filePath": "src/pages-and-resources/proctoring/Settings.jsx", "line": 338, "column": 12, - "index": 13037 + "index": 13051 }, { "filePath": "src/pages-and-resources/teams/Settings.jsx", @@ -10857,105 +14346,55 @@ "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 253, "column": 10, - "index": 9444 + "index": 9462 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 293, "column": 14, - "index": 11232 + "index": 11250 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 325, - "column": 10, - "index": 12550 + "column": 12, + "index": 12602 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 351, "column": 12, - "index": 14008 + "index": 14066 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 394, "column": 14, - "index": 16126 - } - ], - "Form.Label": [ - { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 30, - "column": 10, - "index": 767 - }, - { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 55, - "column": 8, - "index": 1814 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 299, - "column": 14, - "index": 11198 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 325, - "column": 12, - "index": 12366 + "index": 16184 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 356, - "column": 14, - "index": 13899 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 379, + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 30, "column": 14, - "index": 14996 + "index": 996 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 99, + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 44, "column": 14, - "index": 4224 - }, - { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 128, - "column": 21, - "index": 5539 + "index": 1584 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 266, + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 58, "column": 14, - "index": 10052 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 310, - "column": 10, - "index": 11955 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 334, - "column": 12, - "index": 13050 + "index": 2201 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 367, + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 74, "column": 14, - "index": 14864 + "index": 2869 } ], "SwitchControl": [ @@ -10966,216 +14405,40 @@ "index": 870 } ], - "Spinner": [ - { - "filePath": "src/generic/Loading.jsx", - "line": 12, - "column": 4, - "index": 294 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 417, - "column": 33, - "index": 17011 - } - ], - "ModalDialog": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 65, - "column": 2, - "index": 2039 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 119, - "column": 6, - "index": 3525 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 555, - "column": 4, - "index": 21844 - } - ], - "ModalDialog.Header": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 74, - "column": 4, - "index": 2202 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 125, - "column": 8, - "index": 3736 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 566, - "column": 8, - "index": 22137 - } - ], - "ModalDialog.Title": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 75, - "column": 6, - "index": 2229 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 126, - "column": 10, - "index": 3784 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 567, - "column": 10, - "index": 22168 - } - ], - "ModalDialog.Body": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 79, - "column": 4, - "index": 2348 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 130, - "column": 8, - "index": 3995 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 571, - "column": 8, - "index": 22293 - } - ], - "ModalDialog.Footer": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 82, - "column": 4, - "index": 2412 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 133, - "column": 8, - "index": 4167 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 579, - "column": 8, - "index": 22675 - } - ], - "ActionRow": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 83, - "column": 6, - "index": 2455 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 134, - "column": 10, - "index": 4198 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 584, - "column": 10, - "index": 22780 - } - ], - "ModalDialog.CloseButton": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 84, - "column": 8, - "index": 2475 - }, + "WarningIcon": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 135, + "filePath": "src/generic/internet-connection-alert/index.jsx", + "line": 53, "column": 12, - "index": 4222 + "index": 1404 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 585, - "column": 12, - "index": 22804 + "filePath": "src/schedule-and-details/index.jsx", + "line": 341, + "column": 16, + "index": 12151 } ], - "Hyperlink": [ + "Spinner": [ { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 163, + "filePath": "src/generic/Loading.jsx", + "line": 12, "column": 4, - "index": 5007 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", - "line": 30, - "column": 16, - "index": 834 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 75, - "column": 8, - "index": 2341 - }, - { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 73, - "column": 6, - "index": 2336 - }, - { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 94, - "column": 16, - "index": 3173 - }, - { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 40, - "column": 8, - "index": 1261 - }, - { - "filePath": "src/pages-and-resources/PagesAndResources.jsx", - "line": 46, - "column": 10, - "index": 1804 + "index": 291 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 239, - "column": 4, - "index": 9231 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 417, + "column": 33, + "index": 17069 } ], "Form": [ { "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 191, + "line": 192, "column": 10, - "index": 5709 + "index": 5728 }, { "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", @@ -11185,117 +14448,33 @@ }, { "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", - "line": 121, + "line": 123, "column": 14, - "index": 5549 + "index": 5672 }, { "filePath": "src/pages-and-resources/proctoring/Settings.jsx", "line": 565, "column": 6, - "index": 22069 + "index": 21951 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 228, - "column": 6, - "index": 8429 - } - ], - "StatefulButton": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 201, - "column": 16, - "index": 6046 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigFormSaveButton.jsx", - "line": 36, - "column": 6, - "index": 1528 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 588, - "column": 12, - "index": 22976 - } - ], - "Info": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 213, - "column": 46, - "index": 6537 - } - ], - "Alert.Heading": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 214, - "column": 18, - "index": 6577 - } - ], - "Badge": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 230, - "column": 22, - "index": 7360 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/CollapseCardHeading.jsx", - "line": 18, - "column": 22, - "index": 380 - }, - { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 71, + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 304, "column": 10, - "index": 2103 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 277, - "column": 18, - "index": 10512 - } - ], - "Container": [ - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 116, - "column": 4, - "index": 3410 + "index": 8638 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 57, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 228, "column": 6, - "index": 2288 - } - ], - "MailtoLink": [ - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 76, - "column": 16, - "index": 3127 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 89, - "column": 16, - "index": 3532 + "index": 8447 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", - "line": 50, - "column": 16, - "index": 1464 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 19, + "column": 8, + "index": 520 } ], "Form.Check": [ @@ -11315,65 +14494,77 @@ "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 244, "column": 10, - "index": 9067 + "index": 9085 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 273, "column": 14, - "index": 10397 + "index": 10415 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 283, "column": 14, - "index": 10815 + "index": 10833 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 374, "column": 14, - "index": 15227 + "index": 15285 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", "line": 384, "column": 14, - "index": 15677 + "index": 15735 } ], "Form.Row": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesItem.jsx", - "line": 88, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/DiscussionRestrictionItem.jsx", + "line": 98, "column": 6, - "index": 2961 + "index": 3408 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesItem.jsx", - "line": 112, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/DiscussionRestrictionItem.jsx", + "line": 124, "column": 6, - "index": 3903 - } - ], - "Add": [ + "index": 4424 + }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/BlackoutDatesField.jsx", - "line": 77, - "column": 30, - "index": 2541 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 20, + "column": 10, + "index": 537 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", - "line": 81, - "column": 30, - "index": 3061 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 63, + "column": 10, + "index": 2376 }, { - "filePath": "src/pages-and-resources/teams/Settings.jsx", - "line": 150, - "column": 34, - "index": 5517 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 79, + "column": 10, + "index": 3035 + } + ], + "ButtonGroup": [ + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DiscussionRestriction.jsx", + "line": 63, + "column": 6, + "index": 2354 + }, + { + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 52, + "column": 6, + "index": 1456 } ], "Form.CheckboxSet": [ @@ -11381,7 +14572,7 @@ "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", "line": 110, "column": 24, - "index": 3844 + "index": 3857 } ], "Form.Checkbox": [ @@ -11389,15 +14580,13 @@ "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", "line": 118, "column": 30, - "index": 4271 - } - ], - "CheckboxControl": [ + "index": 4284 + }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 38, - "column": 12, - "index": 1339 + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 33, + "column": 10, + "index": 1046 } ], "breakpoints": [ @@ -11409,35 +14598,49 @@ }, { "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 88, + "line": 151, "column": 28, - "index": 3059 + "index": 5092 }, { "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", - "line": 40, + "line": 41, "column": 39, - "index": 1607 + "index": 1672 }, { "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", - "line": 82, + "line": 125, "column": 22, - "index": 2870 + "index": 4206 }, { "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", - "line": 92, + "line": 136, "column": 22, - "index": 3289 + "index": 4676 + }, + { + "filePath": "src/pages-and-resources/discussions/data/hook.js", + "line": 5, + "column": 28, + "index": 173 + } + ], + "Form.Switch": [ + { + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 129, + "column": 8, + "index": 4451 } ], "CardGrid": [ { "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 78, + "line": 140, "column": 6, - "index": 2797 + "index": 4784 }, { "filePath": "src/pages-and-resources/pages/PageGrid.jsx", @@ -11458,8 +14661,8 @@ { "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", "line": 36, - "column": 20, - "index": 1429 + "column": 18, + "index": 1425 }, { "filePath": "src/pages-and-resources/discussions/app-list/SupportedFeature.jsx", @@ -11472,16 +14675,8 @@ { "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", "line": 37, - "column": 20, - "index": 1504 - } - ], - "DataTable": [ - { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", - "line": 60, - "column": 4, - "index": 2252 + "column": 18, + "index": 1498 } ], "DataTable.Table": [ @@ -11489,7 +14684,15 @@ "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", "line": 87, "column": 6, - "index": 3110 + "index": 3102 + } + ], + "useWindowSize": [ + { + "filePath": "src/pages-and-resources/discussions/data/hook.js", + "line": 4, + "column": 21, + "index": 128 } ], "FullscreenModal": [ @@ -11556,36 +14759,20 @@ "index": 4297 } ], - "SelectableBox.Set": [ - { - "filePath": "src/pages-and-resources/live/Settings.jsx", - "line": 97, - "column": 16, - "index": 3921 - } - ], - "SelectableBox": [ - { - "filePath": "src/pages-and-resources/live/Settings.jsx", - "line": 106, - "column": 20, - "index": 4315 - } - ], "ArrowForward": [ { "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 42, + "line": 41, "column": 17, - "index": 1342 + "index": 1341 } ], "Settings": [ { "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 52, + "line": 51, "column": 13, - "index": 1628 + "index": 1627 } ], "Form.RadioSet": [ @@ -11593,19 +14780,31 @@ "filePath": "src/pages-and-resources/proctoring/Settings.jsx", "line": 359, "column": 14, - "index": 14084 + "index": 14098 }, { "filePath": "src/pages-and-resources/proctoring/Settings.jsx", "line": 382, "column": 14, - "index": 15183 + "index": 15197 }, { "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", "line": 102, "column": 14, "index": 4365 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 359, + "column": 16, + "index": 10867 + }, + { + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 27, + "column": 8, + "index": 836 } ], "Form.Radio": [ @@ -11613,53 +14812,229 @@ "filePath": "src/pages-and-resources/proctoring/Settings.jsx", "line": 364, "column": 16, - "index": 14270 + "index": 14284 }, { "filePath": "src/pages-and-resources/proctoring/Settings.jsx", "line": 367, "column": 16, - "index": 14451 + "index": 14465 }, { "filePath": "src/pages-and-resources/proctoring/Settings.jsx", "line": 387, "column": 16, - "index": 15381 + "index": 15395 }, { "filePath": "src/pages-and-resources/proctoring/Settings.jsx", "line": 390, "column": 16, - "index": 15568 + "index": 15582 }, { "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", "line": 109, "column": 18, "index": 4632 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 365, + "column": 18, + "index": 11108 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 378, + "column": 18, + "index": 11633 + }, + { + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 32, + "column": 10, + "index": 1005 + }, + { + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 39, + "column": 10, + "index": 1283 } ], "OverlayTrigger": [ + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 151, + "column": 4, + "index": 4233 + }, + { + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 31, + "column": 6, + "index": 869 + }, { "filePath": "src/studio-header/Header.jsx", - "line": 136, + "line": 139, "column": 4, - "index": 5255 + "index": 5602 } ], "Tooltip": [ + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 154, + "column": 8, + "index": 4298 + }, + { + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 34, + "column": 10, + "index": 932 + }, { "filePath": "src/studio-header/Header.jsx", - "line": 139, + "line": 142, "column": 8, - "index": 5321 + "index": 5668 + } + ], + "CheckCircleOutline": [ + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 172, + "column": 29, + "index": 4874 + } + ], + "PageBanner": [ + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 81, + "column": 4, + "index": 2203 + } + ], + "EmailIcon": [ + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 119, + "column": 56, + "index": 3389 + } + ], + "CheckCircleIcon": [ + { + "filePath": "src/schedule-and-details/index.jsx", + "line": 164, + "column": 18, + "index": 5006 + } + ], + "AddIcon": [ + { + "filePath": "src/schedule-and-details/instructors-section/index.jsx", + "line": 72, + "column": 26, + "index": 2006 + }, + { + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 61, + "column": 26, + "index": 1907 + } + ], + "Col": [ + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 21, + "column": 28, + "index": 576 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 35, + "column": 28, + "index": 1160 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 49, + "column": 28, + "index": 1749 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 64, + "column": 28, + "index": 2415 + } + ], + "Copyright": [ + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 30, + "column": 15, + "index": 910 + } + ], + "Cc": [ + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 38, + "column": 15, + "index": 1148 + } + ], + "Attribution": [ + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 45, + "column": 15, + "index": 1338 + } + ], + "Nc": [ + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 52, + "column": 15, + "index": 1539 + } + ], + "Nd": [ + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 59, + "column": 15, + "index": 1731 + } + ], + "Sa": [ + { + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 66, + "column": 15, + "index": 1920 + } + ], + "InfoIcon": [ + { + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 101, + "column": 38, + "index": 3005 } ] } }, { - "version": "20.15.0", + "version": "20.44.0", "name": "@edx/frontend-app-discussions", "repository": { "type": "git", @@ -11670,9 +15045,9 @@ "Collapsible.Advanced": [ { "filePath": "src/components/FilterBar.jsx", - "line": 95, + "line": 97, "column": 4, - "index": 2700 + "index": 2716 }, { "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", @@ -11690,9 +15065,9 @@ "Collapsible.Trigger": [ { "filePath": "src/components/FilterBar.jsx", - "line": 100, + "line": 102, "column": 6, - "index": 2852 + "index": 2868 }, { "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", @@ -11710,15 +15085,15 @@ "Collapsible.Visible": [ { "filePath": "src/components/FilterBar.jsx", - "line": 111, + "line": 113, "column": 8, - "index": 3334 + "index": 3350 }, { "filePath": "src/components/FilterBar.jsx", - "line": 114, + "line": 116, "column": 8, - "index": 3436 + "index": 3452 }, { "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", @@ -11748,15 +15123,15 @@ "Icon": [ { "filePath": "src/components/FilterBar.jsx", - "line": 112, + "line": 114, "column": 10, - "index": 3377 + "index": 3393 }, { "filePath": "src/components/FilterBar.jsx", - "line": 115, + "line": 117, "column": 10, - "index": 3477 + "index": 3493 }, { "filePath": "src/components/PostPreviewPanel.jsx", @@ -11766,9 +15141,9 @@ }, { "filePath": "src/components/Search.jsx", - "line": 82, + "line": 85, "column": 8, - "index": 2549 + "index": 2777 }, { "filePath": "src/components/SearchInfo.jsx", @@ -11778,33 +15153,33 @@ }, { "filePath": "src/components/TopicStats.jsx", - "line": 42, + "line": 43, "column": 10, - "index": 1377 + "index": 1441 }, { "filePath": "src/components/TopicStats.jsx", - "line": 59, + "line": 61, "column": 10, - "index": 1920 + "index": 2044 }, { "filePath": "src/components/TopicStats.jsx", - "line": 84, + "line": 87, "column": 12, - "index": 2815 + "index": 3001 }, { "filePath": "src/discussions/common/ActionsDropdown.jsx", "line": 67, "column": 16, - "index": 1858 + "index": 1825 }, { "filePath": "src/discussions/common/ActionsDropdown.jsx", "line": 97, "column": 18, - "index": 2910 + "index": 2877 }, { "filePath": "src/discussions/common/AuthorLabel.jsx", @@ -11816,31 +15191,31 @@ "filePath": "src/discussions/common/EndorsedAlertBanner.jsx", "line": 39, "column": 12, - "index": 1312 + "index": 1315 }, { "filePath": "src/discussions/common/HoverCard.jsx", - "line": 68, + "line": 70, "column": 22, - "index": 2125 + "index": 2142 }, { "filePath": "src/discussions/common/HoverCard.jsx", - "line": 83, + "line": 85, "column": 18, - "index": 2654 + "index": 2671 }, { "filePath": "src/discussions/common/HoverCard.jsx", - "line": 97, + "line": 99, "column": 20, - "index": 3040 + "index": 3057 }, { "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", "line": 22, "column": 18, - "index": 588 + "index": 591 }, { "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", @@ -11892,15 +15267,15 @@ }, { "filePath": "src/discussions/post-comments/PostCommentsView.jsx", - "line": 104, + "line": 105, "column": 20, - "index": 3326 + "index": 3398 }, { "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 72, + "line": 74, "column": 22, - "index": 2838 + "index": 2855 }, { "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", @@ -11952,15 +15327,15 @@ }, { "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 107, - "column": 18, - "index": 4039 + "line": 112, + "column": 14, + "index": 4047 }, { "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 122, - "column": 18, - "index": 4769 + "line": 127, + "column": 14, + "index": 4725 }, { "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", @@ -11988,35 +15363,35 @@ }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 71, + "line": 73, "column": 16, - "index": 2886 + "index": 3004 }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 88, + "line": 91, "column": 16, - "index": 3531 + "index": 3725 }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 113, + "line": 117, "column": 18, - "index": 4576 + "index": 4840 } ], "Tune": [ { "filePath": "src/components/FilterBar.jsx", - "line": 112, + "line": 114, "column": 21, - "index": 3388 + "index": 3404 }, { "filePath": "src/components/FilterBar.jsx", - "line": 115, + "line": 117, "column": 21, - "index": 3488 + "index": 3504 }, { "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", @@ -12046,9 +15421,9 @@ "Collapsible.Body": [ { "filePath": "src/components/FilterBar.jsx", - "line": 118, + "line": 120, "column": 6, - "index": 3563 + "index": 3579 }, { "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", @@ -12066,9 +15441,9 @@ "Form": [ { "filePath": "src/components/FilterBar.jsx", - "line": 119, + "line": 121, "column": 8, - "index": 3634 + "index": 3650 }, { "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", @@ -12078,15 +15453,15 @@ }, { "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", - "line": 106, + "line": 107, "column": 8, - "index": 3716 + "index": 3799 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 241, + "line": 244, "column": 6, - "index": 8880 + "index": 8937 }, { "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", @@ -12098,15 +15473,15 @@ "Form.RadioSet": [ { "filePath": "src/components/FilterBar.jsx", - "line": 122, + "line": 124, "column": 14, - "index": 3766 + "index": 3782 }, { "filePath": "src/components/FilterBar.jsx", - "line": 156, + "line": 158, "column": 18, - "index": 5100 + "index": 5116 }, { "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", @@ -12116,9 +15491,9 @@ }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 247, + "line": 250, "column": 8, - "index": 9195 + "index": 9252 }, { "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", @@ -12148,21 +15523,21 @@ "Spinner": [ { "filePath": "src/components/FilterBar.jsx", - "line": 152, + "line": 154, "column": 18, - "index": 4925 + "index": 4941 }, { "filePath": "src/components/Spinner.jsx", "line": 7, "column": 4, - "index": 153 + "index": 175 }, { "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", "line": 29, "column": 21, - "index": 878 + "index": 881 }, { "filePath": "src/discussions/in-context-topics/TopicPostsView.jsx", @@ -12184,21 +15559,21 @@ }, { "filePath": "src/discussions/learners/LearnersView.jsx", - "line": 96, + "line": 97, "column": 12, - "index": 3295 + "index": 3357 }, { "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", - "line": 68, + "line": 69, "column": 10, - "index": 2348 + "index": 2331 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 186, + "line": 189, "column": 10, - "index": 7562 + "index": 7619 }, { "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", @@ -12224,25 +15599,25 @@ "Dropdown": [ { "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", - "line": 41, - "column": 8, - "index": 1546 + "line": 43, + "column": 10, + "index": 1561 } ], "Dropdown.Toggle": [ { "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", - "line": 42, - "column": 10, - "index": 1585 + "line": 44, + "column": 12, + "index": 1602 } ], "Dropdown.Menu": [ { "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", - "line": 49, - "column": 10, - "index": 1953 + "line": 51, + "column": 12, + "index": 1984 } ], "useWindowSize": [ @@ -12254,15 +15629,15 @@ }, { "filePath": "src/discussions/data/hooks.js", - "line": 109, + "line": 111, "column": 21, - "index": 3820 + "index": 3822 }, { "filePath": "src/discussions/data/hooks.js", - "line": 114, + "line": 116, "column": 21, - "index": 3956 + "index": 3958 }, { "filePath": "src/discussions/discussions-home/DiscussionSidebar.jsx", @@ -12282,31 +15657,31 @@ "filePath": "src/discussions/common/ActionsDropdown.jsx", "line": 63, "column": 6, - "index": 1720 + "index": 1687 }, { "filePath": "src/discussions/common/HoverCard.jsx", - "line": 66, + "line": 68, "column": 12, - "index": 2053 + "index": 2070 }, { "filePath": "src/discussions/common/HoverCard.jsx", - "line": 81, + "line": 83, "column": 8, - "index": 2569 + "index": 2586 }, { "filePath": "src/discussions/common/HoverCard.jsx", - "line": 95, + "line": 97, "column": 10, - "index": 2953 + "index": 2970 }, { "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", "line": 20, "column": 8, - "index": 532 + "index": 535 }, { "filePath": "src/discussions/learners/LearnerPostsView.jsx", @@ -12316,15 +15691,15 @@ }, { "filePath": "src/discussions/post-comments/PostCommentsView.jsx", - "line": 102, + "line": 103, "column": 10, - "index": 3266 + "index": 3338 }, { "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 70, + "line": 72, "column": 12, - "index": 2778 + "index": 2795 }, { "filePath": "src/discussions/posts/post/LikeButton.jsx", @@ -12348,9 +15723,9 @@ }, { "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 71, + "line": 73, "column": 19, - "index": 2809 + "index": 2826 } ], "Button": [ @@ -12376,31 +15751,31 @@ "filePath": "src/components/TinyMCEEditor.jsx", "line": 143, "column": 12, - "index": 4886 + "index": 4889 }, { "filePath": "src/discussions/common/ActionsDropdown.jsx", "line": 88, "column": 22, - "index": 2581 + "index": 2548 }, { "filePath": "src/discussions/common/Confirmation.jsx", "line": 36, "column": 10, - "index": 943 + "index": 946 }, { "filePath": "src/discussions/common/HoverCard.jsx", "line": 44, "column": 10, - "index": 1305 + "index": 1293 }, { "filePath": "src/discussions/empty-posts/EmptyPage.jsx", "line": 29, "column": 10, - "index": 811 + "index": 785 }, { "filePath": "src/discussions/learners/LearnerPostsView.jsx", @@ -12410,15 +15785,15 @@ }, { "filePath": "src/discussions/learners/LearnersView.jsx", - "line": 100, + "line": 101, "column": 12, - "index": 3467 + "index": 3529 }, { "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", "line": 248, "column": 12, - "index": 8948 + "index": 8942 }, { "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", @@ -12428,9 +15803,9 @@ }, { "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", - "line": 158, + "line": 159, "column": 12, - "index": 5654 + "index": 5737 }, { "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", @@ -12452,33 +15827,33 @@ }, { "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", - "line": 56, + "line": 57, "column": 8, - "index": 1879 + "index": 1862 }, { "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", - "line": 94, + "line": 96, "column": 20, - "index": 3449 + "index": 3500 }, { "filePath": "src/discussions/post-comments/PostCommentsView.jsx", - "line": 87, + "line": 88, "column": 14, - "index": 2655 + "index": 2727 }, { "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", "line": 55, "column": 10, - "index": 2160 + "index": 2148 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 447, + "line": 450, "column": 10, - "index": 16759 + "index": 16792 }, { "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", @@ -12496,9 +15871,9 @@ "SearchField.Advanced": [ { "filePath": "src/components/Search.jsx", - "line": 70, + "line": 73, "column": 4, - "index": 2156 + "index": 2384 }, { "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", @@ -12510,9 +15885,9 @@ "SearchField.Label": [ { "filePath": "src/components/Search.jsx", - "line": 76, + "line": 79, "column": 6, - "index": 2293 + "index": 2521 }, { "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", @@ -12524,9 +15899,9 @@ "SearchField.Input": [ { "filePath": "src/components/Search.jsx", - "line": 77, + "line": 80, "column": 6, - "index": 2321 + "index": 2549 }, { "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", @@ -12538,9 +15913,9 @@ "SearchIcon": [ { "filePath": "src/components/Search.jsx", - "line": 83, + "line": 86, "column": 15, - "index": 2570 + "index": 2798 }, { "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", @@ -12562,7 +15937,7 @@ "filePath": "src/components/TinyMCEEditor.jsx", "line": 136, "column": 6, - "index": 4667 + "index": 4670 } ], "ActionRow": [ @@ -12570,13 +15945,13 @@ "filePath": "src/components/TinyMCEEditor.jsx", "line": 142, "column": 10, - "index": 4862 + "index": 4865 }, { "filePath": "src/discussions/common/Confirmation.jsx", "line": 32, "column": 8, - "index": 757 + "index": 760 }, { "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", @@ -12594,15 +15969,15 @@ }, { "filePath": "src/components/TopicStats.jsx", - "line": 46, + "line": 47, "column": 6, - "index": 1518 + "index": 1582 }, { "filePath": "src/components/TopicStats.jsx", - "line": 64, + "line": 66, "column": 8, - "index": 2102 + "index": 2226 }, { "filePath": "src/discussions/common/AuthorLabel.jsx", @@ -12612,9 +15987,9 @@ }, { "filePath": "src/discussions/common/HoverCard.jsx", - "line": 58, + "line": 60, "column": 10, - "index": 1801 + "index": 1818 }, { "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", @@ -12684,41 +16059,41 @@ }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 58, + "line": 59, "column": 12, - "index": 2400 + "index": 2438 }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 75, + "line": 77, "column": 12, - "index": 3051 + "index": 3169 }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 93, + "line": 96, "column": 14, - "index": 3743 + "index": 3937 } ], "Tooltip": [ { "filePath": "src/components/TopicStats.jsx", - "line": 32, + "line": 33, "column": 10, - "index": 1042 + "index": 1078 }, { "filePath": "src/components/TopicStats.jsx", - "line": 49, + "line": 51, "column": 10, - "index": 1589 + "index": 1687 }, { "filePath": "src/components/TopicStats.jsx", - "line": 67, + "line": 70, "column": 12, - "index": 2179 + "index": 2339 }, { "filePath": "src/discussions/common/AuthorLabel.jsx", @@ -12728,9 +16103,9 @@ }, { "filePath": "src/discussions/common/HoverCard.jsx", - "line": 60, + "line": 62, "column": 14, - "index": 1854 + "index": 1871 }, { "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", @@ -12800,57 +16175,57 @@ }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 61, + "line": 63, "column": 16, - "index": 2489 + "index": 2574 }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 78, + "line": 81, "column": 16, - "index": 3140 + "index": 3303 }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 96, + "line": 100, "column": 18, - "index": 3838 + "index": 4075 } ], "PostOutline": [ { "filePath": "src/components/TopicStats.jsx", - "line": 42, + "line": 43, "column": 21, - "index": 1388 + "index": 1452 }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 71, + "line": 73, "column": 27, - "index": 2897 + "index": 3015 } ], "HelpOutline": [ { "filePath": "src/components/TopicStats.jsx", - "line": 59, + "line": 61, "column": 21, - "index": 1931 + "index": 2055 }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 88, + "line": 91, "column": 27, - "index": 3542 + "index": 3736 } ], "Report": [ { "filePath": "src/components/TopicStats.jsx", - "line": 84, + "line": 87, "column": 23, - "index": 2826 + "index": 3012 }, { "filePath": "src/discussions/common/AlertBanner.jsx", @@ -12860,9 +16235,9 @@ }, { "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 113, + "line": 117, "column": 29, - "index": 4587 + "index": 4851 } ], "useToggle": [ @@ -12870,19 +16245,19 @@ "filePath": "src/discussions/common/ActionsDropdown.jsx", "line": 30, "column": 32, - "index": 822 + "index": 808 }, { "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", "line": 56, "column": 71, - "index": 2333 + "index": 2321 }, { "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", "line": 57, "column": 72, - "index": 2423 + "index": 2411 }, { "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", @@ -12926,7 +16301,7 @@ "filePath": "src/discussions/common/ActionsDropdown.jsx", "line": 66, "column": 13, - "index": 1831 + "index": 1798 } ], "ModalPopup": [ @@ -12934,7 +16309,7 @@ "filePath": "src/discussions/common/ActionsDropdown.jsx", "line": 74, "column": 8, - "index": 2074 + "index": 2041 }, { "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", @@ -12948,7 +16323,7 @@ "filePath": "src/discussions/common/ActionsDropdown.jsx", "line": 86, "column": 62, - "index": 2506 + "index": 2473 } ], "Dropdown.Item": [ @@ -12956,7 +16331,7 @@ "filePath": "src/discussions/common/ActionsDropdown.jsx", "line": 87, "column": 16, - "index": 2544 + "index": 2511 }, { "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", @@ -13000,7 +16375,7 @@ "filePath": "src/discussions/common/EndorsedAlertBanner.jsx", "line": 32, "column": 6, - "index": 999 + "index": 1002 } ], "Institution": [ @@ -13024,7 +16399,7 @@ "filePath": "src/discussions/common/Confirmation.jsx", "line": 22, "column": 4, - "index": 420 + "index": 423 }, { "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", @@ -13038,7 +16413,7 @@ "filePath": "src/discussions/common/Confirmation.jsx", "line": 23, "column": 6, - "index": 525 + "index": 528 }, { "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", @@ -13052,7 +16427,7 @@ "filePath": "src/discussions/common/Confirmation.jsx", "line": 24, "column": 8, - "index": 554 + "index": 557 }, { "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", @@ -13066,7 +16441,7 @@ "filePath": "src/discussions/common/Confirmation.jsx", "line": 28, "column": 6, - "index": 655 + "index": 658 }, { "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", @@ -13080,7 +16455,7 @@ "filePath": "src/discussions/common/Confirmation.jsx", "line": 31, "column": 6, - "index": 728 + "index": 731 }, { "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", @@ -13094,7 +16469,7 @@ "filePath": "src/discussions/common/Confirmation.jsx", "line": 33, "column": 10, - "index": 779 + "index": 782 }, { "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", @@ -13106,49 +16481,23 @@ "breakpoints": [ { "filePath": "src/discussions/data/hooks.js", - "line": 110, + "line": 112, "column": 29, - "index": 3866 + "index": 3868 }, { "filePath": "src/discussions/data/hooks.js", - "line": 115, + "line": 117, "column": 29, - "index": 4002 + "index": 4004 } ], "PageBanner": [ { - "filePath": "src/discussions/discussions-home/BlackoutInformationBanner.jsx", - "line": 26, + "filePath": "src/discussions/discussions-home/DiscussionsRestrictionBanner.jsx", + "line": 23, "column": 4, "index": 732 - }, - { - "filePath": "src/discussions/discussions-home/InformationBanner.jsx", - "line": 27, - "column": 4, - "index": 1103 - } - ], - "Hyperlink": [ - { - "filePath": "src/discussions/discussions-home/InformationBanner.jsx", - "line": 37, - "column": 12, - "index": 1367 - }, - { - "filePath": "src/discussions/discussions-home/InformationBanner.jsx", - "line": 48, - "column": 8, - "index": 1698 - }, - { - "filePath": "src/discussions/posts/post/Post.jsx", - "line": 198, - "column": 10, - "index": 8126 } ], "ArrowBack": [ @@ -13156,7 +16505,7 @@ "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", "line": 21, "column": 15, - "index": 559 + "index": 562 }, { "filePath": "src/discussions/learners/LearnerPostsView.jsx", @@ -13166,15 +16515,15 @@ }, { "filePath": "src/discussions/post-comments/PostCommentsView.jsx", - "line": 90, + "line": 91, "column": 28, - "index": 2839 + "index": 2911 }, { "filePath": "src/discussions/post-comments/PostCommentsView.jsx", - "line": 103, + "line": 104, "column": 17, - "index": 3295 + "index": 3367 } ], "SearchField": [ @@ -13182,7 +16531,7 @@ "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchResultBar.jsx", "line": 16, "column": 6, - "index": 415 + "index": 418 } ], "Avatar": [ @@ -13294,45 +16643,45 @@ "Form.Group": [ { "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", - "line": 108, + "line": 109, "column": 12, - "index": 3820 + "index": 3903 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 269, + "line": 272, "column": 10, - "index": 9986 + "index": 10043 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 331, + "line": 334, "column": 10, - "index": 12604 + "index": 12637 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 351, + "line": 354, "column": 10, - "index": 13409 + "index": 13442 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 371, + "line": 374, "column": 10, - "index": 14047 + "index": 14080 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 416, + "line": 419, "column": 12, - "index": 15736 + "index": 15769 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 430, + "line": 433, "column": 12, - "index": 16216 + "index": 16249 }, { "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", @@ -13344,33 +16693,33 @@ "Form.Control": [ { "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", - "line": 114, + "line": 115, "column": 14, - "index": 3993 + "index": 4076 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 270, + "line": 273, "column": 12, - "index": 10033 + "index": 10090 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 332, + "line": 335, "column": 12, - "index": 12657 + "index": 12690 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 358, + "line": 361, "column": 12, - "index": 13595 + "index": 13628 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 378, + "line": 381, "column": 12, - "index": 14248 + "index": 14281 }, { "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", @@ -13382,45 +16731,45 @@ "StatefulButton": [ { "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", - "line": 164, + "line": 165, "column": 12, - "index": 5861 + "index": 5944 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 453, + "line": 456, "column": 10, - "index": 16947 + "index": 16980 } ], "Post": [ { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 259, + "line": 262, "column": 18, - "index": 9646 + "index": 9703 } ], "Help": [ { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 265, + "line": 268, "column": 18, - "index": 9855 + "index": 9912 } ], "Form.Checkbox": [ { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 417, + "line": 420, "column": 14, - "index": 15763 + "index": 15796 }, { "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 431, + "line": 434, "column": 14, - "index": 16243 + "index": 16276 } ], "Card": [ @@ -13439,6 +16788,14 @@ "index": 902 } ], + "Hyperlink": [ + { + "filePath": "src/discussions/posts/post/Post.jsx", + "line": 201, + "column": 10, + "index": 8220 + } + ], "People": [ { "filePath": "src/discussions/posts/post/PostFooter.jsx", @@ -13464,9 +16821,9 @@ }, { "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 112, - "column": 18, - "index": 4324 + "line": 117, + "column": 14, + "index": 4316 }, { "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", @@ -13478,31 +16835,31 @@ "Truncate": [ { "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 88, - "column": 16, - "index": 3203 + "line": 91, + "column": 14, + "index": 3196 } ], "CheckCircle": [ { "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 107, - "column": 29, - "index": 4050 + "line": 112, + "column": 25, + "index": 4058 } ], "ProductTour": [ { "filePath": "src/discussions/tours/DiscussionsProductTour.jsx", - "line": 22, + "line": 23, "column": 8, - "index": 518 + "index": 580 } ] } }, { - "version": "20.35.0", + "version": "20.45.5", "name": "@edx/frontend-app-ecommerce", "repository": { "type": "git", @@ -13510,138 +16867,170 @@ }, "folderName": "frontend-app-ecommerce", "usages": { - "Hyperlink": [ + "AlertModal": [ { - "filePath": "src/order-history/OrderHistoryPage.jsx", - "line": 49, - "column": 8, - "index": 1324 - }, + "filePath": "src/components/BasicAlert.jsx", + "line": 32, + "column": 4, + "index": 791 + } + ], + "Info": [ { - "filePath": "src/subscriptions/SubscriptionCardsView.jsx", - "line": 15, - "column": 6, - "index": 374 + "filePath": "src/components/BasicAlert.jsx", + "line": 36, + "column": 12, + "index": 890 }, { - "filePath": "src/subscriptions/Subscriptions.jsx", - "line": 116, - "column": 14, - "index": 3888 + "filePath": "src/components/BasicAlert.jsx", + "line": 53, + "column": 12, + "index": 1247 } ], - "Pagination": [ + "ActionRow": [ { - "filePath": "src/order-history/OrderHistoryPage.jsx", - "line": 66, - "column": 6, - "index": 1676 + "filePath": "src/components/BasicAlert.jsx", + "line": 40, + "column": 8, + "index": 973 } ], - "Table": [ + "Button": [ { - "filePath": "src/order-history/OrderHistoryPage.jsx", - "line": 89, + "filePath": "src/components/BasicAlert.jsx", + "line": 41, + "column": 10, + "index": 995 + }, + { + "filePath": "src/subscriptions/ManageSubscriptionsPage.jsx", + "line": 71, + "column": 8, + "index": 2706 + }, + { + "filePath": "src/subscriptions/SubscriptionUpsell.jsx", + "line": 13, "column": 6, - "index": 2177 + "index": 388 } ], - "Card": [ + "Alert": [ { - "filePath": "src/subscriptions/SubscriptionCardsView.jsx", - "line": 19, - "column": 8, - "index": 508 + "filePath": "src/components/BasicAlert.jsx", + "line": 50, + "column": 4, + "index": 1173 + }, + { + "filePath": "src/subscriptions/SubscriptionUpsell.jsx", + "line": 9, + "column": 2, + "index": 285 } ], - "Badge": [ + "Alert.Heading": [ { - "filePath": "src/subscriptions/SubscriptionCardsView.jsx", - "line": 22, - "column": 12, - "index": 723 + "filePath": "src/components/BasicAlert.jsx", + "line": 56, + "column": 6, + "index": 1288 }, { "filePath": "src/subscriptions/SubscriptionUpsell.jsx", - "line": 25, - "column": 6, - "index": 747 + "line": 29, + "column": 4, + "index": 871 } ], - "SpinnerSimple": [ + "Hyperlink": [ { - "filePath": "src/subscriptions/Subscriptions.jsx", - "line": 55, - "column": 32, - "index": 1663 + "filePath": "src/components/SupportLink.jsx", + "line": 7, + "column": 2, + "index": 216 + }, + { + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 48, + "column": 8, + "index": 1330 + }, + { + "filePath": "src/subscriptions/SubscriptionCardsView.jsx", + "line": 38, + "column": 6, + "index": 1044 } ], - "StatefulButton": [ + "Pagination": [ { - "filePath": "src/subscriptions/Subscriptions.jsx", - "line": 84, - "column": 8, - "index": 2753 + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 65, + "column": 6, + "index": 1682 } ], - "AlertModal": [ + "DataTable": [ { - "filePath": "src/subscriptions/Subscriptions.jsx", - "line": 95, + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 89, "column": 6, - "index": 3168 + "index": 2221 } ], - "Info": [ + "DataTable.Table": [ { - "filePath": "src/subscriptions/Subscriptions.jsx", - "line": 98, - "column": 14, - "index": 3257 + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 115, + "column": 8, + "index": 3209 } ], - "ActionRow": [ + "Card": [ { - "filePath": "src/subscriptions/Subscriptions.jsx", - "line": 102, - "column": 10, - "index": 3358 + "filePath": "src/subscriptions/SubscriptionCardsView.jsx", + "line": 43, + "column": 8, + "index": 1163 } ], - "Button": [ + "Badge": [ { - "filePath": "src/subscriptions/Subscriptions.jsx", - "line": 103, + "filePath": "src/subscriptions/SubscriptionCardsView.jsx", + "line": 46, "column": 12, - "index": 3382 + "index": 1378 }, { "filePath": "src/subscriptions/SubscriptionUpsell.jsx", - "line": 11, + "line": 33, "column": 6, - "index": 290 + "index": 983 } ], - "Alert": [ + "SpinnerSimple": [ { - "filePath": "src/subscriptions/SubscriptionUpsell.jsx", - "line": 8, - "column": 2, - "index": 233 + "filePath": "src/subscriptions/Subscriptions.jsx", + "line": 58, + "column": 32, + "index": 1934 } ], - "Alert.Heading": [ + "StatefulButton": [ { - "filePath": "src/subscriptions/SubscriptionUpsell.jsx", - "line": 21, - "column": 4, - "index": 635 + "filePath": "src/subscriptions/Subscriptions.jsx", + "line": 83, + "column": 8, + "index": 2789 } ] } }, { - "version": "20.29.0", + "version": "20.46.2", "name": "@edx/frontend-app-enterprise-public-catalog", "repository": { "type": "git", @@ -13818,9 +17207,9 @@ }, { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 448, + "line": 454, "column": 12, - "index": 13409 + "index": 13541 } ], "Icon": [ @@ -13840,25 +17229,25 @@ "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", "line": 51, "column": 8, - "index": 1360 + "index": 1365 }, { "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", "line": 65, "column": 10, - "index": 1846 + "index": 1851 }, { "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", "line": 81, "column": 10, - "index": 2333 + "index": 2338 }, { "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", "line": 97, "column": 8, - "index": 2842 + "index": 2847 }, { "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", @@ -13882,7 +17271,7 @@ "filePath": "src/components/programCard/ProgramCard.jsx", "line": 63, "column": 12, - "index": 1941 + "index": 1965 } ], "Launch": [ @@ -13904,7 +17293,7 @@ "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", "line": 51, "column": 36, - "index": 1388 + "index": 1393 }, { "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", @@ -13918,7 +17307,7 @@ "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", "line": 65, "column": 38, - "index": 1874 + "index": 1879 }, { "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", @@ -13932,7 +17321,7 @@ "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", "line": 81, "column": 38, - "index": 2361 + "index": 2366 } ], "EventNote": [ @@ -13940,7 +17329,7 @@ "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", "line": 97, "column": 36, - "index": 2870 + "index": 2875 } ], "Assignment": [ @@ -13954,59 +17343,59 @@ "Alert": [ { "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 87, + "line": 70, "column": 6, - "index": 2640 + "index": 1998 }, { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 394, + "line": 400, "column": 6, - "index": 11717 + "index": 11849 } ], "Alert.Heading": [ { "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 88, + "line": 71, "column": 8, - "index": 2723 + "index": 2081 } ], "Alert.Link": [ { "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 94, + "line": 77, "column": 8, - "index": 2903 + "index": 2261 } ], "DataTable": [ { "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 105, + "line": 87, "column": 6, - "index": 3246 + "index": 2568 }, { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 467, + "line": 486, "column": 10, - "index": 14022 + "index": 14744 } ], "CardView": [ { "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 118, + "line": 100, "column": 8, - "index": 3689 + "index": 3009 }, { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 480, + "line": 499, "column": 14, - "index": 14538 + "index": 15260 } ], "Badge": [ @@ -14030,9 +17419,9 @@ }, { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 438, + "line": 444, "column": 12, - "index": 13137 + "index": 13269 }, { "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", @@ -14074,25 +17463,25 @@ "filePath": "src/components/programCard/ProgramCard.jsx", "line": 59, "column": 10, - "index": 1817 + "index": 1830 }, { "filePath": "src/components/programCard/ProgramCard.jsx", "line": 72, "column": 12, - "index": 2285 + "index": 2263 }, { "filePath": "src/components/programCard/ProgramCard.jsx", "line": 77, "column": 12, - "index": 2508 + "index": 2486 }, { "filePath": "src/components/programCard/ProgramCard.jsx", "line": 82, "column": 12, - "index": 2719 + "index": 2697 } ], "useToggle": [ @@ -14119,28 +17508,36 @@ "index": 1304 } ], + "Skeleton": [ + { + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 394, + "column": 8, + "index": 11723 + } + ], "DataTable.TableControlBar": [ { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 478, + "line": 497, "column": 12, - "index": 14467 + "index": 15189 } ], "DataTable.Table": [ { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 491, + "line": 510, "column": 26, - "index": 14852 + "index": 15574 } ], "DataTable.TableFooter": [ { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 494, + "line": 513, "column": 14, - "index": 14915 + "index": 15637 } ], "useMediaQuery": [ @@ -14304,13 +17701,13 @@ "filePath": "src/components/programCard/ProgramCard.jsx", "line": 63, "column": 23, - "index": 1952 + "index": 1976 } ] } }, { - "version": "19.25.4", + "version": "20.45.0", "name": "@edx/frontend-app-gradebook", "repository": { "type": "git", @@ -14333,21 +17730,21 @@ }, { "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 61, - "column": 12, - "index": 1795 + "line": 46, + "column": 10, + "index": 1166 }, { - "filePath": "src/components/GradesView/StatusAlerts.jsx", - "line": 43, - "column": 8, - "index": 1033 + "filePath": "src/components/GradesView/StatusAlerts/index.jsx", + "line": 15, + "column": 6, + "index": 247 }, { - "filePath": "src/components/GradesView/StatusAlerts.jsx", - "line": 50, - "column": 8, - "index": 1267 + "filePath": "src/components/GradesView/StatusAlerts/index.jsx", + "line": 22, + "column": 6, + "index": 412 } ], "DataTable": [ @@ -14359,15 +17756,15 @@ }, { "filePath": "src/components/GradesView/EditModal/OverrideTable/index.jsx", - "line": 30, + "line": 24, "column": 4, - "index": 839 + "index": 650 }, { "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 70, - "column": 8, - "index": 2424 + "line": 24, + "column": 6, + "index": 573 } ], "Hyperlink": [ @@ -14404,22 +17801,22 @@ "index": 1075 }, { - "filePath": "src/components/GradesView/FilterMenuToggle.jsx", - "line": 22, - "column": 4, - "index": 678 + "filePath": "src/components/GradesView/FilterMenuToggle/index.jsx", + "line": 24, + "column": 6, + "index": 738 }, { "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", - "line": 36, - "column": 10, - "index": 990 + "line": 38, + "column": 12, + "index": 1043 }, { "filePath": "src/components/GradesView/SpinnerIcon.jsx", - "line": 17, - "column": 4, - "index": 498 + "line": 16, + "column": 6, + "index": 402 }, { "filePath": "src/components/NetworkButton/index.jsx", @@ -14481,57 +17878,45 @@ }, { "filePath": "src/components/GradebookHeader/index.jsx", - "line": 52, - "column": 12, - "index": 1599 - }, - { - "filePath": "src/components/GradebookHeader/test.jsx", - "line": 78, - "column": 10, - "index": 2675 - }, - { - "filePath": "src/components/GradebookHeader/test.jsx", - "line": 92, + "line": 31, "column": 10, - "index": 3249 + "index": 989 }, { "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 78, - "column": 12, - "index": 2450 + "line": 60, + "column": 10, + "index": 1652 }, { "filePath": "src/components/GradesView/FilterBadges/FilterBadge.jsx", - "line": 36, - "column": 6, - "index": 971 + "line": 39, + "column": 8, + "index": 1056 }, { - "filePath": "src/components/GradesView/FilterMenuToggle.jsx", - "line": 17, - "column": 2, - "index": 558 + "filePath": "src/components/GradesView/FilterMenuToggle/index.jsx", + "line": 19, + "column": 4, + "index": 610 }, { "filePath": "src/components/GradesView/GradebookTable/GradeButton.jsx", - "line": 42, - "column": 8, - "index": 1138 + "line": 47, + "column": 6, + "index": 1333 }, { "filePath": "src/components/GradesView/PageButtons/index.jsx", - "line": 33, - "column": 8, - "index": 843 + "line": 15, + "column": 6, + "index": 314 }, { "filePath": "src/components/GradesView/PageButtons/index.jsx", - "line": 41, - "column": 8, - "index": 1095 + "line": 23, + "column": 6, + "index": 505 } ], "IconButton": [ @@ -14602,6 +17987,12 @@ "line": 28, "column": 8, "index": 782 + }, + { + "filePath": "src/components/GradesView/ScoreViewInput/index.jsx", + "line": 18, + "column": 4, + "index": 528 } ], "Form.Label": [ @@ -14616,6 +18007,12 @@ "line": 17, "column": 6, "index": 326 + }, + { + "filePath": "src/components/GradesView/ScoreViewInput/index.jsx", + "line": 19, + "column": 6, + "index": 569 } ], "Form.Control": [ @@ -14632,156 +18029,158 @@ "index": 365 }, { - "filePath": "src/components/GradesView/EditModal/OverrideTable/AdjustedGradeInput.jsx", - "line": 30, - "column": 8, - "index": 783 + "filePath": "src/components/GradesView/EditModal/OverrideTable/AdjustedGradeInput/index.jsx", + "line": 20, + "column": 6, + "index": 425 }, { - "filePath": "src/components/GradesView/EditModal/OverrideTable/ReasonInput.jsx", - "line": 31, - "column": 6, - "index": 686 + "filePath": "src/components/GradesView/EditModal/OverrideTable/ReasonInput/index.jsx", + "line": 16, + "column": 4, + "index": 367 }, { "filePath": "src/components/GradesView/ImportGradesButton/index.jsx", "line": 29, "column": 10, "index": 821 + }, + { + "filePath": "src/components/GradesView/ScoreViewInput/index.jsx", + "line": 20, + "column": 6, + "index": 637 } ], "ModalDialog": [ { "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 50, - "column": 6, - "index": 1481 + "line": 35, + "column": 4, + "index": 917 } ], "ModalDialog.Body": [ { "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 58, - "column": 8, - "index": 1719 + "line": 43, + "column": 6, + "index": 1096 } ], "ModalDialog.Footer": [ { "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 73, - "column": 8, - "index": 2240 + "line": 55, + "column": 6, + "index": 1461 } ], "ActionRow": [ { "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 74, - "column": 10, - "index": 2271 + "line": 56, + "column": 8, + "index": 1490 } ], "ModalDialog.CloseButton": [ { "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 75, - "column": 12, - "index": 2295 + "line": 57, + "column": 10, + "index": 1512 + } + ], + "Form": [ + { + "filePath": "src/components/GradesView/EditModal/OverrideTable/AdjustedGradeInput/index.test.jsx", + "line": 32, + "column": 30, + "index": 827 + }, + { + "filePath": "src/components/GradesView/EditModal/OverrideTable/ReasonInput/index.test.jsx", + "line": 32, + "column": 30, + "index": 782 + }, + { + "filePath": "src/components/GradesView/ImportGradesButton/index.jsx", + "line": 27, + "column": 6, + "index": 729 + }, + { + "filePath": "src/components/GradesView/ImportGradesButton/index.test.jsx", + "line": 40, + "column": 36, + "index": 1438 + } + ], + "FilterAlt": [ + { + "filePath": "src/components/GradesView/FilterMenuToggle/index.jsx", + "line": 24, + "column": 17, + "index": 749 } ], "DataTable.TableControlBar": [ { "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 78, - "column": 10, - "index": 2734 + "line": 32, + "column": 8, + "index": 787 } ], "DataTable.Table": [ { "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 79, - "column": 10, - "index": 2774 + "line": 33, + "column": 8, + "index": 825 } ], "DataTable.EmptyTable": [ { "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 80, - "column": 10, - "index": 2804 + "line": 34, + "column": 8, + "index": 853 } ], "OverlayTrigger": [ { "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", - "line": 23, - "column": 4, - "index": 574 + "line": 25, + "column": 6, + "index": 619 } ], "Tooltip": [ { "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", - "line": 28, - "column": 8, - "index": 729 - } - ], - "Form": [ - { - "filePath": "src/components/GradesView/ImportGradesButton/index.jsx", - "line": 27, - "column": 6, - "index": 729 - }, - { - "filePath": "src/components/GradesView/ImportGradesButton/index.test.jsx", - "line": 39, - "column": 21, - "index": 1222 + "line": 30, + "column": 10, + "index": 784 } ], "Toast": [ { - "filePath": "src/components/GradesView/ImportSuccessToast.jsx", - "line": 40, - "column": 6, - "index": 1013 - } - ], - "FormGroup": [ - { - "filePath": "src/components/GradesView/ScoreViewInput.jsx", - "line": 17, - "column": 2, - "index": 557 - } - ], - "FormLabel": [ - { - "filePath": "src/components/GradesView/ScoreViewInput.jsx", - "line": 18, - "column": 4, - "index": 595 - } - ], - "FormControl": [ - { - "filePath": "src/components/GradesView/ScoreViewInput.jsx", - "line": 19, + "filePath": "src/components/GradesView/ImportSuccessToast/index.jsx", + "line": 20, "column": 4, - "index": 668 + "index": 422 } ], "SearchField": [ { - "filePath": "src/components/GradesView/SearchControls.jsx", - "line": 44, - "column": 8, - "index": 1101 + "filePath": "src/components/GradesView/SearchControls/index.jsx", + "line": 22, + "column": 6, + "index": 492 } ], "StatefulButton": [ @@ -14795,7 +18194,7 @@ } }, { - "version": "20.32.0", + "version": "20.46.2", "name": "@edx/frontend-app-learner-dashboard", "repository": { "type": "git", @@ -14806,21 +18205,9 @@ "Alert": [ { "filePath": "src/App.jsx", - "line": 84, - "column": 14, - "index": 2615 - }, - { - "filePath": "src/App.test.jsx", "line": 87, - "column": 12, - "index": 3013 - }, - { - "filePath": "src/App.test.jsx", - "line": 103, - "column": 12, - "index": 3544 + "column": 16, + "index": 2744 }, { "filePath": "src/components/Banner.jsx", @@ -14912,63 +18299,69 @@ }, { "filePath": "src/containers/Dashboard/hooks.js", - "line": 9, + "line": 28, "column": 20, - "index": 280 - }, - { - "filePath": "src/containers/Dashboard/hooks.test.js", - "line": 33, - "column": 6, - "index": 776 + "index": 854 }, { "filePath": "src/containers/Dashboard/hooks.test.js", - "line": 36, - "column": 6, - "index": 937 + "line": 27, + "column": 0, + "index": 596 }, { "filePath": "src/containers/Dashboard/hooks.test.js", - "line": 38, - "column": 6, - "index": 1055 + "line": 52, + "column": 10, + "index": 1476 }, { "filePath": "src/containers/LearnerDashboardHeader/hooks.js", - "line": 7, + "line": 14, "column": 20, - "index": 223 + "index": 397 }, { "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", - "line": 17, + "line": 33, "column": 6, - "index": 505 + "index": 739 }, { "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", - "line": 21, + "line": 37, "column": 6, - "index": 690 + "index": 924 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.js", - "line": 14, + "filePath": "src/ExperimentContext.jsx", + "line": 37, "column": 20, - "index": 397 + "index": 1125 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.test.js", - "line": 33, + "filePath": "src/ExperimentContext.test.jsx", + "line": 108, "column": 6, - "index": 753 + "index": 3321 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.test.js", - "line": 37, + "filePath": "src/widgets/ProductRecommendations/hooks.js", + "line": 23, + "column": 20, + "index": 925 + }, + { + "filePath": "src/widgets/ProductRecommendations/hooks.test.js", + "line": 98, "column": 6, - "index": 938 + "index": 2666 + }, + { + "filePath": "src/widgets/ProductRecommendations/hooks.test.js", + "line": 107, + "column": 6, + "index": 2985 } ], "breakpoints": [ @@ -15064,51 +18457,45 @@ }, { "filePath": "src/containers/Dashboard/hooks.js", - "line": 10, - "column": 17, - "index": 314 + "line": 31, + "column": 34, + "index": 998 }, { "filePath": "src/containers/Dashboard/hooks.test.js", - "line": 34, - "column": 6, - "index": 832 + "line": 28, + "column": 0, + "index": 642 }, { "filePath": "src/containers/LearnerDashboardHeader/hooks.js", - "line": 8, + "line": 15, "column": 52, - "index": 292 + "index": 466 }, { "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", - "line": 17, + "line": 33, "column": 49, - "index": 548 + "index": 782 }, { "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", - "line": 21, + "line": 37, "column": 49, - "index": 733 - }, - { - "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.js", - "line": 15, - "column": 52, - "index": 466 + "index": 967 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.test.js", - "line": 33, - "column": 49, - "index": 796 + "filePath": "src/ExperimentContext.jsx", + "line": 38, + "column": 27, + "index": 1169 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.test.js", - "line": 37, - "column": 49, - "index": 981 + "filePath": "src/widgets/ProductRecommendations/hooks.js", + "line": 24, + "column": 17, + "index": 959 } ], "Button": [ @@ -15162,9 +18549,9 @@ }, { "filePath": "src/containers/CourseList/NoCoursesView/index.jsx", - "line": 27, + "line": 28, "column": 6, - "index": 845 + "index": 898 }, { "filePath": "src/containers/EmailSettingsModal/index.jsx", @@ -15191,106 +18578,100 @@ "index": 1240 }, { - "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", - "line": 36, - "column": 12, - "index": 922 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", - "line": 62, - "column": 10, - "index": 1682 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/index.jsx", - "line": 45, - "column": 14, - "index": 1558 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/index.jsx", - "line": 68, - "column": 16, - "index": 2404 - }, - { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", "line": 29, "column": 8, - "index": 911 + "index": 1086 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", "line": 32, "column": 8, - "index": 1031 + "index": 1206 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", "line": 35, "column": 8, - "index": 1167 + "index": 1342 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", - "line": 43, + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", + "line": 44, "column": 8, - "index": 1385 + "index": 1631 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", - "line": 49, + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", + "line": 50, "column": 14, - "index": 1604 + "index": 1852 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", - "line": 53, - "column": 12, - "index": 1770 + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", + "line": 55, + "column": 14, + "index": 2080 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", "line": 62, "column": 12, - "index": 2050 + "index": 2371 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", - "line": 70, + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", + "line": 71, + "column": 12, + "index": 2651 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", + "line": 79, "column": 14, - "index": 2333 + "index": 2934 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", - "line": 78, + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", + "line": 87, "column": 12, - "index": 2581 + "index": 3192 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/index.jsx", - "line": 29, + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 36, + "column": 12, + "index": 922 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 62, + "column": 10, + "index": 1682 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", + "line": 30, "column": 8, - "index": 938 + "index": 1106 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/index.jsx", - "line": 37, + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", + "line": 38, "column": 8, - "index": 1135 + "index": 1303 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/index.jsx", - "line": 45, + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", + "line": 46, "column": 8, - "index": 1336 + "index": 1504 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/index.jsx", - "line": 55, + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", + "line": 57, "column": 8, - "index": 1621 + "index": 1859 }, { "filePath": "src/containers/SelectSessionModal/index.jsx", @@ -15334,19 +18715,31 @@ "column": 8, "index": 1130 }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/NavbarButton.jsx", + "line": 13, + "column": 4, + "index": 414 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/RecommendationsPanelButton.jsx", + "line": 11, + "column": 4, + "index": 314 + }, { "filePath": "src/widgets/RecommendationsPanel/LoadedView.jsx", - "line": 37, - "column": 8, - "index": 1042 + "line": 49, + "column": 10, + "index": 1709 } ], "ActionRow": [ { "filePath": "src/containers/CourseCard/components/CourseCardActions/index.jsx", - "line": 28, + "line": 24, "column": 4, - "index": 955 + "index": 723 }, { "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditContent.jsx", @@ -15389,6 +18782,12 @@ "line": 39, "column": 6, "index": 981 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 46, + "column": 10, + "index": 1408 } ], "Locked": [ @@ -15422,15 +18821,15 @@ }, { "filePath": "src/containers/CourseCard/components/CourseCardBanners/CourseBanner.jsx", - "line": 40, - "column": 14, - "index": 1142 + "line": 39, + "column": 12, + "index": 1126 }, { "filePath": "src/containers/CourseCard/components/CourseCardBanners/CourseBanner.jsx", - "line": 51, + "line": 49, "column": 10, - "index": 1460 + "index": 1426 }, { "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/ProviderLink.jsx", @@ -15440,9 +18839,21 @@ }, { "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 30, + "line": 31, "column": 10, - "index": 961 + "index": 1014 + }, + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", + "line": 53, + "column": 10, + "index": 1375 + }, + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCardHeader.jsx", + "line": 51, + "column": 6, + "index": 1664 }, { "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", @@ -15498,12 +18909,6 @@ "column": 19, "index": 780 }, - { - "filePath": "src/containers/LearnerDashboardHeader/index.jsx", - "line": 45, - "column": 92, - "index": 1636 - }, { "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", "line": 45, @@ -15518,87 +18923,87 @@ "column": 12, "index": 1326 }, + { + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", + "line": 57, + "column": 16, + "index": 2194 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 45, + "column": 14, + "index": 1628 + }, { "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", "line": 44, "column": 8, "index": 1223 + }, + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", + "line": 81, + "column": 10, + "index": 2153 } ], "Dropdown": [ { "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 45, + "line": 42, "column": 6, - "index": 1386 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 24, - "column": 4, - "index": 868 + "index": 1273 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", "line": 19, "column": 6, - "index": 580 + "index": 587 } ], "Dropdown.Toggle": [ { "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 46, + "line": 43, "column": 8, - "index": 1437 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 25, - "column": 6, - "index": 957 + "index": 1324 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", "line": 20, "column": 8, - "index": 629 + "index": 636 } ], "IconButton": [ { "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 48, + "line": 45, "column": 14, - "index": 1519 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/index.jsx", - "line": 54, - "column": 16, - "index": 1964 + "index": 1406 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/index.jsx", + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/index.jsx", "line": 23, "column": 10, - "index": 725 + "index": 711 } ], "MoreVert": [ { "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 49, + "line": 46, "column": 15, - "index": 1546 + "index": 1433 } ], "Icon": [ { "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 50, + "line": 47, "column": 18, - "index": 1574 + "index": 1461 }, { "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", @@ -15613,16 +19018,10 @@ "index": 2031 }, { - "filePath": "src/containers/LearnerDashboardHeader/index.jsx", - "line": 61, - "column": 26, - "index": 2230 - }, - { - "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/index.jsx", + "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/index.jsx", "line": 27, "column": 20, - "index": 843 + "index": 829 }, { "filePath": "src/containers/MasqueradeBar/index.jsx", @@ -15644,133 +19043,85 @@ }, { "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 14, + "line": 15, "column": 26, - "index": 427 + "index": 480 + }, + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCardHeader.jsx", + "line": 62, + "column": 10, + "index": 2045 } ], "Dropdown.Menu": [ { "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 54, + "line": 51, "column": 8, - "index": 1679 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 35, - "column": 6, - "index": 1210 + "index": 1566 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", "line": 31, "column": 8, - "index": 955 + "index": 962 } ], "Dropdown.Item": [ { "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 56, - "column": 12, - "index": 1734 - }, - { - "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 65, - "column": 12, - "index": 2028 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 37, - "column": 8, - "index": 1326 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 39, - "column": 10, - "index": 1450 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 48, - "column": 8, - "index": 1704 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", "line": 53, "column": 12, - "index": 1898 + "index": 1633 }, { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 56, - "column": 12, - "index": 2032 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 61, - "column": 8, - "index": 2245 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 65, - "column": 10, - "index": 2424 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 69, - "column": 8, - "index": 2574 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 73, + "filePath": "src/containers/CourseCard/components/CourseCardMenu/SocialShareMenu.jsx", + "line": 36, "column": 8, - "index": 2724 + "index": 1159 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", "line": 33, "column": 10, - "index": 1075 + "index": 1082 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", "line": 37, "column": 12, - "index": 1227 + "index": 1234 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 42, + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 43, + "column": 12, + "index": 1511 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 50, "column": 10, - "index": 1444 + "index": 1802 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 45, + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 53, "column": 10, - "index": 1619 + "index": 1977 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 49, + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 57, "column": 12, - "index": 1806 + "index": 2164 }, { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 54, + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 62, "column": 10, - "index": 1995 + "index": 2363 } ], "Card": [ @@ -15788,9 +19139,15 @@ }, { "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 20, + "line": 21, "column": 4, - "index": 646 + "index": 699 + }, + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", + "line": 51, + "column": 4, + "index": 1303 }, { "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", @@ -15808,9 +19165,9 @@ }, { "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 25, + "line": 26, "column": 6, - "index": 813 + "index": 866 }, { "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", @@ -15831,6 +19188,12 @@ "line": 39, "column": 6, "index": 1068 + }, + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", + "line": 66, + "column": 6, + "index": 1697 } ], "Card.Section": [ @@ -15840,6 +19203,12 @@ "column": 14, "index": 1212 }, + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", + "line": 79, + "column": 6, + "index": 2070 + }, { "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", "line": 27, @@ -16064,75 +19433,63 @@ "Image": [ { "filePath": "src/containers/CourseList/NoCoursesView/index.jsx", - "line": 20, + "line": 21, "column": 6, - "index": 609 + "index": 662 }, { "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", "line": 54, "column": 12, "index": 1453 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/GreetingBanner.jsx", - "line": 35, - "column": 8, - "index": 888 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/index.jsx", - "line": 40, - "column": 10, - "index": 1354 } ], "Search": [ { "filePath": "src/containers/CourseList/NoCoursesView/index.jsx", - "line": 31, + "line": 32, "column": 20, - "index": 943 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/index.jsx", - "line": 60, - "column": 23, - "index": 2196 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/index.jsx", - "line": 72, - "column": 30, - "index": 2553 + "index": 1008 }, { "filePath": "src/widgets/RecommendationsPanel/LoadedView.jsx", - "line": 39, - "column": 22, - "index": 1101 + "line": 51, + "column": 24, + "index": 1772 } ], "Container": [ { "filePath": "src/containers/Dashboard/DashboardLayout.jsx", - "line": 23, + "line": 38, "column": 4, - "index": 481 + "index": 867 }, { "filePath": "src/containers/RelatedProgramsModal/index.jsx", "line": 42, "column": 8, "index": 1291 + }, + { + "filePath": "src/widgets/ProductRecommendations/components/LoadedView.jsx", + "line": 25, + "column": 4, + "index": 931 } ], "Row": [ { "filePath": "src/containers/Dashboard/DashboardLayout.jsx", - "line": 24, + "line": 39, "column": 6, - "index": 515 + "index": 901 + }, + { + "filePath": "src/containers/Dashboard/DashboardLayout.jsx", + "line": 48, + "column": 6, + "index": 1252 }, { "filePath": "src/containers/RelatedProgramsModal/index.jsx", @@ -16144,15 +19501,21 @@ "Col": [ { "filePath": "src/containers/Dashboard/DashboardLayout.jsx", - "line": 25, + "line": 40, "column": 8, - "index": 529 + "index": 915 }, { "filePath": "src/containers/Dashboard/DashboardLayout.jsx", - "line": 28, + "line": 43, "column": 8, - "index": 639 + "index": 1023 + }, + { + "filePath": "src/containers/Dashboard/DashboardLayout.jsx", + "line": 49, + "column": 8, + "index": 1266 }, { "filePath": "src/containers/RelatedProgramsModal/index.jsx", @@ -16205,6 +19568,12 @@ "line": 29, "column": 4, "index": 681 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 26, + "column": 6, + "index": 754 } ], "Form.Switch": [ @@ -16215,60 +19584,6 @@ "index": 784 } ], - "AvatarButton": [ - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 26, - "column": 12, - "index": 986 - }, - { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 21, - "column": 14, - "index": 660 - } - ], - "Dropdown.Header": [ - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 36, - "column": 8, - "index": 1266 - }, - { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 32, - "column": 10, - "index": 1013 - } - ], - "Dropdown.Divider": [ - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 47, - "column": 8, - "index": 1675 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", - "line": 72, - "column": 8, - "index": 2695 - }, - { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 41, - "column": 10, - "index": 1413 - }, - { - "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 53, - "column": 10, - "index": 1964 - } - ], "PageBanner": [ { "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", @@ -16293,6 +19608,36 @@ "index": 1398 } ], + "AvatarButton": [ + { + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 21, + "column": 14, + "index": 667 + } + ], + "Dropdown.Header": [ + { + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 32, + "column": 10, + "index": 1020 + } + ], + "Dropdown.Divider": [ + { + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 41, + "column": 10, + "index": 1420 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 61, + "column": 10, + "index": 2332 + } + ], "FormLabel": [ { "filePath": "src/containers/MasqueradeBar/index.jsx", @@ -16354,9 +19699,15 @@ }, { "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 21, + "line": 22, "column": 6, - "index": 718 + "index": 771 + }, + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", + "line": 60, + "column": 6, + "index": 1526 }, { "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", @@ -16377,6 +19728,12 @@ "line": 37, "column": 6, "index": 1062 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 34, + "column": 8, + "index": 927 } ], "ModalDialog.Body": [ @@ -16385,6 +19742,12 @@ "line": 40, "column": 6, "index": 1178 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 39, + "column": 8, + "index": 1130 } ], "Form.Label": [ @@ -16406,23 +19769,81 @@ "ArrowForward": [ { "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 14, + "line": 15, "column": 54, - "index": 455 + "index": 508 + } + ], + "Skeleton": [ + { + "filePath": "src/widgets/ProductRecommendations/components/LoadingView.jsx", + "line": 5, + "column": 2, + "index": 106 } ], "Truncate": [ + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", + "line": 69, + "column": 10, + "index": 1762 + }, + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", + "line": 74, + "column": 10, + "index": 1927 + }, { "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", "line": 29, "column": 16, "index": 1036 } + ], + "ChevronRight": [ + { + "filePath": "src/widgets/ProductRecommendations/components/ProductCardHeader.jsx", + "line": 62, + "column": 21, + "index": 2056 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 35, + "column": 10, + "index": 958 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 45, + "column": 8, + "index": 1377 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 47, + "column": 12, + "index": 1432 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 50, + "column": 12, + "index": 1613 + } ] } }, { - "version": "20.36.0", + "version": "20.45.1", "name": "frontend-app-learner-portal-enterprise", "repository": { "type": "git", @@ -16451,15 +19872,15 @@ }, { "filePath": "src/components/course/CourseSidebar.jsx", - "line": 73, + "line": 66, "column": 16, - "index": 2653 + "index": 2574 }, { "filePath": "src/components/course/CourseSidebar.jsx", - "line": 97, + "line": 90, "column": 14, - "index": 3413 + "index": 3325 }, { "filePath": "src/components/course/CreatedBy.jsx", @@ -16475,15 +19896,21 @@ }, { "filePath": "src/components/course/data/utils.jsx", - "line": 596, + "line": 655, "column": 12, - "index": 20308 + "index": 23054 }, { "filePath": "src/components/course/data/utils.jsx", - "line": 615, + "line": 671, "column": 12, - "index": 20848 + "index": 23432 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 91, + "column": 30, + "index": 3074 }, { "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", @@ -16493,63 +19920,69 @@ }, { "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 89, + "line": 85, "column": 12, - "index": 3378 + "index": 3371 }, { "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 96, + "line": 92, "column": 12, - "index": 3652 + "index": 3645 }, { "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 105, + "line": 101, "column": 16, - "index": 3910 + "index": 3903 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 34, + "column": 12, + "index": 1006 }, { "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 43, + "line": 41, "column": 16, - "index": 1755 + "index": 1564 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 275, - "column": 28, - "index": 11013 + "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", + "line": 59, + "column": 16, + "index": 2423 }, { - "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 65, - "column": 18, - "index": 2671 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 328, + "column": 26, + "index": 13001 }, { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 46, - "column": 14, - "index": 1349 + "filePath": "src/components/my-career/SkillsRecommendationCourses.jsx", + "line": 92, + "column": 6, + "index": 2849 }, { "filePath": "src/components/program/ProgramCourses.jsx", - "line": 73, + "line": 74, "column": 20, - "index": 3167 + "index": 2976 }, { "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 25, + "line": 23, "column": 12, - "index": 968 + "index": 882 }, { "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 81, + "line": 79, "column": 14, - "index": 2827 + "index": 2741 }, { "filePath": "src/components/skills-quiz/SimilarJobs.jsx", @@ -16567,9 +20000,9 @@ }, { "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 57, + "line": 48, "column": 6, - "index": 1780 + "index": 1411 }, { "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", @@ -16579,15 +20012,9 @@ }, { "filePath": "src/components/course/CoursePage.jsx", - "line": 224, + "line": 250, "column": 6, - "index": 7035 - }, - { - "filePath": "src/components/course/CoursePage.jsx", - "line": 251, - "column": 10, - "index": 7937 + "index": 8155 }, { "filePath": "src/components/course/CourseReview.jsx", @@ -16601,11 +20028,29 @@ "column": 4, "index": 1922 }, + { + "filePath": "src/components/course/routes/CourseAbout.jsx", + "line": 18, + "column": 6, + "index": 592 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 79, + "column": 8, + "index": 2637 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", + "line": 25, + "column": 8, + "index": 920 + }, { "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 51, + "line": 65, "column": 6, - "index": 2046 + "index": 2699 }, { "filePath": "src/components/dashboard/main-content/course-enrollments/CourseEnrollmentsContextProvider.jsx", @@ -16621,9 +20066,9 @@ }, { "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 81, + "line": 77, "column": 8, - "index": 3029 + "index": 3022 }, { "filePath": "src/components/enterprise-page/EnterprisePage.jsx", @@ -16633,9 +20078,9 @@ }, { "filePath": "src/components/enterprise-subsidy-requests/SubsidyRequestsContextProvider.jsx", - "line": 67, + "line": 68, "column": 6, - "index": 2030 + "index": 2114 }, { "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", @@ -16645,9 +20090,9 @@ }, { "filePath": "src/components/enterprise-user-subsidy/UserSubsidy.jsx", - "line": 107, + "line": 94, "column": 6, - "index": 3171 + "index": 2546 }, { "filePath": "src/components/error-page/ErrorPageContent.jsx", @@ -16663,15 +20108,15 @@ }, { "filePath": "src/components/executive-education-2u/EnrollmentCompleted.jsx", - "line": 16, - "column": 4, - "index": 629 + "line": 17, + "column": 6, + "index": 687 }, { "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 93, + "line": 106, "column": 6, - "index": 3619 + "index": 3910 }, { "filePath": "src/components/license-activation/LicenseActivation.jsx", @@ -16711,9 +20156,9 @@ }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 94, + "line": 103, "column": 6, - "index": 3071 + "index": 3089 }, { "filePath": "src/components/program-progress/ProgramProgressPage.jsx", @@ -16729,9 +20174,9 @@ }, { "filePath": "src/components/program/ProgramDataBar.jsx", - "line": 24, + "line": 23, "column": 8, - "index": 1038 + "index": 954 }, { "filePath": "src/components/program/ProgramPage.jsx", @@ -16767,7 +20212,7 @@ "filePath": "src/components/site-header/SiteHeader.jsx", "line": 19, "column": 6, - "index": 731 + "index": 723 }, { "filePath": "src/components/skills-quiz/SkillsQuiz.jsx", @@ -16777,9 +20222,9 @@ }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 184, + "line": 185, "column": 10, - "index": 7030 + "index": 7056 } ], "MailtoLink": [ @@ -16789,6 +20234,12 @@ "column": 6, "index": 413 }, + { + "filePath": "src/components/course/data/utils.jsx", + "line": 690, + "column": 12, + "index": 23901 + }, { "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", "line": 24, @@ -16799,7 +20250,7 @@ "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", "line": 46, "column": 8, - "index": 1622 + "index": 1632 }, { "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", @@ -16809,9 +20260,9 @@ }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 222, - "column": 34, - "index": 8327 + "line": 275, + "column": 32, + "index": 10419 }, { "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", @@ -16823,7 +20274,7 @@ "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", "line": 29, "column": 8, - "index": 990 + "index": 1000 } ], "Button": [ @@ -16835,51 +20286,63 @@ }, { "filePath": "src/components/course/course-header/data/hooks/useCourseRunCardAction.jsx", - "line": 80, + "line": 90, "column": 11, - "index": 3181 + "index": 3578 }, { "filePath": "src/components/course/data/utils.jsx", - "line": 595, + "line": 654, "column": 6, - "index": 20288 + "index": 23034 }, { "filePath": "src/components/course/data/utils.jsx", - "line": 613, + "line": 670, "column": 6, - "index": 20715 + "index": 23412 + }, + { + "filePath": "src/components/course/data/utils.jsx", + "line": 689, + "column": 6, + "index": 23881 }, { "filePath": "src/components/course/enrollment/components/ToExecutiveEducation2UEnrollment.jsx", "line": 10, "column": 2, - "index": 320 + "index": 323 }, { "filePath": "src/components/course/enrollment/components/ToExecutiveEducation2UEnrollment.jsx", "line": 31, "column": 4, - "index": 770 + "index": 768 }, { "filePath": "src/components/course/EnrollModal.jsx", - "line": 92, + "line": 90, "column": 8, - "index": 3079 + "index": 2959 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 91, + "column": 18, + "index": 3062 }, { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", "line": 59, "column": 10, - "index": 1494 + "index": 1496 }, { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpcomingCourseCard.jsx", "line": 10, "column": 4, - "index": 256 + "index": 254 }, { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpgradeCourseButton.jsx", @@ -16913,15 +20376,15 @@ }, { "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 104, + "line": 100, "column": 10, - "index": 3886 + "index": 3879 }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", - "line": 66, + "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", + "line": 60, "column": 12, - "index": 3080 + "index": 2147 }, { "filePath": "src/components/integration-warning-modal/IntegrationWarningModal.jsx", @@ -16929,23 +20392,41 @@ "column": 10, "index": 1193 }, + { + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 83, + "column": 24, + "index": 2939 + }, { "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 88, + "line": 109, "column": 10, - "index": 2984 + "index": 3699 }, { "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 107, + "line": 131, + "column": 8, + "index": 4370 + }, + { + "filePath": "src/components/my-career/SearchJobRole.jsx", + "line": 132, "column": 10, - "index": 3663 + "index": 4429 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 72, + "line": 67, "column": 16, - "index": 2277 + "index": 2185 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 92, + "column": 14, + "index": 3030 }, { "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", @@ -16955,15 +20436,15 @@ }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 45, + "line": 54, "column": 8, - "index": 1732 + "index": 1750 }, { "filePath": "src/components/preview-expand/PreviewExpand.jsx", - "line": 21, + "line": 20, "column": 6, - "index": 661 + "index": 582 }, { "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", @@ -16979,21 +20460,21 @@ }, { "filePath": "src/components/program-progress/ProgramPathwayOpportunity.jsx", - "line": 16, + "line": 17, "column": 16, - "index": 691 + "index": 743 }, { "filePath": "src/components/program-progress/ProgramProgressSidebar.jsx", - "line": 76, + "line": 77, "column": 14, - "index": 3141 + "index": 3193 }, { "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", "line": 59, "column": 10, - "index": 2025 + "index": 2034 }, { "filePath": "src/components/skills-quiz/SkillsCourses.jsx", @@ -17003,59 +20484,53 @@ }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 270, + "line": 275, "column": 16, - "index": 10797 + "index": 10997 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 282, + "line": 287, "column": 12, - "index": 11320 + "index": 11520 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 286, + "line": 291, "column": 12, - "index": 11485 + "index": 11685 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 294, + "line": 299, "column": 12, - "index": 11769 + "index": 11969 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 298, + "line": 303, "column": 12, - "index": 11939 + "index": 12139 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 301, + "line": 306, "column": 12, - "index": 12107 + "index": 12307 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 305, + "line": 310, "column": 12, - "index": 12277 + "index": 12477 } ], "Row": [ { "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 58, + "line": 49, "column": 8, - "index": 1810 - }, - { - "filePath": "src/components/course/CoursePage.jsx", - "line": 252, - "column": 12, - "index": 7988 + "index": 1441 }, { "filePath": "src/components/course/CourseReview.jsx", @@ -17077,75 +20552,93 @@ }, { "filePath": "src/components/course/CourseSidebarListItem.jsx", - "line": 11, + "line": 10, "column": 2, - "index": 242 + "index": 182 + }, + { + "filePath": "src/components/course/routes/CourseAbout.jsx", + "line": 19, + "column": 8, + "index": 639 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 80, + "column": 10, + "index": 2686 }, { "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", - "line": 39, + "line": 32, "column": 6, - "index": 1485 + "index": 1045 }, { "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", - "line": 63, + "line": 50, "column": 8, - "index": 1929 + "index": 1610 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 22, - "column": 8, - "index": 516 + "line": 40, + "column": 10, + "index": 1224 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 24, - "column": 12, - "index": 607 + "line": 42, + "column": 14, + "index": 1319 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 33, - "column": 14, - "index": 994 + "line": 51, + "column": 16, + "index": 1700 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 35, - "column": 53, - "index": 1247 + "line": 53, + "column": 55, + "index": 1957 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 37, - "column": 14, - "index": 1365 + "line": 55, + "column": 16, + "index": 2106 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 39, - "column": 53, - "index": 1571 + "line": 57, + "column": 55, + "index": 2316 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 41, - "column": 14, - "index": 1688 + "line": 59, + "column": 16, + "index": 2437 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 44, - "column": 18, - "index": 1910 + "line": 62, + "column": 20, + "index": 2665 }, { "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 12, + "line": 23, + "column": 6, + "index": 837 + }, + { + "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", + "line": 38, "column": 6, - "index": 357 + "index": 1331 }, { "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", @@ -17159,113 +20652,89 @@ "column": 14, "index": 882 }, - { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", - "line": 44, - "column": 6, - "index": 2175 - }, { "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 115, + "line": 128, "column": 14, - "index": 4412 + "index": 4703 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 160, - "column": 18, - "index": 5550 + "line": 213, + "column": 16, + "index": 7764 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 200, - "column": 18, - "index": 7228 + "line": 253, + "column": 16, + "index": 9364 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 233, - "column": 20, - "index": 8704 + "line": 286, + "column": 18, + "index": 10776 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 261, - "column": 18, - "index": 10272 + "line": 314, + "column": 16, + "index": 12288 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 298, - "column": 18, - "index": 12114 + "line": 351, + "column": 16, + "index": 14056 }, { "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 48, + "line": 63, "column": 6, - "index": 1878 + "index": 1963 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 42, + "line": 90, "column": 10, - "index": 1236 + "index": 2986 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 52, + "line": 115, "column": 10, - "index": 1667 - }, - { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 60, - "column": 14, - "index": 1882 - }, - { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 70, - "column": 12, - "index": 2229 - }, - { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 95, - "column": 12, - "index": 3265 + "index": 3972 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 21, + "line": 30, "column": 4, - "index": 1058 + "index": 1076 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 95, + "line": 104, "column": 8, - "index": 3091 + "index": 3109 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 144, + "line": 153, "column": 10, - "index": 5070 + "index": 5088 }, { "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", "line": 80, "column": 4, - "index": 2492 + "index": 2500 }, { "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", "line": 91, "column": 6, - "index": 2867 + "index": 2856 }, { "filePath": "src/components/program-progress/ProgramProgressPage.jsx", @@ -17287,9 +20756,9 @@ }, { "filePath": "src/components/program/ProgramSidebarListItem.jsx", - "line": 11, + "line": 10, "column": 2, - "index": 243 + "index": 183 }, { "filePath": "src/components/skills-quiz/SkillsQuiz.jsx", @@ -17301,21 +20770,21 @@ "Col": [ { "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 59, + "line": 50, "column": 10, - "index": 1843 + "index": 1474 }, { "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 112, + "line": 102, "column": 10, - "index": 3767 + "index": 3375 }, { "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 118, + "line": 108, "column": 10, - "index": 4026 + "index": 3634 }, { "filePath": "src/components/course/CourseReview.jsx", @@ -17355,21 +20824,27 @@ }, { "filePath": "src/components/course/CourseSidebarListItem.jsx", - "line": 12, + "line": 11, "column": 4, - "index": 316 + "index": 256 }, { "filePath": "src/components/course/CourseSidebarListItem.jsx", - "line": 16, + "line": 15, "column": 4, - "index": 458 + "index": 386 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 81, + "column": 12, + "index": 2704 }, { "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", - "line": 64, + "line": 51, "column": 10, - "index": 1989 + "index": 1670 }, { "filePath": "src/components/error-page/ErrorPage.jsx", @@ -17379,69 +20854,75 @@ }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 23, - "column": 10, - "index": 532 + "line": 41, + "column": 12, + "index": 1242 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 25, - "column": 14, - "index": 627 + "line": 43, + "column": 16, + "index": 1341 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 31, - "column": 10, - "index": 893 + "line": 49, + "column": 12, + "index": 1616 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 34, - "column": 16, - "index": 1047 + "line": 52, + "column": 18, + "index": 1755 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 35, - "column": 16, - "index": 1210 + "line": 53, + "column": 18, + "index": 1920 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 38, - "column": 16, - "index": 1418 + "line": 56, + "column": 18, + "index": 2161 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 39, - "column": 16, - "index": 1534 + "line": 57, + "column": 18, + "index": 2279 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 42, - "column": 16, - "index": 1741 + "line": 60, + "column": 18, + "index": 2492 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 43, - "column": 16, - "index": 1854 + "line": 61, + "column": 18, + "index": 2607 }, { "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 13, + "line": 24, "column": 8, - "index": 388 + "index": 868 }, { "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 23, + "line": 34, "column": 8, - "index": 681 + "index": 1161 + }, + { + "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", + "line": 39, + "column": 8, + "index": 1345 }, { "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", @@ -17467,127 +20948,121 @@ "column": 16, "index": 1059 }, - { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", - "line": 45, - "column": 8, - "index": 2189 - }, { "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 116, + "line": 129, "column": 16, - "index": 4451 + "index": 4742 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 161, - "column": 20, - "index": 5593 + "line": 214, + "column": 18, + "index": 7805 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 180, - "column": 20, - "index": 6427 + "line": 233, + "column": 18, + "index": 8601 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 201, - "column": 20, - "index": 7271 + "line": 254, + "column": 18, + "index": 9405 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 234, - "column": 22, - "index": 8732 + "line": 287, + "column": 20, + "index": 10802 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 262, - "column": 20, - "index": 10298 + "line": 315, + "column": 18, + "index": 12312 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 299, - "column": 20, - "index": 12157 + "line": 352, + "column": 18, + "index": 14097 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 22, + "line": 31, "column": 6, - "index": 1105 + "index": 1123 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 31, + "line": 40, "column": 6, - "index": 1336 + "index": 1354 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 44, + "line": 53, "column": 6, - "index": 1680 + "index": 1698 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 96, + "line": 105, "column": 10, - "index": 3134 + "index": 3152 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 111, + "line": 120, "column": 10, - "index": 3728 + "index": 3746 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 126, + "line": 135, "column": 10, - "index": 4364 + "index": 4382 }, { "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", "line": 81, "column": 6, - "index": 2551 + "index": 2559 }, { "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", "line": 92, "column": 8, - "index": 2946 + "index": 2935 }, { "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", "line": 183, "column": 61, - "index": 6432 + "index": 6415 }, { "filePath": "src/components/program/ProgramSidebarListItem.jsx", - "line": 12, + "line": 11, "column": 4, - "index": 317 + "index": 257 }, { "filePath": "src/components/program/ProgramSidebarListItem.jsx", - "line": 16, + "line": 15, "column": 4, - "index": 459 + "index": 387 } ], "Breadcrumb": [ { "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 62, + "line": 53, "column": 16, - "index": 1968 + "index": 1599 }, { "filePath": "src/components/pathway-progress/PathwayProgressHeader.jsx", @@ -17611,9 +21086,9 @@ }, { "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", - "line": 26, + "line": 20, "column": 58, - "index": 1201 + "index": 762 }, { "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", @@ -17625,37 +21100,37 @@ "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", "line": 32, "column": 6, - "index": 1229 + "index": 1242 }, { "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 23, + "line": 29, "column": 58, - "index": 1255 + "index": 1186 }, { "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 17, + "line": 20, "column": 60, - "index": 598 + "index": 798 }, { "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 18, + "line": 21, "column": 64, - "index": 680 + "index": 880 }, { "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 19, + "line": 22, "column": 55, - "index": 753 + "index": 953 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 20, + "line": 21, "column": 57, - "index": 610 + "index": 949 }, { "filePath": "src/components/search/Search.jsx", @@ -17679,15 +21154,15 @@ }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 16, - "column": 10, - "index": 396 + "line": 35, + "column": 14, + "index": 1087 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 23, + "line": 32, "column": 8, - "index": 1134 + "index": 1152 } ], "PlayCircleFilled": [ @@ -17701,15 +21176,15 @@ "Card": [ { "filePath": "src/components/course/course-header/CourseRunCard.jsx", - "line": 42, + "line": 47, "column": 4, - "index": 1074 + "index": 1209 }, { "filePath": "src/components/course/course-header/deprecated/CourseRunCard.jsx", - "line": 207, + "line": 210, "column": 4, - "index": 5542 + "index": 5590 }, { "filePath": "src/components/course/CourseRecommendationCard.jsx", @@ -17731,15 +21206,15 @@ }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 9, - "column": 2, - "index": 259 + "line": 27, + "column": 4, + "index": 855 }, { "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 11, + "line": 22, "column": 4, - "index": 319 + "index": 799 }, { "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", @@ -17749,15 +21224,15 @@ }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 140, - "column": 12, - "index": 4825 + "line": 192, + "column": 10, + "index": 6928 }, { "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 84, + "line": 105, "column": 4, - "index": 2733 + "index": 3519 }, { "filePath": "src/components/pathway-progress/PathwayNode.jsx", @@ -17775,7 +21250,7 @@ "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", "line": 26, "column": 6, - "index": 953 + "index": 963 }, { "filePath": "src/components/pathway/SearchPathwayCard.jsx", @@ -17797,9 +21272,9 @@ }, { "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 81, + "line": 93, "column": 4, - "index": 2324 + "index": 2563 }, { "filePath": "src/components/search/SearchProgramCard.jsx", @@ -17841,15 +21316,15 @@ "Card.Section": [ { "filePath": "src/components/course/course-header/CourseRunCard.jsx", - "line": 43, + "line": 48, "column": 6, - "index": 1087 + "index": 1222 }, { "filePath": "src/components/course/course-header/deprecated/CourseRunCard.jsx", - "line": 208, + "line": 211, "column": 6, - "index": 5555 + "index": 5603 }, { "filePath": "src/components/course/CourseRecommendationCard.jsx", @@ -17871,21 +21346,21 @@ }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 21, - "column": 6, - "index": 493 + "line": 39, + "column": 8, + "index": 1199 }, { "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 14, + "line": 25, "column": 10, - "index": 419 + "index": 899 }, { "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 24, + "line": 35, "column": 10, - "index": 712 + "index": 1192 }, { "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", @@ -17895,21 +21370,27 @@ }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 145, - "column": 16, - "index": 4978 + "line": 197, + "column": 14, + "index": 7071 }, { "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 86, + "line": 107, "column": 6, - "index": 2860 + "index": 3616 }, { "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 94, + "line": 121, "column": 8, - "index": 3276 + "index": 4062 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 151, + "column": 6, + "index": 4894 }, { "filePath": "src/components/pathway-progress/PathwayNode.jsx", @@ -17933,7 +21414,7 @@ "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", "line": 27, "column": 8, - "index": 985 + "index": 995 }, { "filePath": "src/components/pathway/SearchPathwayCard.jsx", @@ -17961,9 +21442,9 @@ }, { "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 108, + "line": 120, "column": 6, - "index": 3048 + "index": 3287 }, { "filePath": "src/components/search/SearchProgramCard.jsx", @@ -18017,9 +21498,9 @@ "CardGrid": [ { "filePath": "src/components/course/course-header/CourseRunCards.jsx", - "line": 27, + "line": 26, "column": 4, - "index": 771 + "index": 725 }, { "filePath": "src/components/course/CourseRecommendations.jsx", @@ -18033,6 +21514,12 @@ "column": 10, "index": 996 }, + { + "filePath": "src/components/my-career/SkillsRecommendationCourses.jsx", + "line": 83, + "column": 6, + "index": 2626 + }, { "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", "line": 41, @@ -18109,31 +21596,31 @@ "Card.Status": [ { "filePath": "src/components/course/course-header/CourseRunCardStatus.jsx", - "line": 36, + "line": 41, "column": 4, - "index": 1612 + "index": 1796 } ], "Lock": [ { "filePath": "src/components/course/course-header/CourseRunCardStatus.jsx", - "line": 38, + "line": 43, "column": 12, - "index": 1661 + "index": 1845 } ], "Stack": [ { "filePath": "src/components/course/course-header/data/hooks/useCourseRunCardAction.jsx", - "line": 61, + "line": 64, "column": 6, - "index": 2586 + "index": 2743 }, { "filePath": "src/components/course/course-header/data/hooks/useCourseRunCardAction.jsx", - "line": 90, + "line": 100, "column": 4, - "index": 3442 + "index": 3847 }, { "filePath": "src/components/pathway/SearchPathwayCard.jsx", @@ -18179,9 +21666,9 @@ }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 261, + "line": 266, "column": 20, - "index": 10434 + "index": 10634 } ], "Alert": [ @@ -18203,6 +21690,12 @@ "column": 6, "index": 1967 }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 85, + "column": 14, + "index": 2817 + }, { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", "line": 119, @@ -18225,7 +21718,7 @@ "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", "line": 77, "column": 8, - "index": 1903 + "index": 1905 }, { "filePath": "src/components/dashboard/main-content/course-enrollments/CourseEnrollmentsAlert.jsx", @@ -18235,9 +21728,9 @@ }, { "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", - "line": 30, + "line": 23, "column": 6, - "index": 1265 + "index": 825 }, { "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", @@ -18247,9 +21740,9 @@ }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 148, - "column": 18, - "index": 5093 + "line": 199, + "column": 16, + "index": 7174 }, { "filePath": "src/components/license-activation/LicenseActivation.jsx", @@ -18271,15 +21764,15 @@ }, { "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 39, + "line": 54, "column": 6, - "index": 1658 + "index": 1743 }, { "filePath": "src/components/program/ProgramCourses.jsx", - "line": 93, + "line": 94, "column": 20, - "index": 3940 + "index": 3749 }, { "filePath": "src/components/search/SearchError.jsx", @@ -18346,16 +21839,16 @@ "index": 1028 }, { - "filePath": "src/components/course/CoursePage.jsx", - "line": 256, - "column": 14, - "index": 8103 + "filePath": "src/components/course/routes/CourseAbout.jsx", + "line": 23, + "column": 10, + "index": 738 }, { "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", - "line": 45, + "line": 38, "column": 10, - "index": 1810 + "index": 1370 }, { "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", @@ -18371,9 +21864,9 @@ }, { "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 84, + "line": 109, "column": 10, - "index": 3332 + "index": 3872 }, { "filePath": "src/components/program-progress/ProgramProgressPage.jsx", @@ -18383,9 +21876,9 @@ }, { "filePath": "src/components/program/ProgramEndorsements.jsx", - "line": 17, + "line": 16, "column": 8, - "index": 841 + "index": 760 }, { "filePath": "src/components/program/ProgramPage.jsx", @@ -18397,13 +21890,13 @@ "filePath": "src/components/site-header/SiteHeader.jsx", "line": 79, "column": 6, - "index": 2809 + "index": 2801 }, { "filePath": "src/components/site-header/SiteHeader.jsx", "line": 82, "column": 6, - "index": 2894 + "index": 2886 } ], "breakpoints": [ @@ -18414,16 +21907,28 @@ "index": 1050 }, { - "filePath": "src/components/course/CoursePage.jsx", - "line": 256, + "filePath": "src/components/course/routes/CourseAbout.jsx", + "line": 23, + "column": 32, + "index": 760 + }, + { + "filePath": "src/components/course/routes/tests/CourseAbout.test.jsx", + "line": 37, "column": 36, - "index": 8125 + "index": 1130 + }, + { + "filePath": "src/components/course/routes/tests/CourseAbout.test.jsx", + "line": 70, + "column": 64, + "index": 2735 }, { "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", - "line": 45, + "line": 38, "column": 32, - "index": 1832 + "index": 1392 }, { "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", @@ -18447,13 +21952,13 @@ "filePath": "src/components/dashboard/tests/DashboardPage.test.jsx", "line": 215, "column": 62, - "index": 6182 + "index": 6161 }, { "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 84, + "line": 109, "column": 32, - "index": 3354 + "index": 3894 }, { "filePath": "src/components/program-progress/ProgramListingCard.jsx", @@ -18481,9 +21986,9 @@ }, { "filePath": "src/components/program/ProgramEndorsements.jsx", - "line": 17, + "line": 16, "column": 30, - "index": 863 + "index": 782 }, { "filePath": "src/components/program/ProgramHeader.jsx", @@ -18543,9 +22048,9 @@ }, { "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 90, + "line": 102, "column": 6, - "index": 2504 + "index": 2743 }, { "filePath": "src/components/search/SearchProgramCard.jsx", @@ -18587,15 +22092,15 @@ }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 14, - "column": 6, - "index": 356 + "line": 32, + "column": 8, + "index": 962 }, { "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 85, + "line": 106, "column": 6, - "index": 2779 + "index": 3551 }, { "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", @@ -18623,9 +22128,9 @@ }, { "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 96, + "line": 108, "column": 6, - "index": 2697 + "index": 2936 }, { "filePath": "src/components/search/SearchProgramCard.jsx", @@ -18665,12 +22170,6 @@ "column": 6, "index": 2462 }, - { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 106, - "column": 8, - "index": 3639 - }, { "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", "line": 83, @@ -18679,9 +22178,9 @@ }, { "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 109, + "line": 121, "column": 6, - "index": 3071 + "index": 3310 }, { "filePath": "src/components/search/SearchProgramCard.jsx", @@ -18703,41 +22202,113 @@ "column": 12, "index": 3081 }, + { + "filePath": "src/components/course/CourseSidebarListItem.jsx", + "line": 12, + "column": 6, + "index": 306 + }, + { + "filePath": "src/components/course/VerifiedCertPitch.jsx", + "line": 10, + "column": 4, + "index": 352 + }, { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 252, + "line": 254, "column": 22, - "index": 6731 + "index": 7079 }, { "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 66, - "column": 20, - "index": 2740 + "line": 17, + "column": 2, + "index": 839 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 47, - "column": 16, - "index": 1441 + "line": 16, + "column": 2, + "index": 635 + }, + { + "filePath": "src/components/pathway-progress/PathwayStep.jsx", + "line": 17, + "column": 20, + "index": 570 + }, + { + "filePath": "src/components/pathway-progress/PathwayStep.jsx", + "line": 18, + "column": 22, + "index": 619 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 99, + "line": 108, "column": 16, - "index": 3317 + "index": 3335 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 114, + "line": 123, "column": 16, - "index": 3917 + "index": 3935 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 129, + "line": 138, "column": 16, - "index": 4537 + "index": 4555 + }, + { + "filePath": "src/components/preview-expand/PreviewExpand.jsx", + "line": 26, + "column": 8, + "index": 744 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 44, + "column": 42, + "index": 1557 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 47, + "column": 20, + "index": 1748 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 51, + "column": 20, + "index": 1902 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 60, + "column": 24, + "index": 2345 + }, + { + "filePath": "src/components/program/ProgramFAQ.jsx", + "line": 23, + "column": 26, + "index": 718 + }, + { + "filePath": "src/components/program/ProgramFAQ.jsx", + "line": 24, + "column": 28, + "index": 773 + }, + { + "filePath": "src/components/program/ProgramSidebarListItem.jsx", + "line": 12, + "column": 6, + "index": 307 }, { "filePath": "src/components/search/SearchProgramCard.jsx", @@ -18766,84 +22337,172 @@ "index": 3115 } ], + "AccessTime": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 41, + "column": 22, + "index": 1706 + }, + { + "filePath": "src/components/program/ProgramSidebar.jsx", + "line": 45, + "column": 18, + "index": 1565 + } + ], + "Speed": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 48, + "column": 22, + "index": 1990 + }, + { + "filePath": "src/components/program/ProgramSidebar.jsx", + "line": 54, + "column": 18, + "index": 1781 + } + ], + "Tag": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 56, + "column": 16, + "index": 2233 + } + ], + "Institution": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 62, + "column": 18, + "index": 2402 + }, + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 117, + "column": 18, + "index": 4178 + } + ], + "School": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 87, + "column": 18, + "index": 3252 + } + ], + "Equalizer": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 110, + "column": 18, + "index": 3972 + } + ], + "VideoFile": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 124, + "column": 18, + "index": 4430 + } + ], + "Person": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 133, + "column": 18, + "index": 4721 + }, + { + "filePath": "src/components/program/ProgramSidebar.jsx", + "line": 36, + "column": 18, + "index": 1345 + } + ], "Skeleton": [ { "filePath": "src/components/course/CourseSidebarPrice.jsx", - "line": 25, + "line": 27, "column": 11, - "index": 1071 + "index": 1186 }, { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 391, + "line": 411, "column": 12, - "index": 9984 + "index": 11283 }, { "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 107, + "line": 120, "column": 16, - "index": 4090 + "index": 4381 }, { "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 112, + "line": 125, "column": 16, - "index": 4292 + "index": 4583 }, { "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 132, + "line": 145, "column": 16, - "index": 5175 + "index": 5466 }, { "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 140, + "line": 153, "column": 16, - "index": 5452 + "index": 5743 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 71, + "line": 80, "column": 28, - "index": 2455 + "index": 2473 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 83, + "line": 92, "column": 8, - "index": 2820 + "index": 2838 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 97, + "line": 106, "column": 25, - "index": 3197 + "index": 3215 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 112, + "line": 121, "column": 25, - "index": 3791 + "index": 3809 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 127, + "line": 136, "column": 25, - "index": 4410 + "index": 4428 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 143, + "line": 152, "column": 21, - "index": 4975 + "index": 4993 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 151, + "line": 160, "column": 10, - "index": 5357 + "index": 5375 }, { "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", @@ -18923,9 +22582,9 @@ }, { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 405, + "line": 425, "column": 24, - "index": 10564 + "index": 11913 }, { "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", @@ -18935,21 +22594,21 @@ }, { "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", - "line": 31, + "line": 29, "column": 12, - "index": 914 + "index": 872 }, { "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", "line": 92, "column": 16, - "index": 3157 + "index": 3170 }, { "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", "line": 125, "column": 12, - "index": 4405 + "index": 4417 }, { "filePath": "src/components/pathway-progress/PathwayNode.jsx", @@ -18961,7 +22620,7 @@ "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", "line": 32, "column": 12, - "index": 1246 + "index": 1256 }, { "filePath": "src/components/pathway/SearchPathwayCard.jsx", @@ -19021,9 +22680,9 @@ "Modal": [ { "filePath": "src/components/course/EnrollModal.jsx", - "line": 86, + "line": 84, "column": 4, - "index": 2929 + "index": 2809 }, { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", @@ -19047,13 +22706,13 @@ "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", "line": 104, "column": 6, - "index": 3462 + "index": 3470 }, { "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", "line": 139, "column": 4, - "index": 4599 + "index": 4607 }, { "filePath": "src/components/integration-warning-modal/IntegrationWarningModal.jsx", @@ -19062,6 +22721,14 @@ "index": 919 } ], + "Spinner": [ + { + "filePath": "src/components/course/EnrollModal.jsx", + "line": 94, + "column": 24, + "index": 3065 + } + ], "Alert.Heading": [ { "filePath": "src/components/course/LicenseRequestedAlert.jsx", @@ -19069,6 +22736,12 @@ "column": 8, "index": 2032 }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 96, + "column": 16, + "index": 3253 + }, { "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", "line": 56, @@ -19088,6 +22761,28 @@ "index": 512 } ], + "CheckCircle": [ + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 88, + "column": 22, + "index": 2915 + }, + { + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 83, + "column": 8, + "index": 2653 + } + ], + "ResponsiveContext.Provider": [ + { + "filePath": "src/components/course/routes/tests/CourseAbout.test.jsx", + "line": 40, + "column": 2, + "index": 1222 + } + ], "StatefulButton": [ { "filePath": "src/components/course/SubsidyRequestButton.jsx", @@ -19117,61 +22812,83 @@ "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", "line": 65, "column": 10, - "index": 1635 + "index": 1637 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 310, - "column": 14, - "index": 12486 + "line": 363, + "column": 12, + "index": 14406 + }, + { + "filePath": "src/components/my-career/SearchJobRole.jsx", + "line": 115, + "column": 10, + "index": 3863 }, { "filePath": "src/components/stateful-enroll/StatefulEnroll.jsx", - "line": 114, + "line": 87, "column": 4, - "index": 3141 + "index": 2411 + } + ], + "RocketLaunch": [ + { + "filePath": "src/components/course/VerifiedCertPitch.jsx", + "line": 25, + "column": 37, + "index": 801 + } + ], + "ContentPasteGo": [ + { + "filePath": "src/components/course/VerifiedCertPitch.jsx", + "line": 35, + "column": 37, + "index": 1133 } ], "Tabs": [ { "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 56, + "line": 70, "column": 8, - "index": 2246 + "index": 2899 } ], "Tab": [ { "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 57, + "line": 71, "column": 10, - "index": 2290 + "index": 2980 }, { "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 60, + "line": 74, "column": 10, - "index": 2446 + "index": 3136 }, { "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 68, + "line": 82, "column": 12, - "index": 2847 + "index": 3537 }, { "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 77, + "line": 91, "column": 12, - "index": 3267 + "index": 3957 } ], "Dropdown": [ { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 248, + "line": 250, "column": 10, - "index": 6610 + "index": 6958 }, { "filePath": "src/components/error-page/ErrorPageHeader.jsx", @@ -19201,9 +22918,9 @@ "Dropdown.Toggle": [ { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 249, + "line": 251, "column": 12, - "index": 6633 + "index": 6981 }, { "filePath": "src/components/error-page/ErrorPageHeader.jsx", @@ -19233,25 +22950,25 @@ "IconButton": [ { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 250, + "line": 252, "column": 18, - "index": 6668 + "index": 7016 } ], "MoreVert": [ { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 251, + "line": 253, "column": 19, - "index": 6699 + "index": 7047 } ], "Dropdown.Menu": [ { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 256, + "line": 259, "column": 12, - "index": 6882 + "index": 7273 }, { "filePath": "src/components/error-page/ErrorPageHeader.jsx", @@ -19281,9 +22998,9 @@ "Dropdown.Item": [ { "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 258, + "line": 261, "column": 16, - "index": 6957 + "index": 7348 }, { "filePath": "src/components/error-page/ErrorPageHeader.jsx", @@ -19373,7 +23090,7 @@ "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", "line": 53, "column": 4, - "index": 1346 + "index": 1348 } ], "ActionRow": [ @@ -19381,31 +23098,31 @@ "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", "line": 58, "column": 8, - "index": 1472 + "index": 1474 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 43, - "column": 12, - "index": 1254 + "line": 64, + "column": 14, + "index": 2084 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 53, - "column": 12, - "index": 1685 + "line": 69, + "column": 14, + "index": 2314 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 61, - "column": 16, - "index": 1927 + "line": 82, + "column": 12, + "index": 2708 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 71, - "column": 14, - "index": 2249 + "line": 91, + "column": 12, + "index": 3004 }, { "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", @@ -19417,7 +23134,7 @@ "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", "line": 58, "column": 8, - "index": 2003 + "index": 2012 } ], "Collapsible": [ @@ -19429,21 +23146,21 @@ }, { "filePath": "src/components/pathway-progress/PathwayStep.jsx", - "line": 14, + "line": 12, "column": 4, - "index": 434 + "index": 354 }, { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 157, + "line": 166, "column": 10, - "index": 5548 + "index": 5566 }, { "filePath": "src/components/program/ProgramFAQ.jsx", - "line": 19, + "line": 18, "column": 10, - "index": 622 + "index": 543 } ], "WarningFilled": [ @@ -19457,13 +23174,13 @@ "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", "line": 99, "column": 90, - "index": 3494 + "index": 3507 }, { "filePath": "src/components/program/ProgramCourses.jsx", - "line": 93, + "line": 94, "column": 51, - "index": 3971 + "index": 3780 }, { "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", @@ -19505,9 +23222,9 @@ "Card.Body": [ { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 13, - "column": 4, - "index": 338 + "line": 31, + "column": 6, + "index": 942 }, { "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", @@ -19517,95 +23234,123 @@ }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 144, - "column": 14, - "index": 4950 + "line": 196, + "column": 12, + "index": 7045 } ], "ArrowBack": [ { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", - "line": 68, + "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", + "line": 62, "column": 26, - "index": 3148 + "index": 2215 } ], "Form.Group": [ { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 162, - "column": 22, - "index": 5636 + "line": 215, + "column": 20, + "index": 7846 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 181, - "column": 22, - "index": 6470 + "line": 234, + "column": 20, + "index": 8642 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 202, - "column": 22, - "index": 7315 + "line": 255, + "column": 20, + "index": 9447 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 235, - "column": 24, - "index": 8762 + "line": 288, + "column": 22, + "index": 10830 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 263, - "column": 22, - "index": 10326 + "line": 316, + "column": 20, + "index": 12338 + }, + { + "filePath": "src/components/my-career/SearchJobRole.jsx", + "line": 87, + "column": 8, + "index": 2853 }, { "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", "line": 183, "column": 28, - "index": 6399 + "index": 6382 } ], "Form.Control": [ { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 166, - "column": 24, - "index": 5802 + "line": 219, + "column": 22, + "index": 8004 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 184, - "column": 24, - "index": 6584 + "line": 237, + "column": 22, + "index": 8750 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 205, - "column": 24, - "index": 7432 + "line": 258, + "column": 22, + "index": 9558 }, { "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", "line": 185, "column": 30, - "index": 6576 + "index": 6559 } ], "CheckboxControl": [ { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 237, - "column": 28, - "index": 8873 + "line": 290, + "column": 26, + "index": 10937 }, { "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 265, - "column": 26, - "index": 10433 + "line": 318, + "column": 24, + "index": 12441 + } + ], + "Plus": [ + { + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 18, + "column": 9, + "index": 854 + } + ], + "TransitionReplace": [ + { + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 74, + "column": 18, + "index": 2407 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 61, + "column": 8, + "index": 1966 } ], "Chip": [ @@ -19628,30 +23373,38 @@ "index": 248 } ], + "Edit": [ + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 16, + "column": 13, + "index": 646 + } + ], "ActionRow.Spacer": [ { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 45, - "column": 14, - "index": 1314 + "line": 66, + "column": 16, + "index": 2148 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 55, - "column": 14, - "index": 1758 + "line": 71, + "column": 16, + "index": 2391 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 63, - "column": 18, - "index": 1998 + "line": 84, + "column": 14, + "index": 2790 }, { "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 80, - "column": 16, - "index": 2567 + "line": 100, + "column": 14, + "index": 3304 } ], "Search": [ @@ -19668,58 +23421,98 @@ "index": 1495 } ], + "ExpandLess": [ + { + "filePath": "src/components/pathway-progress/PathwayStep.jsx", + "line": 17, + "column": 31, + "index": 581 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 51, + "column": 31, + "index": 1913 + }, + { + "filePath": "src/components/program/ProgramFAQ.jsx", + "line": 23, + "column": 37, + "index": 729 + } + ], + "ExpandMore": [ + { + "filePath": "src/components/pathway-progress/PathwayStep.jsx", + "line": 18, + "column": 33, + "index": 630 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 47, + "column": 31, + "index": 1759 + }, + { + "filePath": "src/components/program/ProgramFAQ.jsx", + "line": 24, + "column": 39, + "index": 784 + } + ], "MarketingModal": [ { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 65, + "line": 74, "column": 4, - "index": 2265 + "index": 2283 } ], "ModalDialog.Hero": [ { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 72, + "line": 81, "column": 8, - "index": 2530 + "index": 2548 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 175, + "line": 176, "column": 8, - "index": 6697 + "index": 6723 } ], "ModalDialog.Title": [ { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 89, + "line": 98, "column": 8, - "index": 2955 + "index": 2973 } ], "VerifiedBadge": [ { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 99, + "line": 108, "column": 27, - "index": 3328 + "index": 3346 } ], "Assignment": [ { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 114, + "line": 123, "column": 27, - "index": 3928 + "index": 3946 } ], "BookOpen": [ { "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 129, + "line": 138, "column": 27, - "index": 4548 + "index": 4566 } ], "StandardModal": [ @@ -19733,15 +23526,7 @@ "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", "line": 52, "column": 4, - "index": 1793 - } - ], - "CheckCircle": [ - { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 83, - "column": 8, - "index": 2645 + "index": 1802 } ], "Form.Label": [ @@ -19749,75 +23534,129 @@ "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", "line": 184, "column": 30, - "index": 6496 + "index": 6479 } ], "Collapsible.Advanced": [ { "filePath": "src/components/program/ProgramCourses.jsx", - "line": 41, + "line": 42, "column": 14, - "index": 1476 + "index": 1371 }, { "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 90, + "line": 88, "column": 8, - "index": 3150 + "index": 3064 } ], "Collapsible.Trigger": [ { "filePath": "src/components/program/ProgramCourses.jsx", - "line": 42, + "line": 43, "column": 16, - "index": 1566 + "index": 1461 }, { "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 91, + "line": 89, "column": 10, - "index": 3221 + "index": 3135 + } + ], + "LibraryBooks": [ + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 44, + "column": 53, + "index": 1568 + }, + { + "filePath": "src/components/program/ProgramSidebar.jsx", + "line": 28, + "column": 14, + "index": 1108 } ], "Collapsible.Visible": [ { "filePath": "src/components/program/ProgramCourses.jsx", - "line": 45, + "line": 46, "column": 18, - "index": 1814 + "index": 1695 }, { "filePath": "src/components/program/ProgramCourses.jsx", - "line": 49, + "line": 50, "column": 18, - "index": 1997 + "index": 1851 }, { "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 93, + "line": 91, "column": 12, - "index": 3366 + "index": 3280 }, { "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 97, + "line": 95, "column": 12, - "index": 3532 + "index": 3406 } ], "Collapsible.Body": [ { "filePath": "src/components/program/ProgramCourses.jsx", - "line": 54, + "line": 55, "column": 16, - "index": 2211 + "index": 2042 }, { "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 102, + "line": 100, "column": 10, - "index": 3726 + "index": 3564 + } + ], + "CalendarMonth": [ + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 60, + "column": 35, + "index": 2356 + } + ], + "ExpandCircleDown": [ + { + "filePath": "src/components/program/ProgramDataBar.jsx", + "line": 47, + "column": 18, + "index": 1851 + } + ], + "FormatQuote": [ + { + "filePath": "src/components/program/ProgramEndorsements.jsx", + "line": 19, + "column": 14, + "index": 910 + } + ], + "AddCircle": [ + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 92, + "column": 14, + "index": 3327 + } + ], + "RemoveCircle": [ + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 96, + "column": 14, + "index": 3451 } ], "Bubble": [ @@ -19934,12 +23773,12 @@ "index": 2304 } ], - "Menu": [ + "MenuIcon": [ { "filePath": "src/components/site-header/SiteHeader.jsx", "line": 51, "column": 14, - "index": 1837 + "index": 1829 } ], "InfoOutline": [ @@ -19969,81 +23808,81 @@ "Stepper": [ { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 167, + "line": 168, "column": 4, - "index": 6474 + "index": 6500 } ], "ModalDialog": [ { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 168, + "line": 169, "column": 6, - "index": 6514 + "index": 6540 } ], "ModalDialog.Body": [ { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 183, + "line": 184, "column": 8, - "index": 7001 + "index": 7027 } ], "Stepper.Step": [ { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 185, + "line": 186, "column": 12, - "index": 7064 + "index": 7090 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 250, + "line": 255, "column": 12, - "index": 9868 + "index": 10068 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 275, + "line": 280, "column": 12, - "index": 11007 + "index": 11207 } ], "Form.Checkbox": [ { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 214, + "line": 219, "column": 24, - "index": 8334 + "index": 8534 } ], "ModalDialog.Footer": [ { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 280, + "line": 285, "column": 8, - "index": 11232 + "index": 11432 } ], "Stepper.ActionRow": [ { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 281, + "line": 286, "column": 10, - "index": 11263 + "index": 11463 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 293, + "line": 298, "column": 10, - "index": 11708 + "index": 11908 }, { "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 300, + "line": 305, "column": 10, - "index": 12044 + "index": 12244 } ], "PageBanner": [ @@ -20073,7 +23912,7 @@ } }, { - "version": "20.28.4", + "version": "20.30.0", "name": "frontend-app-learner-portal", "repository": "https://github.com/openedx/frontend-app-learner-portal-programs", "folderName": "frontend-app-learner-portal-programs", @@ -20257,7 +24096,7 @@ } }, { - "version": "20.32.0", + "version": "20.45.0", "name": "@edx/frontend-app-learner-record", "repository": { "type": "git", @@ -20265,7 +24104,193 @@ }, "folderName": "frontend-app-learner-record", "usages": { + "Tabs": [ + { + "filePath": "src/components/NavigationBar/NavigationBar.jsx", + "line": 30, + "column": 4, + "index": 753 + } + ], + "Tab": [ + { + "filePath": "src/components/NavigationBar/NavigationBar.jsx", + "line": 36, + "column": 8, + "index": 923 + } + ], + "Hyperlink": [ + { + "filePath": "src/components/ProgramCertificate/ProgramCertificate.jsx", + "line": 26, + "column": 8, + "index": 570 + }, + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 88, + "column": 6, + "index": 2781 + }, + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 152, + "column": 6, + "index": 4564 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 83, + "column": 6, + "index": 2601 + }, + { + "filePath": "src/components/ProgramRecord/RecordsHelp.jsx", + "line": 23, + "column": 14, + "index": 753 + }, + { + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 68, + "column": 18, + "index": 2570 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 47, + "column": 6, + "index": 1518 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 116, + "column": 14, + "index": 4046 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 162, + "column": 6, + "index": 5503 + } + ], + "DropdownButton": [ + { + "filePath": "src/components/ProgramCertificate/ProgramCertificate.jsx", + "line": 34, + "column": 8, + "index": 834 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/components/ProgramCertificate/ProgramCertificate.jsx", + "line": 36, + "column": 12, + "index": 999 + } + ], + "StandardModal": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 27, + "column": 6, + "index": 737 + }, + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 39, + "column": 4, + "index": 1017 + } + ], + "Info": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 28, + "column": 8, + "index": 819 + }, + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 103, + "column": 8, + "index": 3248 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 168, + "column": 8, + "index": 5483 + }, + { + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 39, + "column": 18, + "index": 1334 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 64, + "column": 8, + "index": 2058 + } + ], + "ActionRow": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 47, + "column": 12, + "index": 1234 + }, + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 134, + "column": 8, + "index": 4123 + } + ], + "ActionRow.Spacer": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 48, + "column": 14, + "index": 1260 + } + ], "Button": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 49, + "column": 14, + "index": 1295 + }, + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 117, + "column": 10, + "index": 3729 + }, + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 129, + "column": 10, + "index": 4098 + }, + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 156, + "column": 10, + "index": 4966 + }, + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 165, + "column": 10, + "index": 5212 + }, { "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", "line": 78, @@ -20304,58 +24329,74 @@ }, { "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 118, + "line": 120, "column": 16, - "index": 4192 + "index": 4267 } ], - "ArrowBack": [ + "Row": [ { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 80, - "column": 18, - "index": 2544 + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 59, + "column": 10, + "index": 1538 + }, + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 118, + "column": 6, + "index": 3681 } ], - "Hyperlink": [ + "ContentCopy": [ { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 83, - "column": 6, - "index": 2601 + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 74, + "column": 16, + "index": 2181 }, { - "filePath": "src/components/ProgramRecord/RecordsHelp.jsx", - "line": 23, - "column": 14, - "index": 753 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 158, + "column": 30, + "index": 5095 }, { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 68, - "column": 18, - "index": 2570 - }, + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 171, + "column": 30, + "index": 5624 + } + ], + "useToggle": [ { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 45, - "column": 6, - "index": 1457 - }, + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 30, + "column": 47, + "index": 1163 + } + ], + "ChevronLeft": [ { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 114, - "column": 14, - "index": 3971 + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 92, + "column": 8, + "index": 2935 }, { "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 160, - "column": 6, - "index": 5428 + "line": 51, + "column": 8, + "index": 1672 } ], "Alert": [ + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 102, + "column": 6, + "index": 3215 + }, { "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", "line": 167, @@ -20376,29 +24417,17 @@ }, { "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 61, + "line": 63, "column": 6, - "index": 1964 + "index": 2025 } ], - "Info": [ + "ArrowBack": [ { "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 168, - "column": 8, - "index": 5483 - }, - { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 39, + "line": 80, "column": 18, - "index": 1334 - }, - { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 62, - "column": 8, - "index": 1997 + "index": 2544 } ], "Container": [ @@ -20489,20 +24518,6 @@ "index": 4587 } ], - "ContentCopy": [ - { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 158, - "column": 30, - "index": 5095 - }, - { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 171, - "column": 30, - "index": 5624 - } - ], "Popover": [ { "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", @@ -20713,14 +24728,6 @@ "index": 4094 } ], - "ActionRow": [ - { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 134, - "column": 8, - "index": 4123 - } - ], "ModalDialog.CloseButton": [ { "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", @@ -20728,19 +24735,11 @@ "column": 10, "index": 4145 } - ], - "ChevronLeft": [ - { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 49, - "column": 8, - "index": 1611 - } ] } }, { - "version": "20.28.4", + "version": "20.46.0", "name": "@edx/frontend-app-learning", "repository": { "type": "git", @@ -21319,33 +25318,33 @@ }, { "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 74, + "line": 73, "column": 6, - "index": 2385 + "index": 2148 }, { "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 84, + "line": 94, "column": 6, - "index": 2893 + "index": 2892 }, { "filePath": "src/courseware/course/sequence/sequence-navigation/UnitButton.jsx", - "line": 28, + "line": 31, "column": 4, - "index": 604 + "index": 734 }, { "filePath": "src/courseware/course/sequence/sequence-navigation/UnitNavigation.jsx", - "line": 35, + "line": 34, "column": 6, - "index": 1320 + "index": 1107 }, { "filePath": "src/courseware/course/sequence/sequence-navigation/UnitNavigation.jsx", - "line": 52, + "line": 54, "column": 6, - "index": 1889 + "index": 1913 }, { "filePath": "src/generic/upgrade-button/UpgradeButton.jsx", @@ -21525,9 +25524,9 @@ }, { "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", - "line": 43, + "line": 47, "column": 6, - "index": 1425 + "index": 1551 }, { "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationIcon.jsx", @@ -21995,9 +25994,9 @@ }, { "filePath": "src/courseware/course/Course.jsx", - "line": 145, + "line": 154, "column": 22, - "index": 5189 + "index": 5458 }, { "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", @@ -22031,27 +26030,27 @@ }, { "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 43, + "line": 45, "column": 53, - "index": 1327 + "index": 1361 }, { "filePath": "src/courseware/course/sequence/Sequence.jsx", - "line": 47, + "line": 46, "column": 53, - "index": 1751 + "index": 1701 }, { "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 19, + "line": 16, "column": 34, - "index": 630 + "index": 442 }, { "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 20, + "line": 17, "column": 35, - "index": 717 + "index": 529 }, { "filePath": "src/generic/tabs/useIndexOfLastVisibleChild.js", @@ -22099,15 +26098,15 @@ }, { "filePath": "src/courseware/course/Course.jsx", - "line": 53, + "line": 54, "column": 47, - "index": 1984 + "index": 2016 }, { "filePath": "src/courseware/course/Course.jsx", - "line": 57, + "line": 58, "column": 64, - "index": 2216 + "index": 2248 }, { "filePath": "src/courseware/course/Course.test.jsx", @@ -22147,15 +26146,15 @@ }, { "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 43, + "line": 45, "column": 77, - "index": 1351 + "index": 1385 }, { "filePath": "src/courseware/course/sequence/Sequence.jsx", - "line": 47, + "line": 46, "column": 77, - "index": 1775 + "index": 1725 }, { "filePath": "src/courseware/course/sequence/Sequence.test.jsx", @@ -22165,21 +26164,21 @@ }, { "filePath": "src/courseware/course/sequence/Sequence.test.jsx", - "line": 410, + "line": 417, "column": 26, - "index": 17448 + "index": 17812 }, { "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 19, + "line": 16, "column": 58, - "index": 654 + "index": 466 }, { "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 20, + "line": 17, "column": 59, - "index": 741 + "index": 553 }, { "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", @@ -22570,20 +26569,54 @@ "index": 6713 } ], - "SelectMenu": [ + "useToggle": [ { "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", - "line": 41, + "line": 26, + "column": 32, + "index": 967 + }, + { + "filePath": "src/tab-page/LoadedTabPage.jsx", + "line": 43, + "column": 61, + "index": 1502 + } + ], + "ModalPopup": [ + { + "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", + "line": 61, "column": 12, - "index": 1545 + "index": 1999 } ], - "MenuItem": [ + "Menu": [ + { + "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", + "line": 62, + "column": 14, + "index": 2079 + } + ], + "Dropdown.Item": [ { "filePath": "src/courseware/course/JumpNavMenuItem.jsx", - "line": 44, + "line": 46, "column": 4, - "index": 993 + "index": 1038 + }, + { + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 28, + "column": 8, + "index": 888 + }, + { + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidgetOption.jsx", + "line": 70, + "column": 6, + "index": 1827 } ], "ActionRow.Spacer": [ @@ -22654,26 +26687,12 @@ "index": 3657 } ], - "Dropdown.Item": [ - { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", - "line": 28, - "column": 8, - "index": 888 - }, - { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidgetOption.jsx", - "line": 70, - "column": 6, - "index": 1827 - } - ], "Modal": [ { - "filePath": "src/courseware/course/sequence/Unit.jsx", - "line": 212, + "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.jsx", + "line": 78, "column": 8, - "index": 7985 + "index": 2020 } ], "ArrowBackIos": [ @@ -22695,9 +26714,9 @@ "QuestionAnswer": [ { "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", - "line": 43, + "line": 47, "column": 17, - "index": 1436 + "index": 1562 } ], "WatchOutline": [ @@ -22822,26 +26841,18 @@ "index": 9189 } ], - "useToggle": [ - { - "filePath": "src/tab-page/LoadedTabPage.jsx", - "line": 43, - "column": 61, - "index": 1502 - } - ], "Toast": [ { "filePath": "src/tab-page/TabPage.jsx", - "line": 65, - "column": 8, - "index": 1954 + "line": 52, + "column": 10, + "index": 1571 } ] } }, { - "version": "20.30.1", + "version": "20.46.2", "name": "@edx/frontend-app-library-authoring", "repository": { "type": "git", @@ -22858,51 +26869,51 @@ }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 427, + "line": 444, "column": 6, - "index": 14268 + "index": 15039 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 484, + "line": 501, "column": 16, - "index": 16625 + "index": 17396 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 496, + "line": 513, "column": 12, - "index": 17133 + "index": 17904 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 510, + "line": 527, "column": 18, - "index": 17760 + "index": 18531 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 513, + "line": 530, "column": 18, - "index": 17917 + "index": 18688 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 547, + "line": 569, "column": 6, - "index": 19499 + "index": 20407 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 550, + "line": 572, "column": 12, - "index": 19609 + "index": 20517 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 557, + "line": 579, "column": 12, - "index": 20147 + "index": 21055 }, { "filePath": "src/library-authoring/common/ErrorAlert.jsx", @@ -23016,13 +27027,13 @@ "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 194, "column": 12, - "index": 4732 + "index": 4762 }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 329, "column": 12, - "index": 11287 + "index": 11333 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -23072,31 +27083,31 @@ "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", "line": 85, "column": 2, - "index": 2503 + "index": 2569 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 133, + "line": 145, "column": 6, - "index": 4129 + "index": 4654 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 428, + "line": 445, "column": 8, - "index": 14304 + "index": 15075 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 558, + "line": 580, "column": 14, - "index": 20211 + "index": 21119 }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 206, "column": 16, - "index": 5143 + "index": 5173 }, { "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", @@ -23136,9 +27147,9 @@ }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 27, + "line": 26, "column": 2, - "index": 1003 + "index": 917 }, { "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", @@ -23152,13 +27163,13 @@ "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", "line": 86, "column": 4, - "index": 2537 + "index": 2603 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 559, + "line": 581, "column": 16, - "index": 20234 + "index": 21142 }, { "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", @@ -23190,25 +27201,25 @@ "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", "line": 90, "column": 8, - "index": 2662 + "index": 2728 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 122, + "line": 134, "column": 8, - "index": 3709 + "index": 4218 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 410, + "line": 427, "column": 6, - "index": 13694 + "index": 14465 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 430, + "line": 447, "column": 12, - "index": 14345 + "index": 15116 }, { "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", @@ -23224,9 +27235,9 @@ }, { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 357, + "line": 356, "column": 12, - "index": 12110 + "index": 12196 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", @@ -23242,21 +27253,15 @@ }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 32, + "line": 31, "column": 4, - "index": 1347 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 66, - "column": 14, - "index": 2722 + "index": 1261 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 123, + "line": 92, "column": 14, - "index": 4968 + "index": 3737 }, { "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", @@ -23270,61 +27275,61 @@ "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", "line": 91, "column": 10, - "index": 2684 + "index": 2750 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 99, + "line": 98, "column": 10, - "index": 2948 + "index": 3071 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 126, + "line": 138, "column": 10, - "index": 3837 + "index": 4346 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 284, + "line": 301, "column": 4, - "index": 9799 + "index": 10570 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 498, + "line": 515, "column": 14, - "index": 17281 + "index": 18052 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 531, + "line": 553, "column": 20, - "index": 18827 + "index": 19735 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 534, + "line": 556, "column": 20, - "index": 19006 + "index": 19914 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 537, + "line": 559, "column": 20, - "index": 19196 + "index": 20104 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 563, + "line": 585, "column": 18, - "index": 20431 + "index": 21339 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 566, + "line": 588, "column": 18, - "index": 20622 + "index": 21530 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", @@ -23342,7 +27347,7 @@ "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 316, "column": 24, - "index": 10815 + "index": 10861 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -23358,21 +27363,21 @@ }, { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 323, + "line": 322, "column": 18, - "index": 10622 + "index": 10708 }, { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 358, + "line": 357, "column": 14, - "index": 12136 + "index": 12222 }, { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 361, + "line": 360, "column": 14, - "index": 12329 + "index": 12415 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockAssets.jsx", @@ -23430,39 +27435,33 @@ }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 47, - "column": 10, - "index": 1913 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 70, - "column": 16, - "index": 2874 + "line": 45, + "column": 8, + "index": 1814 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 81, + "line": 50, "column": 8, - "index": 3293 + "index": 2062 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 87, + "line": 56, "column": 10, - "index": 3552 + "index": 2321 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 90, + "line": 59, "column": 10, - "index": 3738 + "index": 2507 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 97, + "line": 66, "column": 10, - "index": 4032 + "index": 2801 }, { "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", @@ -23486,149 +27485,119 @@ "ModalDialog": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 109, + "line": 108, "column": 4, - "index": 3248 + "index": 3371 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 50, - "column": 10, - "index": 2087 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 121, + "column": 4, + "index": 3757 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 107, + "line": 76, "column": 10, - "index": 4345 + "index": 3114 } ], "ModalDialog.Header": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 113, + "line": 125, "column": 6, - "index": 3352 + "index": 3861 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 54, - "column": 12, - "index": 2215 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 111, + "line": 80, "column": 12, - "index": 4473 + "index": 3242 } ], "ModalDialog.Title": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 114, + "line": 126, "column": 8, - "index": 3381 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 55, - "column": 14, - "index": 2250 + "index": 3890 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 112, + "line": 81, "column": 14, - "index": 4508 + "index": 3277 } ], "ModalDialog.Body": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 118, + "line": 130, "column": 6, - "index": 3548 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 59, - "column": 12, - "index": 2441 + "index": 4057 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 116, + "line": 85, "column": 12, - "index": 4693 + "index": 3462 } ], "ModalDialog.Footer": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 121, + "line": 133, "column": 6, - "index": 3680 + "index": 4189 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 65, - "column": 12, - "index": 2687 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 122, + "line": 91, "column": 12, - "index": 4933 + "index": 3702 } ], "ModalDialog.CloseButton": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 123, + "line": 135, "column": 10, - "index": 3731 + "index": 4240 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 67, - "column": 16, - "index": 2750 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 124, + "line": 93, "column": 16, - "index": 4996 + "index": 3765 } ], "Card.Body": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 134, + "line": 146, "column": 8, - "index": 4144 + "index": 4669 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 429, + "line": 446, "column": 10, - "index": 14321 + "index": 15092 } ], "Form.Control": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 354, + "line": 371, "column": 10, - "index": 12113 + "index": 12884 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 441, + "line": 458, "column": 16, - "index": 14840 + "index": 15611 }, { "filePath": "src/library-authoring/common/FormGroup.jsx", @@ -23640,13 +27609,7 @@ "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 219, "column": 28, - "index": 5802 - }, - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 248, - "column": 28, - "index": 7324 + "index": 5832 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -23670,37 +27633,25 @@ "IconButton": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 370, + "line": 387, "column": 12, - "index": 12542 - }, - { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 153, - "column": 6, - "index": 4089 - }, - { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 167, - "column": 6, - "index": 4370 + "index": 13313 } ], "Edit": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 373, + "line": 390, "column": 22, - "index": 12626 + "index": 13397 } ], "Container": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 407, + "line": 424, "column": 2, - "index": 13519 + "index": 14290 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", @@ -23712,15 +27663,15 @@ "ActionRow.Spacer": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 414, + "line": 431, "column": 8, - "index": 13789 + "index": 14560 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 440, + "line": 457, "column": 16, - "index": 14803 + "index": 15574 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -23736,9 +27687,9 @@ }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 39, + "line": 38, "column": 6, - "index": 1592 + "index": 1506 }, { "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", @@ -23756,21 +27707,21 @@ "Row": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 424, + "line": 441, "column": 4, - "index": 14065 + "index": 14836 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 509, + "line": 526, "column": 16, - "index": 17736 + "index": 18507 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 549, + "line": 571, "column": 10, - "index": 19591 + "index": 20499 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", @@ -23812,7 +27763,7 @@ "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 193, "column": 10, - "index": 4694 + "index": 4724 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -23842,17 +27793,17 @@ "SearchField": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 433, + "line": 450, "column": 16, - "index": 14477 + "index": 15248 } ], "Pagination": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 485, + "line": 502, "column": 18, - "index": 16657 + "index": 17428 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -23873,80 +27824,12 @@ "index": 5238 } ], - "Dropdown": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 515, - "column": 22, - "index": 18030 - }, - { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 43, - "column": 10, - "index": 1479 - } - ], - "Dropdown.Toggle": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 516, - "column": 24, - "index": 18065 - }, - { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 44, - "column": 12, - "index": 1502 - } - ], - "Dropdown.Menu": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 519, - "column": 24, - "index": 18293 - }, - { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 47, - "column": 12, - "index": 1700 - } - ], - "Dropdown.Item": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 521, - "column": 28, - "index": 18396 - }, - { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 48, - "column": 14, - "index": 1730 - }, - { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 49, - "column": 14, - "index": 1892 - }, - { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 50, - "column": 14, - "index": 2055 - } - ], "Card.Footer": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 562, + "line": 584, "column": 16, - "index": 20399 + "index": 21307 }, { "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", @@ -23955,14 +27838,6 @@ "index": 283 } ], - "Hyperlink": [ - { - "filePath": "src/library-authoring/common/AboutLibrariesHyperlink.jsx", - "line": 8, - "column": 2, - "index": 231 - } - ], "Alert": [ { "filePath": "src/library-authoring/common/ErrorAlert.jsx", @@ -23980,7 +27855,7 @@ "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 198, "column": 16, - "index": 4891 + "index": 4921 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -23992,7 +27867,7 @@ "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", "line": 247, "column": 12, - "index": 6869 + "index": 6919 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", @@ -24018,19 +27893,7 @@ "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 211, "column": 26, - "index": 5362 - }, - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 240, - "column": 26, - "index": 6901 - }, - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 269, - "column": 24, - "index": 8366 + "index": 5392 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -24077,66 +27940,12 @@ "index": 4220 } ], - "ExpandMore": [ - { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 155, - "column": 13, - "index": 4146 - } - ], - "Icon": [ - { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 156, - "column": 16, - "index": 4174 - }, - { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 170, - "column": 16, - "index": 4455 - }, - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 311, - "column": 37, - "index": 10579 - }, - { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 339, - "column": 31, - "index": 11312 - }, - { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 81, - "column": 23, - "index": 3078 - }, - { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 158, - "column": 22, - "index": 4957 - } - ], - "ExpandLess": [ - { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 169, - "column": 13, - "index": 4427 - } - ], "Form": [ { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 207, "column": 18, - "index": 5168 + "index": 5198 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -24150,31 +27959,19 @@ "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 210, "column": 24, - "index": 5321 - }, - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 239, - "column": 24, - "index": 6860 - }, - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 268, - "column": 22, - "index": 8327 + "index": 5351 }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 291, "column": 24, - "index": 9553 + "index": 9599 }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 300, "column": 22, - "index": 9945 + "index": 9991 }, { "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", @@ -24200,7 +27997,7 @@ "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 216, "column": 28, - "index": 5590 + "index": 5620 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -24226,13 +28023,7 @@ "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 227, "column": 28, - "index": 6228 - }, - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 257, - "column": 28, - "index": 7739 + "index": 6258 }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", @@ -24241,26 +28032,12 @@ "index": 1949 } ], - "Form.Check": [ - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 270, - "column": 26, - "index": 8405 - }, - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 279, - "column": 26, - "index": 8907 - } - ], "StatefulButton": [ { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", "line": 301, "column": 24, - "index": 9984 + "index": 10030 }, { "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", @@ -24270,9 +28047,9 @@ }, { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 331, + "line": 330, "column": 18, - "index": 10966 + "index": 11052 }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", @@ -24281,6 +28058,32 @@ "index": 2569 } ], + "Icon": [ + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 311, + "column": 37, + "index": 10625 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 338, + "column": 31, + "index": 11398 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 81, + "column": 23, + "index": 3078 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 158, + "column": 22, + "index": 4957 + } + ], "Form.Row": [ { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", @@ -24304,9 +28107,9 @@ }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 28, + "line": 27, "column": 4, - "index": 1035 + "index": 949 } ], "Info": [ @@ -24314,7 +28117,7 @@ "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", "line": 248, "column": 20, - "index": 6896 + "index": 6946 } ], "Alert.Heading": [ @@ -24322,7 +28125,7 @@ "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", "line": 252, "column": 29, - "index": 7020 + "index": 7070 } ], "Breadcrumb": [ @@ -24330,15 +28133,15 @@ "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", "line": 256, "column": 10, - "index": 7166 + "index": 7216 } ], "AlertModal": [ { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 353, + "line": 352, "column": 8, - "index": 11956 + "index": 12042 } ], "Spinner": [ @@ -24356,11 +28159,55 @@ "column": 33, "index": 4968 } + ], + "Dropdown": [ + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 43, + "column": 10, + "index": 1479 + } + ], + "Dropdown.Toggle": [ + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 44, + "column": 12, + "index": 1502 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 47, + "column": 12, + "index": 1700 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 48, + "column": 14, + "index": 1730 + }, + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 49, + "column": 14, + "index": 1892 + }, + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 50, + "column": 14, + "index": 2055 + } ] } }, { - "version": "20.30.0", + "version": "20.45.5", "name": "@edx/frontend-app-ora-grading", "repository": { "type": "git", @@ -24677,7 +28524,7 @@ "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", "line": 26, "column": 8, - "index": 936 + "index": 938 }, { "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", @@ -24927,7 +28774,7 @@ "filePath": "src/components/FilePreview/FileInfo.jsx", "line": 32, "column": 17, - "index": 732 + "index": 729 }, { "filePath": "src/components/InfoPopover/index.jsx", @@ -25029,7 +28876,7 @@ "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", "line": 26, "column": 19, - "index": 947 + "index": 949 } ], "DataTable": [ @@ -25201,7 +29048,7 @@ } }, { - "version": "20.30.1", + "version": "20.45.0", "name": "@edx/frontend-app-payment", "repository": { "type": "git", @@ -25248,17 +29095,23 @@ "column": 14, "index": 1347 }, + { + "filePath": "src/subscription/alerts/ErrorMessages.jsx", + "line": 26, + "column": 8, + "index": 1059 + }, { "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 54, + "line": 41, "column": 4, - "index": 1980 + "index": 1173 }, { "filePath": "src/subscription/details/legal/SubscriptionLegal.jsx", - "line": 14, + "line": 17, "column": 4, - "index": 324 + "index": 459 } ], "Collapsible": [ @@ -25288,7 +29141,7 @@ "filePath": "src/payment/cart/UpdateQuantityForm.jsx", "line": 37, "column": 10, - "index": 1220 + "index": 1225 } ], "Button": [ @@ -25306,17 +29159,17 @@ }, { "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 91, + "line": 83, "column": 10, - "index": 3052 + "index": 2475 } ], "StatefulButton": [ { "filePath": "src/payment/cart/UpdateQuantityForm.jsx", - "line": 66, + "line": 65, "column": 6, - "index": 2062 + "index": 2027 }, { "filePath": "src/payment/checkout/payment-form/PlaceOrderButton.jsx", @@ -25326,9 +29179,9 @@ }, { "filePath": "src/subscription/checkout/submit-button/SubscriptionSubmitButton.jsx", - "line": 23, + "line": 29, "column": 10, - "index": 922 + "index": 1061 } ], "Skeleton": [ @@ -25498,73 +29351,79 @@ "Icon": [ { "filePath": "src/subscription/checkout/submit-button/SubscriptionSubmitButton.jsx", - "line": 59, + "line": 58, "column": 16, - "index": 2302 + "index": 2166 } ], "CheckIcon": [ { "filePath": "src/subscription/checkout/submit-button/SubscriptionSubmitButton.jsx", - "line": 59, + "line": 58, "column": 27, - "index": 2313 + "index": 2177 } ], "ModalDialog": [ { "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 64, + "line": 51, "column": 4, - "index": 2207 + "index": 1400 + }, + { + "filePath": "src/subscription/secure-3d/secure-3d-modal/Secure3dModal.jsx", + "line": 132, + "column": 4, + "index": 4027 } ], "ModalDialog.Header": [ { "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 72, + "line": 59, "column": 6, - "index": 2427 + "index": 1620 } ], "ModalDialog.Title": [ { "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 73, + "line": 60, "column": 8, - "index": 2456 + "index": 1649 } ], "ModalDialog.Body": [ { "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 81, + "line": 68, "column": 6, - "index": 2700 + "index": 1937 } ], "ModalDialog.Footer": [ { "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 89, + "line": 81, "column": 6, - "index": 3001 + "index": 2424 } ], "ActionRow": [ { "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 90, + "line": 82, "column": 8, - "index": 3030 + "index": 2453 } ], "ArrowForward": [ { "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 94, + "line": 86, "column": 23, - "index": 3130 + "index": 2553 } ], "Badge": [ @@ -25578,7 +29437,7 @@ } }, { - "version": "20.32.0", + "version": "20.46.2", "name": "@edx/frontend-app-profile", "repository": { "type": "git", @@ -25604,18 +29463,6 @@ "line": 145, "column": 10, "index": 4378 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/ViewResults.jsx", - "line": 104, - "column": 6, - "index": 4166 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/ViewResults.jsx", - "line": 126, - "column": 8, - "index": 4612 } ], "Alert.Heading": [ @@ -25624,18 +29471,6 @@ "line": 13, "column": 4, "index": 336 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/ViewResults.jsx", - "line": 108, - "column": 8, - "index": 4242 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/ViewResults.jsx", - "line": 130, - "column": 10, - "index": 4696 } ], "Alert.Link": [ @@ -25670,18 +29505,6 @@ "line": 80, "column": 16, "index": 2164 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/GoalSelect.jsx", - "line": 33, - "column": 4, - "index": 864 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/JobTitleSelect.jsx", - "line": 62, - "column": 6, - "index": 2037 } ], "Hyperlink": [ @@ -25696,12 +29519,6 @@ "line": 115, "column": 6, "index": 3501 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RecommendationCard.jsx", - "line": 19, - "column": 4, - "index": 485 } ], "Button": [ @@ -25722,30 +29539,6 @@ "line": 59, "column": 8, "index": 1447 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 96, - "column": 12, - "index": 2889 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 100, - "column": 12, - "index": 3076 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 108, - "column": 12, - "index": 3358 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 115, - "column": 12, - "index": 3600 } ], "StatefulButton": [ @@ -25808,12 +29601,6 @@ "line": 9, "column": 4, "index": 332 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/CareerInterestCard.jsx", - "line": 38, - "column": 16, - "index": 1150 } ], "VisibilityOff": [ @@ -25823,355 +29610,11 @@ "column": 15, "index": 343 } - ], - "IconButton": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/CareerInterestCard.jsx", - "line": 37, - "column": 6, - "index": 1122 - } - ], - "Close": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/CareerInterestCard.jsx", - "line": 39, - "column": 13, - "index": 1169 - } - ], - "Stack": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/CareerInterestSelect.jsx", - "line": 39, - "column": 4, - "index": 1297 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/JobTitleSelect.jsx", - "line": 49, - "column": 4, - "index": 1543 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/SelectPreferences.jsx", - "line": 18, - "column": 4, - "index": 582 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/SelectPreferences.jsx", - "line": 22, - "column": 6, - "index": 701 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RelatedSkillsSelectableBoxSet.jsx", - "line": 41, - "column": 10, - "index": 1171 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/ViewResults.jsx", - "line": 125, - "column": 6, - "index": 4567 - } - ], - "Form.Label": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/CareerInterestSelect.jsx", - "line": 40, - "column": 6, - "index": 1319 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/GoalSelect.jsx", - "line": 34, - "column": 6, - "index": 883 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/JobTitleSelect.jsx", - "line": 50, - "column": 6, - "index": 1557 - } - ], - "Row": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/CareerInterestSelect.jsx", - "line": 53, - "column": 6, - "index": 1866 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/ViewResults.jsx", - "line": 117, - "column": 6, - "index": 4408 - } - ], - "Col": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/CareerInterestSelect.jsx", - "line": 56, - "column": 10, - "index": 1997 - } - ], - "Form.Control": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/GoalSelect.jsx", - "line": 39, - "column": 6, - "index": 1004 - } - ], - "Form.Autosuggest": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/JobTitleInstantSearch.jsx", - "line": 23, - "column": 4, - "index": 531 - } - ], - "Form.AutosuggestOption": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/JobTitleInstantSearch.jsx", - "line": 31, - "column": 8, - "index": 725 - } - ], - "Form.CheckboxSet": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/JobTitleSelect.jsx", - "line": 63, - "column": 8, - "index": 2058 - } - ], - "Form.Checkbox": [ - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/JobTitleSelect.jsx", - "line": 67, - "column": 10, - "index": 2173 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/select-preferences/JobTitleSelect.jsx", - "line": 70, - "column": 10, - "index": 2302 - } - ], - "Stepper": [ - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 61, - "column": 4, - "index": 1725 - } - ], - "ModalDialog": [ - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 62, - "column": 6, - "index": 1765 - } - ], - "ModalDialog.Hero": [ - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 69, - "column": 8, - "index": 1956 - } - ], - "Stepper.Header": [ - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 78, - "column": 8, - "index": 2294 - } - ], - "ModalDialog.Body": [ - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 80, - "column": 8, - "index": 2322 - } - ], - "Container": [ - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 81, - "column": 10, - "index": 2351 - } - ], - "Form": [ - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 82, - "column": 12, - "index": 2403 - } - ], - "Stepper.Step": [ - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 83, - "column": 14, - "index": 2424 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 87, - "column": 14, - "index": 2589 - } - ], - "ModalDialog.Footer": [ - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 94, - "column": 8, - "index": 2809 - } - ], - "Stepper.ActionRow": [ - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 95, - "column": 10, - "index": 2840 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", - "line": 107, - "column": 10, - "index": 3309 - } - ], - "CardCarousel": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/CarouselStack.jsx", - "line": 55, - "column": 6, - "index": 1975 - } - ], - "Card": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RecommendationCard.jsx", - "line": 20, - "column": 6, - "index": 569 - } - ], - "Card.ImageCap": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RecommendationCard.jsx", - "line": 24, - "column": 8, - "index": 695 - } - ], - "Card.Header": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RecommendationCard.jsx", - "line": 30, - "column": 8, - "index": 887 - } - ], - "Card.Section": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RecommendationCard.jsx", - "line": 31, - "column": 8, - "index": 925 - } - ], - "Chip": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RecommendationCard.jsx", - "line": 34, - "column": 12, - "index": 1062 - }, - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RelatedSkillsSelectableBoxSet.jsx", - "line": 17, - "column": 8, - "index": 654 - } - ], - "useMediaQuery": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RelatedSkillsSelectableBoxSet.jsx", - "line": 11, - "column": 23, - "index": 397 - } - ], - "breakpoints": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RelatedSkillsSelectableBoxSet.jsx", - "line": 11, - "column": 49, - "index": 423 - } - ], - "SelectableBox.Set": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RelatedSkillsSelectableBoxSet.jsx", - "line": 25, - "column": 4, - "index": 761 - } - ], - "SelectableBox": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/RelatedSkillsSelectableBoxSet.jsx", - "line": 33, - "column": 8, - "index": 973 - } - ], - "ErrorOutline": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/ViewResults.jsx", - "line": 106, - "column": 14, - "index": 4212 - } - ], - "Spinner": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/ViewResults.jsx", - "line": 118, - "column": 8, - "index": 4422 - } - ], - "CheckCircle": [ - { - "filePath": "src/skills-builder/skills-builder-modal/view-results/ViewResults.jsx", - "line": 128, - "column": 16, - "index": 4663 - } ] } }, { - "version": "20.32.0", + "version": "20.45.0", "name": "@edx/frontend-app-program-console", "repository": { "type": "git", @@ -26250,7 +29693,7 @@ } }, { - "version": "20.28.5", + "version": "20.46.2", "name": "edx-frontend-app-publisher", "repository": "https://github.com/openedx/frontend-app-publisher", "folderName": "frontend-app-publisher", @@ -26334,33 +29777,33 @@ }, { "filePath": "src/components/EditCoursePage/index.jsx", - "line": 697, + "line": 705, "column": 8, - "index": 23254 + "index": 23894 }, { "filePath": "src/components/EditCoursePage/index.jsx", - "line": 815, + "line": 821, "column": 10, - "index": 26726 + "index": 27310 }, { "filePath": "src/components/EditCoursePage/index.jsx", - "line": 825, + "line": 831, "column": 10, - "index": 27009 + "index": 27593 }, { "filePath": "src/components/EditCoursePage/index.jsx", - "line": 875, + "line": 881, "column": 10, - "index": 28859 + "index": 29443 }, { "filePath": "src/components/EditCoursePage/index.jsx", - "line": 913, + "line": 918, "column": 12, - "index": 30284 + "index": 30827 }, { "filePath": "src/components/EditCoursePage/TranscriptLanguage.jsx", @@ -26394,9 +29837,9 @@ }, { "filePath": "src/components/RichEditor/index.jsx", - "line": 76, + "line": 77, "column": 10, - "index": 2130 + "index": 2171 }, { "filePath": "src/components/SidePanes/CommentsPane.jsx", @@ -26456,9 +29899,9 @@ }, { "filePath": "src/components/EditCoursePage/index.jsx", - "line": 703, + "line": 711, "column": 10, - "index": 23369 + "index": 24009 }, { "filePath": "src/components/StafferPage/index.jsx", @@ -26682,15 +30125,27 @@ }, { "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 141, + "line": 145, "column": 10, - "index": 4989 + "index": 5069 }, { "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 155, + "line": 160, "column": 10, - "index": 5481 + "index": 5664 + }, + { + "filePath": "src/components/EditCoursePage/EditCourseForm.test.jsx", + "line": 399, + "column": 8, + "index": 13345 + }, + { + "filePath": "src/components/EditCoursePage/EditCourseForm.test.jsx", + "line": 432, + "column": 8, + "index": 14589 }, { "filePath": "src/components/Header/index.jsx", @@ -26738,9 +30193,9 @@ "Add": [ { "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 118, + "line": 122, "column": 8, - "index": 4329 + "index": 4409 }, { "filePath": "src/components/SidePanes/UsersPane.jsx", @@ -26892,7 +30347,7 @@ } }, { - "version": "20.26.0", + "version": "20.46.0", "name": "@edx/frontend-app-support", "repository": { "type": "git", @@ -26908,22 +30363,10 @@ "index": 444 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 61, - "column": 6, - "index": 2044 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 36, - "column": 6, - "index": 1117 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 67, - "column": 6, - "index": 2088 + "filePath": "src/Configuration/Provisioning/ErrorPage/ErrorPageContainer.jsx", + "line": 28, + "column": 4, + "index": 968 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormContainer.jsx", @@ -26932,22 +30375,16 @@ "index": 438 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInternalOnly.jsx", - "line": 31, - "column": 6, - "index": 772 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", - "line": 29, - "column": 6, - "index": 871 + "filePath": "src/Configuration/Provisioning/ProvisioningPage.jsx", + "line": 9, + "column": 4, + "index": 208 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningPage.jsx", - "line": 7, - "column": 2, - "index": 118 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", + "line": 11, + "column": 4, + "index": 385 } ], "Stack": [ @@ -26966,14 +30403,26 @@ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", "line": 31, - "column": 6, - "index": 1032 + "column": 8, + "index": 1034 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 44, + "line": 46, "column": 6, - "index": 1314 + "index": 1620 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/PolicyDetailView/PolicyContainer.jsx", + "line": 22, + "column": 8, + "index": 827 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 16, + "column": 8, + "index": 427 } ], "Hyperlink": [ @@ -26983,6 +30432,18 @@ "column": 10, "index": 598 }, + { + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", + "line": 12, + "column": 6, + "index": 455 + }, + { + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", + "line": 35, + "column": 4, + "index": 1120 + }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", "line": 23, @@ -27019,6 +30480,12 @@ "column": 14, "index": 3025 }, + { + "filePath": "src/users/orderHistory/OrderHistory.jsx", + "line": 47, + "column": 10, + "index": 1542 + }, { "filePath": "src/users/VerifiedName.jsx", "line": 135, @@ -27026,6 +30493,114 @@ "index": 4398 } ], + "DataTable.FilterStatus": [ + { + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardDataTable.jsx", + "line": 20, + "column": 31, + "index": 865 + } + ], + "DataTable": [ + { + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardDataTable.jsx", + "line": 49, + "column": 6, + "index": 1737 + }, + { + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 71, + "column": 10, + "index": 1856 + } + ], + "Badge": [ + { + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableBadges.jsx", + "line": 9, + "column": 4, + "index": 172 + }, + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 16, + "column": 40, + "index": 384 + }, + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 16, + "column": 83, + "index": 427 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 67, + "column": 14, + "index": 1781 + } + ], + "IconButton": [ + { + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", + "line": 42, + "column": 6, + "index": 1350 + } + ], + "DjangoShort": [ + { + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", + "line": 44, + "column": 13, + "index": 1393 + } + ], + "Icon": [ + { + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", + "line": 45, + "column": 16, + "index": 1422 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogExecEdBoolean.jsx", + "line": 21, + "column": 10, + "index": 918 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogExecEdBoolean.jsx", + "line": 22, + "column": 10, + "index": 980 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", + "line": 32, + "column": 10, + "index": 1075 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", + "line": 53, + "column": 18, + "index": 1905 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/InternalOnlyDetail.jsx", + "line": 16, + "column": 10, + "index": 489 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 23, + "column": 20, + "index": 726 + } + ], "ActionRow": [ { "filePath": "src/Configuration/Provisioning/DashboardHeader.jsx", @@ -27047,9 +30622,15 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", - "line": 161, + "line": 208, "column": 4, - "index": 5182 + "index": 6797 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", + "line": 12, + "column": 6, + "index": 430 }, { "filePath": "src/users/account-actions/CancelRetirement.jsx", @@ -27151,9 +30732,15 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 88, + "line": 94, "column": 14, - "index": 2929 + "index": 3345 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", + "line": 14, + "column": 8, + "index": 490 } ], "Button": [ @@ -27163,17 +30750,29 @@ "column": 6, "index": 590 }, + { + "filePath": "src/Configuration/Provisioning/ErrorPage/ErrorPageButton.jsx", + "line": 7, + "column": 2, + "index": 153 + }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 60, + "line": 75, "column": 8, - "index": 2275 + "index": 3035 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", - "line": 168, + "line": 215, "column": 6, - "index": 5391 + "index": 7051 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/EditButton.jsx", + "line": 4, + "column": 2, + "index": 69 }, { "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", @@ -27360,64 +30959,144 @@ "index": 495 } ], + "Image": [ + { + "filePath": "src/Configuration/Provisioning/ErrorPage/ErrorPageImage.jsx", + "line": 5, + "column": 2, + "index": 131 + } + ], "Form.AutosuggestOption": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 15, + "line": 17, "column": 6, - "index": 760 + "index": 956 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 23, + "line": 25, "column": 10, - "index": 1054 + "index": 1250 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", - "line": 61, - "column": 8, - "index": 2303 + "line": 66, + "column": 10, + "index": 2652 } ], - "Form.Autosuggest": [ + "Form.Group": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 48, + "line": 51, "column": 8, - "index": 1809 + "index": 2070 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogTitle.jsx", + "line": 17, + "column": 6, + "index": 741 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", + "line": 60, + "column": 6, + "index": 2482 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", + "line": 80, + "column": 6, + "index": 3052 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", + "line": 56, + "column": 6, + "index": 2104 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", + "line": 31, + "column": 6, + "index": 1028 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", + "line": 37, + "column": 6, + "index": 1296 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCapAmount.jsx", + "line": 36, + "column": 6, + "index": 1483 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", + "line": 72, + "column": 6, + "index": 2383 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", + "line": 42, + "column": 6, + "index": 1683 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", + "line": 45, + "column": 6, + "index": 1791 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", - "line": 51, + "line": 54, "column": 4, - "index": 1965 - } - ], - "Icon": [ - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogExecEdBoolean.jsx", - "line": 21, - "column": 10, - "index": 918 + "index": 2214 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogExecEdBoolean.jsx", - "line": 22, - "column": 10, - "index": 980 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInternalOnly.jsx", + "line": 30, + "column": 6, + "index": 759 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", - "line": 32, - "column": 8, - "index": 1071 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", + "line": 30, + "column": 6, + "index": 1047 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 51, - "column": 18, - "index": 1599 + "line": 59, + "column": 6, + "index": 2025 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTitle.jsx", + "line": 31, + "column": 6, + "index": 1072 + } + ], + "Form.Autosuggest": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", + "line": 54, + "column": 10, + "index": 2131 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", + "line": 55, + "column": 6, + "index": 2233 } ], "CheckCircle": [ @@ -27451,117 +31130,67 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 43, + "line": 65, "column": 8, - "index": 1820 + "index": 2608 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 51, + "line": 83, "column": 8, - "index": 2078 + "index": 3107 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", + "line": 33, + "column": 8, + "index": 1133 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCapAmount.jsx", - "line": 35, + "line": 39, "column": 8, - "index": 1145 + "index": 1538 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", - "line": 22, + "line": 50, "column": 8, - "index": 781 + "index": 1956 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 58, + "line": 63, "column": 8, - "index": 1764 + "index": 2150 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 68, + "line": 71, "column": 8, - "index": 2083 + "index": 2411 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTitle.jsx", - "line": 16, + "line": 35, "column": 8, - "index": 471 - } - ], - "Form.Group": [ - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogTitle.jsx", - "line": 17, - "column": 6, - "index": 741 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 42, - "column": 6, - "index": 1775 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 50, - "column": 6, - "index": 2038 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCapAmount.jsx", - "line": 34, - "column": 6, - "index": 1105 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", - "line": 18, - "column": 6, - "index": 633 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", - "line": 21, - "column": 6, - "index": 741 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 57, - "column": 6, - "index": 1719 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 67, - "column": 6, - "index": 2043 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTitle.jsx", - "line": 15, - "column": 6, - "index": 431 + "index": 1177 } ], "Warning": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", "line": 32, - "column": 19, - "index": 1082 + "column": 21, + "index": 1086 } ], "Col": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", "line": 33, - "column": 8, - "index": 1131 + "column": 10, + "index": 1137 }, { "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", @@ -27636,96 +31265,256 @@ "index": 1675 } ], - "Form.RadioSet": [ + "Form.Label": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 62, + "line": 57, "column": 8, - "index": 2064 + "index": 2144 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", + "line": 32, + "column": 8, + "index": 1049 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 37, + "line": 40, "column": 8, - "index": 1137 + "index": 1351 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 68, + "line": 73, "column": 8, - "index": 2108 + "index": 2423 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", - "line": 30, + "line": 31, "column": 8, - "index": 891 + "index": 1087 } ], - "Form.Radio": [ + "Form.RadioSet": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 69, + "line": 65, "column": 12, - "index": 2310 + "index": 2402 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 44, + "line": 41, + "column": 8, + "index": 1427 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", + "line": 74, + "column": 8, + "index": 2504 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", + "line": 32, + "column": 8, + "index": 1164 + } + ], + "Form.Radio": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", + "line": 72, + "column": 14, + "index": 2672 + }, + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", + "line": 48, "column": 12, - "index": 1397 + "index": 1687 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 89, + "line": 95, "column": 14, - "index": 2964 + "index": 3380 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", - "line": 37, + "line": 39, "column": 12, - "index": 1116 + "index": 1389 } ], "Spinner": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 77, + "line": 83, + "column": 16, + "index": 2934 + } + ], + "Alert": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAlert.jsx", + "line": 9, + "column": 6, + "index": 280 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 112, + "column": 8, + "index": 3443 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 201, + "column": 16, + "index": 6731 + }, + { + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 31, + "column": 19, + "index": 924 + }, + { + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 34, + "column": 10, + "index": 1005 + }, + { + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 31, + "column": 19, + "index": 886 + }, + { + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 34, + "column": 10, + "index": 967 + }, + { + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 36, + "column": 19, + "index": 994 + }, + { + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 39, + "column": 10, + "index": 1075 + }, + { + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 49, + "column": 12, + "index": 1613 + }, + { + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 119, + "column": 20, + "index": 3799 + }, + { + "filePath": "src/users/EnterpriseAssociations.jsx", + "line": 40, + "column": 16, + "index": 1477 + }, + { + "filePath": "src/users/LearnerCredentials.jsx", + "line": 16, + "column": 6, + "index": 518 + }, + { + "filePath": "src/users/LearnerRecords.jsx", + "line": 53, + "column": 6, + "index": 1474 + }, + { + "filePath": "src/users/LearnerRecords.jsx", + "line": 80, + "column": 18, + "index": 2631 + } + ], + "Info": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAlert.jsx", + "line": 11, "column": 14, - "index": 2536 + "index": 326 + } + ], + "Alert.Heading": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAlert.jsx", + "line": 13, + "column": 8, + "index": 348 } ], "Form.Checkbox": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInternalOnly.jsx", - "line": 32, + "line": 33, "column": 8, - "index": 809 + "index": 814 } ], "StatefulButton": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", - "line": 162, + "line": 209, "column": 6, - "index": 5239 + "index": 6854 } ], "IconButtonWithTooltip": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 46, + "line": 48, "column": 8, - "index": 1435 + "index": 1741 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 18, + "column": 10, + "index": 552 } ], "InfoOutline": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 47, + "line": 49, "column": 15, - "index": 1473 + "index": 1779 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 19, + "column": 17, + "index": 592 + } + ], + "Check": [ + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/InternalOnlyDetail.jsx", + "line": 16, + "column": 21, + "index": 500 } ], "Row": [ @@ -27830,26 +31619,6 @@ "index": 3764 } ], - "Badge": [ - { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 16, - "column": 40, - "index": 384 - }, - { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 16, - "column": 83, - "index": 427 - }, - { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 67, - "column": 14, - "index": 1781 - } - ], "Card.Section": [ { "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", @@ -28009,9 +31778,9 @@ }, { "filePath": "src/users/LearnerInformation.jsx", - "line": 17, + "line": 18, "column": 6, - "index": 549 + "index": 600 } ], "Tab": [ @@ -28047,119 +31816,39 @@ }, { "filePath": "src/users/LearnerInformation.jsx", - "line": 21, + "line": 22, "column": 8, - "index": 644 + "index": 695 }, { "filePath": "src/users/LearnerInformation.jsx", - "line": 29, + "line": 30, "column": 8, - "index": 844 + "index": 895 }, { "filePath": "src/users/LearnerInformation.jsx", - "line": 34, + "line": 35, "column": 8, - "index": 1031 + "index": 1082 }, { "filePath": "src/users/LearnerInformation.jsx", - "line": 45, + "line": 40, "column": 8, - "index": 1284 + "index": 1236 }, { "filePath": "src/users/LearnerInformation.jsx", - "line": 50, - "column": 8, - "index": 1440 - } - ], - "Alert": [ - { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 112, + "line": 51, "column": 8, - "index": 3443 - }, - { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 201, - "column": 16, - "index": 6731 - }, - { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 31, - "column": 19, - "index": 924 - }, - { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 34, - "column": 10, - "index": 1005 - }, - { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 31, - "column": 19, - "index": 886 - }, - { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 34, - "column": 10, - "index": 967 - }, - { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 36, - "column": 19, - "index": 994 - }, - { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 39, - "column": 10, - "index": 1075 - }, - { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 49, - "column": 12, - "index": 1613 - }, - { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 119, - "column": 20, - "index": 3799 - }, - { - "filePath": "src/users/EnterpriseAssociations.jsx", - "line": 40, - "column": 16, - "index": 1477 - }, - { - "filePath": "src/users/LearnerCredentials.jsx", - "line": 16, - "column": 6, - "index": 518 - }, - { - "filePath": "src/users/LearnerRecords.jsx", - "line": 53, - "column": 6, - "index": 1474 + "index": 1489 }, { - "filePath": "src/users/LearnerRecords.jsx", - "line": 80, - "column": 18, - "index": 2631 + "filePath": "src/users/LearnerInformation.jsx", + "line": 56, + "column": 8, + "index": 1645 } ], "Dropdown": [ @@ -28820,14 +32509,6 @@ "index": 5354 } ], - "DataTable": [ - { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 71, - "column": 10, - "index": 1856 - } - ], "InputSelect": [ { "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", @@ -28921,7 +32602,7 @@ } }, { - "version": "12.0.5", + "version": "20.28.4", "name": "@edx/frontend-component-cookie-policy-banner", "repository": { "type": "git", @@ -28940,7 +32621,7 @@ } }, { - "version": "20.32.3", + "version": "20.46.2", "name": "@edx/frontend-component-header-edx", "repository": { "type": "git", @@ -28957,9 +32638,9 @@ }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 31, + "line": 54, "column": 6, - "index": 1068 + "index": 1944 } ], "Dropdown.Toggle": [ @@ -28971,9 +32652,9 @@ }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 32, + "line": 55, "column": 8, - "index": 1113 + "index": 1994 } ], "AvatarButton": [ @@ -28999,9 +32680,9 @@ }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 38, + "line": 61, "column": 8, - "index": 1399 + "index": 2280 } ], "Dropdown.Item": [ @@ -29013,39 +32694,65 @@ }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 15, + "line": 27, "column": 4, - "index": 517 + "index": 1055 }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 21, + "line": 32, + "column": 4, + "index": 1221 + }, + { + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 41, "column": 6, - "index": 777 + "index": 1580 }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 40, + "line": 64, "column": 10, - "index": 1487 + "index": 2405 }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 43, + "line": 67, "column": 10, - "index": 1649 + "index": 2567 }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 51, + "line": 75, "column": 12, - "index": 2159 + "index": 3077 }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 55, + "line": 79, "column": 10, - "index": 2322 + "index": 3250 + } + ], + "Badge": [ + { + "filePath": "src/Header.jsx", + "line": 95, + "column": 87, + "index": 2944 + }, + { + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 34, + "column": 6, + "index": 1319 + }, + { + "filePath": "src/Notifications/index.jsx", + "line": 145, + "column": 10, + "index": 5467 } ], "Button": [ @@ -29060,12 +32767,220 @@ "line": 19, "column": 4, "index": 615 + }, + { + "filePath": "src/Notifications/NotificationSections.jsx", + "line": 46, + "column": 12, + "index": 2120 + }, + { + "filePath": "src/Notifications/NotificationSections.jsx", + "line": 81, + "column": 8, + "index": 3559 + } + ], + "useWindowSize": [ + { + "filePath": "src/Notifications/data/hook.js", + "line": 4, + "column": 21, + "index": 121 + }, + { + "filePath": "src/Notifications/data/hook.js", + "line": 9, + "column": 21, + "index": 308 + } + ], + "breakpoints": [ + { + "filePath": "src/Notifications/data/hook.js", + "line": 5, + "column": 9, + "index": 147 + }, + { + "filePath": "src/Notifications/data/hook.js", + "line": 5, + "column": 78, + "index": 216 + }, + { + "filePath": "src/Notifications/data/hook.js", + "line": 10, + "column": 29, + "index": 354 + } + ], + "OverlayTrigger": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 70, + "column": 6, + "index": 2577 + }, + { + "filePath": "src/Notifications/index.jsx", + "line": 95, + "column": 18, + "index": 3607 + } + ], + "Popover": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 77, + "column": 10, + "index": 2762 + } + ], + "Popover.Title": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 88, + "column": 14, + "index": 3217 + } + ], + "Tooltip": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 97, + "column": 22, + "index": 3676 + } + ], + "Icon": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 102, + "column": 20, + "index": 3865 + }, + { + "filePath": "src/Notifications/index.jsx", + "line": 116, + "column": 18, + "index": 4454 + }, + { + "filePath": "src/Notifications/index.jsx", + "line": 137, + "column": 20, + "index": 5188 + }, + { + "filePath": "src/Notifications/NotificationRowItem.jsx", + "line": 34, + "column": 6, + "index": 1117 + }, + { + "filePath": "src/Notifications/tours/constants.js", + "line": 22, + "column": 14, + "index": 731 + } + ], + "Feedback": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 104, + "column": 27, + "index": 3953 + } + ], + "Hyperlink": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 110, + "column": 16, + "index": 4204 + }, + { + "filePath": "src/Notifications/tours/constants.js", + "line": 15, + "column": 12, + "index": 457 + } + ], + "Settings": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 117, + "column": 25, + "index": 4485 + }, + { + "filePath": "src/Notifications/tours/constants.js", + "line": 23, + "column": 21, + "index": 758 + } + ], + "Popover.Content": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 124, + "column": 14, + "index": 4764 + } + ], + "IconButton": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 132, + "column": 10, + "index": 4988 + } + ], + "NotificationsNone": [ + { + "filePath": "src/Notifications/index.jsx", + "line": 136, + "column": 17, + "index": 5149 + } + ], + "Spinner": [ + { + "filePath": "src/Notifications/NotificationSections.jsx", + "line": 78, + "column": 10, + "index": 3346 + } + ], + "Tabs": [ + { + "filePath": "src/Notifications/NotificationTabs.jsx", + "line": 34, + "column": 4, + "index": 1362 + } + ], + "Tab": [ + { + "filePath": "src/Notifications/NotificationTabs.jsx", + "line": 41, + "column": 8, + "index": 1602 + } + ], + "ProductTour": [ + { + "filePath": "src/Notifications/tours/NotificationTour.jsx", + "line": 20, + "column": 8, + "index": 582 } ] } }, { - "version": "20.36.0", + "version": "20.46.2", "name": "@edx/frontend-component-header", "repository": { "type": "git", @@ -29096,33 +33011,33 @@ "Dropdown.Item": [ { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 15, + "line": 14, "column": 4, - "index": 490 + "index": 489 }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 32, + "line": 31, "column": 10, - "index": 1167 + "index": 1166 }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 35, + "line": 34, "column": 10, - "index": 1329 + "index": 1328 }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 39, + "line": 38, "column": 12, - "index": 1522 + "index": 1521 }, { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 43, + "line": 42, "column": 10, - "index": 1685 + "index": 1684 }, { "filePath": "src/StudioHeader.test.jsx", @@ -29146,9 +33061,9 @@ "Dropdown": [ { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 23, + "line": 22, "column": 6, - "index": 767 + "index": 761 }, { "filePath": "src/StudioHeader.test.jsx", @@ -29160,9 +33075,9 @@ "Dropdown.Toggle": [ { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 24, + "line": 23, "column": 8, - "index": 812 + "index": 811 }, { "filePath": "src/StudioHeader.test.jsx", @@ -29174,9 +33089,9 @@ "Dropdown.Menu": [ { "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 30, + "line": 29, "column": 8, - "index": 1079 + "index": 1078 }, { "filePath": "src/StudioHeader.test.jsx", @@ -29204,7 +33119,7 @@ } }, { - "version": "19.25.1", + "version": "20.45.0", "name": "@edx/frontend-enterprise-catalog-search", "repository": { "type": "git", @@ -29221,41 +33136,41 @@ }, { "filePath": "src/CurrentRefinements.jsx", - "line": 108, + "line": 107, "column": 10, - "index": 4314 + "index": 4247 }, { "filePath": "src/MobileFilterMenu.jsx", - "line": 21, + "line": 20, "column": 8, - "index": 767 + "index": 686 }, { "filePath": "src/MobileFilterMenu.jsx", - "line": 56, + "line": 55, "column": 14, - "index": 2076 + "index": 1974 }, { "filePath": "src/MobileFilterMenu.jsx", - "line": 76, + "line": 74, "column": 16, - "index": 2827 + "index": 2682 } ], "Badge": [ { "filePath": "src/CurrentRefinements.jsx", - "line": 82, + "line": 81, "column": 10, - "index": 3042 + "index": 2964 }, { "filePath": "src/CurrentRefinements.jsx", - "line": 96, + "line": 95, "column": 10, - "index": 3750 + "index": 3652 }, { "filePath": "src/FacetItem.jsx", @@ -29264,6 +33179,14 @@ "index": 686 } ], + "CloseSmall": [ + { + "filePath": "src/CurrentRefinements.jsx", + "line": 88, + "column": 12, + "index": 3370 + } + ], "Dropdown": [ { "filePath": "src/FacetDropdown.jsx", @@ -29376,6 +33299,22 @@ "index": 649 } ], + "ArrowDropDown": [ + { + "filePath": "src/MobileFilterMenu.jsx", + "line": 32, + "column": 10, + "index": 1171 + } + ], + "Close": [ + { + "filePath": "src/MobileFilterMenu.jsx", + "line": 60, + "column": 16, + "index": 2155 + } + ], "SearchField.Advanced": [ { "filePath": "src/SearchBox.jsx", @@ -29472,12 +33411,42 @@ "index": 1984 } ], + "Icon": [ + { + "filePath": "src/SearchPagination.jsx", + "line": 21, + "column": 10, + "index": 619 + }, + { + "filePath": "src/SearchPagination.jsx", + "line": 27, + "column": 10, + "index": 759 + } + ], + "ArrowBackIos": [ + { + "filePath": "src/SearchPagination.jsx", + "line": 21, + "column": 21, + "index": 630 + } + ], + "ArrowForwardIos": [ + { + "filePath": "src/SearchPagination.jsx", + "line": 27, + "column": 21, + "index": 770 + } + ], "Pagination": [ { "filePath": "src/SearchPagination.jsx", - "line": 53, + "line": 52, "column": 4, - "index": 1315 + "index": 1224 } ], "ResponsiveContext.Provider": [ @@ -29605,7 +33574,7 @@ } }, { - "version": "20.34.0", + "version": "20.45.5", "name": "@edx/frontend-lib-content-components", "repository": { "type": "git", @@ -29622,9 +33591,9 @@ }, { "filePath": "src/editors/containers/TextEditor/index.jsx", - "line": 65, + "line": 67, "column": 8, - "index": 1611 + "index": 1675 } ], "ModalDialog.Footer": [ @@ -29648,9 +33617,9 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 42, + "line": 43, "column": 4, - "index": 837 + "index": 896 } ], "ActionRow": [ @@ -29662,9 +33631,9 @@ }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", - "line": 61, + "line": 63, "column": 10, - "index": 1842 + "index": 1898 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", @@ -29752,9 +33721,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 123, + "line": 126, "column": 12, - "index": 3634 + "index": 3792 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", @@ -29770,9 +33739,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 77, + "line": 80, "column": 10, - "index": 2277 + "index": 2413 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -29782,15 +33751,39 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 43, + "line": 44, "column": 6, - "index": 864 + "index": 923 }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 34, - "column": 2, - "index": 604 + "line": 31, + "column": 4, + "index": 704 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 185, + "column": 6, + "index": 4666 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 48, + "column": 10, + "index": 1297 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 100, + "column": 6, + "index": 3189 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 122, + "column": 6, + "index": 4213 } ], "Hyperlink": [ @@ -29838,15 +33831,57 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/SocialShareWidget/index.jsx", - "line": 77, + "line": 75, "column": 8, - "index": 2264 + "index": 2274 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 48, + "line": 50, "column": 14, - "index": 1516 + "index": 1658 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 101, + "column": 37, + "index": 3272 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 104, + "column": 10, + "index": 3457 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 108, + "column": 10, + "index": 3675 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 113, + "column": 10, + "index": 3892 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 120, + "column": 8, + "index": 4136 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 130, + "column": 8, + "index": 4666 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 132, + "column": 8, + "index": 4786 } ], "ActionRow.Spacer": [ @@ -29930,9 +33965,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 144, + "line": 147, "column": 14, - "index": 4521 + "index": 4679 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", @@ -29948,9 +33983,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 82, + "line": 85, "column": 12, - "index": 2408 + "index": 2544 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -29960,21 +33995,51 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 45, + "line": 46, "column": 8, - "index": 907 + "index": 966 }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 58, - "column": 21, - "index": 1250 + "line": 56, + "column": 23, + "index": 1435 }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 89, + "line": 69, + "column": 10, + "index": 1893 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 187, "column": 8, - "index": 2249 + "index": 4774 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 49, + "column": 12, + "index": 1393 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 96, + "column": 12, + "index": 3094 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 102, + "column": 8, + "index": 3382 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 131, + "column": 8, + "index": 4757 } ], "Button": [ @@ -29992,27 +34057,27 @@ }, { "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 36, + "line": 37, "column": 10, - "index": 1059 + "index": 1093 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", - "line": 62, + "line": 64, "column": 12, - "index": 1866 + "index": 1922 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", - "line": 65, + "line": 67, "column": 12, - "index": 2043 + "index": 2099 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", - "line": 93, + "line": 94, "column": 12, - "index": 3063 + "index": 3125 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", @@ -30046,9 +34111,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/SelectVideoModal.jsx", - "line": 39, + "line": 41, "column": 21, - "index": 939 + "index": 1055 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", @@ -30076,9 +34141,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 165, + "line": 168, "column": 10, - "index": 5310 + "index": 5468 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", @@ -30088,15 +34153,15 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 58, + "line": 61, "column": 16, - "index": 1593 + "index": 1729 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 61, + "line": 64, "column": 16, - "index": 1782 + "index": 1918 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -30104,6 +34169,12 @@ "column": 6, "index": 4893 }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx", + "line": 26, + "column": 4, + "index": 942 + }, { "filePath": "src/editors/sharedComponents/Button/index.jsx", "line": 12, @@ -30148,21 +34219,69 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 64, + "line": 61, "column": 8, - "index": 1360 + "index": 1325 }, { "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 72, + "line": 69, "column": 8, - "index": 1597 + "index": 1562 }, { "filePath": "src/editors/sharedComponents/SourceCodeModal/index.jsx", "line": 30, "column": 8, "index": 622 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 189, + "column": 10, + "index": 4845 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 33, + "column": 8, + "index": 785 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 50, + "column": 12, + "index": 1426 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 54, + "column": 14, + "index": 1634 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 63, + "column": 14, + "index": 1934 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 72, + "column": 12, + "index": 2229 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 79, + "column": 12, + "index": 2500 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 87, + "column": 14, + "index": 2804 } ], "Spinner": [ @@ -30172,11 +34291,17 @@ "column": 16, "index": 1799 }, + { + "filePath": "src/editors/containers/GameEditor/index.jsx", + "line": 52, + "column": 12, + "index": 1273 + }, { "filePath": "src/editors/containers/ProblemEditor/index.jsx", - "line": 33, + "line": 34, "column": 8, - "index": 1098 + "index": 1116 }, { "filePath": "src/editors/containers/ProblemEditor/index.test.jsx", @@ -30204,21 +34329,27 @@ }, { "filePath": "src/editors/containers/TextEditor/index.jsx", - "line": 72, + "line": 74, "column": 14, - "index": 1853 + "index": 1917 }, { "filePath": "src/editors/containers/VideoEditor/index.jsx", - "line": 41, + "line": 50, + "column": 12, + "index": 1283 + }, + { + "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", + "line": 38, "column": 10, - "index": 1043 + "index": 1101 }, { "filePath": "src/editors/sharedComponents/SelectionModal/Gallery.jsx", - "line": 43, + "line": 37, "column": 8, - "index": 746 + "index": 690 }, { "filePath": "src/example.jsx", @@ -30338,9 +34469,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 116, + "line": 118, "column": 10, - "index": 3387 + "index": 3475 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -30362,9 +34493,15 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 35, + "line": 32, + "column": 6, + "index": 722 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/FormGroup.jsx", + "line": 19, "column": 4, - "index": 620 + "index": 502 }, { "filePath": "www/src/Gallery.jsx", @@ -30514,9 +34651,15 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 36, + "line": 33, + "column": 8, + "index": 765 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/FormGroup.jsx", + "line": 24, "column": 6, - "index": 661 + "index": 627 } ], "Form": [ @@ -30537,6 +34680,12 @@ "line": 13, "column": 18, "index": 260 + }, + { + "filePath": "src/editors/sharedComponents/SelectionModal/MultiSelectFilterDropdown.jsx", + "line": 22, + "column": 16, + "index": 709 } ], "ButtonGroup": [ @@ -30583,6 +34732,12 @@ "line": 107, "column": 12, "index": 3547 + }, + { + "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", + "line": 38, + "column": 6, + "index": 810 } ], "Check": [ @@ -30626,15 +34781,15 @@ }, { "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 55, + "line": 57, "column": 16, - "index": 1349 + "index": 1463 }, { "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 56, + "line": 62, "column": 20, - "index": 1776 + "index": 1944 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", @@ -30800,9 +34955,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 142, + "line": 145, "column": 16, - "index": 4406 + "index": 4564 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", @@ -30818,21 +34973,21 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 85, + "line": 88, "column": 24, - "index": 2513 + "index": 2649 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 41, + "line": 42, "column": 16, - "index": 1263 + "index": 1357 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/LanguageNamesWidget.jsx", - "line": 23, + "line": 21, "column": 6, - "index": 841 + "index": 778 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -30847,22 +35002,34 @@ "index": 4654 }, { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 51, - "column": 12, - "index": 1927 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx", + "line": 36, + "column": 6, + "index": 1142 }, { "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 73, - "column": 10, - "index": 2989 + "line": 30, + "column": 22, + "index": 895 }, { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 127, - "column": 18, - "index": 4424 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 18, + "column": 8, + "index": 647 + }, + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 63, + "column": 22, + "index": 2428 + }, + { + "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", + "line": 43, + "column": 16, + "index": 1012 }, { "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", @@ -30872,15 +35039,27 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 44, + "line": 42, "column": 26, - "index": 919 + "index": 1096 }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 52, + "line": 50, + "column": 16, + "index": 1315 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 159, + "column": 16, + "index": 4140 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 174, "column": 16, - "index": 1138 + "index": 4462 } ], "Close": [ @@ -30892,9 +35071,9 @@ }, { "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 55, + "line": 61, "column": 17, - "index": 1749 + "index": 1917 }, { "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", @@ -30910,37 +35089,37 @@ }, { "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 126, - "column": 15, - "index": 4399 + "line": 29, + "column": 19, + "index": 866 }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 49, + "line": 47, "column": 23, - "index": 1080 + "index": 1257 } ], "Truncate": [ { "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 50, + "line": 52, "column": 6, - "index": 1212 + "index": 1326 } ], "IconButton": [ { "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 53, + "line": 55, "column": 6, - "index": 1263 + "index": 1377 }, { "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 54, + "line": 60, "column": 10, - "index": 1720 + "index": 1888 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", @@ -30998,21 +35177,27 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 84, + "line": 87, "column": 14, - "index": 2477 + "index": 2613 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 39, + "line": 40, "column": 12, - "index": 1211 + "index": 1305 }, { "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 125, - "column": 8, - "index": 4372 + "line": 27, + "column": 12, + "index": 767 + }, + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 60, + "column": 12, + "index": 2292 }, { "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", @@ -31022,25 +35207,37 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 43, + "line": 40, "column": 16, - "index": 881 + "index": 993 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 155, + "column": 6, + "index": 4014 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 170, + "column": 6, + "index": 4336 } ], "EditOutline": [ { "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 59, + "line": 61, "column": 13, - "index": 1442 + "index": 1556 } ], "ModalDialog.Header": [ { "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 49, + "line": 55, "column": 6, - "index": 1478 + "index": 1646 }, { "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", @@ -31056,17 +35253,17 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 33, + "line": 34, "column": 4, - "index": 585 + "index": 603 } ], "ModalDialog.Body": [ { "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 61, + "line": 67, "column": 6, - "index": 1889 + "index": 2057 }, { "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", @@ -31082,9 +35279,9 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 39, + "line": 40, "column": 4, - "index": 755 + "index": 814 } ], "Collapsible.Advanced": [ @@ -31108,15 +35305,15 @@ }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", - "line": 91, + "line": 92, "column": 8, - "index": 2933 + "index": 2995 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", - "line": 105, + "line": 106, "column": 6, - "index": 3417 + "index": 3479 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", @@ -31132,9 +35329,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 24, + "line": 26, "column": 4, - "index": 681 + "index": 814 } ], "Collapsible.Body": [ @@ -31158,15 +35355,15 @@ }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", - "line": 92, + "line": 93, "column": 10, - "index": 2997 + "index": 3059 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", - "line": 106, + "line": 107, "column": 8, - "index": 3478 + "index": 3540 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", @@ -31176,9 +35373,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 29, + "line": 31, "column": 6, - "index": 802 + "index": 935 } ], "Collapsible.Trigger": [ @@ -31242,9 +35439,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 86, + "line": 89, "column": 21, - "index": 2540 + "index": 2676 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -31274,21 +35471,15 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 36, + "line": 37, "column": 4, - "index": 1096 + "index": 1190 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 59, + "filePath": "src/editors/sharedComponents/SelectionModal/MultiSelectFilterDropdown.jsx", + "line": 14, "column": 4, - "index": 1277 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 73, - "column": 6, - "index": 1746 + "index": 383 } ], "Dropdown.Toggle": [ @@ -31312,21 +35503,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 37, - "column": 6, - "index": 1113 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 60, + "line": 38, "column": 6, - "index": 1294 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 74, - "column": 8, - "index": 1765 + "index": 1207 } ], "Add": [ @@ -31344,9 +35523,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 168, + "line": 171, "column": 24, - "index": 5449 + "index": 5607 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -31356,9 +35535,15 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 72, - "column": 28, - "index": 1617 + "line": 71, + "column": 22, + "index": 1631 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 191, + "column": 24, + "index": 4921 } ], "Dropdown.Menu": [ @@ -31382,21 +35567,15 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 45, + "line": 46, "column": 6, - "index": 1341 + "index": 1435 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 63, + "filePath": "src/editors/sharedComponents/SelectionModal/MultiSelectFilterDropdown.jsx", + "line": 18, "column": 6, - "index": 1442 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 77, - "column": 8, - "index": 1925 + "index": 554 } ], "Dropdown.Item": [ @@ -31450,33 +35629,27 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 46, + "line": 47, "column": 8, - "index": 1406 + "index": 1500 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 52, + "line": 53, "column": 8, - "index": 1613 + "index": 1707 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 55, + "line": 56, "column": 8, - "index": 1791 + "index": 1885 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 65, + "filePath": "src/editors/sharedComponents/SelectionModal/MultiSelectFilterDropdown.jsx", + "line": 20, "column": 10, - "index": 1512 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 79, - "column": 12, - "index": 2001 + "index": 656 } ], "Form.Label": [ @@ -31544,17 +35717,17 @@ "AlertModal": [ { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", - "line": 54, + "line": 56, "column": 6, - "index": 1555 + "index": 1611 } ], "Container": [ { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", - "line": 99, + "line": 102, "column": 10, - "index": 3157 + "index": 3245 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", @@ -31596,9 +35769,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 54, + "line": 57, "column": 14, - "index": 1427 + "index": 1563 } ], "Form.CheckboxSet": [ @@ -31622,6 +35795,12 @@ "column": 6, "index": 660 }, + { + "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", + "line": 32, + "column": 4, + "index": 710 + }, { "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", "line": 32, @@ -31650,21 +35829,21 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/SocialShareWidget/index.jsx", - "line": 51, + "line": 54, "column": 6, - "index": 1499 + "index": 1626 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 124, + "line": 127, "column": 14, - "index": 3679 + "index": 3837 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 146, + "line": 149, "column": 12, - "index": 4579 + "index": 4737 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -31694,9 +35873,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 51, + "line": 54, "column": 10, - "index": 1267 + "index": 1403 } ], "Alert": [ @@ -31720,9 +35899,9 @@ }, { "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", - "line": 43, + "line": 47, "column": 4, - "index": 984 + "index": 1119 }, { "filePath": "src/editors/sharedComponents/RawEditor/index.jsx", @@ -31868,9 +36047,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 133, + "line": 136, "column": 14, - "index": 4110 + "index": 4268 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -31888,9 +36067,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 137, + "line": 140, "column": 18, - "index": 4229 + "index": 4387 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -31914,9 +36093,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 31, + "line": 33, "column": 10, - "index": 920 + "index": 1053 }, { "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", @@ -31926,9 +36105,15 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", - "line": 27, + "line": 32, "column": 8, - "index": 843 + "index": 866 + }, + { + "filePath": "src/footer/Footer.jsx", + "line": 133, + "column": 10, + "index": 4867 } ], "SelectableBox.Set": [ @@ -31940,9 +36125,9 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/Gallery.jsx", - "line": 68, + "line": 62, "column": 8, - "index": 1458 + "index": 1405 } ], "SelectableBox": [ @@ -32016,21 +36201,21 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 114, + "line": 116, "column": 6, - "index": 3333 + "index": 3421 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 44, + "line": 46, "column": 10, - "index": 1297 + "index": 1439 }, { "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 103, + "line": 108, "column": 6, - "index": 2618 + "index": 2714 } ], "ModalDialog.Title": [ @@ -32048,9 +36233,9 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 34, + "line": 35, "column": 6, - "index": 638 + "index": 697 } ], "ModalDialog": [ @@ -32076,9 +36261,9 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 46, + "line": 47, "column": 8, - "index": 936 + "index": 995 } ], "InfoOutline": [ @@ -32090,9 +36275,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 142, + "line": 145, "column": 27, - "index": 4417 + "index": 4575 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", @@ -32113,6 +36298,12 @@ "line": 42, "column": 76, "index": 1529 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 158, + "column": 13, + "index": 4112 } ], "ExpandLess": [ @@ -32121,6 +36312,12 @@ "line": 48, "column": 78, "index": 1846 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 173, + "column": 13, + "index": 4434 } ], "Form.Row": [ @@ -32146,9 +36343,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 40, + "line": 41, "column": 13, - "index": 1236 + "index": 1330 } ], "FileUpload": [ @@ -32165,10 +36362,10 @@ "index": 3555 }, { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 51, - "column": 23, - "index": 1938 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 18, + "column": 19, + "index": 658 } ], "Copyright": [ @@ -32272,33 +36469,33 @@ "Card.Header": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 52, + "line": 55, "column": 12, - "index": 1303 + "index": 1439 } ], "Card.Body": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 53, + "line": 56, "column": 12, - "index": 1401 + "index": 1537 } ], "Card.Footer": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 57, + "line": 60, "column": 14, - "index": 1563 + "index": 1699 } ], "ClosedCaption": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/LanguageNamesWidget.jsx", - "line": 18, + "line": 16, "column": 4, - "index": 732 + "index": 669 } ], "Alert.Heading": [ @@ -32310,85 +36507,251 @@ }, { "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", + "line": 55, + "column": 10, + "index": 1264 + } + ], + "ArrowBackIos": [ + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx", + "line": 36, + "column": 17, + "index": 1153 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", + "line": 65, + "column": 20, + "index": 1970 + } + ], + "Dropzone": [ + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 45, + "column": 6, + "index": 1627 + } + ], + "InputGroup": [ + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", "line": 51, + "column": 8, + "index": 1837 + } + ], + "FormControl": [ + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 52, "column": 10, - "index": 1129 + "index": 1860 } ], "ArrowForward": [ { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 73, - "column": 21, - "index": 3000 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 62, + "column": 19, + "index": 2392 + } + ], + "DragIndicator": [ + { + "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", + "line": 42, + "column": 13, + "index": 981 } ], "Error": [ { "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", - "line": 45, + "line": 49, "column": 12, - "index": 1026 + "index": 1161 } ], - "ArrowBackIos": [ + "paragon": [ { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", - "line": 65, - "column": 20, - "index": 1970 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 70, + "column": 6, + "index": 2398 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 73, + "column": 6, + "index": 2514 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 77, + "column": 6, + "index": 2681 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 81, + "column": 6, + "index": 2842 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 84, + "column": 6, + "index": 2958 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 93, + "column": 6, + "index": 3409 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 94, + "column": 6, + "index": 3449 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 95, + "column": 6, + "index": 3489 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 96, + "column": 6, + "index": 3531 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 97, + "column": 6, + "index": 3565 + } + ], + "icons": [ + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 88, + "column": 6, + "index": 3204 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 90, + "column": 6, + "index": 3316 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 98, + "column": 6, + "index": 3605 + }, + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 99, + "column": 6, + "index": 3639 } ], "Scrollable": [ { "filePath": "src/editors/sharedComponents/SelectionModal/Gallery.jsx", - "line": 66, + "line": 60, "column": 4, - "index": 1337 + "index": 1283 } ], "Badge": [ { "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", - "line": 32, + "line": 37, "column": 10, - "index": 1015 + "index": 1054 }, { "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", - "line": 37, + "line": 42, "column": 10, - "index": 1218 + "index": 1257 + } + ], + "DropdownToggle": [ + { + "filePath": "src/editors/sharedComponents/SelectionModal/MultiSelectFilterDropdown.jsx", + "line": 15, + "column": 6, + "index": 418 } ], "Search": [ { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 52, + "line": 50, "column": 27, - "index": 1149 + "index": 1326 + } + ], + "SelectMenu": [ + { + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 57, + "column": 6, + "index": 1464 + } + ], + "MenuItem": [ + { + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 59, + "column": 10, + "index": 1546 } ], "Form.SwitchSet": [ { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 90, - "column": 8, - "index": 2278 + "line": 70, + "column": 10, + "index": 1924 } ], "Form.Switch": [ { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 95, - "column": 10, - "index": 2392 + "line": 75, + "column": 12, + "index": 2048 + } + ], + "Help": [ + { + "filePath": "src/footer/Footer.jsx", + "line": 37, + "column": 22, + "index": 937 + } + ], + "TransitionReplace": [ + { + "filePath": "src/footer/Footer.jsx", + "line": 46, + "column": 6, + "index": 1247 } ] } }, { - "version": "20.32.0", + "version": "20.36.0", "name": "content-components-gallery", "folderName": "www", "usages": { @@ -32443,7 +36806,7 @@ } }, { - "version": "20.22.4", + "version": "20.44.0", "name": "@edx/frontend-lib-special-exams", "repository": { "type": "git", @@ -32454,29 +36817,29 @@ "Spinner": [ { "filePath": "src/exam/Exam.jsx", - "line": 77, + "line": 78, "column": 8, - "index": 2933 + "index": 2982 }, { "filePath": "src/instructions/proctored_exam/ReadyToStartProctoredExamInstructions.jsx", - "line": 125, + "line": 126, "column": 32, - "index": 4418 + "index": 4472 } ], "Alert": [ { "filePath": "src/exam/Exam.jsx", - "line": 97, + "line": 99, "column": 8, - "index": 3592 + "index": 3701 }, { "filePath": "src/exam/ExamAPIError.jsx", "line": 16, "column": 4, - "index": 615 + "index": 618 }, { "filePath": "src/instructions/UnknownAttemptStatusError.jsx", @@ -32486,23 +36849,23 @@ }, { "filePath": "src/timer/ExamTimerBlock.jsx", - "line": 61, + "line": 62, "column": 6, - "index": 2019 + "index": 2077 } ], "Info": [ { "filePath": "src/exam/Exam.jsx", - "line": 97, + "line": 99, "column": 36, - "index": 3620 + "index": 3729 }, { "filePath": "src/exam/ExamAPIError.jsx", "line": 17, "column": 17, - "index": 696 + "index": 699 } ], "Icon": [ @@ -32510,7 +36873,7 @@ "filePath": "src/exam/ExamAPIError.jsx", "line": 17, "column": 6, - "index": 685 + "index": 688 }, { "filePath": "src/timer/CountDownTimer.jsx", @@ -32530,7 +36893,7 @@ "filePath": "src/exam/ExamAPIError.jsx", "line": 18, "column": 6, - "index": 734 + "index": 737 }, { "filePath": "src/instructions/UnknownAttemptStatusError.jsx", @@ -32544,7 +36907,7 @@ "filePath": "src/exam/ExamAPIError.jsx", "line": 31, "column": 16, - "index": 1302 + "index": 1305 }, { "filePath": "src/instructions/proctored_exam/ErrorProctoredExamInstructions.jsx", @@ -32588,7 +36951,7 @@ "filePath": "src/instructions/proctored_exam/download-instructions/index.jsx", "line": 104, "column": 6, - "index": 3596 + "index": 3566 }, { "filePath": "src/instructions/proctored_exam/OnboardingErrorExamInstructions.jsx", @@ -32604,9 +36967,9 @@ }, { "filePath": "src/instructions/proctored_exam/ReadyToStartProctoredExamInstructions.jsx", - "line": 32, + "line": 33, "column": 6, - "index": 972 + "index": 1030 }, { "filePath": "src/instructions/proctored_exam/SkipProctoredExamInstruction.jsx", @@ -32764,15 +37127,15 @@ }, { "filePath": "src/instructions/proctored_exam/ReadyToStartProctoredExamInstructions.jsx", - "line": 86, + "line": 87, "column": 10, - "index": 3098 + "index": 3154 }, { "filePath": "src/instructions/proctored_exam/ReadyToStartProctoredExamInstructions.jsx", - "line": 119, + "line": 120, "column": 8, - "index": 4228 + "index": 4282 }, { "filePath": "src/instructions/proctored_exam/SkipProctoredExamButton.jsx", @@ -32794,9 +37157,9 @@ }, { "filePath": "src/instructions/proctored_exam/SubmitProctoredExamInstructions.jsx", - "line": 62, + "line": 61, "column": 6, - "index": 2223 + "index": 2208 }, { "filePath": "src/instructions/proctored_exam/WarningModal.jsx", @@ -32824,9 +37187,9 @@ }, { "filePath": "src/timer/ExamTimerBlock.jsx", - "line": 117, + "line": 118, "column": 14, - "index": 4131 + "index": 4189 } ], "useToggle": [ @@ -32962,27 +37325,27 @@ "Alert.Link": [ { "filePath": "src/timer/ExamTimerBlock.jsx", - "line": 72, + "line": 73, "column": 18, - "index": 2432 + "index": 2490 }, { "filePath": "src/timer/ExamTimerBlock.jsx", - "line": 90, + "line": 91, "column": 20, - "index": 3151 + "index": 3209 }, { "filePath": "src/timer/ExamTimerBlock.jsx", - "line": 99, + "line": 100, "column": 18, - "index": 3472 + "index": 3530 } ] } }, { - "version": "20.30.1", + "version": "21.1.2", "name": "@edx/frontend-platform", "repository": { "type": "git", @@ -33025,7 +37388,7 @@ } }, { - "version": "20.32.0", + "version": "20.46.2", "name": "@edx/frontend-template-application", "repository": { "type": "git", @@ -33044,7 +37407,7 @@ } }, { - "version": "20.32.3", + "version": "20.46.2", "name": "@edx/gatsby-react-app", "repository": { "type": "git", @@ -33063,19 +37426,19 @@ "filePath": "src/packages/common/ui/Card/index.jsx", "line": 172, "column": 68, - "index": 5769 + "index": 5776 }, { "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", - "line": 110, + "line": 111, "column": 21, - "index": 2974 + "index": 3036 }, { "filePath": "src/packages/common/ui/Header/components/SiteNav/components/SiteNavLink.jsx", - "line": 93, + "line": 92, "column": 15, - "index": 2597 + "index": 2562 }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", @@ -33088,20 +37451,38 @@ "line": 105, "column": 33, "index": 3783 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 861, + "column": 35, + "index": 40759 } ], "Container": [ { "filePath": "src/packages/about-edx-page/template/AboutEdXPage/index.jsx", - "line": 377, + "line": 269, "column": 12, - "index": 18441 + "index": 12734 }, { "filePath": "src/packages/about-edx-page/template/AboutEdXPage/index.jsx", - "line": 401, + "line": 296, "column": 12, - "index": 19997 + "index": 14437 + }, + { + "filePath": "src/packages/become-page/components/BecomeHero.jsx", + "line": 9, + "column": 6, + "index": 319 + }, + { + "filePath": "src/packages/become-page/components/steps.jsx", + "line": 21, + "column": 6, + "index": 775 }, { "filePath": "src/packages/careers-page/components/Hero/index.jsx", @@ -33113,19 +37494,19 @@ "filePath": "src/packages/careers-page/template/CareersPage/index.jsx", "line": 105, "column": 10, - "index": 5097 + "index": 5104 }, { "filePath": "src/packages/careers-page/template/CareersPage/index.jsx", - "line": 127, + "line": 122, "column": 10, - "index": 6212 + "index": 6062 }, { "filePath": "src/packages/careers-page/template/CareersPage/index.jsx", - "line": 135, + "line": 130, "column": 10, - "index": 6841 + "index": 6691 }, { "filePath": "src/packages/common/ui/Form/StandaloneHubspotCaptureForm/index.jsx", @@ -33135,27 +37516,21 @@ }, { "filePath": "src/packages/common/ui/Hero/variants/BootcampVariant.jsx", - "line": 53, - "column": 8, - "index": 2163 - }, - { - "filePath": "src/packages/common/ui/RecommendationsContainer/index.jsx", - "line": 19, - "column": 4, - "index": 620 + "line": 74, + "column": 6, + "index": 2383 }, { "filePath": "src/packages/common/ui/SitewideBanner/index.jsx", - "line": 76, - "column": 6, - "index": 2491 + "line": 64, + "column": 8, + "index": 2287 }, { "filePath": "src/packages/degree-page/components/TabSections/index.jsx", - "line": 168, + "line": 173, "column": 6, - "index": 5874 + "index": 6005 }, { "filePath": "src/packages/exec-ed-page/components/AboutCourse.jsx", @@ -33171,9 +37546,9 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 244, + "line": 247, "column": 6, - "index": 7773 + "index": 7936 }, { "filePath": "src/packages/exec-ed-page/components/Factoid/index.jsx", @@ -33191,31 +37566,31 @@ "filePath": "src/packages/exec-ed-page/components/WhyGetsmarter/index.jsx", "line": 16, "column": 6, - "index": 540 + "index": 547 }, { "filePath": "src/packages/exec-ed-page/template/ExecEdDetailPage/index.jsx", - "line": 468, + "line": 514, "column": 18, - "index": 18194 + "index": 20467 }, { "filePath": "src/packages/home-page/components/Audiences/index.jsx", "line": 19, "column": 6, - "index": 688 + "index": 695 }, { "filePath": "src/packages/home-page/components/EdxVision/index.jsx", "line": 10, "column": 6, - "index": 325 + "index": 332 }, { "filePath": "src/packages/home-page/components/Hero/index.jsx", - "line": 75, + "line": 60, "column": 10, - "index": 2480 + "index": 1932 }, { "filePath": "src/packages/home-page/components/MarketingTakeover/index.jsx", @@ -33224,28 +37599,28 @@ "index": 578 }, { - "filePath": "src/packages/home-page/components/MarketingTakeover/index.jsx", - "line": 48, + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/index.jsx", + "line": 60, "column": 6, - "index": 1574 + "index": 1904 }, { - "filePath": "src/packages/home-page/components/NewOnEdxCarousel/index.jsx", - "line": 40, + "filePath": "src/packages/home-page/components/Recommendations/components/RecommendationsBase.jsx", + "line": 21, "column": 6, - "index": 1231 + "index": 675 }, { "filePath": "src/packages/home-page/components/SubjectList/index.jsx", "line": 16, "column": 6, - "index": 509 + "index": 516 }, { "filePath": "src/packages/home-page/components/Trustbar/index.jsx", "line": 12, "column": 4, - "index": 376 + "index": 383 }, { "filePath": "src/packages/home-page/components/UniversalDesignOfLearning/index.jsx", @@ -33257,19 +37632,19 @@ "filePath": "src/packages/learn-index-page/components/Hero.jsx", "line": 22, "column": 6, - "index": 778 + "index": 785 }, { "filePath": "src/packages/learn-index-page/template/AllTopicsPage/index.jsx", - "line": 70, + "line": 80, "column": 10, - "index": 2989 + "index": 3181 }, { "filePath": "src/packages/learn-index-page/template/AllTopicsPage/index.jsx", - "line": 81, + "line": 92, "column": 8, - "index": 3506 + "index": 3770 }, { "filePath": "src/packages/learn-index-page/template/LearnIndexPage/index.jsx", @@ -33279,9 +37654,9 @@ }, { "filePath": "src/packages/learn-page/components/DynamicProductList/index.jsx", - "line": 224, + "line": 233, "column": 6, - "index": 7858 + "index": 8281 }, { "filePath": "src/packages/learn-page/components/Hero/index.jsx", @@ -33293,37 +37668,37 @@ "filePath": "src/packages/learn-page/components/RelatedTopics/index.jsx", "line": 20, "column": 6, - "index": 546 + "index": 553 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 149, + "line": 198, "column": 10, - "index": 5933 + "index": 7081 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 171, + "line": 220, "column": 12, - "index": 6851 + "index": 7999 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 211, + "line": 260, "column": 10, - "index": 8077 + "index": 9225 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 260, + "line": 309, "column": 10, - "index": 9779 + "index": 10923 }, { "filePath": "src/packages/modular-page/components/Section/index.jsx", - "line": 24, + "line": 23, "column": 6, - "index": 747 + "index": 690 }, { "filePath": "src/packages/modular-page/components/SplitView/index.jsx", @@ -33335,7 +37710,7 @@ "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", "line": 90, "column": 6, - "index": 3479 + "index": 3486 }, { "filePath": "src/packages/modular-page/modules/AdmissionsAboutSection/index.jsx", @@ -33353,37 +37728,37 @@ "filePath": "src/packages/modular-page/modules/FeaturedProductsModule/index.jsx", "line": 63, "column": 4, - "index": 1924 + "index": 1931 }, { "filePath": "src/packages/modular-page/modules/MoreInfoCTAModule/index.jsx", "line": 26, "column": 4, - "index": 930 + "index": 937 }, { "filePath": "src/packages/modular-page/modules/PartnershipModule/index.jsx", "line": 37, "column": 6, - "index": 1051 + "index": 1058 }, { "filePath": "src/packages/modular-page/modules/PlacementAboutSection/index.jsx", - "line": 30, + "line": 31, "column": 4, - "index": 788 + "index": 812 }, { "filePath": "src/packages/modular-page/modules/ProgramReferralModule/index.jsx", - "line": 22, + "line": 32, "column": 6, - "index": 585 + "index": 942 }, { "filePath": "src/packages/modular-page/modules/UpcomingProgramModule/index.jsx", - "line": 43, + "line": 57, "column": 6, - "index": 1425 + "index": 1954 }, { "filePath": "src/packages/open-course-page/components/BusinessBlock/variants/DesktopVariant.jsx", @@ -33399,15 +37774,15 @@ }, { "filePath": "src/packages/open-course-page/components/CourseHeader/index.jsx", - "line": 29, + "line": 51, "column": 6, - "index": 789 + "index": 1355 }, { "filePath": "src/packages/open-course-page/components/CourseMain/variants/DesktopVariant.jsx", - "line": 95, + "line": 106, "column": 4, - "index": 3275 + "index": 3904 }, { "filePath": "src/packages/open-course-page/components/CourseMain/variants/MobileVariant.jsx", @@ -33417,15 +37792,27 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 204, + "line": 232, + "column": 4, + "index": 9323 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", + "line": 240, + "column": 6, + "index": 10674 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", + "line": 288, "column": 6, - "index": 8228 + "index": 13205 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 88, + "line": 112, "column": 8, - "index": 3394 + "index": 4298 }, { "filePath": "src/packages/open-course-page/components/CourseRecommendations/Variant1/index.jsx", @@ -33433,17 +37820,29 @@ "column": 4, "index": 409 }, + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/index.jsx", + "line": 240, + "column": 10, + "index": 10026 + }, + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/index.jsx", + "line": 297, + "column": 8, + "index": 12471 + }, { "filePath": "src/packages/open-course-page/components/CourseRunSelector/index.jsx", - "line": 138, + "line": 148, "column": 4, - "index": 5179 + "index": 5585 }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 176, + "line": 202, "column": 12, - "index": 5196 + "index": 6454 }, { "filePath": "src/packages/open-course-page/components/FAQ/index.jsx", @@ -33453,27 +37852,27 @@ }, { "filePath": "src/packages/open-course-page/components/Instructors/variants/MobileVariant.jsx", - "line": 12, + "line": 11, "column": 4, - "index": 350 + "index": 286 }, { "filePath": "src/packages/open-course-page/components/ProductRecommendations/components/ProductRecommendationsContainer.jsx", "line": 43, "column": 4, - "index": 1681 + "index": 1665 }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", "line": 96, "column": 6, - "index": 3152 + "index": 3164 }, { "filePath": "src/packages/open-course-page/components/StickyNav/index.jsx", - "line": 192, + "line": 203, "column": 12, - "index": 6442 + "index": 7044 }, { "filePath": "src/packages/product-page/components/PLPFooter/index.jsx", @@ -33485,7 +37884,7 @@ "filePath": "src/packages/product-page/components/PLPHeader/index.jsx", "line": 25, "column": 6, - "index": 958 + "index": 965 }, { "filePath": "src/packages/program-page/components/AboutEdx/index.jsx", @@ -33495,831 +37894,1295 @@ }, { "filePath": "src/packages/program-page/components/ProgramDataBar/index.jsx", - "line": 135, + "line": 48, "column": 10, - "index": 3789 + "index": 1274 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 435, + "line": 476, "column": 8, - "index": 14621 + "index": 18345 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 436, + "line": 477, + "column": 10, + "index": 18419 + }, + { + "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", + "line": 478, + "column": 12, + "index": 18453 + }, + { + "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", + "line": 663, + "column": 12, + "index": 27821 + }, + { + "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", + "line": 671, + "column": 12, + "index": 28292 + }, + { + "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", + "line": 690, + "column": 8, + "index": 29054 + }, + { + "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", + "line": 813, + "column": 12, + "index": 34738 + }, + { + "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", + "line": 814, + "column": 14, + "index": 34791 + }, + { + "filePath": "src/packages/program-page/components/SubjectTopics/index.jsx", + "line": 59, + "column": 8, + "index": 1803 + }, + { + "filePath": "src/packages/program-page/components/SubjectTopics/index.jsx", + "line": 69, + "column": 10, + "index": 2251 + }, + { + "filePath": "src/packages/resource-page/template/ResourcePage/index.jsx", + "line": 67, + "column": 6, + "index": 2496 + }, + { + "filePath": "src/packages/search-page/components/BaseHeader/components/SearchInput.jsx", + "line": 18, + "column": 4, + "index": 665 + }, + { + "filePath": "src/packages/search-page/components/BaseHeader/components/TitleSection.jsx", + "line": 13, + "column": 6, + "index": 408 + }, + { + "filePath": "src/packages/search-page/components/BaseHeader/components/TitleSection.jsx", + "line": 20, + "column": 6, + "index": 620 + }, + { + "filePath": "src/packages/search-page/components/BaseHeader/SearchInput.jsx", + "line": 19, + "column": 4, + "index": 662 + }, + { + "filePath": "src/packages/search-page/components/BaseHeader/TitleSection.jsx", + "line": 13, + "column": 6, + "index": 404 + }, + { + "filePath": "src/packages/search-page/components/BaseHeader/TitleSection.jsx", + "line": 20, + "column": 6, + "index": 616 + }, + { + "filePath": "src/packages/search-page/components/CourseRecommendations/PostQuery/index.jsx", + "line": 46, + "column": 6, + "index": 1542 + }, + { + "filePath": "src/packages/search-page/components/PreQueryPage/components/PopularSearchLinks/index.jsx", + "line": 36, + "column": 4, + "index": 1357 + }, + { + "filePath": "src/packages/search-page/components/PreQueryPage/index.jsx", + "line": 69, + "column": 4, + "index": 2295 + }, + { + "filePath": "src/packages/search-page/components/QuizMatchRecommendations/index.jsx", + "line": 73, + "column": 4, + "index": 2375 + }, + { + "filePath": "src/packages/search-page/components/RefinementFilters/index.jsx", + "line": 112, + "column": 8, + "index": 4186 + }, + { + "filePath": "src/packages/search-page/components/Results/FirstLevelResult.jsx", + "line": 54, + "column": 4, + "index": 1436 + }, + { + "filePath": "src/packages/search-page/components/Results/SecondLevelResult.jsx", + "line": 45, + "column": 4, + "index": 1393 + }, + { + "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", + "line": 87, + "column": 4, + "index": 2949 + } + ], + "Icon": [ + { + "filePath": "src/packages/bootcamp-page/components/BootCampStickyNav/index.jsx", + "line": 53, + "column": 8, + "index": 1913 + }, + { + "filePath": "src/packages/common/ui/Card/index.jsx", + "line": 172, + "column": 32, + "index": 5740 + }, + { + "filePath": "src/packages/common/ui/Card/index.jsx", + "line": 173, + "column": 31, + "index": 5859 + }, + { + "filePath": "src/packages/common/ui/Card/index.jsx", + "line": 186, + "column": 18, + "index": 6473 + }, + { + "filePath": "src/packages/common/ui/Carousel/index.jsx", + "line": 250, + "column": 14, + "index": 7521 + }, + { + "filePath": "src/packages/common/ui/Carousel/index.jsx", + "line": 270, + "column": 14, + "index": 8339 + }, + { + "filePath": "src/packages/common/ui/Collapsible/components/ParagonCollapsible/index.jsx", + "line": 72, + "column": 11, + "index": 1837 + }, + { + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 583, + "column": 12, + "index": 27380 + }, + { + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 589, + "column": 12, + "index": 27624 + }, + { + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 595, + "column": 12, + "index": 27876 + }, + { + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 601, + "column": 12, + "index": 28130 + }, + { + "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", + "line": 111, + "column": 10, + "index": 3025 + }, + { + "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", + "line": 114, + "column": 10, + "index": 3150 + }, + { + "filePath": "src/packages/common/ui/Header/components/SiteNav/components/SiteNavLink.jsx", + "line": 93, + "column": 18, + "index": 2592 + }, + { + "filePath": "src/packages/common/ui/PreviewExpand/index.jsx", + "line": 66, + "column": 10, + "index": 1791 + }, + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsHeaderActions.jsx", + "line": 85, + "column": 8, + "index": 2333 + }, + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsInput.jsx", + "line": 48, + "column": 8, + "index": 1332 + }, + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsMessages.jsx", + "line": 32, + "column": 10, + "index": 1498 + }, + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsMessages.jsx", + "line": 41, + "column": 10, + "index": 2026 + }, + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimer.jsx", + "line": 29, + "column": 14, + "index": 1032 + }, + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimer.jsx", + "line": 42, + "column": 12, + "index": 1518 + }, + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimerHeader.jsx", + "line": 22, + "column": 8, + "index": 693 + }, + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertError.jsx", + "line": 15, + "column": 6, + "index": 457 + }, + { + "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/index.jsx", + "line": 148, + "column": 14, + "index": 5068 + }, + { + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 167, + "column": 19, + "index": 4999 + }, + { + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 182, + "column": 8, + "index": 5510 + }, + { + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 206, + "column": 12, + "index": 6332 + }, + { + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 267, + "column": 16, + "index": 8997 + }, + { + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 277, + "column": 16, + "index": 9479 + }, + { + "filePath": "src/packages/common/ui/xpert/experiments/SkillsBuilderFloatingActionButton/index.jsx", + "line": 77, + "column": 8, + "index": 2643 + }, + { + "filePath": "src/packages/common/ui/xpert/shared/FloatingActionPopup/FloatingActionPopupHeader.jsx", + "line": 85, + "column": 10, + "index": 2816 + }, + { + "filePath": "src/packages/common/ui/xpert/shared/ProactiveMessage/index.jsx", + "line": 75, + "column": 14, + "index": 2515 + }, + { + "filePath": "src/packages/degree-page/components/CTAButton/index.jsx", + "line": 37, + "column": 6, + "index": 1274 + }, + { + "filePath": "src/packages/degree-page/components/TabNavigation/index.jsx", + "line": 117, + "column": 10, + "index": 3719 + }, + { + "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", + "line": 184, + "column": 14, + "index": 6625 + }, + { + "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", + "line": 101, + "column": 14, + "index": 3479 + }, + { + "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", + "line": 200, + "column": 14, + "index": 6554 + }, + { + "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", + "line": 226, + "column": 12, + "index": 7420 + }, + { + "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", + "line": 254, + "column": 14, + "index": 8312 + }, + { + "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", + "line": 21, + "column": 10, + "index": 905 + }, + { + "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", + "line": 24, "column": 10, - "index": 14695 + "index": 1057 + }, + { + "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", + "line": 246, + "column": 28, + "index": 9158 + }, + { + "filePath": "src/packages/exec-ed-page/components/WhyGetsmarter/index.jsx", + "line": 53, + "column": 16, + "index": 2718 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", + "line": 63, + "column": 20, + "index": 2753 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", + "line": 79, + "column": 20, + "index": 3350 + }, + { + "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Header/index.jsx", + "line": 17, + "column": 14, + "index": 671 + }, + { + "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", + "line": 20, + "column": 13, + "index": 827 + }, + { + "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", + "line": 22, + "column": 13, + "index": 911 + }, + { + "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", + "line": 24, + "column": 13, + "index": 1035 + }, + { + "filePath": "src/packages/learn-index-page/components/Hero.jsx", + "line": 16, + "column": 9, + "index": 650 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", + "line": 40, + "column": 12, + "index": 1130 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", + "line": 41, + "column": 12, + "index": 1223 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductInformation/index.jsx", + "line": 47, + "column": 12, + "index": 1596 + }, + { + "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", + "line": 38, + "column": 9, + "index": 2209 + }, + { + "filePath": "src/packages/masters-program-page/template/MastersProgramDetailPage/index.jsx", + "line": 360, + "column": 20, + "index": 13102 + }, + { + "filePath": "src/packages/masters-program-page/template/MastersProgramDetailPage/index.jsx", + "line": 525, + "column": 22, + "index": 21478 + }, + { + "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", + "line": 151, + "column": 33, + "index": 5871 + }, + { + "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", + "line": 191, + "column": 33, + "index": 7530 + }, + { + "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", + "line": 230, + "column": 33, + "index": 9204 }, { - "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 437, - "column": 12, - "index": 14729 + "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", + "line": 271, + "column": 37, + "index": 11058 }, { - "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 663, + "filePath": "src/packages/modular-page/modules/BootCampCurriculumModule/index.jsx", + "line": 88, "column": 12, - "index": 26319 + "index": 3159 }, { - "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 671, + "filePath": "src/packages/modular-page/modules/CollapsibleTextTabModule/index.jsx", + "line": 42, "column": 12, - "index": 26790 - }, - { - "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 690, - "column": 8, - "index": 27552 + "index": 1438 }, { - "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 872, - "column": 10, - "index": 35821 + "filePath": "src/packages/modular-page/modules/CollapsibleTextTabModule/index.jsx", + "line": 117, + "column": 16, + "index": 3457 }, { - "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 873, + "filePath": "src/packages/modular-page/modules/FeaturedProductsModule/index.jsx", + "line": 88, "column": 12, - "index": 35872 - }, - { - "filePath": "src/packages/program-page/components/SubjectTopics/index.jsx", - "line": 59, - "column": 8, - "index": 1796 + "index": 3066 }, { - "filePath": "src/packages/program-page/components/SubjectTopics/index.jsx", - "line": 69, - "column": 10, - "index": 2244 + "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", + "line": 48, + "column": 16, + "index": 1778 }, { - "filePath": "src/packages/resource-page/template/ResourcePage/index.jsx", - "line": 67, - "column": 6, - "index": 2489 + "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", + "line": 118, + "column": 16, + "index": 4124 }, { - "filePath": "src/packages/search-page/components/BaseHeader/components/SearchInput.jsx", - "line": 19, - "column": 4, - "index": 666 + "filePath": "src/packages/modular-page/modules/MediaModule/index.jsx", + "line": 42, + "column": 16, + "index": 1585 }, { - "filePath": "src/packages/search-page/components/BaseHeader/components/TitleSection.jsx", - "line": 13, - "column": 6, - "index": 408 + "filePath": "src/packages/modular-page/modules/MoreInfoCTAModule/index.jsx", + "line": 41, + "column": 8, + "index": 1586 }, { - "filePath": "src/packages/search-page/components/BaseHeader/components/TitleSection.jsx", - "line": 20, - "column": 6, - "index": 620 + "filePath": "src/packages/modular-page/modules/PriceModule/index.jsx", + "line": 92, + "column": 12, + "index": 2797 }, { - "filePath": "src/packages/search-page/components/BaseHeader/SearchInput.jsx", - "line": 19, - "column": 4, - "index": 662 + "filePath": "src/packages/modular-page/modules/ProgramReferralModule/index.jsx", + "line": 66, + "column": 16, + "index": 2234 }, { - "filePath": "src/packages/search-page/components/BaseHeader/TitleSection.jsx", - "line": 13, - "column": 6, - "index": 404 + "filePath": "src/packages/modular-page/modules/ProgramReferralModule/index.jsx", + "line": 79, + "column": 16, + "index": 2748 }, { - "filePath": "src/packages/search-page/components/BaseHeader/TitleSection.jsx", - "line": 20, - "column": 6, - "index": 616 + "filePath": "src/packages/modular-page/modules/StatisticIconModule/index.jsx", + "line": 32, + "column": 14, + "index": 1193 }, { - "filePath": "src/packages/search-page/components/PreQueryPage/components/PopularSearchLinks/index.jsx", - "line": 36, - "column": 4, - "index": 1357 + "filePath": "src/packages/modular-page/modules/TextModule/index.jsx", + "line": 74, + "column": 12, + "index": 2333 }, { - "filePath": "src/packages/search-page/components/PreQueryPage/index.jsx", - "line": 57, - "column": 4, - "index": 1871 + "filePath": "src/packages/modular-page/modules/UpcomingProgramModule/index.jsx", + "line": 76, + "column": 16, + "index": 3004 }, { - "filePath": "src/packages/search-page/components/RefinementFilters/index.jsx", - "line": 65, + "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseBreadcrumbs.jsx", + "line": 72, "column": 8, - "index": 2250 + "index": 2378 }, { - "filePath": "src/packages/search-page/components/Results/FirstLevelResult.jsx", - "line": 53, - "column": 4, - "index": 1438 + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 343, + "column": 36, + "index": 14847 }, { - "filePath": "src/packages/search-page/components/Results/SecondLevelResult.jsx", - "line": 39, - "column": 4, - "index": 1139 + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 368, + "column": 36, + "index": 16114 }, { - "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", - "line": 85, - "column": 4, - "index": 2815 - } - ], - "ChevronRight": [ - { - "filePath": "src/packages/common/ui/Breadcrumbs/index.jsx", - "line": 55, - "column": 18, - "index": 2126 + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 424, + "column": 20, + "index": 18907 }, { - "filePath": "src/packages/common/ui/SkillsBreadcrumbs/index.jsx", - "line": 39, - "column": 24, - "index": 1641 + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 437, + "column": 20, + "index": 19585 }, { - "filePath": "src/packages/learn-page/components/Breadcrumbs/index.jsx", - "line": 36, - "column": 10, - "index": 1246 + "filePath": "src/packages/open-course-page/components/CourseSnapshot/components/WeeksToComplete.jsx", + "line": 27, + "column": 6, + "index": 671 }, { - "filePath": "src/packages/open-course-page/components/ProductRecommendations/components/ProductCardHeader.jsx", - "line": 69, - "column": 21, - "index": 2362 + "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", + "line": 235, + "column": 24, + "index": 7825 }, { - "filePath": "src/packages/search-page/components/Results/ShowAllLink.jsx", - "line": 24, - "column": 69, - "index": 832 - } - ], - "Button": [ + "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", + "line": 249, + "column": 22, + "index": 8335 + }, { - "filePath": "src/packages/common/ui/Card/index.jsx", - "line": 140, - "column": 12, - "index": 4222 + "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", + "line": 292, + "column": 24, + "index": 10706 }, { - "filePath": "src/packages/common/ui/Card/index.jsx", - "line": 181, - "column": 16, - "index": 6280 + "filePath": "src/packages/open-course-page/components/Instructors/components/InstructorCard.jsx", + "line": 56, + "column": 18, + "index": 1951 }, { - "filePath": "src/packages/common/ui/CCPADialog/index.jsx", - "line": 104, + "filePath": "src/packages/open-course-page/components/ProductRecommendations/components/ProductCardHeader.jsx", + "line": 65, "column": 10, - "index": 3738 + "index": 2121 }, { - "filePath": "src/packages/common/ui/ChatBot/Survey/index.jsx", - "line": 260, - "column": 14, - "index": 9008 + "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", + "line": 130, + "column": 27, + "index": 4597 }, { - "filePath": "src/packages/common/ui/ChatBot/Survey/index.jsx", - "line": 271, + "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", + "line": 135, "column": 14, - "index": 9570 - }, - { - "filePath": "src/packages/common/ui/ChatbotProactiveMessage/index.jsx", - "line": 57, - "column": 12, - "index": 1964 + "index": 4899 }, { - "filePath": "src/packages/common/ui/ChatbotProactiveMessage/index.jsx", - "line": 67, - "column": 10, - "index": 2355 + "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", + "line": 152, + "column": 16, + "index": 5702 }, { - "filePath": "src/packages/common/ui/Collapsible/components/ParagonCollapsible/index.jsx", - "line": 94, - "column": 10, - "index": 2328 + "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", + "line": 174, + "column": 16, + "index": 6754 }, { - "filePath": "src/packages/common/ui/overlays/SaveForLaterOverlay/index.jsx", - "line": 348, + "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", + "line": 196, "column": 14, - "index": 12318 + "index": 7839 }, { - "filePath": "src/packages/common/ui/overlays/SocialSharePopover.jsx", - "line": 124, + "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", + "line": 85, "column": 12, - "index": 4763 + "index": 2924 }, { - "filePath": "src/packages/common/ui/overlays/SocialSharePopover.jsx", - "line": 131, + "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", + "line": 92, "column": 12, - "index": 5018 - }, - { - "filePath": "src/packages/degree-page/components/TabNavigation/index.jsx", - "line": 89, - "column": 14, - "index": 2552 + "index": 3227 }, { - "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", - "line": 95, - "column": 10, - "index": 3225 + "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", + "line": 99, + "column": 12, + "index": 3527 }, { - "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 191, - "column": 12, - "index": 6111 + "filePath": "src/packages/product-page/components/ProductDetailHero/components/BootCampHero.jsx", + "line": 82, + "column": 20, + "index": 3089 }, { - "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 265, - "column": 27, - "index": 8828 + "filePath": "src/packages/product-page/components/ProductDetailHero/components/DegreeHero.jsx", + "line": 75, + "column": 18, + "index": 2902 }, { - "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 289, - "column": 16, - "index": 9860 + "filePath": "src/packages/program-page/components/AboutRouting/components/TopicRouting/index.jsx", + "line": 60, + "column": 20, + "index": 1933 }, { - "filePath": "src/packages/exec-ed-page/components/RequestMoreInfoButton.jsx", - "line": 15, - "column": 6, - "index": 309 + "filePath": "src/packages/program-page/components/ProgramMain/components/InstructorCard/index.jsx", + "line": 63, + "column": 18, + "index": 1767 }, { - "filePath": "src/packages/exec-ed-page/template/ExecEdDetailPage/index.jsx", - "line": 335, + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 176, "column": 6, - "index": 12799 + "index": 5799 }, { - "filePath": "src/packages/learn-index-page/components/Hero.jsx", - "line": 37, + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 235, "column": 10, - "index": 1521 - }, - { - "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 137, - "column": 12, - "index": 5534 + "index": 7762 }, { - "filePath": "src/packages/modular-page/modules/DynamicProductModule/index.jsx", - "line": 39, - "column": 12, - "index": 1174 + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 249, + "column": 6, + "index": 8130 }, { - "filePath": "src/packages/modular-page/modules/FacultyModule/index.jsx", - "line": 62, + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 257, "column": 8, - "index": 1965 - }, - { - "filePath": "src/packages/modular-page/modules/StatisticIconModule/index.jsx", - "line": 91, - "column": 12, - "index": 3017 - }, - { - "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseDescription.jsx", - "line": 59, - "column": 22, - "index": 1737 + "index": 8453 }, { - "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseVideo.jsx", - "line": 36, + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 267, "column": 8, - "index": 1041 + "index": 8751 }, { - "filePath": "src/packages/open-course-page/components/CourseRunSelector/index.jsx", - "line": 222, - "column": 10, - "index": 8832 + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 459, + "column": 16, + "index": 18975 }, { - "filePath": "src/packages/open-course-page/components/EnrollButton/EnrollButtonLink.jsx", - "line": 341, - "column": 20, - "index": 11551 + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 470, + "column": 16, + "index": 19506 }, { - "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", - "line": 64, - "column": 10, - "index": 2301 + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 481, + "column": 16, + "index": 20030 }, { - "filePath": "src/packages/open-course-page/components/Instructors/variants/DesktopVariant.jsx", - "line": 86, - "column": 10, - "index": 2596 + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 861, + "column": 24, + "index": 40748 }, { - "filePath": "src/packages/resource-page/template/ResourcePage/index.jsx", - "line": 117, - "column": 14, - "index": 4257 + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 864, + "column": 24, + "index": 40896 }, { - "filePath": "src/packages/search-page/components/AutoComplete/components/ManagedAutoComplete/index.jsx", - "line": 259, - "column": 14, - "index": 9379 + "filePath": "src/packages/search-page/components/AutoComplete/components/PopularSearchItem/index.jsx", + "line": 35, + "column": 12, + "index": 1182 }, { - "filePath": "src/packages/search-page/components/PreQueryPage/components/PopularSearchLinks/index.jsx", - "line": 42, - "column": 10, - "index": 1692 + "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", + "line": 246, + "column": 22, + "index": 6655 }, { - "filePath": "src/packages/search-page/components/RefinementFilters/components/ClearRefinements/index.jsx", - "line": 36, - "column": 4, - "index": 1041 + "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", + "line": 247, + "column": 23, + "index": 6768 }, { - "filePath": "src/packages/search-page/components/RefinementFilters/components/MobileFilterMenu/index.jsx", + "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", "line": 118, - "column": 14, - "index": 3872 + "column": 22, + "index": 3301 }, { - "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 55, - "column": 14, - "index": 2096 + "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", + "line": 119, + "column": 23, + "index": 3414 }, { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 123, + "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", + "line": 95, "column": 10, - "index": 4365 + "index": 3310 + }, + { + "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", + "line": 98, + "column": 8, + "index": 3478 } ], - "Icon": [ + "OpenInNew": [ { - "filePath": "src/packages/common/ui/Card/index.jsx", - "line": 172, - "column": 32, - "index": 5733 + "filePath": "src/packages/bootcamp-page/components/BootCampStickyNav/index.jsx", + "line": 54, + "column": 15, + "index": 1934 }, { - "filePath": "src/packages/common/ui/Card/index.jsx", - "line": 173, - "column": 31, - "index": 5852 + "filePath": "src/packages/degree-page/components/TabNavigation/index.jsx", + "line": 118, + "column": 17, + "index": 3742 }, { - "filePath": "src/packages/common/ui/Card/index.jsx", - "line": 186, - "column": 18, - "index": 6466 + "filePath": "src/packages/modular-page/modules/BootCampCurriculumModule/index.jsx", + "line": 89, + "column": 19, + "index": 3184 }, { - "filePath": "src/packages/common/ui/Carousel/index.jsx", - "line": 249, - "column": 14, - "index": 7435 + "filePath": "src/packages/modular-page/modules/CollapsibleTextTabModule/index.jsx", + "line": 43, + "column": 19, + "index": 1463 }, { - "filePath": "src/packages/common/ui/Carousel/index.jsx", - "line": 269, - "column": 14, - "index": 8253 + "filePath": "src/packages/modular-page/modules/CollapsibleTextTabModule/index.jsx", + "line": 118, + "column": 23, + "index": 3486 }, { - "filePath": "src/packages/common/ui/ChatbotProactiveMessage/index.jsx", - "line": 64, - "column": 14, - "index": 2253 + "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", + "line": 49, + "column": 23, + "index": 1807 }, { - "filePath": "src/packages/common/ui/Collapsible/components/ParagonCollapsible/index.jsx", - "line": 72, - "column": 11, - "index": 1837 + "filePath": "src/packages/modular-page/modules/MediaModule/index.jsx", + "line": 43, + "column": 23, + "index": 1614 }, { - "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", - "line": 110, - "column": 10, - "index": 2963 + "filePath": "src/packages/modular-page/modules/PriceModule/index.jsx", + "line": 93, + "column": 19, + "index": 2822 }, { - "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", - "line": 113, - "column": 10, - "index": 3088 + "filePath": "src/packages/modular-page/modules/StatisticIconModule/index.jsx", + "line": 33, + "column": 21, + "index": 1220 }, { - "filePath": "src/packages/common/ui/Header/components/SiteNav/components/SiteNavLink.jsx", - "line": 94, - "column": 18, - "index": 2627 + "filePath": "src/packages/modular-page/modules/TextModule/index.jsx", + "line": 75, + "column": 19, + "index": 2358 }, { - "filePath": "src/packages/common/ui/overlays/SaveForLaterOverlay/index.jsx", - "line": 371, - "column": 24, - "index": 13375 + "filePath": "src/packages/modular-page/modules/UpcomingProgramModule/index.jsx", + "line": 77, + "column": 23, + "index": 3033 }, { - "filePath": "src/packages/common/ui/PreviewExpand/index.jsx", - "line": 66, - "column": 10, - "index": 1791 + "filePath": "src/packages/product-page/components/ProductDetailHero/components/BootCampHero.jsx", + "line": 83, + "column": 27, + "index": 3122 }, { - "filePath": "src/packages/degree-page/components/CTAButton/index.jsx", - "line": 37, - "column": 6, - "index": 1267 + "filePath": "src/packages/product-page/components/ProductDetailHero/components/DegreeHero.jsx", + "line": 76, + "column": 25, + "index": 2933 + } + ], + "ChevronRight": [ + { + "filePath": "src/packages/common/ui/Breadcrumbs/index.jsx", + "line": 55, + "column": 18, + "index": 2133 }, { - "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", - "line": 248, - "column": 16, - "index": 9285 + "filePath": "src/packages/common/ui/PageTitleBreadcrumbs/index.jsx", + "line": 31, + "column": 18, + "index": 1225 }, { - "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", - "line": 101, - "column": 12, - "index": 3429 + "filePath": "src/packages/common/ui/PageTitleBreadcrumbs/index.jsx", + "line": 42, + "column": 20, + "index": 1745 }, { - "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 197, - "column": 14, - "index": 6391 + "filePath": "src/packages/common/ui/SkillsBreadcrumbs/index.jsx", + "line": 39, + "column": 24, + "index": 1648 }, { - "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 223, - "column": 12, - "index": 7257 + "filePath": "src/packages/open-course-page/components/ProductRecommendations/components/ProductCardHeader.jsx", + "line": 65, + "column": 21, + "index": 2132 }, { - "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 251, - "column": 14, - "index": 8149 + "filePath": "src/packages/search-page/components/Results/ShowAllLink.jsx", + "line": 24, + "column": 69, + "index": 832 + } + ], + "Button": [ + { + "filePath": "src/packages/common/ui/Card/index.jsx", + "line": 140, + "column": 12, + "index": 4229 }, { - "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", - "line": 21, - "column": 10, - "index": 905 + "filePath": "src/packages/common/ui/Card/index.jsx", + "line": 181, + "column": 16, + "index": 6287 }, { - "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", - "line": 24, + "filePath": "src/packages/common/ui/Collapsible/components/ParagonCollapsible/index.jsx", + "line": 94, "column": 10, - "index": 1057 + "index": 2328 }, { - "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", - "line": 246, - "column": 28, - "index": 9158 + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsHeaderActions.jsx", + "line": 21, + "column": 6, + "index": 511 }, { - "filePath": "src/packages/exec-ed-page/components/WhyGetsmarter/index.jsx", - "line": 54, - "column": 16, - "index": 2748 + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsHeaderActions.jsx", + "line": 40, + "column": 4, + "index": 1016 }, { - "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", - "line": 63, - "column": 20, - "index": 2753 + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsHeaderActions.jsx", + "line": 77, + "column": 6, + "index": 2072 }, { - "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", - "line": 79, - "column": 20, - "index": 3350 + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsInput.jsx", + "line": 40, + "column": 6, + "index": 1070 }, { - "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Header/index.jsx", - "line": 17, - "column": 14, - "index": 671 + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsMessages.jsx", + "line": 26, + "column": 8, + "index": 1194 }, { - "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", - "line": 25, - "column": 13, - "index": 1036 + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsMessages.jsx", + "line": 34, + "column": 8, + "index": 1662 }, { - "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", - "line": 27, - "column": 13, - "index": 1160 + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimerHeader.jsx", + "line": 15, + "column": 6, + "index": 484 }, { - "filePath": "src/packages/learn-index-page/components/Hero.jsx", - "line": 16, - "column": 9, - "index": 643 + "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/index.jsx", + "line": 143, + "column": 12, + "index": 4774 }, { - "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", - "line": 40, - "column": 12, - "index": 1130 + "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/Survey/index.jsx", + "line": 262, + "column": 14, + "index": 9078 }, { - "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", - "line": 41, - "column": 12, - "index": 1223 + "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/Survey/index.jsx", + "line": 273, + "column": 14, + "index": 9640 }, { - "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductInformation/index.jsx", - "line": 47, - "column": 12, - "index": 1596 + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 200, + "column": 10, + "index": 6122 }, { - "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 38, - "column": 9, - "index": 2397 + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 259, + "column": 14, + "index": 8647 }, { - "filePath": "src/packages/masters-program-page/template/MastersProgramDetailPage/index.jsx", - "line": 352, - "column": 20, - "index": 12755 + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 269, + "column": 14, + "index": 9120 }, { - "filePath": "src/packages/masters-program-page/template/MastersProgramDetailPage/index.jsx", - "line": 517, - "column": 22, - "index": 21131 + "filePath": "src/packages/common/ui/xpert/shared/FloatingActionButton/index.jsx", + "line": 17, + "column": 4, + "index": 453 }, { - "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", - "line": 152, - "column": 33, - "index": 5895 + "filePath": "src/packages/common/ui/xpert/shared/FloatingActionButton/index.jsx", + "line": 41, + "column": 5, + "index": 1037 }, { - "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", - "line": 193, - "column": 33, - "index": 7585 + "filePath": "src/packages/common/ui/xpert/shared/ProactiveMessage/index.jsx", + "line": 67, + "column": 12, + "index": 2157 }, { - "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", - "line": 233, - "column": 33, - "index": 9290 + "filePath": "src/packages/common/ui/xpert/shared/ProactiveMessage/index.jsx", + "line": 78, + "column": 10, + "index": 2627 }, { - "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", - "line": 275, - "column": 37, - "index": 11179 + "filePath": "src/packages/degree-page/components/TabNavigation/index.jsx", + "line": 91, + "column": 14, + "index": 2799 }, { - "filePath": "src/packages/modular-page/modules/CollapsibleTextTabModule/index.jsx", - "line": 77, - "column": 16, - "index": 2500 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 445, + "column": 26, + "index": 19624 }, { - "filePath": "src/packages/modular-page/modules/FeaturedProductsModule/index.jsx", - "line": 88, + "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", + "line": 95, "column": 12, - "index": 3059 + "index": 3263 }, { - "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", - "line": 54, - "column": 16, - "index": 1986 + "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", + "line": 194, + "column": 12, + "index": 6274 }, { - "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", - "line": 124, - "column": 16, - "index": 4332 + "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", + "line": 268, + "column": 27, + "index": 8999 }, { - "filePath": "src/packages/modular-page/modules/MediaModule/index.jsx", - "line": 50, - "column": 18, - "index": 1854 + "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", + "line": 292, + "column": 16, + "index": 10031 }, { - "filePath": "src/packages/modular-page/modules/MoreInfoCTAModule/index.jsx", - "line": 41, - "column": 8, - "index": 1579 + "filePath": "src/packages/exec-ed-page/components/RequestMoreInfoButton.jsx", + "line": 15, + "column": 6, + "index": 309 }, { - "filePath": "src/packages/modular-page/modules/ProgramReferralModule/index.jsx", - "line": 56, - "column": 16, - "index": 1877 + "filePath": "src/packages/exec-ed-page/template/ExecEdDetailPage/index.jsx", + "line": 364, + "column": 6, + "index": 14402 }, { - "filePath": "src/packages/modular-page/modules/ProgramReferralModule/index.jsx", - "line": 69, - "column": 16, - "index": 2391 + "filePath": "src/packages/learn-index-page/components/Hero.jsx", + "line": 37, + "column": 10, + "index": 1528 }, { - "filePath": "src/packages/modular-page/modules/StatisticIconModule/index.jsx", - "line": 34, - "column": 14, - "index": 1261 + "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", + "line": 186, + "column": 12, + "index": 6682 }, { - "filePath": "src/packages/modular-page/modules/TextModule/index.jsx", - "line": 76, + "filePath": "src/packages/modular-page/modules/DynamicProductModule/index.jsx", + "line": 39, "column": 12, - "index": 2403 + "index": 1181 }, { - "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseBreadcrumbs.jsx", - "line": 42, + "filePath": "src/packages/modular-page/modules/FacultyModule/index.jsx", + "line": 62, "column": 8, - "index": 1218 + "index": 1965 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 287, - "column": 66, - "index": 12616 + "filePath": "src/packages/modular-page/modules/StatisticIconModule/index.jsx", + "line": 89, + "column": 12, + "index": 2949 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 304, - "column": 66, - "index": 13703 + "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseDescription.jsx", + "line": 42, + "column": 22, + "index": 1100 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 345, - "column": 50, - "index": 16247 + "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseVideo.jsx", + "line": 46, + "column": 8, + "index": 1701 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 354, - "column": 50, - "index": 16863 - }, - { - "filePath": "src/packages/open-course-page/components/CourseSnapshot/components/WeeksToComplete.jsx", - "line": 27, - "column": 6, - "index": 671 + "line": 249, + "column": 14, + "index": 10015 }, { - "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 208, - "column": 24, - "index": 6434 + "filePath": "src/packages/open-course-page/components/CourseRunModal/components/EnrollButton.jsx", + "line": 28, + "column": 4, + "index": 720 }, { - "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 222, - "column": 22, - "index": 6944 + "filePath": "src/packages/open-course-page/components/CourseRunSelector/index.jsx", + "line": 232, + "column": 10, + "index": 9286 }, { - "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 265, - "column": 24, - "index": 9317 + "filePath": "src/packages/open-course-page/components/EnrollButton/EnrollButtonLink.jsx", + "line": 337, + "column": 20, + "index": 11429 }, { - "filePath": "src/packages/open-course-page/components/Instructors/components/InstructorCard.jsx", - "line": 56, - "column": 18, - "index": 1951 + "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", + "line": 64, + "column": 10, + "index": 2301 }, { - "filePath": "src/packages/open-course-page/components/ProductRecommendations/components/ProductCardHeader.jsx", - "line": 69, + "filePath": "src/packages/open-course-page/components/Instructors/variants/DesktopVariant.jsx", + "line": 84, "column": 10, - "index": 2351 + "index": 2426 }, { - "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 130, - "column": 27, - "index": 4585 + "filePath": "src/packages/open-course-page/components/StickyNav/index.jsx", + "line": 259, + "column": 18, + "index": 9418 }, { - "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 135, - "column": 14, - "index": 4887 + "filePath": "src/packages/program-page/components/ProgramHeader.jsx", + "line": 171, + "column": 16, + "index": 5068 }, { - "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 152, + "filePath": "src/packages/program-page/components/ProgramHeader/index.jsx", + "line": 164, "column": 16, - "index": 5690 + "index": 5133 }, { - "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 174, - "column": 16, - "index": 6742 + "filePath": "src/packages/program-page/components/ProgramSubscriptionSection/index.jsx", + "line": 64, + "column": 8, + "index": 2353 }, { - "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 196, + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 392, "column": 14, - "index": 7827 + "index": 15825 }, { - "filePath": "src/packages/program-page/components/AboutRouting/components/TopicRouting/index.jsx", - "line": 60, - "column": 20, - "index": 1926 + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 882, + "column": 12, + "index": 41797 }, { - "filePath": "src/packages/program-page/components/ProgramMain/components/InstructorCard/index.jsx", - "line": 63, - "column": 18, - "index": 1767 + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 926, + "column": 14, + "index": 43783 }, { - "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 205, - "column": 22, - "index": 5466 + "filePath": "src/packages/resource-page/template/ResourcePage/index.jsx", + "line": 117, + "column": 14, + "index": 4264 }, { - "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 206, - "column": 23, - "index": 5579 + "filePath": "src/packages/search-page/components/AutoComplete/components/ManagedAutoComplete/index.jsx", + "line": 364, + "column": 14, + "index": 12566 }, { - "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", - "line": 102, - "column": 22, - "index": 2798 + "filePath": "src/packages/search-page/components/PreQueryPage/components/PopularSearchLinks/index.jsx", + "line": 42, + "column": 10, + "index": 1692 }, { - "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", - "line": 103, - "column": 23, - "index": 2911 + "filePath": "src/packages/search-page/components/RefinementFilters/components/ClearRefinements/index.jsx", + "line": 42, + "column": 4, + "index": 1296 }, { - "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", - "line": 93, - "column": 10, - "index": 3155 + "filePath": "src/packages/search-page/components/RefinementFilters/components/MobileFilterMenu/index.jsx", + "line": 118, + "column": 14, + "index": 3872 }, { - "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", - "line": 96, - "column": 8, - "index": 3323 + "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", + "line": 54, + "column": 14, + "index": 2128 + }, + { + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 123, + "column": 10, + "index": 4365 } ], "ExpandLess": [ @@ -34327,19 +39190,25 @@ "filePath": "src/packages/common/ui/Card/index.jsx", "line": 173, "column": 67, - "index": 5888 + "index": 5895 }, { "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", - "line": 113, + "line": 114, "column": 21, - "index": 3099 + "index": 3161 }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", "line": 24, "column": 21, "index": 1068 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 864, + "column": 35, + "index": 40907 } ], "Close": [ @@ -34347,19 +39216,31 @@ "filePath": "src/packages/common/ui/Card/index.jsx", "line": 186, "column": 52, - "index": 6500 + "index": 6507 }, { - "filePath": "src/packages/common/ui/ChatbotProactiveMessage/index.jsx", - "line": 64, - "column": 57, - "index": 2296 + "filePath": "src/packages/common/ui/SitewideBanner/index.jsx", + "line": 72, + "column": 12, + "index": 2696 }, { - "filePath": "src/packages/common/ui/SitewideBanner/index.jsx", - "line": 84, - "column": 10, - "index": 2884 + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsHeaderActions.jsx", + "line": 85, + "column": 19, + "index": 2344 + }, + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimerHeader.jsx", + "line": 22, + "column": 19, + "index": 704 + }, + { + "filePath": "src/packages/common/ui/xpert/shared/ProactiveMessage/index.jsx", + "line": 75, + "column": 67, + "index": 2568 }, { "filePath": "src/packages/program-page/components/ProgramMain/components/ProgramTrackModal/index.jsx", @@ -34419,9 +39300,9 @@ "ArrowBack": [ { "filePath": "src/packages/common/ui/Carousel/index.jsx", - "line": 249, + "line": 250, "column": 58, - "index": 7479 + "index": 7565 }, { "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", @@ -34433,337 +39314,183 @@ "ArrowForward": [ { "filePath": "src/packages/common/ui/Carousel/index.jsx", - "line": 269, + "line": 270, "column": 58, - "index": 8297 - }, - { - "filePath": "src/packages/degree-page/components/CTAButton/index.jsx", - "line": 37, - "column": 17, - "index": 1278 - }, - { - "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", - "line": 248, - "column": 27, - "index": 9296 - }, - { - "filePath": "src/packages/home-page/components/Audiences/index.jsx", - "line": 57, - "column": 18, - "index": 2613 - }, - { - "filePath": "src/packages/home-page/components/Audiences/index.jsx", - "line": 95, - "column": 18, - "index": 4512 - }, - { - "filePath": "src/packages/home-page/components/Audiences/index.jsx", - "line": 133, - "column": 18, - "index": 6365 - }, - { - "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", - "line": 78, - "column": 17, - "index": 3316 - }, - { - "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", - "line": 152, - "column": 44, - "index": 5906 - }, - { - "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", - "line": 193, - "column": 44, - "index": 7596 - }, - { - "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", - "line": 233, - "column": 44, - "index": 9301 - }, - { - "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", - "line": 275, - "column": 48, - "index": 11190 - }, - { - "filePath": "src/packages/modular-page/modules/FeaturedProductsModule/index.jsx", - "line": 88, - "column": 23, - "index": 3070 - }, - { - "filePath": "src/packages/modular-page/modules/MoreInfoCTAModule/index.jsx", - "line": 41, - "column": 19, - "index": 1590 - }, - { - "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 130, - "column": 38, - "index": 4596 - } - ], - "ModalDialog": [ - { - "filePath": "src/packages/common/ui/CCPADialog/index.jsx", - "line": 36, - "column": 4, - "index": 992 - }, - { - "filePath": "src/packages/exec-ed-page/components/CourseVideoDialog/index.jsx", - "line": 11, - "column": 4, - "index": 268 - }, - { - "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", - "line": 32, - "column": 4, - "index": 1059 - } - ], - "ModalDialog.Header": [ - { - "filePath": "src/packages/common/ui/CCPADialog/index.jsx", - "line": 45, - "column": 6, - "index": 1207 - }, - { - "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", - "line": 39, - "column": 6, - "index": 1271 - } - ], - "ModalDialog.Title": [ - { - "filePath": "src/packages/common/ui/CCPADialog/index.jsx", - "line": 46, - "column": 8, - "index": 1236 - }, - { - "filePath": "src/packages/common/ui/SaveForLaterMarketingModal/index.jsx", - "line": 67, - "column": 14, - "index": 2256 - }, - { - "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", - "line": 40, - "column": 8, - "index": 1300 - } - ], - "ModalDialog.Body": [ - { - "filePath": "src/packages/common/ui/CCPADialog/index.jsx", - "line": 54, - "column": 6, - "index": 1526 - }, - { - "filePath": "src/packages/exec-ed-page/components/CourseVideoDialog/index.jsx", - "line": 21, - "column": 6, - "index": 501 - }, - { - "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", - "line": 49, - "column": 6, - "index": 1627 - } - ], - "Form.Group": [ - { - "filePath": "src/packages/common/ui/CCPADialog/index.jsx", - "line": 55, - "column": 8, - "index": 1553 + "index": 8383 }, { - "filePath": "src/packages/common/ui/overlays/SocialSharePopover.jsx", - "line": 110, - "column": 10, - "index": 4133 + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 167, + "column": 99, + "index": 5079 }, { - "filePath": "src/packages/queryless-pages/templates/CCPAPage.jsx", - "line": 27, - "column": 8, - "index": 890 + "filePath": "src/packages/degree-page/components/CTAButton/index.jsx", + "line": 37, + "column": 17, + "index": 1285 }, { - "filePath": "src/packages/queryless-pages/templates/CCPAPageES.jsx", - "line": 25, - "column": 8, - "index": 908 + "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", + "line": 184, + "column": 25, + "index": 6636 }, { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 68, - "column": 16, - "index": 2242 + "filePath": "src/packages/home-page/components/Audiences/index.jsx", + "line": 56, + "column": 18, + "index": 2606 }, { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 73, - "column": 16, - "index": 2435 + "filePath": "src/packages/home-page/components/Audiences/index.jsx", + "line": 93, + "column": 18, + "index": 4468 }, { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "filePath": "src/packages/home-page/components/Audiences/index.jsx", + "line": 130, + "column": 18, + "index": 6284 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", "line": 78, - "column": 16, - "index": 2637 + "column": 17, + "index": 3316 }, { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 88, - "column": 16, - "index": 2993 + "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", + "line": 151, + "column": 44, + "index": 5882 }, { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 92, - "column": 16, - "index": 3193 + "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", + "line": 191, + "column": 44, + "index": 7541 }, { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 96, - "column": 16, - "index": 3376 + "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", + "line": 230, + "column": 44, + "index": 9215 }, { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 117, - "column": 10, - "index": 4097 - } - ], - "Form.Switch": [ + "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", + "line": 271, + "column": 48, + "index": 11069 + }, { - "filePath": "src/packages/common/ui/CCPADialog/index.jsx", - "line": 56, - "column": 10, - "index": 1576 + "filePath": "src/packages/modular-page/modules/FeaturedProductsModule/index.jsx", + "line": 88, + "column": 23, + "index": 3077 }, { - "filePath": "src/packages/queryless-pages/templates/CCPAPage.jsx", - "line": 28, - "column": 10, - "index": 913 + "filePath": "src/packages/modular-page/modules/MoreInfoCTAModule/index.jsx", + "line": 41, + "column": 19, + "index": 1597 }, { - "filePath": "src/packages/queryless-pages/templates/CCPAPageES.jsx", - "line": 26, - "column": 10, - "index": 931 + "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", + "line": 130, + "column": 38, + "index": 4608 } ], - "ModalDialog.Footer": [ - { - "filePath": "src/packages/common/ui/CCPADialog/index.jsx", - "line": 95, - "column": 6, - "index": 3377 - }, + "Form.Checkbox": [ { - "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", - "line": 59, - "column": 6, - "index": 2139 + "filePath": "src/packages/common/ui/EmailOptIn/index.jsx", + "line": 29, + "column": 8, + "index": 640 } ], - "ActionRow": [ + "Input": [ { - "filePath": "src/packages/common/ui/CCPADialog/index.jsx", - "line": 96, - "column": 8, - "index": 3406 + "filePath": "src/packages/common/ui/Footer/index.jsx", + "line": 333, + "column": 18, + "index": 11646 }, { - "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", - "line": 60, - "column": 8, - "index": 2168 + "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/Survey/index.jsx", + "line": 202, + "column": 28, + "index": 6503 + }, + { + "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/Survey/index.jsx", + "line": 238, + "column": 22, + "index": 8055 } ], - "ModalDialog.CloseButton": [ + "Facebook": [ { - "filePath": "src/packages/common/ui/CCPADialog/index.jsx", - "line": 97, - "column": 10, - "index": 3428 + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 583, + "column": 23, + "index": 27391 }, { - "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", - "line": 61, - "column": 10, - "index": 2190 + "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", + "line": 22, + "column": 24, + "index": 922 + }, + { + "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", + "line": 85, + "column": 23, + "index": 2935 } ], - "Form": [ + "BsTwitter": [ { - "filePath": "src/packages/common/ui/ChatBot/Survey/index.jsx", - "line": 152, - "column": 8, - "index": 4120 - }, - { - "filePath": "src/packages/common/ui/overlays/SocialSharePopover.jsx", - "line": 109, - "column": 8, - "index": 4098 + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 589, + "column": 23, + "index": 27635 }, { - "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 227, - "column": 22, - "index": 6337 + "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", + "line": 20, + "column": 24, + "index": 838 }, { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 63, - "column": 6, - "index": 1980 + "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", + "line": 92, + "column": 23, + "index": 3238 } ], - "Input": [ + "BsLinkedin": [ { - "filePath": "src/packages/common/ui/ChatBot/Survey/index.jsx", - "line": 200, - "column": 28, - "index": 6423 + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 595, + "column": 23, + "index": 27887 }, { - "filePath": "src/packages/common/ui/ChatBot/Survey/index.jsx", - "line": 236, - "column": 22, - "index": 7975 - }, + "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", + "line": 99, + "column": 23, + "index": 3538 + } + ], + "Reddit": [ { - "filePath": "src/packages/common/ui/Footer/index.jsx", - "line": 928, - "column": 18, - "index": 37092 + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 601, + "column": 23, + "index": 28141 } ], "Collapsible": [ @@ -34775,77 +39502,77 @@ }, { "filePath": "src/packages/modular-page/components/AccordionFAQ/index.jsx", - "line": 78, + "line": 82, "column": 14, - "index": 2449 + "index": 2524 }, { "filePath": "src/packages/modular-page/components/AccordionFAQ/index.jsx", - "line": 106, + "line": 110, "column": 12, - "index": 3515 + "index": 3590 }, { "filePath": "src/packages/modular-page/modules/BootCampCurriculumModule/index.jsx", - "line": 62, + "line": 70, "column": 16, - "index": 2009 + "index": 2352 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 73, + "line": 97, "column": 6, - "index": 2742 + "index": 3688 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 87, + "line": 111, "column": 6, - "index": 3277 + "index": 4181 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 95, + "line": 119, "column": 6, - "index": 3530 + "index": 4434 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 106, + "line": 135, "column": 6, - "index": 4081 + "index": 5125 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 118, + "line": 147, "column": 6, - "index": 4508 + "index": 5538 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 133, + "line": 160, "column": 6, - "index": 5075 + "index": 6019 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 143, + "line": 170, "column": 6, - "index": 5404 + "index": 6348 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 153, + "line": 180, "column": 6, - "index": 5772 + "index": 6716 } ], "Collapsible.Advanced": [ { "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", - "line": 87, + "line": 88, "column": 4, - "index": 2342 + "index": 2404 }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", @@ -34856,22 +39583,28 @@ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", "line": 714, + "column": 20, + "index": 30304 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 852, "column": 18, - "index": 28792 + "index": 40163 } ], "Collapsible.Visible": [ { "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", - "line": 109, + "line": 110, "column": 8, - "index": 2920 + "index": 2982 }, { "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", - "line": 112, + "line": 113, "column": 8, - "index": 3047 + "index": 3109 }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", @@ -34888,22 +39621,34 @@ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", "line": 722, - "column": 22, - "index": 29372 + "column": 24, + "index": 30900 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", "line": 723, + "column": 24, + "index": 30992 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 860, + "column": 22, + "index": 40691 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 863, "column": 22, - "index": 29462 + "index": 40841 } ], "Collapsible.Body": [ { "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", - "line": 116, + "line": 117, "column": 6, - "index": 3198 + "index": 3260 }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", @@ -34914,360 +39659,596 @@ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", "line": 725, - "column": 20, - "index": 29594 - } - ], - "useWindowSize": [ - { - "filePath": "src/packages/common/ui/Header/components/SearchBar.jsx", - "line": 28, - "column": 20, - "index": 910 + "column": 22, + "index": 31128 }, { - "filePath": "src/packages/home-page/components/Hero/index.jsx", - "line": 47, + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 867, "column": 20, - "index": 1856 - }, - { - "filePath": "src/packages/modular-page/modules/ImageCarouselModule/index.jsx", - "line": 26, - "column": 21, - "index": 833 + "index": 41030 } ], "SearchField.Advanced": [ { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 90, + "line": 99, "column": 6, - "index": 2927 + "index": 3185 }, { "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", - "line": 43, + "line": 64, "column": 6, - "index": 1645 + "index": 2189 }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", - "line": 74, + "line": 77, "column": 10, - "index": 2417 + "index": 2472 }, { "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 91, + "line": 112, "column": 10, - "index": 3066 + "index": 3665 } ], "SearchField.Input": [ { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 106, + "line": 116, "column": 10, - "index": 3711 + "index": 4001 }, { "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", - "line": 58, + "line": 81, "column": 12, - "index": 2338 + "index": 2961 }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", - "line": 90, + "line": 93, "column": 14, - "index": 3050 + "index": 3105 }, { "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 102, + "line": 125, "column": 14, - "index": 3536 + "index": 4201 } ], "SearchField.ClearButton": [ { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 117, + "line": 127, "column": 10, - "index": 4133 + "index": 4416 }, { "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", - "line": 66, + "line": 91, + "column": 12, + "index": 3364 + }, + { + "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", + "line": 104, + "column": 14, + "index": 3616 + }, + { + "filePath": "src/packages/search-page/components/SearchBox/index.jsx", + "line": 136, + "column": 14, + "index": 4707 + } + ], + "SearchField.SubmitButton": [ + { + "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", + "line": 129, + "column": 12, + "index": 4488 + }, + { + "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", + "line": 137, + "column": 10, + "index": 4699 + }, + { + "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", + "line": 93, + "column": 10, + "index": 3419 + }, + { + "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", + "line": 106, + "column": 12, + "index": 3675 + }, + { + "filePath": "src/packages/search-page/components/SearchBox/index.jsx", + "line": 138, + "column": 12, + "index": 4766 + } + ], + "IconButton": [ + { + "filePath": "src/packages/common/ui/Header/components/SiteNav/components/SiteNavLink.jsx", + "line": 91, + "column": 8, + "index": 2535 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", + "line": 61, + "column": 10, + "index": 2693 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", + "line": 77, + "column": 10, + "index": 3287 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 341, + "column": 26, + "index": 14753 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 366, + "column": 26, + "index": 16020 + } + ], + "Dropdown": [ + { + "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", + "line": 160, + "column": 10, + "index": 5343 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", + "line": 38, + "column": 8, + "index": 947 + } + ], + "Dropdown.Toggle": [ + { + "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", + "line": 161, + "column": 12, + "index": 5388 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", + "line": 39, + "column": 10, + "index": 968 + } + ], + "AvatarButton": [ + { + "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", + "line": 162, + "column": 18, + "index": 5423 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", + "line": 175, + "column": 12, + "index": 6020 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", + "line": 49, + "column": 10, + "index": 1704 + } + ], + "Badge": [ + { + "filePath": "src/packages/common/ui/NewBadge/index.jsx", + "line": 22, + "column": 4, + "index": 546 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", + "line": 80, + "column": 14, + "index": 3122 + }, + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/components/SectionTile.jsx", + "line": 54, + "column": 10, + "index": 2066 + }, + { + "filePath": "src/packages/open-course-page/components/CourseRunSelector/components/SelectionTile.jsx", + "line": 57, "column": 12, - "index": 2650 + "index": 2059 + }, + { + "filePath": "src/packages/program-page/components/ProgramHeader.jsx", + "line": 156, + "column": 16, + "index": 4557 + }, + { + "filePath": "src/packages/program-page/components/ProgramHeader/index.jsx", + "line": 149, + "column": 16, + "index": 4622 + }, + { + "filePath": "src/packages/search-page/components/AutoComplete/components/AutoCompleteDropdownItem/index.jsx", + "line": 117, + "column": 18, + "index": 3607 + }, + { + "filePath": "src/packages/search-page/components/AutoComplete/components/AutoCompleteDropdownItem/index.jsx", + "line": 121, + "column": 16, + "index": 3836 + }, + { + "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", + "line": 275, + "column": 33, + "index": 7926 + } + ], + "ChevronLeft": [ + { + "filePath": "src/packages/common/ui/PageTitleBreadcrumbs/index.jsx", + "line": 41, + "column": 20, + "index": 1607 + }, + { + "filePath": "src/packages/common/ui/SkillsBreadcrumbs/index.jsx", + "line": 21, + "column": 6, + "index": 725 + }, + { + "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", + "line": 254, + "column": 25, + "index": 8323 + }, + { + "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseBreadcrumbs.jsx", + "line": 72, + "column": 19, + "index": 2389 + } + ], + "PlayCircleFilled": [ + { + "filePath": "src/packages/common/ui/Video/index.jsx", + "line": 129, + "column": 18, + "index": 3438 + }, + { + "filePath": "src/packages/common/ui/Video/newBasePlayer.jsx", + "line": 96, + "column": 16, + "index": 3062 }, { - "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", - "line": 101, - "column": 14, - "index": 3561 - }, + "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", + "line": 295, + "column": 30, + "index": 10168 + }, + { + "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseVideo.jsx", + "line": 54, + "column": 10, + "index": 1886 + } + ], + "Send": [ + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsInput.jsx", + "line": 48, + "column": 19, + "index": 1343 + } + ], + "Compass": [ + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimer.jsx", + "line": 29, + "column": 35, + "index": 1053 + }, + { + "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", + "line": 319, + "column": 18, + "index": 11401 + } + ], + "Groups": [ + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimer.jsx", + "line": 42, + "column": 33, + "index": 1539 + } + ], + "Thunderstorm": [ + { + "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertError.jsx", + "line": 16, + "column": 13, + "index": 476 + } + ], + "Minimize": [ { - "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 113, - "column": 14, - "index": 4042 + "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/index.jsx", + "line": 148, + "column": 54, + "index": 5108 } ], - "SearchField.SubmitButton": [ + "Form": [ { - "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 119, - "column": 12, - "index": 4205 + "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/Survey/index.jsx", + "line": 154, + "column": 8, + "index": 4200 }, { - "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 127, - "column": 10, - "index": 4416 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 301, + "column": 24, + "index": 11196 }, { - "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", - "line": 68, - "column": 10, - "index": 2705 + "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", + "line": 268, + "column": 22, + "index": 7526 }, { - "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", - "line": 103, - "column": 12, - "index": 3620 + "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", + "line": 136, + "column": 20, + "index": 4070 }, { - "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 115, - "column": 12, - "index": 4101 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 63, + "column": 6, + "index": 1980 } ], - "IconButton": [ + "Lightbulb": [ { - "filePath": "src/packages/common/ui/Header/components/SiteNav/components/SiteNavLink.jsx", - "line": 92, - "column": 8, - "index": 2570 + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 182, + "column": 19, + "index": 5521 }, { - "filePath": "src/packages/common/ui/overlays/SaveForLaterOverlay/index.jsx", - "line": 365, - "column": 14, - "index": 13139 - }, + "filePath": "src/packages/common/ui/xpert/experiments/SkillsBuilderFloatingActionButton/index.jsx", + "line": 77, + "column": 19, + "index": 2654 + } + ], + "KeyboardArrowDown": [ { - "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", - "line": 61, - "column": 10, - "index": 2693 + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 206, + "column": 23, + "index": 6343 }, { - "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", - "line": 77, + "filePath": "src/packages/search-page/components/RefinementFilters/components/MobileFilterMenu/index.jsx", + "line": 75, "column": 10, - "index": 3287 - }, + "index": 2420 + } + ], + "Recommend": [ { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 287, - "column": 28, - "index": 12578 + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 267, + "column": 87, + "index": 9068 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 304, - "column": 28, - "index": 13665 + "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", + "line": 277, + "column": 89, + "index": 9552 } ], - "Dropdown": [ + "useArrowKeyNavigation": [ { - "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", - "line": 142, - "column": 10, - "index": 4575 - }, + "filePath": "src/packages/common/ui/xpert/shared/FloatingActionPopup/index.jsx", + "line": 21, + "column": 20, + "index": 543 + } + ], + "FormGroup": [ { - "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", - "line": 38, + "filePath": "src/packages/degree-page/components/TabNavigation/index.jsx", + "line": 133, "column": 8, - "index": 947 + "index": 4212 } ], - "Dropdown.Toggle": [ - { - "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", - "line": 143, - "column": 12, - "index": 4620 - }, + "FormControl": [ { - "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", - "line": 39, + "filePath": "src/packages/degree-page/components/TabNavigation/index.jsx", + "line": 134, "column": 10, - "index": 968 + "index": 4250 } ], - "AvatarButton": [ + "Spinner": [ { - "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", - "line": 144, - "column": 18, - "index": 4655 - } - ], - "Dropdown.Menu": [ + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 278, + "column": 14, + "index": 10034 + }, { - "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", - "line": 157, - "column": 12, - "index": 5252 + "filePath": "src/packages/program-page/components/ProgramHeader.jsx", + "line": 97, + "column": 15, + "index": 2910 }, { - "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", - "line": 49, + "filePath": "src/packages/program-page/components/ProgramHeader/index.jsx", + "line": 101, + "column": 15, + "index": 3103 + }, + { + "filePath": "src/packages/program-page/components/ProgramSubscriptionSection/index.jsx", + "line": 65, "column": 10, - "index": 1704 + "index": 2433 } ], - "Badge": [ + "Form.Group": [ { - "filePath": "src/packages/common/ui/NewBadge/index.jsx", - "line": 22, - "column": 4, - "index": 546 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 303, + "column": 28, + "index": 11321 }, { - "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", - "line": 80, - "column": 14, - "index": 3122 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 323, + "column": 28, + "index": 12441 }, { - "filePath": "src/packages/open-course-page/components/CourseRunSelector/components/SelectionTile.jsx", - "line": 57, - "column": 12, - "index": 2059 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 344, + "column": 26, + "index": 13585 }, { - "filePath": "src/packages/search-page/components/AutoComplete/components/AutoCompleteDropdownItem/index.jsx", - "line": 63, - "column": 14, - "index": 1880 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 366, + "column": 30, + "index": 14781 }, { - "filePath": "src/packages/search-page/components/AutoComplete/components/AutoCompleteDropdownItem/index.jsx", - "line": 67, - "column": 12, - "index": 2093 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 398, + "column": 32, + "index": 16773 }, { - "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 233, - "column": 33, - "index": 6676 - } - ], - "Popover.Title": [ - { - "filePath": "src/packages/common/ui/overlays/PaintedDoorUnauthenticatedPopover.jsx", - "line": 49, - "column": 6, - "index": 1794 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 430, + "column": 26, + "index": 18759 }, { - "filePath": "src/packages/common/ui/overlays/SocialSharePopover.jsx", - "line": 80, - "column": 6, - "index": 2662 - } - ], - "Popover.Content": [ - { - "filePath": "src/packages/common/ui/overlays/PaintedDoorUnauthenticatedPopover.jsx", - "line": 52, - "column": 6, - "index": 1929 + "filePath": "src/packages/queryless-pages/templates/CCPAPage.jsx", + "line": 27, + "column": 8, + "index": 897 }, { - "filePath": "src/packages/common/ui/overlays/SocialSharePopover.jsx", - "line": 85, - "column": 6, - "index": 2941 - } - ], - "Toast": [ - { - "filePath": "src/packages/common/ui/overlays/SaveForLaterOverlay/index.jsx", - "line": 319, + "filePath": "src/packages/queryless-pages/templates/CCPAPageES.jsx", + "line": 25, "column": 8, - "index": 11345 - } - ], - "OverlayTrigger": [ - { - "filePath": "src/packages/common/ui/overlays/SaveForLaterOverlay/index.jsx", - "line": 327, - "column": 6, - "index": 11578 + "index": 915 }, { - "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", - "line": 87, - "column": 8, - "index": 2996 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 68, + "column": 16, + "index": 2242 }, { - "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 183, - "column": 10, - "index": 5829 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 73, + "column": 16, + "index": 2435 }, { - "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", - "line": 233, - "column": 18, - "index": 8437 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 78, + "column": 16, + "index": 2637 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 279, - "column": 26, - "index": 12174 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 88, + "column": 16, + "index": 2993 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 296, - "column": 26, - "index": 13265 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 92, + "column": 16, + "index": 3193 }, { - "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 55, - "column": 6, - "index": 2118 - } - ], - "Popover": [ + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 96, + "column": 16, + "index": 3376 + }, { - "filePath": "src/packages/common/ui/overlays/SaveForLaterOverlay/index.jsx", - "line": 331, + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 117, "column": 10, - "index": 11713 + "index": 4097 } ], "Form.Control": [ { - "filePath": "src/packages/common/ui/overlays/SocialSharePopover.jsx", - "line": 111, - "column": 12, - "index": 4168 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 311, + "column": 30, + "index": 11722 + }, + { + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 331, + "column": 30, + "index": 12840 + }, + { + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 352, + "column": 28, + "index": 13973 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", @@ -35312,96 +40293,140 @@ "index": 4230 } ], - "MarketingModal": [ + "FormLabel": [ { - "filePath": "src/packages/common/ui/SaveForLaterMarketingModal/index.jsx", - "line": 55, - "column": 6, - "index": 1659 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 367, + "column": 32, + "index": 14870 + }, + { + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 379, + "column": 36, + "index": 15596 + }, + { + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 384, + "column": 36, + "index": 15951 + }, + { + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 399, + "column": 34, + "index": 16864 + }, + { + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 411, + "column": 38, + "index": 17620 + }, + { + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 416, + "column": 38, + "index": 17985 + }, + { + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 431, + "column": 28, + "index": 18810 } ], - "ModalDialog.Hero": [ + "Form.RadioSet": [ { - "filePath": "src/packages/common/ui/SaveForLaterMarketingModal/index.jsx", - "line": 61, - "column": 10, - "index": 1873 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 372, + "column": 32, + "index": 15184 + }, + { + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 404, + "column": 34, + "index": 17190 } ], - "ChevronLeft": [ + "Form.Radio": [ { - "filePath": "src/packages/common/ui/SkillsBreadcrumbs/index.jsx", - "line": 21, - "column": 6, - "index": 718 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 378, + "column": 34, + "index": 15493 }, { - "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 251, - "column": 25, - "index": 8160 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 383, + "column": 34, + "index": 15850 }, { - "filePath": "src/packages/learn-page/components/Breadcrumbs/index.jsx", - "line": 23, - "column": 10, - "index": 751 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 410, + "column": 36, + "index": 17515 }, { - "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseBreadcrumbs.jsx", - "line": 42, - "column": 19, - "index": 1229 + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 415, + "column": 36, + "index": 17882 } ], - "PlayCircleFilled": [ + "OverlayTrigger": [ { - "filePath": "src/packages/common/ui/Video/index.jsx", - "line": 129, - "column": 18, - "index": 3438 + "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", + "line": 87, + "column": 10, + "index": 3020 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 292, - "column": 30, - "index": 9997 + "line": 186, + "column": 10, + "index": 5992 }, { - "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseVideo.jsx", - "line": 46, - "column": 10, - "index": 1300 - } - ], - "FormGroup": [ + "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", + "line": 233, + "column": 18, + "index": 8437 + }, { - "filePath": "src/packages/degree-page/components/TabNavigation/index.jsx", - "line": 110, - "column": 8, - "index": 3276 - } - ], - "FormControl": [ + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 333, + "column": 24, + "index": 14365 + }, { - "filePath": "src/packages/degree-page/components/TabNavigation/index.jsx", - "line": 111, - "column": 10, - "index": 3314 + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 358, + "column": 24, + "index": 15636 + }, + { + "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", + "line": 55, + "column": 6, + "index": 2125 } ], "Tooltip": [ { "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", "line": 90, - "column": 12, - "index": 3071 + "column": 14, + "index": 3101 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 186, + "line": 189, "column": 14, - "index": 5910 + "index": 6073 }, { "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", @@ -35411,35 +40436,35 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 282, - "column": 30, - "index": 12303 + "line": 336, + "column": 28, + "index": 14488 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 299, - "column": 30, - "index": 13394 + "line": 361, + "column": 28, + "index": 15759 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", "line": 61, "column": 10, - "index": 2251 + "index": 2258 } ], "Launch": [ { "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", "line": 101, - "column": 40, - "index": 3457 + "column": 42, + "index": 3507 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 199, + "line": 202, "column": 21, - "index": 6451 + "index": 6614 }, { "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", @@ -35449,27 +40474,51 @@ }, { "filePath": "src/packages/exec-ed-page/components/WhyGetsmarter/index.jsx", - "line": 56, + "line": 55, "column": 23, - "index": 2831 + "index": 2801 }, { "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", - "line": 27, + "line": 24, "column": 24, - "index": 1171 + "index": 1046 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 384, - "column": 22, - "index": 18278 + "line": 467, + "column": 20, + "index": 20920 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", + "line": 212, + "column": 6, + "index": 9938 + }, + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/index.jsx", + "line": 196, + "column": 6, + "index": 8489 }, { "filePath": "src/packages/open-course-page/components/CourseRunSelector/index.jsx", - "line": 132, + "line": 142, "column": 6, - "index": 4795 + "index": 5201 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 177, + "column": 13, + "index": 5818 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 236, + "column": 17, + "index": 7785 } ], "useToggle": [ @@ -35477,47 +40526,105 @@ "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", "line": 99, "column": 32, - "index": 3610 + "index": 3617 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 41, + "column": 62, + "index": 1432 } ], "CallMade": [ { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 223, + "line": 226, "column": 23, - "index": 7268 + "index": 7431 } ], "Breadcrumb": [ { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 248, + "line": 251, "column": 14, - "index": 8004 + "index": 8167 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 252, + "line": 255, "column": 14, - "index": 8190 + "index": 8353 }, { "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseBreadcrumbs.jsx", - "line": 39, + "line": 69, "column": 8, - "index": 1091 + "index": 2251 }, { "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseBreadcrumbs.jsx", - "line": 43, + "line": 73, "column": 8, - "index": 1253 + "index": 2413 + }, + { + "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", + "line": 102, + "column": 10, + "index": 3726 + } + ], + "ModalDialog": [ + { + "filePath": "src/packages/exec-ed-page/components/CourseVideoDialog/index.jsx", + "line": 11, + "column": 4, + "index": 268 + }, + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/index.jsx", + "line": 222, + "column": 6, + "index": 9315 + }, + { + "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", + "line": 32, + "column": 4, + "index": 1059 + }, + { + "filePath": "src/packages/program-page/components/ProgramSubscriptionModal/index.jsx", + "line": 116, + "column": 4, + "index": 3953 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/packages/exec-ed-page/components/CourseVideoDialog/index.jsx", + "line": 21, + "column": 6, + "index": 501 + }, + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/index.jsx", + "line": 239, + "column": 8, + "index": 9997 + }, + { + "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", + "line": 49, + "column": 6, + "index": 1627 }, { - "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", - "line": 99, - "column": 8, - "index": 3538 + "filePath": "src/packages/program-page/components/ProgramSubscriptionModal/index.jsx", + "line": 133, + "column": 6, + "index": 4545 } ], "DropdownButton": [ @@ -35529,9 +40636,9 @@ }, { "filePath": "src/packages/open-course-page/components/StickyNav/index.jsx", - "line": 201, + "line": 212, "column": 16, - "index": 6826 + "index": 7428 } ], "Dropdown.Item": [ @@ -35549,9 +40656,23 @@ }, { "filePath": "src/packages/open-course-page/components/StickyNav/index.jsx", - "line": 213, + "line": 224, + "column": 20, + "index": 7961 + } + ], + "useWindowSize": [ + { + "filePath": "src/packages/home-page/components/Hero/index.jsx", + "line": 32, "column": 20, - "index": 7359 + "index": 1308 + }, + { + "filePath": "src/packages/modular-page/modules/ImageCarouselModule/index.jsx", + "line": 26, + "column": 21, + "index": 833 } ], "KeyboardArrowRight": [ @@ -35559,21 +40680,21 @@ "filePath": "src/packages/home-page/components/SubjectList/index.jsx", "line": 39, "column": 20, - "index": 1485 + "index": 1492 } ], "Skeleton": [ { "filePath": "src/packages/home-page/template/HomePage/index.jsx", - "line": 88, + "line": 104, "column": 15, - "index": 3192 + "index": 4019 }, { "filePath": "src/packages/home-page/template/HomePage/index.jsx", - "line": 103, + "line": 119, "column": 15, - "index": 3566 + "index": 4393 }, { "filePath": "src/packages/modular-page/modules/ImageCarouselModule/index.jsx", @@ -35583,9 +40704,15 @@ }, { "filePath": "src/packages/school-detail-page/components/CardLists/index.jsx", - "line": 45, + "line": 98, "column": 11, - "index": 2018 + "index": 3313 + }, + { + "filePath": "src/packages/topic-page/template/TopicPage/index.jsx", + "line": 42, + "column": 11, + "index": 1707 } ], "Person": [ @@ -35597,9 +40724,9 @@ }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 222, + "line": 249, "column": 33, - "index": 6955 + "index": 8346 }, { "filePath": "src/packages/open-course-page/components/Instructors/components/InstructorCard.jsx", @@ -35611,13 +40738,13 @@ "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", "line": 152, "column": 27, - "index": 5701 + "index": 5713 }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", "line": 174, "column": 27, - "index": 6753 + "index": 6765 }, { "filePath": "src/packages/program-page/components/ProgramMain/components/InstructorCard/index.jsx", @@ -35627,23 +40754,21 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 510, - "column": 26, - "index": 18133 + "line": 568, + "column": 28, + "index": 22725 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 534, - "column": 26, - "index": 19369 - } - ], - "Facebook": [ + "line": 592, + "column": 28, + "index": 24003 + }, { - "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", - "line": 25, - "column": 24, - "index": 1047 + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 471, + "column": 23, + "index": 19535 } ], "Search": [ @@ -35651,21 +40776,21 @@ "filePath": "src/packages/learn-index-page/components/Hero.jsx", "line": 16, "column": 20, - "index": 654 + "index": 661 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", "line": 38, "column": 20, - "index": 2408 + "index": 2220 } ], "Card": [ { "filePath": "src/packages/learn-index-page/template/AllTopicsPage/index.jsx", - "line": 86, + "line": 97, "column": 12, - "index": 3766 + "index": 4030 }, { "filePath": "src/packages/modular-page/modules/FacultyModule/index.jsx", @@ -35673,6 +40798,18 @@ "column": 10, "index": 1393 }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", + "line": 252, + "column": 14, + "index": 11263 + }, + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/index.jsx", + "line": 277, + "column": 14, + "index": 11771 + }, { "filePath": "src/packages/open-course-page/components/CourseRunSelector/components/SelectionTile.jsx", "line": 52, @@ -35681,23 +40818,23 @@ }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/PartnerFilters/index.jsx", - "line": 92, + "line": 94, "column": 16, - "index": 2817 + "index": 2797 }, { "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 37, + "line": 38, "column": 8, - "index": 1339 + "index": 1381 } ], "Card.Body": [ { "filePath": "src/packages/learn-index-page/template/AllTopicsPage/index.jsx", - "line": 87, + "line": 98, "column": 14, - "index": 3842 + "index": 4106 }, { "filePath": "src/packages/open-course-page/components/CourseRunSelector/components/SelectionTile.jsx", @@ -35729,9 +40866,15 @@ }, { "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", - "line": 119, + "line": 113, "column": 14, - "index": 4115 + "index": 3907 + }, + { + "filePath": "src/packages/program-page/components/ProgramSubscriptionSection/index.jsx", + "line": 225, + "column": 10, + "index": 8686 } ], "Row": [ @@ -35825,39 +40968,45 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 326, - "column": 50, - "index": 14814 + "line": 395, + "column": 20, + "index": 17312 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 327, - "column": 50, - "index": 14958 + "line": 398, + "column": 20, + "index": 17494 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 335, - "column": 50, - "index": 15458 + "line": 408, + "column": 20, + "index": 18018 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 336, - "column": 50, - "index": 15602 + "line": 411, + "column": 20, + "index": 18200 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 344, - "column": 50, - "index": 16103 + "line": 421, + "column": 20, + "index": 18725 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 353, - "column": 50, - "index": 16719 + "line": 434, + "column": 20, + "index": 19403 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", + "line": 269, + "column": 102, + "index": 12326 }, { "filePath": "src/packages/product-page/components/ProductDetailHero/index.jsx", @@ -35866,42 +41015,52 @@ "index": 1049 }, { - "filePath": "src/packages/search-page/components/FilterProgramCard.jsx", - "line": 46, - "column": 18, - "index": 1406 - } - ], - "OpenInNew": [ + "filePath": "src/packages/program-page/components/ProgramSubscriptionSection/index.jsx", + "line": 166, + "column": 10, + "index": 6076 + }, { - "filePath": "src/packages/modular-page/modules/CollapsibleTextTabModule/index.jsx", - "line": 78, - "column": 23, - "index": 2529 + "filePath": "src/packages/program-page/components/ProgramSubscriptionSection/index.jsx", + "line": 176, + "column": 10, + "index": 6555 }, { - "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", - "line": 55, - "column": 23, - "index": 2015 + "filePath": "src/packages/program-page/components/ProgramSubscriptionSection/index.jsx", + "line": 185, + "column": 10, + "index": 6950 }, { - "filePath": "src/packages/modular-page/modules/MediaModule/index.jsx", - "line": 51, - "column": 25, - "index": 1885 + "filePath": "src/packages/program-page/components/ProgramSubscriptionSection/index.jsx", + "line": 194, + "column": 10, + "index": 7340 }, { - "filePath": "src/packages/modular-page/modules/StatisticIconModule/index.jsx", - "line": 35, - "column": 21, - "index": 1288 + "filePath": "src/packages/program-page/components/ProgramSubscriptionSection/index.jsx", + "line": 203, + "column": 10, + "index": 7725 }, { - "filePath": "src/packages/modular-page/modules/TextModule/index.jsx", - "line": 77, - "column": 19, - "index": 2428 + "filePath": "src/packages/program-page/components/ProgramSubscriptionSection/index.jsx", + "line": 212, + "column": 10, + "index": 8101 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 249, + "column": 17, + "index": 8141 + }, + { + "filePath": "src/packages/search-page/components/FilterProgramCard.jsx", + "line": 45, + "column": 18, + "index": 1392 } ], "CardGrid": [ @@ -35913,15 +41072,15 @@ }, { "filePath": "src/packages/open-course-page/components/CourseRunSelector/index.jsx", - "line": 193, + "line": 203, "column": 10, - "index": 7952 + "index": 8406 }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/PartnerFilters/index.jsx", - "line": 81, + "line": 83, "column": 10, - "index": 2453 + "index": 2433 } ], "Card.Section": [ @@ -35931,61 +41090,143 @@ "column": 12, "index": 1546 }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", + "line": 258, + "column": 16, + "index": 11673 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", + "line": 268, + "column": 18, + "index": 12192 + }, + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/components/SectionTile.jsx", + "line": 51, + "column": 6, + "index": 1881 + }, { "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 38, + "line": 39, "column": 10, - "index": 1386 + "index": 1421 } ], "ArrowUpward": [ { "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", - "line": 125, + "line": 119, "column": 23, - "index": 4361 + "index": 4153 } ], - "Icons": [ + "InfoOutline": [ { - "filePath": "src/packages/modular-page/modules/ProgramReferralModule/index.jsx", - "line": 57, - "column": 23, - "index": 1906 + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 342, + "column": 33, + "index": 14798 }, { - "filePath": "src/packages/modular-page/modules/ProgramReferralModule/index.jsx", - "line": 69, - "column": 27, - "index": 2402 + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 367, + "column": 33, + "index": 16065 } ], - "InfoOutline": [ + "Remove": [ { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 287, - "column": 45, - "index": 12595 + "line": 424, + "column": 50, + "index": 18937 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 304, - "column": 45, - "index": 13682 + "line": 437, + "column": 50, + "index": 19615 } ], - "Remove": [ + "Card.Header": [ { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 345, - "column": 80, - "index": 16277 + "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", + "line": 253, + "column": 16, + "index": 11318 + } + ], + "Card.Divider": [ + { + "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", + "line": 266, + "column": 16, + "index": 12098 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 354, - "column": 80, - "index": 16893 + "filePath": "src/packages/open-course-page/components/CourseRunModal/components/SectionTile.jsx", + "line": 74, + "column": 6, + "index": 2783 + } + ], + "Lock": [ + { + "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", + "line": 269, + "column": 66, + "index": 12290 + } + ], + "Verified": [ + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/components/Enrollable.jsx", + "line": 29, + "column": 12, + "index": 785 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/index.jsx", + "line": 232, + "column": 8, + "index": 9653 + }, + { + "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", + "line": 39, + "column": 6, + "index": 1271 + }, + { + "filePath": "src/packages/program-page/components/ProgramSubscriptionModal/index.jsx", + "line": 122, + "column": 6, + "index": 4115 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/packages/open-course-page/components/CourseRunModal/index.jsx", + "line": 233, + "column": 10, + "index": 9684 + }, + { + "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", + "line": 40, + "column": 8, + "index": 1300 + }, + { + "filePath": "src/packages/program-page/components/ProgramSubscriptionModal/index.jsx", + "line": 123, + "column": 8, + "index": 4144 } ], "Timelapse": [ @@ -35999,15 +41240,63 @@ "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", "line": 196, "column": 25, - "index": 7838 + "index": 7850 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 460, + "column": 23, + "index": 19004 } ], "MoneyOutline": [ { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 265, + "line": 292, "column": 35, - "index": 9328 + "index": 10717 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", + "line": 59, + "column": 6, + "index": 2139 + }, + { + "filePath": "src/packages/program-page/components/ProgramSubscriptionModal/index.jsx", + "line": 195, + "column": 6, + "index": 7279 + } + ], + "ActionRow": [ + { + "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", + "line": 60, + "column": 8, + "index": 2168 + }, + { + "filePath": "src/packages/program-page/components/ProgramSubscriptionModal/index.jsx", + "line": 196, + "column": 8, + "index": 7308 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", + "line": 61, + "column": 10, + "index": 2190 + }, + { + "filePath": "src/packages/program-page/components/ProgramSubscriptionModal/index.jsx", + "line": 198, + "column": 10, + "index": 7371 } ], "Avatar": [ @@ -36023,7 +41312,7 @@ "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", "line": 135, "column": 25, - "index": 4898 + "index": 4910 } ], "Alert": [ @@ -36035,9 +41324,15 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 442, - "column": 20, - "index": 14940 + "line": 483, + "column": 22, + "index": 18667 + }, + { + "filePath": "src/packages/search-page/components/QuizMatchRecommendations/index.jsx", + "line": 75, + "column": 8, + "index": 2481 } ], "Warning": [ @@ -36049,23 +41344,23 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 443, - "column": 22, - "index": 15012 + "line": 484, + "column": 24, + "index": 18741 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 188, + "line": 187, "column": 16, - "index": 6347 + "index": 6336 } ], "Email": [ { "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", - "line": 107, + "line": 106, "column": 12, - "index": 3970 + "index": 3842 } ], "ArrowRightAlt": [ @@ -36073,15 +41368,33 @@ "filePath": "src/packages/program-page/components/AboutRouting/components/TopicRouting/index.jsx", "line": 60, "column": 31, - "index": 1937 + "index": 1944 } ], "ExpandCircleDown": [ { - "filePath": "src/packages/program-page/components/ProgramDataBar/index.jsx", - "line": 172, - "column": 20, - "index": 5297 + "filePath": "src/packages/program-page/components/ProgramDataBar/components/ProgramDataBarButton.jsx", + "line": 91, + "column": 10, + "index": 2568 + }, + { + "filePath": "src/packages/program-page/components/ProgramDataBar/components/ProgramDataBarButton.jsx", + "line": 102, + "column": 8, + "index": 2926 + }, + { + "filePath": "src/packages/program-page/components/ProgramDataBar/components/ProgramDataBarButton/index.jsx", + "line": 91, + "column": 10, + "index": 2568 + }, + { + "filePath": "src/packages/program-page/components/ProgramDataBar/components/ProgramDataBarButton/index.jsx", + "line": 102, + "column": 8, + "index": 2926 } ], "Modal": [ @@ -36092,86 +41405,100 @@ "index": 3834 } ], + "LocalOffer": [ + { + "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", + "line": 379, + "column": 14, + "index": 14022 + } + ], + "CreditCard": [ + { + "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", + "line": 416, + "column": 14, + "index": 15542 + } + ], "LibraryBooks": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 491, + "line": 549, "column": 24, - "index": 17215 + "index": 21803 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 139, + "line": 138, "column": 10, - "index": 4559 + "index": 4548 } ], "AccessTime": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 558, - "column": 26, - "index": 20651 + "line": 616, + "column": 28, + "index": 25327 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 177, + "line": 176, "column": 15, - "index": 6006 + "index": 5995 } ], "School": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 579, - "column": 26, - "index": 21701 + "line": 637, + "column": 28, + "index": 26413 }, { "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", - "line": 294, + "line": 301, "column": 18, - "index": 10259 - } - ], - "CreditCard": [ - { - "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 604, - "column": 24, - "index": 23120 + "index": 10671 } ], "Collapsible.Trigger": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", "line": 718, + "column": 22, + "index": 30581 + }, + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 858, "column": 20, - "index": 29061 + "index": 40503 } ], "AddCircle": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", "line": 722, - "column": 54, - "index": 29404 + "column": 56, + "index": 30932 } ], "RemoveCircle": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", "line": 723, - "column": 52, - "index": 29492 + "column": 54, + "index": 31022 } ], "FormatQuote": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", "line": 771, - "column": 16, - "index": 31732 + "column": 18, + "index": 33306 } ], "Info": [ @@ -36179,45 +41506,37 @@ "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", "line": 93, "column": 12, - "index": 3594 + "index": 3601 } ], "CalendarMonth": [ { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 153, + "line": 152, "column": 16, - "index": 5096 + "index": 5085 } ], "LocationOn": [ { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 224, + "line": 222, "column": 18, - "index": 7858 + "index": 7801 }, { "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", - "line": 204, + "line": 224, "column": 16, - "index": 6605 - } - ], - "Compass": [ - { - "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", - "line": 312, - "column": 18, - "index": 10989 + "index": 7622 } ], "StatusAlert": [ { "filePath": "src/packages/queryless-pages/templates/AppUpgrade.jsx", - "line": 103, + "line": 101, "column": 8, - "index": 3488 + "index": 3437 }, { "filePath": "src/packages/search-page/components/Results/NoResultsBlurb.jsx", @@ -36232,30 +41551,74 @@ "index": 420 } ], + "Form.Switch": [ + { + "filePath": "src/packages/queryless-pages/templates/CCPAPage.jsx", + "line": 28, + "column": 10, + "index": 920 + }, + { + "filePath": "src/packages/queryless-pages/templates/CCPAPageES.jsx", + "line": 26, + "column": 10, + "index": 938 + } + ], + "MoneyFilled": [ + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 258, + "column": 15, + "index": 8474 + } + ], + "CheckCircle": [ + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 268, + "column": 15, + "index": 8772 + }, + { + "filePath": "src/packages/search-page/components/QuizMatchRecommendations/index.jsx", + "line": 75, + "column": 39, + "index": 2512 + } + ], + "Calendar": [ + { + "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", + "line": 482, + "column": 23, + "index": 20059 + } + ], "StarFilled": [ { "filePath": "src/packages/queryless-pages/templates/PrivacyPolicyPrevious.jsx", - "line": 44, + "line": 46, "column": 14, - "index": 1654 + "index": 1720 }, { "filePath": "src/packages/queryless-pages/templates/PrivacyPolicyPrevious.jsx", - "line": 56, + "line": 58, "column": 14, - "index": 2242 + "index": 2308 }, { "filePath": "src/packages/queryless-pages/templates/PrivacyPolicyPreviousES.jsx", - "line": 25, + "line": 27, "column": 14, - "index": 1257 + "index": 1311 }, { "filePath": "src/packages/queryless-pages/templates/PrivacyPolicyPreviousES.jsx", - "line": 34, + "line": 36, "column": 14, - "index": 1865 + "index": 1919 } ], "Done": [ @@ -36266,6 +41629,14 @@ "index": 5506 } ], + "TrendingUp": [ + { + "filePath": "src/packages/search-page/components/AutoComplete/components/PopularSearchItem/index.jsx", + "line": 35, + "column": 23, + "index": 1193 + } + ], "Pagination": [ { "filePath": "src/packages/search-page/components/Pagination/index.jsx", @@ -36277,63 +41648,81 @@ "Image": [ { "filePath": "src/packages/search-page/components/PreQueryPage/components/SubjectFilters/index.jsx", - "line": 160, + "line": 159, "column": 8, - "index": 4299 + "index": 4270 + } + ], + "Alert.Heading": [ + { + "filePath": "src/packages/search-page/components/QuizMatchRecommendations/index.jsx", + "line": 76, + "column": 10, + "index": 2553 } ], "CloseSmall": [ { "filePath": "src/packages/search-page/components/RefinementFilters/components/CurrentRefinements/index.jsx", - "line": 109, + "line": 128, "column": 16, - "index": 4105 + "index": 4580 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/CurrentRefinements/index.jsx", - "line": 140, + "line": 168, + "column": 16, + "index": 6228 + }, + { + "filePath": "src/packages/search-page/components/RefinementFilters/components/CurrentRefinements/index.jsx", + "line": 199, "column": 18, - "index": 5320 + "index": 7443 } ], "Menu": [ { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 221, + "line": 262, + "column": 10, + "index": 7293 + }, + { + "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", + "line": 130, "column": 10, - "index": 6104 + "index": 3855 } ], "MenuItem": [ { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 223, + "line": 264, "column": 16, - "index": 6190 - } - ], - "KeyboardArrowDown": [ + "index": 7379 + }, { - "filePath": "src/packages/search-page/components/RefinementFilters/components/MobileFilterMenu/index.jsx", - "line": 75, - "column": 10, - "index": 2420 + "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", + "line": 132, + "column": 14, + "index": 3925 } ], "useMediaQuery": [ { "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 18, + "line": 19, "column": 23, - "index": 486 + "index": 517 } ], "breakpoints": [ { "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 18, + "line": 19, "column": 49, - "index": 512 + "index": 543 } ], "Tabs": [ diff --git a/docs/decisions/0009-usage-of-react-bootstrap.rst b/docs/decisions/0009-usage-of-react-bootstrap.rst index 594c9cee27..e7d233d5de 100644 --- a/docs/decisions/0009-usage-of-react-bootstrap.rst +++ b/docs/decisions/0009-usage-of-react-bootstrap.rst @@ -93,4 +93,4 @@ Following this decision there will be a pull request containing 18 components th References ---------- -* https://react-bootstrap.github.io/ +* https://react-bootstrap-v4.netlify.app/ diff --git a/docs/decisions/0018-typescript-support.md b/docs/decisions/0018-typescript-support.rst similarity index 94% rename from docs/decisions/0018-typescript-support.md rename to docs/decisions/0018-typescript-support.rst index 601018845d..be67169448 100644 --- a/docs/decisions/0018-typescript-support.md +++ b/docs/decisions/0018-typescript-support.rst @@ -1,5 +1,5 @@ -18. TypeScript support. ----------------------------------------------------------------- +18. TypeScript support +----------------------- Status ------ diff --git a/docs/decisions/0019-scaling-styles-with-design-tokens.rst b/docs/decisions/0019-scaling-styles-with-design-tokens.rst new file mode 100644 index 0000000000..bfb7ea08fe --- /dev/null +++ b/docs/decisions/0019-scaling-styles-with-design-tokens.rst @@ -0,0 +1,261 @@ +19. Scaling the Paragon design system's styles with design tokens and ``style-dictionary`` +########################################################################################### + +Status +====== + +Accepted + +Context +======= + +A critical component of the Open edX platform is the ability to customize its visual styles to reflect the custom brand of its consumers in the Open edX community. Historically, the Open edX platform (via ``edx-platform``) has supported a comprehensive theming system fulfilling the community's theming needs, including brand customization but also functionality, too (e.g., modifying, adding, or removing user interface elements). However, as we've moved towards React micro-frontends, the theming from a brand customization perspective has been largely replaced by the theming system provided by the Paragon design system. + +Within Paragon, "theming" predominantly refers to brand customization as it relates to visual styles. It does not intend to be responsible for customization of functionality as in the historical sense of comprehensive theming in ``edx-platform``. The Frontend Working Group's roadmap includes improvements to micro-frontend customizability. + +Current styles architecture +--------------------------- + +Today, Paragon's core styles are heavily based on `Bootstrap 4 `__. The decision to rely on Bootstrap was to extend a popular, existing responsive CSS framework to get an initial design system created more efficiently than creating all styles from scratch in addition to general knowledge and awareness of Bootstrap throughout the frontend community (see `OEP-16 `__ for more details). + +Bootstrap 4 supports theming of visual styles through SCSS variables. As a result, Paragon's current theming system also relies overriding SCSS variables, both from core Bootstrap and custom Paragon variables. + +While Paragon's SCSS theming system has largely supported Open edX's transition from building legagy UIs in Django to React micro-frontends, we have identified several challenges that hinder its continued scalability and use in micro-frontends throughout Open edX. + +Challenges with current styles architecture +------------------------------------------- + +* **On theme changes, all its consuming applications must be upgraded, re-built, and re-deployed.** + + * Because Paragon currently heavily relies on SCSS variables for its theme, when any SCSS variable(s) are changed, every application consuming that theme needs to upgrade to the new version, be re-built, and get re-deployed. + + * With applications needing to be rebuild/redeployed, it's a significant effort to upgrade all applications to the new theme, especially if trying to do all applications at once. + + * With runtime theming via CSS variables, when a change is made to the theme, only the theme itself should need to get re-built, and the styles should automatically get applied to all consuming applications without needing to explicitly upgrade, re-build, and re-deploy those applications. + +* **Paragon styles are not platform agnostic nor a single source-of-truth.** + + * The styles associated with Paragon themes are largely only accessible in environments that support SCSS as pretty much all Paragon's style properties are baked into SCSS variables. + * Ideally, the style properties would be defined in a platform agnostic way such that they can be transformed for various platforms, like iOS and Android apps or even a Figma integration. + + * *Note: these additional platform support ideas is more of a longer-term vision for how we could extend the design tokens work further in the future.* + +* **Supporting both system-wide themes and organizational themes.** + + * The primary theming use case for Paragon is largely around system-wide theming, where all applications in the Open edX ecosystem share the same theme. + * However, there are use cases for organizational themes, too (i.e., updating the colors for specific partners/organizations, enterprise customers, etc.). + + * This is not well supported today and largely requires overriding CSS classes from Paragon rather than the desired approach of overriding underlying CSS variable(s). This an anti-pattern as Paragon class names should really be considered internal implementation details of Paragon components, and not used by consumers directly. For example, the Enterprise MFEs within Open edX (e.g., frontend-app-learner-portal-enterprise) inject ``